ChangeSet 1.2231.1.22, 2005/03/28 19:22:27-08:00, [EMAIL PROTECTED]
[PATCH] ppc32: Fix CONFIG_SERIAL_TEXT_DEBUG support on 83xx
The uart initialization for CONFIG_SERIAL_TEXT_DEBUG on 83xx was
passing in
physical addresses instead of effective. Additional, fix the Kconfig
support to be for all 83xx devices, not just the MPC834x SYS board.
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
Kconfig | 2 +-
platforms/83xx/mpc834x_sys.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff -Nru a/arch/ppc/Kconfig b/arch/ppc/Kconfig
--- a/arch/ppc/Kconfig 2005-03-28 21:11:15 -08:00
+++ b/arch/ppc/Kconfig 2005-03-28 21:11:15 -08:00
@@ -743,7 +743,7 @@
depends on SANDPOINT || MCPN765 || SPRUCE || PPLUS || PCORE || \
PRPMC750 || K2 || PRPMC800 || LOPEC || \
(EV64260 && !SERIAL_MPSC) || CHESTNUT || RADSTONE_PPC7D || \
- MPC834x_SYS
+ 83xx
default y
config FORCE
diff -Nru a/arch/ppc/platforms/83xx/mpc834x_sys.c
b/arch/ppc/platforms/83xx/mpc834x_sys.c
--- a/arch/ppc/platforms/83xx/mpc834x_sys.c 2005-03-28 21:11:15 -08:00
+++ b/arch/ppc/platforms/83xx/mpc834x_sys.c 2005-03-28 21:11:15 -08:00
@@ -243,14 +243,14 @@
memset(&p, 0, sizeof (p));
p.iotype = SERIAL_IO_MEM;
- p.membase = (unsigned char __iomem *)immrbar + 0x4500;
+ p.membase = (unsigned char __iomem *)(VIRT_IMMRBAR + 0x4500);
p.uartclk = binfo->bi_busfreq;
gen550_init(0, &p);
memset(&p, 0, sizeof (p));
p.iotype = SERIAL_IO_MEM;
- p.membase = (unsigned char __iomem *)immrbar + 0x4500;
+ p.membase = (unsigned char __iomem *)(VIRT_IMMRBAR + 0x4600);
p.uartclk = binfo->bi_busfreq;
gen550_init(1, &p);
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html