diff options
author | Marcin Niestroj <m.niestroj@grinn-global.com> | 2018-11-21 20:32:02 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-26 22:52:14 -0500 |
commit | f1bca34ebf94bf5ab4ba4644b5e62ce6b3efcb99 (patch) | |
tree | 73cbb88b055f3fc621c73cc7a3fbd712b1b06ac5 /board/grinn/chiliboard | |
parent | 627d74c79b944add0806b21ab894e7eafed986b2 (diff) | |
download | u-boot-f1bca34ebf94bf5ab4ba4644b5e62ce6b3efcb99.tar.gz u-boot-f1bca34ebf94bf5ab4ba4644b5e62ce6b3efcb99.tar.xz u-boot-f1bca34ebf94bf5ab4ba4644b5e62ce6b3efcb99.zip |
ARM: chiliboard: move towards driver model and device-tree boot
This patch mostly enables DM drivers in board defconfig and all their
dependencies. Additionally we remove ethernet platform data, as all
details are in device-tree now.
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/grinn/chiliboard')
-rw-r--r-- | board/grinn/chiliboard/board.c | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/board/grinn/chiliboard/board.c b/board/grinn/chiliboard/board.c index 73a7d8281c..2bb91e31b7 100644 --- a/board/grinn/chiliboard/board.c +++ b/board/grinn/chiliboard/board.c @@ -150,56 +150,3 @@ int board_late_init(void) return 0; } #endif - -#if !defined(CONFIG_DM_ETH) && defined(CONFIG_DRIVER_TI_CPSW) && \ - !defined(CONFIG_SPL_BUILD) -static void cpsw_control(int enabled) -{ - /* VTP can be added here */ - - return; -} - -static struct cpsw_slave_data cpsw_slaves[] = { - { - .slave_reg_ofs = 0x208, - .sliver_reg_ofs = 0xd80, - .phy_addr = 0, - } -}; - -static struct cpsw_platform_data cpsw_data = { - .mdio_base = CPSW_MDIO_BASE, - .cpsw_base = CPSW_BASE, - .mdio_div = 0xff, - .channels = 8, - .cpdma_reg_ofs = 0x800, - .slaves = 1, - .slave_data = cpsw_slaves, - .ale_reg_ofs = 0xd00, - .ale_entries = 1024, - .host_port_reg_ofs = 0x108, - .hw_stats_reg_ofs = 0x900, - .bd_ram_ofs = 0x2000, - .mac_control = (1 << 5), - .control = cpsw_control, - .host_port_num = 0, - .version = CPSW_CTRL_VERSION_2, -}; - -int board_eth_init(bd_t *bis) -{ - int rv, n = 0; - - writel(RMII_MODE_ENABLE | RMII_CHIPCKL_ENABLE, &cdev->miisel); - cpsw_slaves[0].phy_if = PHY_INTERFACE_MODE_RMII; - - rv = cpsw_register(&cpsw_data); - if (rv < 0) - printf("Error %d registering CPSW switch\n", rv); - else - n += rv; - - return n; -} -#endif |