blob: bf014aefbcd5de8a935025c51f10ab3422ddbb17 [file] [log] [blame]
Sekhar Noribdc9c6c2009-11-12 11:08:39 -05001/*
2 * Copyright (C) 2009 Nick Thompson, GE Fanuc, Ltd. <nick.thompson@gefanuc.com>
3 *
4 * Base on code from TI. Original Notices follow:
5 *
6 * (C) Copyright 2008, Texas Instruments, Inc. http://www.ti.com/
7 *
8 * Modified for DA8xx EVM.
9 *
10 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
11 *
12 * Parts are shamelessly stolen from various TI sources, original copyright
13 * follows:
14 * -----------------------------------------------------------------
15 *
16 * Copyright (C) 2004 Texas Instruments.
17 *
18 * ----------------------------------------------------------------------------
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 * ----------------------------------------------------------------------------
33 */
34
35#include <common.h>
36#include <i2c.h>
Nick Thompson37cffda2010-02-17 20:37:24 -050037#include <net.h>
38#include <netdev.h>
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050039#include <asm/arch/hardware.h>
Nick Thompson3a4e4392010-02-08 11:36:16 -050040#include <asm/arch/emif_defs.h>
Nick Thompson37cffda2010-02-17 20:37:24 -050041#include <asm/arch/emac_defs.h>
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050042#include <asm/io.h>
Manjunath Hadli28375eb2011-10-07 23:38:39 +000043#include <nand.h>
44#include <asm/arch/nand_defs.h>
Sughosh Ganud7f9b502010-11-28 20:21:27 -050045#include <asm/arch/davinci_misc.h>
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050046
Vishwanathrao Badarkhe, Manish03e08d72013-05-22 03:38:48 +000047#ifdef CONFIG_DAVINCI_MMC
48#include <mmc.h>
49#include <asm/arch/sdmmc_defs.h>
50#endif
51
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050052DECLARE_GLOBAL_DATA_PTR;
53
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050054/* SPI0 pin muxer settings */
Nick Thompson63a47df2010-01-27 11:11:28 -050055static const struct pinmux_config spi0_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -040056 { pinmux(7), 1, 3 },
57 { pinmux(7), 1, 4 },
58 { pinmux(7), 1, 5 },
59 { pinmux(7), 1, 6 },
60 { pinmux(7), 1, 7 }
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050061};
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050062
Nick Thompson3a4e4392010-02-08 11:36:16 -050063/* EMIF-A bus pins for 8-bit NAND support on CS3 */
64static const struct pinmux_config emifa_nand_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -040065 { pinmux(13), 1, 6 },
66 { pinmux(13), 1, 7 },
67 { pinmux(14), 1, 0 },
68 { pinmux(14), 1, 1 },
69 { pinmux(14), 1, 2 },
70 { pinmux(14), 1, 3 },
71 { pinmux(14), 1, 4 },
72 { pinmux(14), 1, 5 },
73 { pinmux(15), 1, 7 },
74 { pinmux(16), 1, 0 },
75 { pinmux(18), 1, 1 },
76 { pinmux(18), 1, 4 },
77 { pinmux(18), 1, 5 },
Nick Thompson3a4e4392010-02-08 11:36:16 -050078};
79
Nick Thompson37cffda2010-02-17 20:37:24 -050080/* EMAC PHY interface pins */
81static const struct pinmux_config emac_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -040082 { pinmux(9), 0, 5 },
83 { pinmux(10), 2, 1 },
84 { pinmux(10), 2, 2 },
85 { pinmux(10), 2, 3 },
86 { pinmux(10), 2, 4 },
87 { pinmux(10), 2, 5 },
88 { pinmux(10), 2, 6 },
89 { pinmux(10), 2, 7 },
90 { pinmux(11), 2, 0 },
91 { pinmux(11), 2, 1 },
Nick Thompson37cffda2010-02-17 20:37:24 -050092};
93
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050094/* UART pin muxer settings */
Nick Thompson63a47df2010-01-27 11:11:28 -050095static const struct pinmux_config uart_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -040096 { pinmux(8), 2, 7 },
97 { pinmux(9), 2, 0 }
Sekhar Noribdc9c6c2009-11-12 11:08:39 -050098};
99
100/* I2C pin muxer settings */
Nick Thompson63a47df2010-01-27 11:11:28 -0500101static const struct pinmux_config i2c_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -0400102 { pinmux(8), 2, 3 },
103 { pinmux(8), 2, 4 }
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500104};
105
Manjunath Hadli28375eb2011-10-07 23:38:39 +0000106#ifdef CONFIG_USE_NAND
107/* NAND pin muxer settings */
108const struct pinmux_config aemif_pins[] = {
109 { pinmux(13), 1, 6 },
110 { pinmux(13), 1, 7 },
111 { pinmux(14), 1, 0 },
112 { pinmux(14), 1, 1 },
113 { pinmux(14), 1, 2 },
114 { pinmux(14), 1, 3 },
115 { pinmux(14), 1, 4 },
116 { pinmux(14), 1, 5 },
117 { pinmux(14), 1, 6 },
118 { pinmux(14), 1, 7 },
119 { pinmux(15), 1, 0 },
120 { pinmux(15), 1, 1 },
121 { pinmux(15), 1, 2 },
122 { pinmux(15), 1, 3 },
123 { pinmux(15), 1, 4 },
124 { pinmux(15), 1, 5 },
125 { pinmux(15), 1, 6 },
126 { pinmux(15), 1, 7 },
127 { pinmux(16), 1, 0 },
128 { pinmux(16), 1, 1 },
129 { pinmux(16), 1, 2 },
130 { pinmux(16), 1, 3 },
131 { pinmux(16), 1, 4 },
132 { pinmux(16), 1, 5 },
133 { pinmux(16), 1, 6 },
134 { pinmux(16), 1, 7 },
135 { pinmux(17), 1, 0 },
136 { pinmux(17), 1, 1 },
137 { pinmux(17), 1, 2 },
138 { pinmux(17), 1, 3 },
139 { pinmux(17), 1, 4 },
140 { pinmux(17), 1, 5 },
141 { pinmux(17), 1, 6 },
142 { pinmux(17), 1, 7 },
143 { pinmux(18), 1, 0 },
144 { pinmux(18), 1, 1 },
145 { pinmux(18), 1, 2 },
146 { pinmux(18), 1, 3 },
147 { pinmux(18), 1, 4 },
148 { pinmux(18), 1, 5 },
149 { pinmux(18), 1, 6 },
150 { pinmux(18), 1, 7 },
151 { pinmux(10), 1, 0 }
152};
153#endif
154
155
Ajay Kumar Gupta82a821f2009-12-22 10:56:11 +0530156/* USB0_DRVVBUS pin muxer settings */
Nick Thompson63a47df2010-01-27 11:11:28 -0500157static const struct pinmux_config usb_pins[] = {
Prakash PMb9f34ce2010-07-15 16:08:35 -0400158 { pinmux(9), 1, 1 }
Ajay Kumar Gupta82a821f2009-12-22 10:56:11 +0530159};
160
Vishwanathrao Badarkhe, Manish03e08d72013-05-22 03:38:48 +0000161#ifdef CONFIG_DAVINCI_MMC
162/* MMC0 pin muxer settings */
163const struct pinmux_config mmc0_pins[] = {
164 { pinmux(15), 2, 7 }, /* MMCSD0_CLK */
165 { pinmux(16), 2, 0 }, /* MMCSD0_CMD */
166 { pinmux(13), 2, 6 }, /* MMCSD0_DAT_0 */
167 { pinmux(13), 2, 7 }, /* MMCSD0_DAT_1 */
168 { pinmux(14), 2, 0 }, /* MMCSD0_DAT_2 */
169 { pinmux(14), 2, 1 }, /* MMCSD0_DAT_3 */
170 { pinmux(14), 2, 2 }, /* MMCSD0_DAT_4 */
171 { pinmux(14), 2, 3 }, /* MMCSD0_DAT_5 */
172 { pinmux(14), 2, 4 }, /* MMCSD0_DAT_6 */
173 { pinmux(14), 2, 5 }, /* MMCSD0_DAT_7 */
174 /* DA830 supports 8-bit mode */
175};
176#endif
177
Nick Thompson63a47df2010-01-27 11:11:28 -0500178static const struct pinmux_resource pinmuxes[] = {
179#ifdef CONFIG_SPI_FLASH
180 PINMUX_ITEM(spi0_pins),
181#endif
182 PINMUX_ITEM(uart_pins),
183 PINMUX_ITEM(i2c_pins),
184#ifdef CONFIG_USB_DA8XX
185 PINMUX_ITEM(usb_pins),
186#endif
Nick Thompson3a4e4392010-02-08 11:36:16 -0500187#ifdef CONFIG_USE_NAND
188 PINMUX_ITEM(emifa_nand_pins),
Manjunath Hadli28375eb2011-10-07 23:38:39 +0000189 PINMUX_ITEM(aemif_pins),
Nick Thompson3a4e4392010-02-08 11:36:16 -0500190#endif
Nick Thompson37cffda2010-02-17 20:37:24 -0500191#if defined(CONFIG_DRIVER_TI_EMAC)
192 PINMUX_ITEM(emac_pins),
193#endif
Vishwanathrao Badarkhe, Manish03e08d72013-05-22 03:38:48 +0000194#ifdef CONFIG_DAVINCI_MMC
195 PINMUX_ITEM(mmc0_pins),
196#endif
Nick Thompson63a47df2010-01-27 11:11:28 -0500197};
198
Sudhakar Rajashekhara9d799562010-06-07 12:39:59 +0530199static const struct lpsc_resource lpsc[] = {
200 { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */
201 { DAVINCI_LPSC_SPI0 }, /* Serial Flash */
202 { DAVINCI_LPSC_EMAC }, /* image download */
203 { DAVINCI_LPSC_UART2 }, /* console */
204 { DAVINCI_LPSC_GPIO },
Vishwanathrao Badarkhe, Manish03e08d72013-05-22 03:38:48 +0000205#ifdef CONFIG_DAVINCI_MMC
206 { DAVINCI_LPSC_MMC_SD },
207#endif
208
Sudhakar Rajashekhara9d799562010-06-07 12:39:59 +0530209};
210
Vishwanathrao Badarkhe, Manish03e08d72013-05-22 03:38:48 +0000211#ifdef CONFIG_DAVINCI_MMC
212static struct davinci_mmc mmc_sd0 = {
213 .reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE,
214 .host_caps = MMC_MODE_8BIT,
215 .voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
216 .version = MMC_CTLR_VERSION_2,
217};
218
219int board_mmc_init(bd_t *bis)
220{
221 mmc_sd0.input_clk = clk_get(DAVINCI_MMCSD_CLKID);
222
223 printf("%x\n", mmc_sd0.input_clk);
224
225 /* Add slot-0 to mmc subsystem */
226 return davinci_mmc_init(bis, &mmc_sd0);
227}
228#endif
229
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500230int board_init(void)
231{
232#ifndef CONFIG_USE_IRQ
Sudhakar Rajashekhara9d799562010-06-07 12:39:59 +0530233 irq_init();
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500234#endif
235
Nick Thompson3a4e4392010-02-08 11:36:16 -0500236#ifdef CONFIG_NAND_DAVINCI
237 /* EMIFA 100MHz clock select */
238 writel(readl(&davinci_syscfg_regs->cfgchip3) & ~2,
239 &davinci_syscfg_regs->cfgchip3);
240 /* NAND CS setup */
241 writel((DAVINCI_ABCR_WSETUP(0) |
242 DAVINCI_ABCR_WSTROBE(2) |
243 DAVINCI_ABCR_WHOLD(0) |
244 DAVINCI_ABCR_RSETUP(0) |
245 DAVINCI_ABCR_RSTROBE(2) |
246 DAVINCI_ABCR_RHOLD(0) |
247 DAVINCI_ABCR_TA(2) |
248 DAVINCI_ABCR_ASIZE_8BIT),
Cyril Chemparathycc41a592010-03-17 10:03:10 -0400249 &davinci_emif_regs->ab2cr);
Nick Thompson3a4e4392010-02-08 11:36:16 -0500250#endif
251
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500252 /* arch number of the board */
253 gd->bd->bi_arch_number = MACH_TYPE_DAVINCI_DA830_EVM;
254
255 /* address of boot parameters */
256 gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
257
258 /*
259 * Power on required peripherals
260 * ARM does not have access by default to PSC0 and PSC1
261 * assuming here that the DSP bootloader has set the IOPU
262 * such that PSC access is available to ARM
263 */
Sudhakar Rajashekhara9d799562010-06-07 12:39:59 +0530264 if (da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc)))
265 return 1;
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500266
267 /* setup the SUSPSRC for ARM to control emulation suspend */
268 writel(readl(&davinci_syscfg_regs->suspsrc) &
269 ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C |
270 DAVINCI_SYSCFG_SUSPSRC_SPI0 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 |
271 DAVINCI_SYSCFG_SUSPSRC_UART2),
272 &davinci_syscfg_regs->suspsrc);
273
Nick Thompson63a47df2010-01-27 11:11:28 -0500274 /* configure pinmux settings */
275 if (davinci_configure_pin_mux_items(pinmuxes, ARRAY_SIZE(pinmuxes)))
Ajay Kumar Gupta82a821f2009-12-22 10:56:11 +0530276 return 1;
277
Sekhar Noribdc9c6c2009-11-12 11:08:39 -0500278 /* enable the console UART */
279 writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST |
280 DAVINCI_UART_PWREMU_MGMT_UTRST),
281 &davinci_uart2_ctrl_regs->pwremu_mgmt);
282
283 return(0);
284}
Nick Thompson37cffda2010-02-17 20:37:24 -0500285
Manjunath Hadli28375eb2011-10-07 23:38:39 +0000286
287#ifdef CONFIG_NAND_DAVINCI
288int board_nand_init(struct nand_chip *nand)
289{
290 davinci_nand_init(nand);
291
292 return 0;
293}
294#endif
295
Nick Thompson37cffda2010-02-17 20:37:24 -0500296#if defined(CONFIG_DRIVER_TI_EMAC)
297
298#define PHY_SW_I2C_ADDR 0x5f /* Address of PHY on i2c bus */
299
300/*
301 * Initializes on-board ethernet controllers.
302 */
303int board_eth_init(bd_t *bis)
304{
305 u_int8_t mac_addr[6];
306 u_int8_t switch_start_cmd[2] = { 0x01, 0x23 };
Ben Gardiner7b37a272010-09-23 09:58:43 -0400307 struct eth_device *dev;
Nick Thompson37cffda2010-02-17 20:37:24 -0500308
309 /* Read Ethernet MAC address from EEPROM */
310 if (dvevm_read_mac_address(mac_addr))
311 /* set address env if not already set */
Ben Gardiner7b37a272010-09-23 09:58:43 -0400312 davinci_sync_env_enetaddr(mac_addr);
Nick Thompson37cffda2010-02-17 20:37:24 -0500313
314 /* read the address back from env */
315 if (!eth_getenv_enetaddr("ethaddr", mac_addr))
316 return -1;
317
Nick Thompson37cffda2010-02-17 20:37:24 -0500318 /* enable the Ethernet switch in the 3 port PHY */
319 if (i2c_write(PHY_SW_I2C_ADDR, 0, 0,
320 switch_start_cmd, sizeof(switch_start_cmd))) {
321 printf("Ethernet switch start failed!\n");
322 return -1;
323 }
324
325 /* finally, initialise the driver */
326 if (!davinci_emac_initialize()) {
327 printf("Error: Ethernet init failed!\n");
328 return -1;
329 }
330
Ben Gardiner7b37a272010-09-23 09:58:43 -0400331 dev = eth_get_dev();
332
333 /* provide the resulting addr to the driver */
334 memcpy(dev->enetaddr, mac_addr, 6);
335 dev->write_hwaddr(dev);
336
Nick Thompson37cffda2010-02-17 20:37:24 -0500337 return 0;
338}
339#endif /* CONFIG_DRIVER_TI_EMAC */