blob: 37a0d72fe13adb17e30f3ba7d38bfed4fcce9eeb [file] [log] [blame]
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +05301/*
2 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * Based on da830evm.c. Original Copyrights follow:
5 *
6 * Copyright (C) 2009 Nick Thompson, GE Fanuc, Ltd. <nick.thompson@gefanuc.com>
7 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053010 */
11
12#include <common.h>
Alex Kiernan9c215492018-04-01 09:22:38 +000013#include <environment.h>
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053014#include <i2c.h>
Ben Gardiner4b9538a2010-10-14 17:26:29 -040015#include <net.h>
16#include <netdev.h>
Hadli, Manjunathad713212012-02-09 20:22:24 +000017#include <spi.h>
18#include <spi_flash.h>
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053019#include <asm/arch/hardware.h>
Khoronzhuk, Ivan753a00a2014-06-07 04:22:52 +030020#include <asm/ti-common/davinci_nand.h>
Ben Gardiner4b9538a2010-10-14 17:26:29 -040021#include <asm/arch/emac_defs.h>
Christian Rieschb10592f2011-11-28 23:46:18 +000022#include <asm/arch/pinmux_defs.h>
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053023#include <asm/io.h>
Sughosh Ganu80995f92010-11-28 20:21:27 -050024#include <asm/arch/davinci_misc.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090025#include <linux/errno.h>
Nagabhushana Netagunte24d30962011-09-03 22:19:28 -040026#include <hwconfig.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060027#include <asm/mach-types.h>
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053028
Masahiro Yamadab2c88682017-01-10 13:32:07 +090029#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakar16787da2012-06-24 21:35:15 +000030#include <mmc.h>
31#include <asm/arch/sdmmc_defs.h>
32#endif
33
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +053034DECLARE_GLOBAL_DATA_PTR;
35
Ben Gardiner4b9538a2010-10-14 17:26:29 -040036#ifdef CONFIG_DRIVER_TI_EMAC
Sudhakar Rajashekhara5851e122010-11-18 09:59:37 -050037#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
38#define HAS_RMII 1
39#else
40#define HAS_RMII 0
41#endif
42#endif /* CONFIG_DRIVER_TI_EMAC */
Ben Gardinerf522c1b2010-10-14 17:26:19 -040043
Hadli, Manjunathad713212012-02-09 20:22:24 +000044#define CFG_MAC_ADDR_SPI_BUS 0
45#define CFG_MAC_ADDR_SPI_CS 0
46#define CFG_MAC_ADDR_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
47#define CFG_MAC_ADDR_SPI_MODE SPI_MODE_3
48
49#define CFG_MAC_ADDR_OFFSET (flash->size - SZ_64K)
50
51#ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
52static int get_mac_addr(u8 *addr)
53{
54 struct spi_flash *flash;
55 int ret;
56
57 flash = spi_flash_probe(CFG_MAC_ADDR_SPI_BUS, CFG_MAC_ADDR_SPI_CS,
58 CFG_MAC_ADDR_SPI_MAX_HZ, CFG_MAC_ADDR_SPI_MODE);
59 if (!flash) {
60 printf("Error - unable to probe SPI flash.\n");
61 return -1;
62 }
63
Adam Ford5ff6c0a2017-09-17 20:43:46 -050064 ret = spi_flash_read(flash, (CFG_MAC_ADDR_OFFSET) + 1, 7, addr);
Hadli, Manjunathad713212012-02-09 20:22:24 +000065 if (ret) {
66 printf("Error - unable to read MAC address from SPI flash.\n");
67 return -1;
68 }
69
70 return ret;
71}
72#endif
73
Nagabhushana Netagunte24d30962011-09-03 22:19:28 -040074void dsp_lpsc_on(unsigned domain, unsigned int id)
75{
76 dv_reg_p mdstat, mdctl, ptstat, ptcmd;
77 struct davinci_psc_regs *psc_regs;
78
79 psc_regs = davinci_psc0_regs;
80 mdstat = &psc_regs->psc0.mdstat[id];
81 mdctl = &psc_regs->psc0.mdctl[id];
82 ptstat = &psc_regs->ptstat;
83 ptcmd = &psc_regs->ptcmd;
84
85 while (*ptstat & (0x1 << domain))
86 ;
87
88 if ((*mdstat & 0x1f) == 0x03)
89 return; /* Already on and enabled */
90
91 *mdctl |= 0x03;
92
93 *ptcmd = 0x1 << domain;
94
95 while (*ptstat & (0x1 << domain))
96 ;
97 while ((*mdstat & 0x1f) != 0x03)
98 ; /* Probably an overkill... */
99}
100
101static void dspwake(void)
102{
103 unsigned *resetvect = (unsigned *)DAVINCI_L3CBARAM_BASE;
104 u32 val;
105
106 /* if the device is ARM only, return */
107 if ((readl(CHIP_REV_ID_REG) & 0x3f) == 0x10)
108 return;
109
110 if (hwconfig_subarg_cmp_f("dsp", "wake", "no", NULL))
111 return;
112
113 *resetvect++ = 0x1E000; /* DSP Idle */
114 /* clear out the next 10 words as NOP */
115 memset(resetvect, 0, sizeof(unsigned) *10);
116
117 /* setup the DSP reset vector */
118 writel(DAVINCI_L3CBARAM_BASE, HOST1CFG);
119
120 dsp_lpsc_on(1, DAVINCI_LPSC_GEM);
121 val = readl(PSC0_MDCTL + (15 * 4));
122 val |= 0x100;
123 writel(val, (PSC0_MDCTL + (15 * 4)));
124}
125
126int misc_init_r(void)
127{
128 dspwake();
Hadli, Manjunathad713212012-02-09 20:22:24 +0000129
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000130#if defined(CONFIG_MAC_ADDR_IN_SPIFLASH) || defined(CONFIG_MAC_ADDR_IN_EEPROM)
131
Hadli, Manjunathad713212012-02-09 20:22:24 +0000132 uchar env_enetaddr[6];
133 int enetaddr_found;
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000134
Simon Glass399a9ce2017-08-03 12:22:14 -0600135 enetaddr_found = eth_env_get_enetaddr("ethaddr", env_enetaddr);
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000136
Adam Ford48889912017-09-08 17:01:17 -0500137#endif
138
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000139#ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
Hadli, Manjunathad713212012-02-09 20:22:24 +0000140 int spi_mac_read;
141 uchar buff[6];
142
Hadli, Manjunathad713212012-02-09 20:22:24 +0000143 spi_mac_read = get_mac_addr(buff);
Adam Ford5ff6c0a2017-09-17 20:43:46 -0500144 buff[0] = 0;
Hadli, Manjunathad713212012-02-09 20:22:24 +0000145
146 /*
147 * MAC address not present in the environment
148 * try and read the MAC address from SPI flash
149 * and set it.
150 */
151 if (!enetaddr_found) {
152 if (!spi_mac_read) {
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500153 if (is_valid_ethaddr(buff)) {
Simon Glass8551d552017-08-03 12:22:11 -0600154 if (eth_env_set_enetaddr("ethaddr", buff)) {
Hadli, Manjunathad713212012-02-09 20:22:24 +0000155 printf("Warning: Failed to "
156 "set MAC address from SPI flash\n");
157 }
158 } else {
159 printf("Warning: Invalid "
160 "MAC address read from SPI flash\n");
161 }
162 }
163 } else {
164 /*
165 * MAC address present in environment compare it with
166 * the MAC address in SPI flash and warn on mismatch
167 */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500168 if (!spi_mac_read && is_valid_ethaddr(buff) &&
169 memcmp(env_enetaddr, buff, 6))
Hadli, Manjunathad713212012-02-09 20:22:24 +0000170 printf("Warning: MAC address in SPI flash don't match "
171 "with the MAC address in the environment\n");
Andre Przywara75f68292016-11-16 00:50:12 +0000172 printf("Default using MAC address from environment\n");
Hadli, Manjunathad713212012-02-09 20:22:24 +0000173 }
Adam Ford48889912017-09-08 17:01:17 -0500174
175#elif defined(CONFIG_MAC_ADDR_IN_EEPROM)
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000176 uint8_t enetaddr[8];
177 int eeprom_mac_read;
178
179 /* Read Ethernet MAC address from EEPROM */
180 eeprom_mac_read = dvevm_read_mac_address(enetaddr);
181
182 /*
183 * MAC address not present in the environment
184 * try and read the MAC address from EEPROM flash
185 * and set it.
186 */
187 if (!enetaddr_found) {
188 if (eeprom_mac_read)
189 /* Set Ethernet MAC address from EEPROM */
190 davinci_sync_env_enetaddr(enetaddr);
191 } else {
192 /*
193 * MAC address present in environment compare it with
194 * the MAC address in EEPROM and warn on mismatch
195 */
196 if (eeprom_mac_read && memcmp(enetaddr, env_enetaddr, 6))
197 printf("Warning: MAC address in EEPROM don't match "
198 "with the MAC address in the environment\n");
Andre Przywara75f68292016-11-16 00:50:12 +0000199 printf("Default using MAC address from environment\n");
Hadli, Manjunathe7bcd8a2012-02-09 20:22:25 +0000200 }
201
Hadli, Manjunathad713212012-02-09 20:22:24 +0000202#endif
Nagabhushana Netagunte24d30962011-09-03 22:19:28 -0400203 return 0;
204}
Lad, Prabhakar16787da2012-06-24 21:35:15 +0000205
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900206#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakar16787da2012-06-24 21:35:15 +0000207static struct davinci_mmc mmc_sd0 = {
208 .reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE,
209 .host_caps = MMC_MODE_4BIT, /* DA850 supports only 4-bit SD/MMC */
210 .voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
211 .version = MMC_CTLR_VERSION_2,
212};
213
214int board_mmc_init(bd_t *bis)
215{
216 mmc_sd0.input_clk = clk_get(DAVINCI_MMCSD_CLKID);
217
218 /* Add slot-0 to mmc subsystem */
219 return davinci_mmc_init(bis, &mmc_sd0);
220}
221#endif
Nagabhushana Netagunte24d30962011-09-03 22:19:28 -0400222
Christian Rieschb10592f2011-11-28 23:46:18 +0000223static const struct pinmux_config gpio_pins[] = {
224#ifdef CONFIG_USE_NOR
225 /* GP0[11] is required for NOR to work on Rev 3 EVMs */
226 { pinmux(0), 8, 4 }, /* GP0[11] */
227#endif
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900228#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakar16787da2012-06-24 21:35:15 +0000229 /* GP0[11] is required for SD to work on Rev 3 EVMs */
230 { pinmux(0), 8, 4 }, /* GP0[11] */
231#endif
Christian Rieschb10592f2011-11-28 23:46:18 +0000232};
233
Christian Riesch63e341b2011-12-09 09:47:37 +0000234const struct pinmux_resource pinmuxes[] = {
Christian Riesch0db1ffd2011-11-28 23:46:16 +0000235#ifdef CONFIG_DRIVER_TI_EMAC
Christian Rieschb10592f2011-11-28 23:46:18 +0000236 PINMUX_ITEM(emac_pins_mdio),
237#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
238 PINMUX_ITEM(emac_pins_rmii),
239#else
240 PINMUX_ITEM(emac_pins_mii),
241#endif
Christian Riesch0db1ffd2011-11-28 23:46:16 +0000242#endif
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530243#ifdef CONFIG_SPI_FLASH
Christian Rieschb10592f2011-11-28 23:46:18 +0000244 PINMUX_ITEM(spi1_pins_base),
245 PINMUX_ITEM(spi1_pins_scs0),
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530246#endif
Christian Rieschb10592f2011-11-28 23:46:18 +0000247 PINMUX_ITEM(uart2_pins_txrx),
248 PINMUX_ITEM(uart2_pins_rtscts),
249 PINMUX_ITEM(i2c0_pins),
Ben Gardinerf522c1b2010-10-14 17:26:19 -0400250#ifdef CONFIG_NAND_DAVINCI
Christian Rieschb10592f2011-11-28 23:46:18 +0000251 PINMUX_ITEM(emifa_pins_cs3),
252 PINMUX_ITEM(emifa_pins_cs4),
253 PINMUX_ITEM(emifa_pins_nand),
Nagabhushana Netagunte87539bf2011-09-03 22:18:32 -0400254#elif defined(CONFIG_USE_NOR)
Christian Rieschb10592f2011-11-28 23:46:18 +0000255 PINMUX_ITEM(emifa_pins_cs2),
256 PINMUX_ITEM(emifa_pins_nor),
Ben Gardinerf522c1b2010-10-14 17:26:19 -0400257#endif
Christian Rieschb10592f2011-11-28 23:46:18 +0000258 PINMUX_ITEM(gpio_pins),
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900259#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakar16787da2012-06-24 21:35:15 +0000260 PINMUX_ITEM(mmc0_pins),
261#endif
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530262};
263
Christian Riesch63e341b2011-12-09 09:47:37 +0000264const int pinmuxes_size = ARRAY_SIZE(pinmuxes);
265
Sughosh Ganua2616972012-02-02 00:44:41 +0000266const struct lpsc_resource lpsc[] = {
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530267 { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */
268 { DAVINCI_LPSC_SPI1 }, /* Serial Flash */
269 { DAVINCI_LPSC_EMAC }, /* image download */
270 { DAVINCI_LPSC_UART2 }, /* console */
271 { DAVINCI_LPSC_GPIO },
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900272#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakar16787da2012-06-24 21:35:15 +0000273 { DAVINCI_LPSC_MMC_SD },
274#endif
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530275};
276
Sughosh Ganua2616972012-02-02 00:44:41 +0000277const int lpsc_size = ARRAY_SIZE(lpsc);
278
Sekhar Nori6e112202010-11-19 11:39:48 -0500279#ifndef CONFIG_DA850_EVM_MAX_CPU_CLK
280#define CONFIG_DA850_EVM_MAX_CPU_CLK 300000000
281#endif
282
Manjunath Hadliac37fcb2011-10-10 21:06:38 +0000283#define REV_AM18X_EVM 0x100
284
Sekhar Nori6e112202010-11-19 11:39:48 -0500285/*
286 * get_board_rev() - setup to pass kernel board revision information
287 * Returns:
288 * bit[0-3] Maximum cpu clock rate supported by onboard SoC
289 * 0000b - 300 MHz
290 * 0001b - 372 MHz
291 * 0010b - 408 MHz
292 * 0011b - 456 MHz
293 */
294u32 get_board_rev(void)
295{
296 char *s;
297 u32 maxcpuclk = CONFIG_DA850_EVM_MAX_CPU_CLK;
298 u32 rev = 0;
299
Simon Glass64b723f2017-08-03 12:22:12 -0600300 s = env_get("maxcpuclk");
Sekhar Nori6e112202010-11-19 11:39:48 -0500301 if (s)
302 maxcpuclk = simple_strtoul(s, NULL, 10);
303
304 if (maxcpuclk >= 456000000)
305 rev = 3;
306 else if (maxcpuclk >= 408000000)
307 rev = 2;
308 else if (maxcpuclk >= 372000000)
309 rev = 1;
Manjunath Hadliac37fcb2011-10-10 21:06:38 +0000310#ifdef CONFIG_DA850_AM18X_EVM
311 rev |= REV_AM18X_EVM;
312#endif
Sekhar Nori6e112202010-11-19 11:39:48 -0500313 return rev;
314}
315
Christian Riesch79b0c8a2011-10-13 00:52:29 +0000316int board_early_init_f(void)
317{
318 /*
319 * Power on required peripherals
320 * ARM does not have access by default to PSC0 and PSC1
321 * assuming here that the DSP bootloader has set the IOPU
322 * such that PSC access is available to ARM
323 */
324 if (da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc)))
325 return 1;
326
327 return 0;
328}
329
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530330int board_init(void)
331{
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530332 irq_init();
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530333
Ben Gardinercf86d2c2010-10-14 17:26:22 -0400334#ifdef CONFIG_NAND_DAVINCI
335 /*
336 * NAND CS setup - cycle counts based on da850evm NAND timings in the
337 * Linux kernel @ 25MHz EMIFA
338 */
Lad, Prabhakard79255d2012-06-24 21:35:21 +0000339 writel((DAVINCI_ABCR_WSETUP(2) |
340 DAVINCI_ABCR_WSTROBE(2) |
341 DAVINCI_ABCR_WHOLD(1) |
342 DAVINCI_ABCR_RSETUP(1) |
343 DAVINCI_ABCR_RSTROBE(4) |
Ben Gardinercf86d2c2010-10-14 17:26:22 -0400344 DAVINCI_ABCR_RHOLD(0) |
Ben Gardinerf5583802011-04-20 16:25:06 -0400345 DAVINCI_ABCR_TA(1) |
Ben Gardinercf86d2c2010-10-14 17:26:22 -0400346 DAVINCI_ABCR_ASIZE_8BIT),
347 &davinci_emif_regs->ab2cr); /* CS3 */
348#endif
349
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530350 /* arch number of the board */
351 gd->bd->bi_arch_number = MACH_TYPE_DAVINCI_DA850_EVM;
352
353 /* address of boot parameters */
354 gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
355
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530356 /* setup the SUSPSRC for ARM to control emulation suspend */
357 writel(readl(&davinci_syscfg_regs->suspsrc) &
358 ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C |
359 DAVINCI_SYSCFG_SUSPSRC_SPI1 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 |
360 DAVINCI_SYSCFG_SUSPSRC_UART2),
361 &davinci_syscfg_regs->suspsrc);
362
363 /* configure pinmux settings */
364 if (davinci_configure_pin_mux_items(pinmuxes, ARRAY_SIZE(pinmuxes)))
365 return 1;
366
Nagabhushana Netagunte63e201f2011-09-03 22:21:04 -0400367#ifdef CONFIG_USE_NOR
368 /* Set the GPIO direction as output */
Christian Riesch248b4ce2013-06-14 14:22:36 +0200369 clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11));
Nagabhushana Netagunte63e201f2011-09-03 22:21:04 -0400370
371 /* Set the output as low */
Christian Riesch248b4ce2013-06-14 14:22:36 +0200372 writel(0x01 << 11, GPIO_BANK0_REG_CLR_ADDR);
Nagabhushana Netagunte63e201f2011-09-03 22:21:04 -0400373#endif
374
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900375#ifdef CONFIG_MMC_DAVINCI
Rajashekhara, Sudhakar12ca04b2012-06-24 21:35:16 +0000376 /* Set the GPIO direction as output */
377 clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11));
378
379 /* Set the output as high */
Christian Riesch248b4ce2013-06-14 14:22:36 +0200380 writel(0x01 << 11, GPIO_BANK0_REG_SET_ADDR);
Rajashekhara, Sudhakar12ca04b2012-06-24 21:35:16 +0000381#endif
382
Ben Gardiner4b9538a2010-10-14 17:26:29 -0400383#ifdef CONFIG_DRIVER_TI_EMAC
Stefano Babic6470f732010-11-30 11:32:10 -0500384 davinci_emac_mii_mode_sel(HAS_RMII);
Ben Gardiner4b9538a2010-10-14 17:26:29 -0400385#endif /* CONFIG_DRIVER_TI_EMAC */
386
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530387 /* enable the console UART */
388 writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST |
389 DAVINCI_UART_PWREMU_MGMT_UTRST),
390 &davinci_uart2_ctrl_regs->pwremu_mgmt);
391
392 return 0;
393}
Ben Gardiner4b9538a2010-10-14 17:26:29 -0400394
395#ifdef CONFIG_DRIVER_TI_EMAC
396
Sudhakar Rajashekhara5851e122010-11-18 09:59:37 -0500397#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
398/**
399 * rmii_hw_init
400 *
401 * DA850/OMAP-L138 EVM can interface to a daughter card for
402 * additional features. This card has an I2C GPIO Expander TCA6416
403 * to select the required functions like camera, RMII Ethernet,
404 * character LCD, video.
405 *
406 * Initialization of the expander involves configuring the
407 * polarity and direction of the ports. P07-P05 are used here.
408 * These ports are connected to a Mux chip which enables only one
409 * functionality at a time.
410 *
411 * For RMII phy to respond, the MII MDIO clock has to be disabled
412 * since both the PHY devices have address as zero. The MII MDIO
413 * clock is controlled via GPIO2[6].
414 *
415 * This code is valid for Beta version of the hardware
416 */
417int rmii_hw_init(void)
418{
419 const struct pinmux_config gpio_pins[] = {
420 { pinmux(6), 8, 1 }
421 };
422 u_int8_t buf[2];
423 unsigned int temp;
424 int ret;
425
426 /* PinMux for GPIO */
427 if (davinci_configure_pin_mux(gpio_pins, ARRAY_SIZE(gpio_pins)) != 0)
428 return 1;
429
430 /* I2C Exapnder configuration */
431 /* Set polarity to non-inverted */
432 buf[0] = 0x0;
433 buf[1] = 0x0;
434 ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 4, 1, buf, 2);
435 if (ret) {
436 printf("\nExpander @ 0x%02x write FAILED!!!\n",
437 CONFIG_SYS_I2C_EXPANDER_ADDR);
438 return ret;
439 }
440
441 /* Configure P07-P05 as outputs */
442 buf[0] = 0x1f;
443 buf[1] = 0xff;
444 ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 6, 1, buf, 2);
445 if (ret) {
446 printf("\nExpander @ 0x%02x write FAILED!!!\n",
447 CONFIG_SYS_I2C_EXPANDER_ADDR);
448 }
449
450 /* For Ethernet RMII selection
451 * P07(SelA)=0
452 * P06(SelB)=1
453 * P05(SelC)=1
454 */
455 if (i2c_read(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) {
456 printf("\nExpander @ 0x%02x read FAILED!!!\n",
457 CONFIG_SYS_I2C_EXPANDER_ADDR);
458 }
459
460 buf[0] &= 0x1f;
461 buf[0] |= (0 << 7) | (1 << 6) | (1 << 5);
462 if (i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) {
463 printf("\nExpander @ 0x%02x write FAILED!!!\n",
464 CONFIG_SYS_I2C_EXPANDER_ADDR);
465 }
466
467 /* Set the output as high */
468 temp = REG(GPIO_BANK2_REG_SET_ADDR);
469 temp |= (0x01 << 6);
470 REG(GPIO_BANK2_REG_SET_ADDR) = temp;
471
472 /* Set the GPIO direction as output */
473 temp = REG(GPIO_BANK2_REG_DIR_ADDR);
474 temp &= ~(0x01 << 6);
475 REG(GPIO_BANK2_REG_DIR_ADDR) = temp;
476
477 return 0;
478}
479#endif /* CONFIG_DRIVER_TI_EMAC_USE_RMII */
480
Ben Gardiner4b9538a2010-10-14 17:26:29 -0400481/*
482 * Initializes on-board ethernet controllers.
483 */
484int board_eth_init(bd_t *bis)
485{
Sudhakar Rajashekhara5851e122010-11-18 09:59:37 -0500486#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
487 /* Select RMII fucntion through the expander */
488 if (rmii_hw_init())
489 printf("RMII hardware init failed!!!\n");
490#endif
Ben Gardiner4b9538a2010-10-14 17:26:29 -0400491 if (!davinci_emac_initialize()) {
492 printf("Error: Ethernet init failed!\n");
493 return -1;
494 }
495
496 return 0;
497}
498#endif /* CONFIG_DRIVER_TI_EMAC */