Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 74e95d5d authored by Geoff Levand's avatar Geoff Levand Committed by Paul Mackerras
Browse files

[POWERPC] ps3: Add vuart support



Adds support for the PS3 virtual UART (vuart).  The vuart provides a
bi-directional byte stream data link between logical partitions.

This is needed for the ps3 graphics driver and the ps3 power
control support to be able to communicate with the lv1 policy
module.

Signed-off-by: default avatarGeoff Levand <geoffrey.levand@am.sony.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 0204568a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -157,6 +157,7 @@ CONFIG_SPU_BASE=y
CONFIG_PS3_HTAB_SIZE=20
CONFIG_PS3_DYNAMIC_DMA=y
CONFIG_PS3_USE_LPAR_ADDR=y
CONFIG_PS3_VUART=y

#
# Kernel options
+11 −0
Original line number Diff line number Diff line
@@ -40,4 +40,15 @@ config PS3_USE_LPAR_ADDR

	  If you have any doubt, choose the default y.

config PS3_VUART
	depends on PPC_PS3
	bool "PS3 Virtual UART support"
	default y
	help
	  Include support for the PS3 Virtual UART.

	  This support is required for several system services
	  including the System Manager and AV Settings.  In
	  general, all users will say Y.

endmenu
+1 −0
Original line number Diff line number Diff line
obj-y += system-bus.o
obj-$(CONFIG_PS3_VUART) += vuart.o

drivers/ps3/vuart.c

0 → 100644
+965 −0

File added.

Preview size limit exceeded, changes collapsed.

drivers/ps3/vuart.h

0 → 100644
+94 −0

File added.

Preview size limit exceeded, changes collapsed.