diff options
author | Tom Rini | 2019-02-16 16:36:29 -0500 |
---|---|---|
committer | Tom Rini | 2019-02-19 16:58:23 -0500 |
commit | e0cc7df9fdf283fd4db9526151ff224281e460e8 (patch) | |
tree | 72dda094223e3e91f3498fa17d145671e7a3bd9c /board | |
parent | 84c7a1398f73d88e8e96dfee137e45e0c85a5d7a (diff) |
omap3_beagle: Update for DM SPL support
- Switch to using the omap3-u-boot.dtsi file for needed properties.
- Remove a few SPL features to free up more SRAM space.
- Switch CONFIG_SYS_TEXT_BASE to the normal default, we don't need to
worry about X-Loader at this point anymore.
- A few related updates to SPL options as part of switching to DM SPL.
Signed-off-by: Tom Rini <trini@konsulko.com>
Tested-by: Derald D. Woods <woods.technical@gmail.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/beagle/beagle.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 826aace3fba..91e0a4c026d 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -71,18 +71,6 @@ static struct { char env_setting[64]; } expansion_config; -static const struct ns16550_platdata beagle_serial = { - .base = OMAP34XX_UART3, - .reg_shift = 2, - .clock = V_NS16550_CLK, - .fcr = UART_FCR_DEFVAL, -}; - -U_BOOT_DEVICE(beagle_uart) = { - "ns16550_serial", - &beagle_serial -}; - /* * Routine: board_init * Description: Early hardware init. |