blob: aaf3033b04adf3b686bb493252c0119df00a1361 [file] [log] [blame]
Dirk Behmead9bc8e2009-01-28 21:39:58 +01001/*
2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Manikandan Pillai <mani.pillai@ti.com>
7 *
8 * Derived from Beagle Board and 3430 SDP code by
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30#include <common.h>
Ben Warren736fead2009-07-20 22:01:11 -070031#include <netdev.h>
Dirk Behmead9bc8e2009-01-28 21:39:58 +010032#include <asm/io.h>
33#include <asm/arch/mem.h>
34#include <asm/arch/mux.h>
35#include <asm/arch/sys_proto.h>
36#include <i2c.h>
37#include <asm/mach-types.h>
38#include "evm.h"
39
John Rigby29565322010-12-20 18:27:51 -070040DECLARE_GLOBAL_DATA_PTR;
41
Dirk Behmeb606ef42010-12-18 07:40:28 +010042static u32 omap3_evm_version;
Ajay Kumar Guptab5abf642010-06-10 11:20:49 +053043
Dirk Behmeb606ef42010-12-18 07:40:28 +010044u32 get_omap3_evm_rev(void)
Ajay Kumar Guptab5abf642010-06-10 11:20:49 +053045{
46 return omap3_evm_version;
47}
48
49static void omap3_evm_get_revision(void)
50{
Sanjeev Premi76ee9a22010-11-04 16:02:32 -040051#if defined(CONFIG_CMD_NET)
52 /*
53 * Board revision can be ascertained only by identifying
54 * the Ethernet chipset.
55 */
Ajay Kumar Guptab5abf642010-06-10 11:20:49 +053056 unsigned int smsc_id;
57
58 /* Ethernet PHY ID is stored at ID_REV register */
59 smsc_id = readl(CONFIG_SMC911X_BASE + 0x50) & 0xFFFF0000;
60 printf("Read back SMSC id 0x%x\n", smsc_id);
61
62 switch (smsc_id) {
63 /* SMSC9115 chipset */
64 case 0x01150000:
65 omap3_evm_version = OMAP3EVM_BOARD_GEN_1;
66 break;
67 /* SMSC 9220 chipset */
68 case 0x92200000:
69 default:
70 omap3_evm_version = OMAP3EVM_BOARD_GEN_2;
71 }
Sanjeev Premi76ee9a22010-11-04 16:02:32 -040072#else
73#if defined(CONFIG_STATIC_BOARD_REV)
74 /*
75 * Look for static defintion of the board revision
76 */
77 omap3_evm_version = CONFIG_STATIC_BOARD_REV;
78#else
79 /*
80 * Fallback to the default above.
81 */
82 omap3_evm_version = OMAP3EVM_BOARD_GEN_2;
83#endif
84#endif /* CONFIG_CMD_NET */
Ajay Kumar Guptab5abf642010-06-10 11:20:49 +053085}
86
Sanjeev Premi63f42402010-11-04 16:02:29 -040087#ifdef CONFIG_USB_OMAP3
Tom Rix58911512009-04-01 22:02:20 -050088/*
Ajay Kumar Gupta944a4892010-06-10 11:20:50 +053089 * MUSB port on OMAP3EVM Rev >= E requires extvbus programming.
90 */
91u8 omap3_evm_need_extvbus(void)
92{
93 u8 retval = 0;
94
95 if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2)
96 retval = 1;
97
98 return retval;
99}
Sanjeev Premi63f42402010-11-04 16:02:29 -0400100#endif
Ajay Kumar Gupta944a4892010-06-10 11:20:50 +0530101
102/*
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100103 * Routine: board_init
104 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -0500105 */
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100106int board_init(void)
107{
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100108 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
109 /* board id for Linux */
110 gd->bd->bi_arch_number = MACH_TYPE_OMAP3EVM;
111 /* boot param addr */
112 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
113
114 return 0;
115}
116
Tom Rix58911512009-04-01 22:02:20 -0500117/*
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100118 * Routine: misc_init_r
119 * Description: Init ethernet (done here so udelay works)
Tom Rix58911512009-04-01 22:02:20 -0500120 */
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100121int misc_init_r(void)
122{
123
124#ifdef CONFIG_DRIVER_OMAP34XX_I2C
125 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
126#endif
127
128#if defined(CONFIG_CMD_NET)
129 setup_net_chip();
130#endif
Sanjeev Premi76ee9a22010-11-04 16:02:32 -0400131 omap3_evm_get_revision();
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100132
Dirk Behmee6a6a702009-03-12 19:30:50 +0100133 dieid_num_r();
134
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100135 return 0;
136}
137
Tom Rix58911512009-04-01 22:02:20 -0500138/*
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100139 * Routine: set_muxconf_regs
140 * Description: Setting up the configuration Mux registers specific to the
141 * hardware. Many pins need to be moved from protect to primary
142 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500143 */
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100144void set_muxconf_regs(void)
145{
146 MUX_EVM();
147}
148
Tom Rix58911512009-04-01 22:02:20 -0500149/*
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100150 * Routine: setup_net_chip
151 * Description: Setting up the configuration GPMC registers specific to the
152 * Ethernet hardware.
Tom Rix58911512009-04-01 22:02:20 -0500153 */
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100154static void setup_net_chip(void)
155{
Dirk Behme97a099e2009-08-08 09:30:21 +0200156 struct gpio *gpio3_base = (struct gpio *)OMAP34XX_GPIO3_BASE;
Dirk Behme97a099e2009-08-08 09:30:21 +0200157 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100158
159 /* Configure GPMC registers */
Dirk Behme89411352009-08-08 09:30:22 +0200160 writel(NET_GPMC_CONFIG1, &gpmc_cfg->cs[5].config1);
161 writel(NET_GPMC_CONFIG2, &gpmc_cfg->cs[5].config2);
162 writel(NET_GPMC_CONFIG3, &gpmc_cfg->cs[5].config3);
163 writel(NET_GPMC_CONFIG4, &gpmc_cfg->cs[5].config4);
164 writel(NET_GPMC_CONFIG5, &gpmc_cfg->cs[5].config5);
165 writel(NET_GPMC_CONFIG6, &gpmc_cfg->cs[5].config6);
166 writel(NET_GPMC_CONFIG7, &gpmc_cfg->cs[5].config7);
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100167
168 /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
169 writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
170 /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
171 writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
172 /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
173 writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
174 &ctrl_base->gpmc_nadv_ale);
175
176 /* Make GPIO 64 as output pin */
177 writel(readl(&gpio3_base->oe) & ~(GPIO0), &gpio3_base->oe);
178
179 /* Now send a pulse on the GPIO pin */
180 writel(GPIO0, &gpio3_base->setdataout);
181 udelay(1);
182 writel(GPIO0, &gpio3_base->cleardataout);
183 udelay(1);
184 writel(GPIO0, &gpio3_base->setdataout);
185}
Ben Warren736fead2009-07-20 22:01:11 -0700186
187int board_eth_init(bd_t *bis)
188{
189 int rc = 0;
190#ifdef CONFIG_SMC911X
191 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
192#endif
193 return rc;
194}