blob: e8ec553f99ef124f7be1dd6d32301d8b847a1095 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +05302/*
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 Rajashekhara89b765c2010-06-10 15:18:15 +05309 */
10
11#include <common.h>
Adam Ford8e51c0f2018-06-10 22:25:57 -050012#include <dm.h>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000013#include <environment.h>
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +053014#include <i2c.h>
Ben Gardiner3d248d32010-10-14 17:26:29 -040015#include <net.h>
16#include <netdev.h>
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +000017#include <spi.h>
18#include <spi_flash.h>
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +053019#include <asm/arch/hardware.h>
Khoronzhuk, Ivan3e01ed02014-06-07 04:22:52 +030020#include <asm/ti-common/davinci_nand.h>
Ben Gardiner3d248d32010-10-14 17:26:29 -040021#include <asm/arch/emac_defs.h>
Christian Riesch52b0f872011-11-28 23:46:18 +000022#include <asm/arch/pinmux_defs.h>
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +053023#include <asm/io.h>
Sughosh Ganud7f9b502010-11-28 20:21:27 -050024#include <asm/arch/davinci_misc.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090025#include <linux/errno.h>
Nagabhushana Netaguntecf2c24e2011-09-03 22:19:28 -040026#include <hwconfig.h>
Simon Glassc62db352017-05-31 19:47:48 -060027#include <asm/mach-types.h>
Adam Ford8e51c0f2018-06-10 22:25:57 -050028#include <asm/gpio.h>
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +053029
Masahiro Yamada1d2c0502017-01-10 13:32:07 +090030#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +000031#include <mmc.h>
32#include <asm/arch/sdmmc_defs.h>
33#endif
34
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +053035DECLARE_GLOBAL_DATA_PTR;
36
Ben Gardiner3d248d32010-10-14 17:26:29 -040037#ifdef CONFIG_DRIVER_TI_EMAC
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -050038#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, Manjunath38fed6e2012-02-09 20:22:24 +000045#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
52#ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
53static int get_mac_addr(u8 *addr)
54{
55 struct spi_flash *flash;
56 int ret;
57
58 flash = spi_flash_probe(CFG_MAC_ADDR_SPI_BUS, CFG_MAC_ADDR_SPI_CS,
59 CFG_MAC_ADDR_SPI_MAX_HZ, CFG_MAC_ADDR_SPI_MODE);
60 if (!flash) {
61 printf("Error - unable to probe SPI flash.\n");
62 return -1;
63 }
64
Adam Forda4670f82017-09-17 20:43:46 -050065 ret = spi_flash_read(flash, (CFG_MAC_ADDR_OFFSET) + 1, 7, addr);
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +000066 if (ret) {
67 printf("Error - unable to read MAC address from SPI flash.\n");
68 return -1;
69 }
70
71 return ret;
72}
73#endif
74
Nagabhushana Netaguntecf2c24e2011-09-03 22:19:28 -040075void dsp_lpsc_on(unsigned domain, unsigned int id)
76{
77 dv_reg_p mdstat, mdctl, ptstat, ptcmd;
78 struct davinci_psc_regs *psc_regs;
79
80 psc_regs = davinci_psc0_regs;
81 mdstat = &psc_regs->psc0.mdstat[id];
82 mdctl = &psc_regs->psc0.mdctl[id];
83 ptstat = &psc_regs->ptstat;
84 ptcmd = &psc_regs->ptcmd;
85
86 while (*ptstat & (0x1 << domain))
87 ;
88
89 if ((*mdstat & 0x1f) == 0x03)
90 return; /* Already on and enabled */
91
92 *mdctl |= 0x03;
93
94 *ptcmd = 0x1 << domain;
95
96 while (*ptstat & (0x1 << domain))
97 ;
98 while ((*mdstat & 0x1f) != 0x03)
99 ; /* Probably an overkill... */
100}
101
102static void dspwake(void)
103{
104 unsigned *resetvect = (unsigned *)DAVINCI_L3CBARAM_BASE;
105 u32 val;
106
107 /* if the device is ARM only, return */
108 if ((readl(CHIP_REV_ID_REG) & 0x3f) == 0x10)
109 return;
110
111 if (hwconfig_subarg_cmp_f("dsp", "wake", "no", NULL))
112 return;
113
114 *resetvect++ = 0x1E000; /* DSP Idle */
115 /* clear out the next 10 words as NOP */
116 memset(resetvect, 0, sizeof(unsigned) *10);
117
118 /* setup the DSP reset vector */
119 writel(DAVINCI_L3CBARAM_BASE, HOST1CFG);
120
121 dsp_lpsc_on(1, DAVINCI_LPSC_GEM);
122 val = readl(PSC0_MDCTL + (15 * 4));
123 val |= 0x100;
124 writel(val, (PSC0_MDCTL + (15 * 4)));
125}
126
127int misc_init_r(void)
128{
129 dspwake();
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000130
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000131#if defined(CONFIG_MAC_ADDR_IN_SPIFLASH) || defined(CONFIG_MAC_ADDR_IN_EEPROM)
132
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000133 uchar env_enetaddr[6];
134 int enetaddr_found;
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000135
Simon Glass35affd72017-08-03 12:22:14 -0600136 enetaddr_found = eth_env_get_enetaddr("ethaddr", env_enetaddr);
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000137
Adam Ford919ccb92017-09-08 17:01:17 -0500138#endif
139
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000140#ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000141 int spi_mac_read;
142 uchar buff[6];
143
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000144 spi_mac_read = get_mac_addr(buff);
Adam Forda4670f82017-09-17 20:43:46 -0500145 buff[0] = 0;
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000146
147 /*
148 * MAC address not present in the environment
149 * try and read the MAC address from SPI flash
150 * and set it.
151 */
152 if (!enetaddr_found) {
153 if (!spi_mac_read) {
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500154 if (is_valid_ethaddr(buff)) {
Simon Glassfd1e9592017-08-03 12:22:11 -0600155 if (eth_env_set_enetaddr("ethaddr", buff)) {
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000156 printf("Warning: Failed to "
157 "set MAC address from SPI flash\n");
158 }
159 } else {
160 printf("Warning: Invalid "
161 "MAC address read from SPI flash\n");
162 }
163 }
164 } else {
165 /*
166 * MAC address present in environment compare it with
167 * the MAC address in SPI flash and warn on mismatch
168 */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500169 if (!spi_mac_read && is_valid_ethaddr(buff) &&
170 memcmp(env_enetaddr, buff, 6))
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000171 printf("Warning: MAC address in SPI flash don't match "
172 "with the MAC address in the environment\n");
Andre Przywarabb72b942016-11-16 00:50:12 +0000173 printf("Default using MAC address from environment\n");
Hadli, Manjunath38fed6e2012-02-09 20:22:24 +0000174 }
Adam Ford919ccb92017-09-08 17:01:17 -0500175
176#elif defined(CONFIG_MAC_ADDR_IN_EEPROM)
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000177 uint8_t enetaddr[8];
178 int eeprom_mac_read;
179
180 /* Read Ethernet MAC address from EEPROM */
181 eeprom_mac_read = dvevm_read_mac_address(enetaddr);
182
183 /*
184 * MAC address not present in the environment
185 * try and read the MAC address from EEPROM flash
186 * and set it.
187 */
188 if (!enetaddr_found) {
189 if (eeprom_mac_read)
190 /* Set Ethernet MAC address from EEPROM */
191 davinci_sync_env_enetaddr(enetaddr);
192 } else {
193 /*
194 * MAC address present in environment compare it with
195 * the MAC address in EEPROM and warn on mismatch
196 */
197 if (eeprom_mac_read && memcmp(enetaddr, env_enetaddr, 6))
198 printf("Warning: MAC address in EEPROM don't match "
199 "with the MAC address in the environment\n");
Andre Przywarabb72b942016-11-16 00:50:12 +0000200 printf("Default using MAC address from environment\n");
Hadli, Manjunath206a1032012-02-09 20:22:25 +0000201 }
202
203#endif
Nagabhushana Netaguntecf2c24e2011-09-03 22:19:28 -0400204 return 0;
205}
206
Adam Ford4aeb9392018-08-09 06:15:13 -0500207#ifndef CONFIG_DM_MMC
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900208#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +0000209static struct davinci_mmc mmc_sd0 = {
210 .reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE,
211 .host_caps = MMC_MODE_4BIT, /* DA850 supports only 4-bit SD/MMC */
212 .voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
213 .version = MMC_CTLR_VERSION_2,
214};
215
216int board_mmc_init(bd_t *bis)
217{
218 mmc_sd0.input_clk = clk_get(DAVINCI_MMCSD_CLKID);
219
220 /* Add slot-0 to mmc subsystem */
221 return davinci_mmc_init(bis, &mmc_sd0);
222}
223#endif
Adam Ford4aeb9392018-08-09 06:15:13 -0500224#endif
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +0000225
Christian Riesch52b0f872011-11-28 23:46:18 +0000226static const struct pinmux_config gpio_pins[] = {
227#ifdef CONFIG_USE_NOR
228 /* GP0[11] is required for NOR to work on Rev 3 EVMs */
229 { pinmux(0), 8, 4 }, /* GP0[11] */
230#endif
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900231#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +0000232 /* GP0[11] is required for SD to work on Rev 3 EVMs */
233 { pinmux(0), 8, 4 }, /* GP0[11] */
234#endif
Christian Riesch52b0f872011-11-28 23:46:18 +0000235};
236
Christian Riesch3d2c8e62011-12-09 09:47:37 +0000237const struct pinmux_resource pinmuxes[] = {
Christian Riesch591d8012011-11-28 23:46:16 +0000238#ifdef CONFIG_DRIVER_TI_EMAC
Christian Riesch52b0f872011-11-28 23:46:18 +0000239 PINMUX_ITEM(emac_pins_mdio),
240#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
241 PINMUX_ITEM(emac_pins_rmii),
242#else
243 PINMUX_ITEM(emac_pins_mii),
244#endif
Christian Riesch591d8012011-11-28 23:46:16 +0000245#endif
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530246#ifdef CONFIG_SPI_FLASH
Christian Riesch52b0f872011-11-28 23:46:18 +0000247 PINMUX_ITEM(spi1_pins_base),
248 PINMUX_ITEM(spi1_pins_scs0),
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530249#endif
Christian Riesch52b0f872011-11-28 23:46:18 +0000250 PINMUX_ITEM(uart2_pins_txrx),
251 PINMUX_ITEM(uart2_pins_rtscts),
252 PINMUX_ITEM(i2c0_pins),
Ben Gardiner756d1fe2010-10-14 17:26:19 -0400253#ifdef CONFIG_NAND_DAVINCI
Christian Riesch52b0f872011-11-28 23:46:18 +0000254 PINMUX_ITEM(emifa_pins_cs3),
255 PINMUX_ITEM(emifa_pins_cs4),
256 PINMUX_ITEM(emifa_pins_nand),
Nagabhushana Netagunte1506b0a2011-09-03 22:18:32 -0400257#elif defined(CONFIG_USE_NOR)
Christian Riesch52b0f872011-11-28 23:46:18 +0000258 PINMUX_ITEM(emifa_pins_cs2),
259 PINMUX_ITEM(emifa_pins_nor),
Ben Gardiner756d1fe2010-10-14 17:26:19 -0400260#endif
Christian Riesch52b0f872011-11-28 23:46:18 +0000261 PINMUX_ITEM(gpio_pins),
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900262#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +0000263 PINMUX_ITEM(mmc0_pins),
264#endif
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530265};
266
Christian Riesch3d2c8e62011-12-09 09:47:37 +0000267const int pinmuxes_size = ARRAY_SIZE(pinmuxes);
268
Sughosh Ganu6b873dc2012-02-02 00:44:41 +0000269const struct lpsc_resource lpsc[] = {
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530270 { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */
271 { DAVINCI_LPSC_SPI1 }, /* Serial Flash */
272 { DAVINCI_LPSC_EMAC }, /* image download */
273 { DAVINCI_LPSC_UART2 }, /* console */
274 { DAVINCI_LPSC_GPIO },
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900275#ifdef CONFIG_MMC_DAVINCI
Lad, Prabhakarecc98ec2012-06-24 21:35:15 +0000276 { DAVINCI_LPSC_MMC_SD },
277#endif
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530278};
279
Sughosh Ganu6b873dc2012-02-02 00:44:41 +0000280const int lpsc_size = ARRAY_SIZE(lpsc);
281
Sekhar Nori4f6fc152010-11-19 11:39:48 -0500282#ifndef CONFIG_DA850_EVM_MAX_CPU_CLK
283#define CONFIG_DA850_EVM_MAX_CPU_CLK 300000000
284#endif
285
Manjunath Hadli754f8cb2011-10-10 21:06:38 +0000286#define REV_AM18X_EVM 0x100
287
Sekhar Nori4f6fc152010-11-19 11:39:48 -0500288/*
289 * get_board_rev() - setup to pass kernel board revision information
290 * Returns:
291 * bit[0-3] Maximum cpu clock rate supported by onboard SoC
292 * 0000b - 300 MHz
293 * 0001b - 372 MHz
294 * 0010b - 408 MHz
295 * 0011b - 456 MHz
296 */
297u32 get_board_rev(void)
298{
299 char *s;
300 u32 maxcpuclk = CONFIG_DA850_EVM_MAX_CPU_CLK;
301 u32 rev = 0;
302
Simon Glass00caae62017-08-03 12:22:12 -0600303 s = env_get("maxcpuclk");
Sekhar Nori4f6fc152010-11-19 11:39:48 -0500304 if (s)
305 maxcpuclk = simple_strtoul(s, NULL, 10);
306
307 if (maxcpuclk >= 456000000)
308 rev = 3;
309 else if (maxcpuclk >= 408000000)
310 rev = 2;
311 else if (maxcpuclk >= 372000000)
312 rev = 1;
Manjunath Hadli754f8cb2011-10-10 21:06:38 +0000313#ifdef CONFIG_DA850_AM18X_EVM
314 rev |= REV_AM18X_EVM;
315#endif
Sekhar Nori4f6fc152010-11-19 11:39:48 -0500316 return rev;
317}
318
Christian Rieschae5c77d2011-10-13 00:52:29 +0000319int board_early_init_f(void)
320{
321 /*
322 * Power on required peripherals
323 * ARM does not have access by default to PSC0 and PSC1
324 * assuming here that the DSP bootloader has set the IOPU
325 * such that PSC access is available to ARM
326 */
327 if (da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc)))
328 return 1;
329
330 return 0;
331}
332
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530333int board_init(void)
334{
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530335 irq_init();
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530336
Ben Gardinera3f88292010-10-14 17:26:22 -0400337#ifdef CONFIG_NAND_DAVINCI
338 /*
339 * NAND CS setup - cycle counts based on da850evm NAND timings in the
340 * Linux kernel @ 25MHz EMIFA
341 */
Lad, Prabhakarde94b802012-06-24 21:35:21 +0000342 writel((DAVINCI_ABCR_WSETUP(2) |
343 DAVINCI_ABCR_WSTROBE(2) |
344 DAVINCI_ABCR_WHOLD(1) |
345 DAVINCI_ABCR_RSETUP(1) |
346 DAVINCI_ABCR_RSTROBE(4) |
Ben Gardinera3f88292010-10-14 17:26:22 -0400347 DAVINCI_ABCR_RHOLD(0) |
Ben Gardiner24a514c2011-04-20 16:25:06 -0400348 DAVINCI_ABCR_TA(1) |
Ben Gardinera3f88292010-10-14 17:26:22 -0400349 DAVINCI_ABCR_ASIZE_8BIT),
350 &davinci_emif_regs->ab2cr); /* CS3 */
351#endif
352
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530353 /* arch number of the board */
354 gd->bd->bi_arch_number = MACH_TYPE_DAVINCI_DA850_EVM;
355
356 /* address of boot parameters */
357 gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
358
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530359 /* setup the SUSPSRC for ARM to control emulation suspend */
360 writel(readl(&davinci_syscfg_regs->suspsrc) &
361 ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C |
362 DAVINCI_SYSCFG_SUSPSRC_SPI1 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 |
363 DAVINCI_SYSCFG_SUSPSRC_UART2),
364 &davinci_syscfg_regs->suspsrc);
365
366 /* configure pinmux settings */
367 if (davinci_configure_pin_mux_items(pinmuxes, ARRAY_SIZE(pinmuxes)))
368 return 1;
369
Nagabhushana Netagunte0f3d6b02011-09-03 22:21:04 -0400370#ifdef CONFIG_USE_NOR
371 /* Set the GPIO direction as output */
Christian Riesch3864cb22013-06-14 14:22:36 +0200372 clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11));
Nagabhushana Netagunte0f3d6b02011-09-03 22:21:04 -0400373
374 /* Set the output as low */
Christian Riesch3864cb22013-06-14 14:22:36 +0200375 writel(0x01 << 11, GPIO_BANK0_REG_CLR_ADDR);
Nagabhushana Netagunte0f3d6b02011-09-03 22:21:04 -0400376#endif
377
Masahiro Yamada1d2c0502017-01-10 13:32:07 +0900378#ifdef CONFIG_MMC_DAVINCI
Rajashekhara, Sudhakar6652c622012-06-24 21:35:16 +0000379 /* Set the GPIO direction as output */
380 clrbits_le32((u32 *)GPIO_BANK0_REG_DIR_ADDR, (0x01 << 11));
381
382 /* Set the output as high */
Christian Riesch3864cb22013-06-14 14:22:36 +0200383 writel(0x01 << 11, GPIO_BANK0_REG_SET_ADDR);
Rajashekhara, Sudhakar6652c622012-06-24 21:35:16 +0000384#endif
385
Ben Gardiner3d248d32010-10-14 17:26:29 -0400386#ifdef CONFIG_DRIVER_TI_EMAC
Stefano Babic6d1c6492010-11-30 11:32:10 -0500387 davinci_emac_mii_mode_sel(HAS_RMII);
Ben Gardiner3d248d32010-10-14 17:26:29 -0400388#endif /* CONFIG_DRIVER_TI_EMAC */
389
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530390 /* enable the console UART */
391 writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST |
392 DAVINCI_UART_PWREMU_MGMT_UTRST),
393 &davinci_uart2_ctrl_regs->pwremu_mgmt);
394
395 return 0;
396}
Ben Gardiner3d248d32010-10-14 17:26:29 -0400397
398#ifdef CONFIG_DRIVER_TI_EMAC
399
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500400#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
401/**
402 * rmii_hw_init
403 *
404 * DA850/OMAP-L138 EVM can interface to a daughter card for
405 * additional features. This card has an I2C GPIO Expander TCA6416
406 * to select the required functions like camera, RMII Ethernet,
407 * character LCD, video.
408 *
409 * Initialization of the expander involves configuring the
410 * polarity and direction of the ports. P07-P05 are used here.
411 * These ports are connected to a Mux chip which enables only one
412 * functionality at a time.
413 *
414 * For RMII phy to respond, the MII MDIO clock has to be disabled
415 * since both the PHY devices have address as zero. The MII MDIO
416 * clock is controlled via GPIO2[6].
417 *
418 * This code is valid for Beta version of the hardware
419 */
420int rmii_hw_init(void)
421{
422 const struct pinmux_config gpio_pins[] = {
423 { pinmux(6), 8, 1 }
424 };
425 u_int8_t buf[2];
426 unsigned int temp;
427 int ret;
428
429 /* PinMux for GPIO */
430 if (davinci_configure_pin_mux(gpio_pins, ARRAY_SIZE(gpio_pins)) != 0)
431 return 1;
432
433 /* I2C Exapnder configuration */
434 /* Set polarity to non-inverted */
435 buf[0] = 0x0;
436 buf[1] = 0x0;
437 ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 4, 1, buf, 2);
438 if (ret) {
439 printf("\nExpander @ 0x%02x write FAILED!!!\n",
440 CONFIG_SYS_I2C_EXPANDER_ADDR);
441 return ret;
442 }
443
444 /* Configure P07-P05 as outputs */
445 buf[0] = 0x1f;
446 buf[1] = 0xff;
447 ret = i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 6, 1, buf, 2);
448 if (ret) {
449 printf("\nExpander @ 0x%02x write FAILED!!!\n",
450 CONFIG_SYS_I2C_EXPANDER_ADDR);
451 }
452
453 /* For Ethernet RMII selection
454 * P07(SelA)=0
455 * P06(SelB)=1
456 * P05(SelC)=1
457 */
458 if (i2c_read(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) {
459 printf("\nExpander @ 0x%02x read FAILED!!!\n",
460 CONFIG_SYS_I2C_EXPANDER_ADDR);
461 }
462
463 buf[0] &= 0x1f;
464 buf[0] |= (0 << 7) | (1 << 6) | (1 << 5);
465 if (i2c_write(CONFIG_SYS_I2C_EXPANDER_ADDR, 2, 1, buf, 1)) {
466 printf("\nExpander @ 0x%02x write FAILED!!!\n",
467 CONFIG_SYS_I2C_EXPANDER_ADDR);
468 }
469
470 /* Set the output as high */
471 temp = REG(GPIO_BANK2_REG_SET_ADDR);
472 temp |= (0x01 << 6);
473 REG(GPIO_BANK2_REG_SET_ADDR) = temp;
474
475 /* Set the GPIO direction as output */
476 temp = REG(GPIO_BANK2_REG_DIR_ADDR);
477 temp &= ~(0x01 << 6);
478 REG(GPIO_BANK2_REG_DIR_ADDR) = temp;
479
480 return 0;
481}
482#endif /* CONFIG_DRIVER_TI_EMAC_USE_RMII */
483
Ben Gardiner3d248d32010-10-14 17:26:29 -0400484/*
485 * Initializes on-board ethernet controllers.
486 */
487int board_eth_init(bd_t *bis)
488{
Sudhakar Rajashekharad2607402010-11-18 09:59:37 -0500489#ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
490 /* Select RMII fucntion through the expander */
491 if (rmii_hw_init())
492 printf("RMII hardware init failed!!!\n");
493#endif
Ben Gardiner3d248d32010-10-14 17:26:29 -0400494 if (!davinci_emac_initialize()) {
495 printf("Error: Ethernet init failed!\n");
496 return -1;
497 }
498
499 return 0;
500}
501#endif /* CONFIG_DRIVER_TI_EMAC */