Skip to content

Commit

Permalink
[POWERPC] ps3: Add vuart support
Browse files Browse the repository at this point in the history
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: Geoff Levand <geoffrey.levand@am.sony.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Geoff Levand authored and Paul Mackerras committed Dec 11, 2006
1 parent 0204568 commit 74e95d5
Show file tree
Hide file tree
Showing 5 changed files with 1,072 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/powerpc/configs/ps3_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions arch/powerpc/platforms/ps3/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 1 addition & 0 deletions drivers/ps3/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
obj-y += system-bus.o
obj-$(CONFIG_PS3_VUART) += vuart.o
Loading

0 comments on commit 74e95d5

Please sign in to comment.