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