From 94f631cdc9805d61071c29d25a0af9ddea174c22 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sat, 29 Jun 2013 22:55:15 -0700 Subject: am335x: Fix the address of the pinmux registers. The pinmux register data structure describes a subset of the control module registers, but the address which pointed to the base of the pinmux registers was actually being set to the beginning of all the control module registers, not just those having to do with the pinmux. With this address fixed, the UART now works on the beaglebone black. Change-Id: I7c99b6f37d7da359af074127cd0c1a86fda2d9a0 Signed-off-by: Gabe Black Reviewed-on: http://review.coreboot.org/3574 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Ronald G. Minnich --- src/cpu/ti/am335x/pinmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cpu/ti/am335x') diff --git a/src/cpu/ti/am335x/pinmux.h b/src/cpu/ti/am335x/pinmux.h index 69c1459c1d..1b488e8eb8 100644 --- a/src/cpu/ti/am335x/pinmux.h +++ b/src/cpu/ti/am335x/pinmux.h @@ -54,7 +54,7 @@ void am335x_pinmux_mii1(void); void am335x_pinmux_nand(void); -#define AM335X_PINMUX_REG_ADDR 0x44e10000 +#define AM335X_PINMUX_REG_ADDR 0x44e10800 struct am335x_pinmux_regs { uint32_t gpmc_ad0; -- cgit v1.2.3