diff options
| author | Tom Rini <[email protected]> | 2024-05-30 07:07:51 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-30 07:07:51 -0600 |
| commit | b1d2af984f5baa7440f6cc409efa6f0561415800 (patch) | |
| tree | 0b2a2c989a6ea5eb9fd484f10413d01c78f98475 /board | |
| parent | ea722aa5eb33740ae77e8816aeb72b385e621cd0 (diff) | |
| parent | c0c173d813376c5ad5f79c3fcfc2e684ba0352ea (diff) | |
Merge patch series "omap3: igep0x00: Fix boot failure and modernize the boards support"
Javier Martinez Canillas <[email protected]> says:
Hello,
I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot.
This was caused by a driver change to allocate its platform data before
relocation and U-Boot not having enough pre-relocation heap size for this.
This series fixes this issue and also makes the board support more modern,
by enabling DM for SPL and migrating the IGEP boards to use upstream DTBs.
Diffstat (limited to 'board')
| -rw-r--r-- | board/isee/igep00x0/igep00x0.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/isee/igep00x0/igep00x0.c b/board/isee/igep00x0/igep00x0.c index 0f0a9c592fc..8537b9686f2 100644 --- a/board/isee/igep00x0/igep00x0.c +++ b/board/isee/igep00x0/igep00x0.c @@ -29,18 +29,6 @@ #include <fdt_support.h> #include "igep00x0.h" -static const struct ns16550_plat igep_serial = { - .base = OMAP34XX_UART3, - .reg_shift = 2, - .clock = V_NS16550_CLK, - .fcr = UART_FCR_DEFVAL, -}; - -U_BOOT_DRVINFO(igep_uart) = { - "ns16550_serial", - &igep_serial -}; - /* * Routine: get_board_revision * Description: GPIO_28 and GPIO_129 are used to read board and revision from |
