Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ |
| 4 | * |
| 5 | * Based on da830evm.c. Original Copyrights follow: |
| 6 | * |
| 7 | * Copyright (C) 2009 Nick Thompson, GE Fanuc, Ltd. <nick.thompson@gefanuc.com> |
| 8 | * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Adam Ford | 8e51c0f | 2018-06-10 22:25:57 -0500 | [diff] [blame] | 12 | #include <dm.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 13 | #include <env.h> |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 14 | #include <i2c.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 15 | #include <init.h> |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 16 | #include <net.h> |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 17 | #include <spi.h> |
| 18 | #include <spi_flash.h> |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 19 | #include <asm/arch/hardware.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Khoronzhuk, Ivan | 3e01ed0 | 2014-06-07 04:22:52 +0300 | [diff] [blame] | 21 | #include <asm/ti-common/davinci_nand.h> |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 22 | #include <asm/arch/emac_defs.h> |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 23 | #include <asm/arch/pinmux_defs.h> |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 24 | #include <asm/io.h> |
Sughosh Ganu | d7f9b50 | 2010-11-28 20:21:27 -0500 | [diff] [blame] | 25 | #include <asm/arch/davinci_misc.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 26 | #include <linux/errno.h> |
Nagabhushana Netagunte | cf2c24e | 2011-09-03 22:19:28 -0400 | [diff] [blame] | 27 | #include <hwconfig.h> |
Simon Glass | c62db35 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 28 | #include <asm/mach-types.h> |
Adam Ford | 8e51c0f | 2018-06-10 22:25:57 -0500 | [diff] [blame] | 29 | #include <asm/gpio.h> |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 30 | |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 31 | #ifdef CONFIG_MMC_DAVINCI |
Lad, Prabhakar | ecc98ec | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 32 | #include <mmc.h> |
| 33 | #include <asm/arch/sdmmc_defs.h> |
| 34 | #endif |
| 35 | |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 38 | #ifdef CONFIG_DRIVER_TI_EMAC |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 39 | #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII |
| 40 | #define HAS_RMII 1 |
| 41 | #else |
| 42 | #define HAS_RMII 0 |
| 43 | #endif |
| 44 | #endif /* CONFIG_DRIVER_TI_EMAC */ |
| 45 | |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 46 | #define CFG_MAC_ADDR_SPI_BUS 0 |
| 47 | #define CFG_MAC_ADDR_SPI_CS 0 |
| 48 | #define CFG_MAC_ADDR_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED |
| 49 | #define CFG_MAC_ADDR_SPI_MODE SPI_MODE_3 |
| 50 | |
| 51 | #define CFG_MAC_ADDR_OFFSET (flash->size - SZ_64K) |
| 52 | |
| 53 | #ifdef CONFIG_MAC_ADDR_IN_SPIFLASH |
| 54 | static int get_mac_addr(u8 *addr) |
| 55 | { |
| 56 | struct spi_flash *flash; |
| 57 | int ret; |
| 58 | |
| 59 | flash = spi_flash_probe(CFG_MAC_ADDR_SPI_BUS, CFG_MAC_ADDR_SPI_CS, |
| 60 | CFG_MAC_ADDR_SPI_MAX_HZ, CFG_MAC_ADDR_SPI_MODE); |
| 61 | if (!flash) { |
| 62 | printf("Error - unable to probe SPI flash.\n"); |
| 63 | return -1; |
| 64 | } |
| 65 | |
Adam Ford | 4fde31e | 2019-05-29 09:36:58 -0500 | [diff] [blame] | 66 | ret = spi_flash_read(flash, (CFG_MAC_ADDR_OFFSET), 6, addr); |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 67 | if (ret) { |
| 68 | printf("Error - unable to read MAC address from SPI flash.\n"); |
| 69 | return -1; |
| 70 | } |
| 71 | |
| 72 | return ret; |
| 73 | } |
| 74 | #endif |
| 75 | |
Nagabhushana Netagunte | cf2c24e | 2011-09-03 22:19:28 -0400 | [diff] [blame] | 76 | void dsp_lpsc_on(unsigned domain, unsigned int id) |
| 77 | { |
| 78 | dv_reg_p mdstat, mdctl, ptstat, ptcmd; |
| 79 | struct davinci_psc_regs *psc_regs; |
| 80 | |
| 81 | psc_regs = davinci_psc0_regs; |
| 82 | mdstat = &psc_regs->psc0.mdstat[id]; |
| 83 | mdctl = &psc_regs->psc0.mdctl[id]; |
| 84 | ptstat = &psc_regs->ptstat; |
| 85 | ptcmd = &psc_regs->ptcmd; |
| 86 | |
| 87 | while (*ptstat & (0x1 << domain)) |
| 88 | ; |
| 89 | |
| 90 | if ((*mdstat & 0x1f) == 0x03) |
| 91 | return; /* Already on and enabled */ |
| 92 | |
| 93 | *mdctl |= 0x03; |
| 94 | |
| 95 | *ptcmd = 0x1 << domain; |
| 96 | |
| 97 | while (*ptstat & (0x1 << domain)) |
| 98 | ; |
| 99 | while ((*mdstat & 0x1f) != 0x03) |
| 100 | ; /* Probably an overkill... */ |
| 101 | } |
| 102 | |
| 103 | static void dspwake(void) |
| 104 | { |
| 105 | unsigned *resetvect = (unsigned *)DAVINCI_L3CBARAM_BASE; |
| 106 | u32 val; |
| 107 | |
| 108 | /* if the device is ARM only, return */ |
| 109 | if ((readl(CHIP_REV_ID_REG) & 0x3f) == 0x10) |
| 110 | return; |
| 111 | |
| 112 | if (hwconfig_subarg_cmp_f("dsp", "wake", "no", NULL)) |
| 113 | return; |
| 114 | |
| 115 | *resetvect++ = 0x1E000; /* DSP Idle */ |
| 116 | /* clear out the next 10 words as NOP */ |
| 117 | memset(resetvect, 0, sizeof(unsigned) *10); |
| 118 | |
| 119 | /* setup the DSP reset vector */ |
| 120 | writel(DAVINCI_L3CBARAM_BASE, HOST1CFG); |
| 121 | |
| 122 | dsp_lpsc_on(1, DAVINCI_LPSC_GEM); |
| 123 | val = readl(PSC0_MDCTL + (15 * 4)); |
| 124 | val |= 0x100; |
| 125 | writel(val, (PSC0_MDCTL + (15 * 4))); |
| 126 | } |
| 127 | |
| 128 | int misc_init_r(void) |
| 129 | { |
| 130 | dspwake(); |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 131 | |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 132 | #if defined(CONFIG_MAC_ADDR_IN_SPIFLASH) || defined(CONFIG_MAC_ADDR_IN_EEPROM) |
| 133 | |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 134 | uchar env_enetaddr[6]; |
| 135 | int enetaddr_found; |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 136 | |
Simon Glass | 35affd7 | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 137 | enetaddr_found = eth_env_get_enetaddr("ethaddr", env_enetaddr); |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 138 | |
Adam Ford | 919ccb9 | 2017-09-08 17:01:17 -0500 | [diff] [blame] | 139 | #endif |
| 140 | |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 141 | #ifdef CONFIG_MAC_ADDR_IN_SPIFLASH |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 142 | int spi_mac_read; |
| 143 | uchar buff[6]; |
| 144 | |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 145 | spi_mac_read = get_mac_addr(buff); |
Adam Ford | a4670f8 | 2017-09-17 20:43:46 -0500 | [diff] [blame] | 146 | buff[0] = 0; |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 147 | |
| 148 | /* |
| 149 | * MAC address not present in the environment |
| 150 | * try and read the MAC address from SPI flash |
| 151 | * and set it. |
| 152 | */ |
| 153 | if (!enetaddr_found) { |
| 154 | if (!spi_mac_read) { |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 155 | if (is_valid_ethaddr(buff)) { |
Simon Glass | fd1e959 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 156 | if (eth_env_set_enetaddr("ethaddr", buff)) { |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 157 | printf("Warning: Failed to " |
| 158 | "set MAC address from SPI flash\n"); |
| 159 | } |
| 160 | } else { |
| 161 | printf("Warning: Invalid " |
| 162 | "MAC address read from SPI flash\n"); |
| 163 | } |
| 164 | } |
| 165 | } else { |
| 166 | /* |
| 167 | * MAC address present in environment compare it with |
| 168 | * the MAC address in SPI flash and warn on mismatch |
| 169 | */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 170 | if (!spi_mac_read && is_valid_ethaddr(buff) && |
| 171 | memcmp(env_enetaddr, buff, 6)) |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 172 | printf("Warning: MAC address in SPI flash don't match " |
| 173 | "with the MAC address in the environment\n"); |
Andre Przywara | bb72b94 | 2016-11-16 00:50:12 +0000 | [diff] [blame] | 174 | printf("Default using MAC address from environment\n"); |
Hadli, Manjunath | 38fed6e | 2012-02-09 20:22:24 +0000 | [diff] [blame] | 175 | } |
Adam Ford | 919ccb9 | 2017-09-08 17:01:17 -0500 | [diff] [blame] | 176 | |
| 177 | #elif defined(CONFIG_MAC_ADDR_IN_EEPROM) |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 178 | uint8_t enetaddr[8]; |
| 179 | int eeprom_mac_read; |
| 180 | |
| 181 | /* Read Ethernet MAC address from EEPROM */ |
| 182 | eeprom_mac_read = dvevm_read_mac_address(enetaddr); |
| 183 | |
| 184 | /* |
| 185 | * MAC address not present in the environment |
| 186 | * try and read the MAC address from EEPROM flash |
| 187 | * and set it. |
| 188 | */ |
| 189 | if (!enetaddr_found) { |
| 190 | if (eeprom_mac_read) |
| 191 | /* Set Ethernet MAC address from EEPROM */ |
| 192 | davinci_sync_env_enetaddr(enetaddr); |
| 193 | } else { |
| 194 | /* |
| 195 | * MAC address present in environment compare it with |
| 196 | * the MAC address in EEPROM and warn on mismatch |
| 197 | */ |
| 198 | if (eeprom_mac_read && memcmp(enetaddr, env_enetaddr, 6)) |
| 199 | printf("Warning: MAC address in EEPROM don't match " |
| 200 | "with the MAC address in the environment\n"); |
Andre Przywara | bb72b94 | 2016-11-16 00:50:12 +0000 | [diff] [blame] | 201 | printf("Default using MAC address from environment\n"); |
Hadli, Manjunath | 206a103 | 2012-02-09 20:22:25 +0000 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | #endif |
Nagabhushana Netagunte | cf2c24e | 2011-09-03 22:19:28 -0400 | [diff] [blame] | 205 | return 0; |
| 206 | } |
| 207 | |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 208 | static const struct pinmux_config gpio_pins[] = { |
Adam Ford | 7bb33e4 | 2020-06-29 18:49:41 -0500 | [diff] [blame] | 209 | #ifdef CONFIG_MTD_NOR_FLASH |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 210 | /* GP0[11] is required for NOR to work on Rev 3 EVMs */ |
| 211 | { pinmux(0), 8, 4 }, /* GP0[11] */ |
| 212 | #endif |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 213 | #ifdef CONFIG_MMC_DAVINCI |
Lad, Prabhakar | ecc98ec | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 214 | /* GP0[11] is required for SD to work on Rev 3 EVMs */ |
| 215 | { pinmux(0), 8, 4 }, /* GP0[11] */ |
| 216 | #endif |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 217 | }; |
| 218 | |
Christian Riesch | 3d2c8e6 | 2011-12-09 09:47:37 +0000 | [diff] [blame] | 219 | const struct pinmux_resource pinmuxes[] = { |
Christian Riesch | 591d801 | 2011-11-28 23:46:16 +0000 | [diff] [blame] | 220 | #ifdef CONFIG_DRIVER_TI_EMAC |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 221 | PINMUX_ITEM(emac_pins_mdio), |
| 222 | #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII |
| 223 | PINMUX_ITEM(emac_pins_rmii), |
| 224 | #else |
| 225 | PINMUX_ITEM(emac_pins_mii), |
Adam Ford | b9ad74d | 2019-07-31 09:17:31 -0500 | [diff] [blame] | 226 | #endif |
| 227 | #endif |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 228 | #ifdef CONFIG_SPI_FLASH |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 229 | PINMUX_ITEM(spi1_pins_base), |
| 230 | PINMUX_ITEM(spi1_pins_scs0), |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 231 | #endif |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 232 | PINMUX_ITEM(uart2_pins_txrx), |
| 233 | PINMUX_ITEM(uart2_pins_rtscts), |
| 234 | PINMUX_ITEM(i2c0_pins), |
Ben Gardiner | 756d1fe | 2010-10-14 17:26:19 -0400 | [diff] [blame] | 235 | #ifdef CONFIG_NAND_DAVINCI |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 236 | PINMUX_ITEM(emifa_pins_cs3), |
| 237 | PINMUX_ITEM(emifa_pins_cs4), |
| 238 | PINMUX_ITEM(emifa_pins_nand), |
Adam Ford | 7bb33e4 | 2020-06-29 18:49:41 -0500 | [diff] [blame] | 239 | #elif defined(CONFIG_MTD_NOR_FLASH) |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 240 | PINMUX_ITEM(emifa_pins_cs2), |
| 241 | PINMUX_ITEM(emifa_pins_nor), |
Ben Gardiner | 756d1fe | 2010-10-14 17:26:19 -0400 | [diff] [blame] | 242 | #endif |
Christian Riesch | 52b0f87 | 2011-11-28 23:46:18 +0000 | [diff] [blame] | 243 | PINMUX_ITEM(gpio_pins), |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 244 | #ifdef CONFIG_MMC_DAVINCI |
Lad, Prabhakar | ecc98ec | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 245 | PINMUX_ITEM(mmc0_pins), |
| 246 | #endif |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 247 | }; |
| 248 | |
Christian Riesch | 3d2c8e6 | 2011-12-09 09:47:37 +0000 | [diff] [blame] | 249 | const int pinmuxes_size = ARRAY_SIZE(pinmuxes); |
| 250 | |
Sughosh Ganu | 6b873dc | 2012-02-02 00:44:41 +0000 | [diff] [blame] | 251 | const struct lpsc_resource lpsc[] = { |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 252 | { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */ |
| 253 | { DAVINCI_LPSC_SPI1 }, /* Serial Flash */ |
| 254 | { DAVINCI_LPSC_EMAC }, /* image download */ |
| 255 | { DAVINCI_LPSC_UART2 }, /* console */ |
| 256 | { DAVINCI_LPSC_GPIO }, |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 257 | #ifdef CONFIG_MMC_DAVINCI |
Lad, Prabhakar | ecc98ec | 2012-06-24 21:35:15 +0000 | [diff] [blame] | 258 | { DAVINCI_LPSC_MMC_SD }, |
| 259 | #endif |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 260 | }; |
| 261 | |
Sughosh Ganu | 6b873dc | 2012-02-02 00:44:41 +0000 | [diff] [blame] | 262 | const int lpsc_size = ARRAY_SIZE(lpsc); |
| 263 | |
Sekhar Nori | 4f6fc15 | 2010-11-19 11:39:48 -0500 | [diff] [blame] | 264 | #ifndef CONFIG_DA850_EVM_MAX_CPU_CLK |
| 265 | #define CONFIG_DA850_EVM_MAX_CPU_CLK 300000000 |
| 266 | #endif |
| 267 | |
Manjunath Hadli | 754f8cb | 2011-10-10 21:06:38 +0000 | [diff] [blame] | 268 | #define REV_AM18X_EVM 0x100 |
| 269 | |
Sekhar Nori | 4f6fc15 | 2010-11-19 11:39:48 -0500 | [diff] [blame] | 270 | /* |
| 271 | * get_board_rev() - setup to pass kernel board revision information |
| 272 | * Returns: |
| 273 | * bit[0-3] Maximum cpu clock rate supported by onboard SoC |
| 274 | * 0000b - 300 MHz |
| 275 | * 0001b - 372 MHz |
| 276 | * 0010b - 408 MHz |
| 277 | * 0011b - 456 MHz |
| 278 | */ |
| 279 | u32 get_board_rev(void) |
| 280 | { |
| 281 | char *s; |
| 282 | u32 maxcpuclk = CONFIG_DA850_EVM_MAX_CPU_CLK; |
| 283 | u32 rev = 0; |
| 284 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 285 | s = env_get("maxcpuclk"); |
Sekhar Nori | 4f6fc15 | 2010-11-19 11:39:48 -0500 | [diff] [blame] | 286 | if (s) |
| 287 | maxcpuclk = simple_strtoul(s, NULL, 10); |
| 288 | |
| 289 | if (maxcpuclk >= 456000000) |
| 290 | rev = 3; |
| 291 | else if (maxcpuclk >= 408000000) |
| 292 | rev = 2; |
| 293 | else if (maxcpuclk >= 372000000) |
| 294 | rev = 1; |
Sekhar Nori | 4f6fc15 | 2010-11-19 11:39:48 -0500 | [diff] [blame] | 295 | return rev; |
| 296 | } |
| 297 | |
Christian Riesch | ae5c77d | 2011-10-13 00:52:29 +0000 | [diff] [blame] | 298 | int board_early_init_f(void) |
| 299 | { |
| 300 | /* |
| 301 | * Power on required peripherals |
| 302 | * ARM does not have access by default to PSC0 and PSC1 |
| 303 | * assuming here that the DSP bootloader has set the IOPU |
| 304 | * such that PSC access is available to ARM |
| 305 | */ |
| 306 | if (da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc))) |
| 307 | return 1; |
| 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 312 | int board_init(void) |
| 313 | { |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 314 | irq_init(); |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 315 | |
Ben Gardiner | a3f8829 | 2010-10-14 17:26:22 -0400 | [diff] [blame] | 316 | #ifdef CONFIG_NAND_DAVINCI |
| 317 | /* |
| 318 | * NAND CS setup - cycle counts based on da850evm NAND timings in the |
| 319 | * Linux kernel @ 25MHz EMIFA |
| 320 | */ |
Lad, Prabhakar | de94b80 | 2012-06-24 21:35:21 +0000 | [diff] [blame] | 321 | writel((DAVINCI_ABCR_WSETUP(2) | |
| 322 | DAVINCI_ABCR_WSTROBE(2) | |
| 323 | DAVINCI_ABCR_WHOLD(1) | |
| 324 | DAVINCI_ABCR_RSETUP(1) | |
| 325 | DAVINCI_ABCR_RSTROBE(4) | |
Ben Gardiner | a3f8829 | 2010-10-14 17:26:22 -0400 | [diff] [blame] | 326 | DAVINCI_ABCR_RHOLD(0) | |
Ben Gardiner | 24a514c | 2011-04-20 16:25:06 -0400 | [diff] [blame] | 327 | DAVINCI_ABCR_TA(1) | |
Ben Gardiner | a3f8829 | 2010-10-14 17:26:22 -0400 | [diff] [blame] | 328 | DAVINCI_ABCR_ASIZE_8BIT), |
| 329 | &davinci_emif_regs->ab2cr); /* CS3 */ |
| 330 | #endif |
| 331 | |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 332 | /* arch number of the board */ |
| 333 | gd->bd->bi_arch_number = MACH_TYPE_DAVINCI_DA850_EVM; |
| 334 | |
| 335 | /* address of boot parameters */ |
| 336 | gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR; |
| 337 | |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 338 | /* setup the SUSPSRC for ARM to control emulation suspend */ |
| 339 | writel(readl(&davinci_syscfg_regs->suspsrc) & |
| 340 | ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C | |
| 341 | DAVINCI_SYSCFG_SUSPSRC_SPI1 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 | |
| 342 | DAVINCI_SYSCFG_SUSPSRC_UART2), |
| 343 | &davinci_syscfg_regs->suspsrc); |
| 344 | |
Adam Ford | 7bb33e4 | 2020-06-29 18:49:41 -0500 | [diff] [blame] | 345 | #ifdef CONFIG_MTD_NOR_FLASH |
Nagabhushana Netagunte | 0f3d6b0 | 2011-09-03 22:21:04 -0400 | [diff] [blame] | 346 | /* Set the GPIO direction as output */ |
Christian Riesch | 3864cb2 | 2013-06-14 14:22:36 +0200 | [diff] [blame] | 347 | clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11)); |
Nagabhushana Netagunte | 0f3d6b0 | 2011-09-03 22:21:04 -0400 | [diff] [blame] | 348 | |
| 349 | /* Set the output as low */ |
Christian Riesch | 3864cb2 | 2013-06-14 14:22:36 +0200 | [diff] [blame] | 350 | writel(0x01 << 11, GPIO_BANK0_REG_CLR_ADDR); |
Nagabhushana Netagunte | 0f3d6b0 | 2011-09-03 22:21:04 -0400 | [diff] [blame] | 351 | #endif |
| 352 | |
Masahiro Yamada | 1d2c050 | 2017-01-10 13:32:07 +0900 | [diff] [blame] | 353 | #ifdef CONFIG_MMC_DAVINCI |
Rajashekhara, Sudhakar | 6652c62 | 2012-06-24 21:35:16 +0000 | [diff] [blame] | 354 | /* Set the GPIO direction as output */ |
| 355 | clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11)); |
| 356 | |
| 357 | /* Set the output as high */ |
Christian Riesch | 3864cb2 | 2013-06-14 14:22:36 +0200 | [diff] [blame] | 358 | writel(0x01 << 11, GPIO_BANK0_REG_SET_ADDR); |
Rajashekhara, Sudhakar | 6652c62 | 2012-06-24 21:35:16 +0000 | [diff] [blame] | 359 | #endif |
| 360 | |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 361 | #ifdef CONFIG_DRIVER_TI_EMAC |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 362 | davinci_emac_mii_mode_sel(HAS_RMII); |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 363 | #endif /* CONFIG_DRIVER_TI_EMAC */ |
| 364 | |
Sudhakar Rajashekhara | 89b765c | 2010-06-10 15:18:15 +0530 | [diff] [blame] | 365 | return 0; |
| 366 | } |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 367 | |
| 368 | #ifdef CONFIG_DRIVER_TI_EMAC |
| 369 | |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 370 | #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII |
| 371 | /** |
| 372 | * rmii_hw_init |
| 373 | * |
| 374 | * DA850/OMAP-L138 EVM can interface to a daughter card for |
| 375 | * additional features. This card has an I2C GPIO Expander TCA6416 |
| 376 | * to select the required functions like camera, RMII Ethernet, |
| 377 | * character LCD, video. |
| 378 | * |
| 379 | * Initialization of the expander involves configuring the |
| 380 | * polarity and direction of the ports. P07-P05 are used here. |
| 381 | * These ports are connected to a Mux chip which enables only one |
| 382 | * functionality at a time. |
| 383 | * |
| 384 | * For RMII phy to respond, the MII MDIO clock has to be disabled |
| 385 | * since both the PHY devices have address as zero. The MII MDIO |
| 386 | * clock is controlled via GPIO2[6]. |
| 387 | * |
| 388 | * This code is valid for Beta version of the hardware |
| 389 | */ |
| 390 | int rmii_hw_init(void) |
| 391 | { |
| 392 | const struct pinmux_config gpio_pins[] = { |
| 393 | { pinmux(6), 8, 1 } |
| 394 | }; |
| 395 | u_int8_t buf[2]; |
| 396 | unsigned int temp; |
| 397 | int ret; |
| 398 | |
| 399 | /* PinMux for GPIO */ |
| 400 | if (davinci_configure_pin_mux(gpio_pins, ARRAY_SIZE(gpio_pins)) != 0) |
| 401 | return 1; |
| 402 | |
| 403 | /* I2C Exapnder configuration */ |
| 404 | /* Set polarity to non-inverted */ |
| 405 | buf[0] = 0x0; |
| 406 | buf[1] = 0x0; |
| 407 | ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 4, 1, buf, 2); |
| 408 | if (ret) { |
| 409 | printf("\nExpander @ 0x%02x write FAILED!!!\n", |
| 410 | CONFIG_SYS_I2C_EXPANDER_ADDR); |
| 411 | return ret; |
| 412 | } |
| 413 | |
| 414 | /* Configure P07-P05 as outputs */ |
| 415 | buf[0] = 0x1f; |
| 416 | buf[1] = 0xff; |
| 417 | ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 6, 1, buf, 2); |
| 418 | if (ret) { |
| 419 | printf("\nExpander @ 0x%02x write FAILED!!!\n", |
| 420 | CONFIG_SYS_I2C_EXPANDER_ADDR); |
| 421 | } |
| 422 | |
| 423 | /* For Ethernet RMII selection |
| 424 | * P07(SelA)=0 |
| 425 | * P06(SelB)=1 |
| 426 | * P05(SelC)=1 |
| 427 | */ |
| 428 | if (i2c_read(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) { |
| 429 | printf("\nExpander @ 0x%02x read FAILED!!!\n", |
| 430 | CONFIG_SYS_I2C_EXPANDER_ADDR); |
| 431 | } |
| 432 | |
| 433 | buf[0] &= 0x1f; |
| 434 | buf[0] |= (0 << 7) | (1 << 6) | (1 << 5); |
| 435 | if (i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) { |
| 436 | printf("\nExpander @ 0x%02x write FAILED!!!\n", |
| 437 | CONFIG_SYS_I2C_EXPANDER_ADDR); |
| 438 | } |
| 439 | |
| 440 | /* Set the output as high */ |
| 441 | temp = REG(GPIO_BANK2_REG_SET_ADDR); |
| 442 | temp |= (0x01 << 6); |
| 443 | REG(GPIO_BANK2_REG_SET_ADDR) = temp; |
| 444 | |
| 445 | /* Set the GPIO direction as output */ |
| 446 | temp = REG(GPIO_BANK2_REG_DIR_ADDR); |
| 447 | temp &= ~(0x01 << 6); |
| 448 | REG(GPIO_BANK2_REG_DIR_ADDR) = temp; |
| 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | #endif /* CONFIG_DRIVER_TI_EMAC_USE_RMII */ |
| 453 | |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 454 | /* |
| 455 | * Initializes on-board ethernet controllers. |
| 456 | */ |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 457 | int board_eth_init(struct bd_info *bis) |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 458 | { |
Sudhakar Rajashekhara | d260740 | 2010-11-18 09:59:37 -0500 | [diff] [blame] | 459 | #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII |
| 460 | /* Select RMII fucntion through the expander */ |
| 461 | if (rmii_hw_init()) |
| 462 | printf("RMII hardware init failed!!!\n"); |
| 463 | #endif |
Ben Gardiner | 3d248d3 | 2010-10-14 17:26:29 -0400 | [diff] [blame] | 464 | return 0; |
| 465 | } |
| 466 | #endif /* CONFIG_DRIVER_TI_EMAC */ |