d6d21bae1f42c149430aa9aafbb49fd32682907d
[oweals/u-boot.git] / board / ti / evm / evm.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2004-2011
4  * Texas Instruments, <www.ti.com>
5  *
6  * Author :
7  *      Manikandan Pillai <mani.pillai@ti.com>
8  *
9  * Derived from Beagle Board and 3430 SDP code by
10  *      Richard Woodruff <r-woodruff2@ti.com>
11  *      Syed Mohammed Khasim <khasim@ti.com>
12  */
13 #include <common.h>
14 #include <dm.h>
15 #include <env.h>
16 #include <init.h>
17 #include <net.h>
18 #include <ns16550.h>
19 #include <netdev.h>
20 #include <serial.h>
21 #include <asm/io.h>
22 #include <asm/arch/mem.h>
23 #include <asm/arch/mux.h>
24 #include <asm/arch/sys_proto.h>
25 #include <asm/arch/mmc_host_def.h>
26 #include <asm/gpio.h>
27 #include <i2c.h>
28 #include <twl4030.h>
29 #include <asm/mach-types.h>
30 #include <asm/omap_musb.h>
31 #include <linux/mtd/rawnand.h>
32 #include <linux/usb/ch9.h>
33 #include <linux/usb/gadget.h>
34 #include <linux/usb/musb.h>
35 #include "evm.h"
36
37 #define OMAP3EVM_GPIO_ETH_RST_GEN1 64
38 #define OMAP3EVM_GPIO_ETH_RST_GEN2 7
39
40 DECLARE_GLOBAL_DATA_PTR;
41
42 static u32 omap3_evm_version;
43
44 u32 get_omap3_evm_rev(void)
45 {
46         return omap3_evm_version;
47 }
48
49 static void omap3_evm_get_revision(void)
50 {
51 #if defined(CONFIG_CMD_NET)
52         /*
53          * Board revision can be ascertained only by identifying
54          * the Ethernet chipset.
55          */
56         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        }
72 #else /* !CONFIG_CMD_NET */
73 #if defined(CONFIG_STATIC_BOARD_REV)
74         /* Look for static defintion of the board revision */
75         omap3_evm_version = CONFIG_STATIC_BOARD_REV;
76 #else
77         /* Fallback to the default above */
78         omap3_evm_version = OMAP3EVM_BOARD_GEN_2;
79 #endif /* CONFIG_STATIC_BOARD_REV */
80 #endif /* CONFIG_CMD_NET */
81 }
82
83 #if defined(CONFIG_USB_MUSB_GADGET) || defined(CONFIG_USB_MUSB_HOST)
84 /* MUSB port on OMAP3EVM Rev >= E requires extvbus programming. */
85 u8 omap3_evm_need_extvbus(void)
86 {
87         u8 retval = 0;
88
89         if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2)
90                 retval = 1;
91
92         return retval;
93 }
94 #endif /* CONFIG_USB_MUSB_{GADGET,HOST} */
95
96 /*
97  * Routine: board_init
98  * Description: Early hardware init.
99  */
100 int board_init(void)
101 {
102         gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
103         /* board id for Linux */
104         gd->bd->bi_arch_number = MACH_TYPE_OMAP3EVM;
105         /* boot param addr */
106         gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
107
108         return 0;
109 }
110
111 #if defined(CONFIG_SPL_OS_BOOT)
112 int spl_start_uboot(void)
113 {
114         /* break into full u-boot on 'c' */
115         if (serial_tstc() && serial_getc() == 'c')
116                 return 1;
117
118         return 0;
119 }
120 #endif /* CONFIG_SPL_OS_BOOT */
121
122 #if defined(CONFIG_SPL_BUILD)
123 /*
124  * Routine: get_board_mem_timings
125  * Description: If we use SPL then there is no x-loader nor config header
126  * so we have to setup the DDR timings ourself on the first bank.  This
127  * provides the timing values back to the function that configures
128  * the memory.
129  */
130 void get_board_mem_timings(struct board_sdrc_timings *timings)
131 {
132         int pop_mfr, pop_id;
133
134         /*
135          * We need to identify what PoP memory is on the board so that
136          * we know what timings to use.  To map the ID values please see
137          * nand_ids.c
138          */
139         identify_nand_chip(&pop_mfr, &pop_id);
140
141         if (pop_mfr == NAND_MFR_HYNIX && pop_id == 0xbc) {
142                 /* 256MB DDR */
143                 timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
144                 timings->ctrla = HYNIX_V_ACTIMA_200;
145                 timings->ctrlb = HYNIX_V_ACTIMB_200;
146         } else {
147                 /* 128MB DDR */
148                 timings->mcfg = MICRON_V_MCFG_165(128 << 20);
149                 timings->ctrla = MICRON_V_ACTIMA_165;
150                 timings->ctrlb = MICRON_V_ACTIMB_165;
151         }
152         timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
153         timings->mr = MICRON_V_MR_165;
154 }
155 #endif /* CONFIG_SPL_BUILD */
156
157 #if defined(CONFIG_USB_MUSB_OMAP2PLUS)
158 static struct musb_hdrc_config musb_config = {
159         .multipoint     = 1,
160         .dyn_fifo       = 1,
161         .num_eps        = 16,
162         .ram_bits       = 12,
163 };
164
165 static struct omap_musb_board_data musb_board_data = {
166         .interface_type = MUSB_INTERFACE_ULPI,
167 };
168
169 static struct musb_hdrc_platform_data musb_plat = {
170 #if defined(CONFIG_USB_MUSB_HOST)
171         .mode           = MUSB_HOST,
172 #elif defined(CONFIG_USB_MUSB_GADGET)
173         .mode           = MUSB_PERIPHERAL,
174 #else
175 #error "Please define either CONFIG_USB_MUSB_HOST or CONFIG_USB_MUSB_GADGET"
176 #endif /* CONFIG_USB_MUSB_{GADGET,HOST} */
177         .config         = &musb_config,
178         .power          = 100,
179         .platform_ops   = &omap2430_ops,
180         .board_data     = &musb_board_data,
181 };
182 #endif /* CONFIG_USB_MUSB_OMAP2PLUS */
183
184 /*
185  * Routine: misc_init_r
186  * Description: Init ethernet (done here so udelay works)
187  */
188 int misc_init_r(void)
189 {
190         twl4030_power_init();
191
192 #ifdef CONFIG_SYS_I2C_OMAP24XX
193         i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);
194 #endif
195
196 #if defined(CONFIG_CMD_NET)
197         setup_net_chip();
198 #endif
199         omap3_evm_get_revision();
200
201 #if defined(CONFIG_CMD_NET)
202         reset_net_chip();
203 #endif
204         omap_die_id_display();
205
206 #if defined(CONFIG_USB_MUSB_OMAP2PLUS)
207         musb_register(&musb_plat, &musb_board_data, (void *)MUSB_BASE);
208 #endif
209
210 #if defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)
211         omap_die_id_usbethaddr();
212 #endif
213         return 0;
214 }
215
216 /*
217  * Routine: set_muxconf_regs
218  * Description: Setting up the configuration Mux registers specific to the
219  *              hardware. Many pins need to be moved from protect to primary
220  *              mode.
221  */
222 void set_muxconf_regs(void)
223 {
224         MUX_EVM();
225 }
226
227 #if defined(CONFIG_CMD_NET)
228 /*
229  * Routine: setup_net_chip
230  * Description: Setting up the configuration GPMC registers specific to the
231  *              Ethernet hardware.
232  */
233 static void setup_net_chip(void)
234 {
235         struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
236
237         /* Configure GPMC registers */
238         writel(NET_GPMC_CONFIG1, &gpmc_cfg->cs[5].config1);
239         writel(NET_GPMC_CONFIG2, &gpmc_cfg->cs[5].config2);
240         writel(NET_GPMC_CONFIG3, &gpmc_cfg->cs[5].config3);
241         writel(NET_GPMC_CONFIG4, &gpmc_cfg->cs[5].config4);
242         writel(NET_GPMC_CONFIG5, &gpmc_cfg->cs[5].config5);
243         writel(NET_GPMC_CONFIG6, &gpmc_cfg->cs[5].config6);
244         writel(NET_GPMC_CONFIG7, &gpmc_cfg->cs[5].config7);
245
246         /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
247         writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
248         /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
249         writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
250         /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
251         writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
252                 &ctrl_base->gpmc_nadv_ale);
253 }
254
255 /**
256  * Reset the ethernet chip.
257  */
258 static void reset_net_chip(void)
259 {
260         int ret;
261         int rst_gpio;
262
263         if (get_omap3_evm_rev() == OMAP3EVM_BOARD_GEN_1) {
264                 rst_gpio = OMAP3EVM_GPIO_ETH_RST_GEN1;
265         } else {
266                 rst_gpio = OMAP3EVM_GPIO_ETH_RST_GEN2;
267         }
268
269         ret = gpio_request(rst_gpio, "");
270         if (ret < 0) {
271                 printf("Unable to get GPIO %d\n", rst_gpio);
272                 return ;
273         }
274
275         /* Configure as output */
276         gpio_direction_output(rst_gpio, 0);
277
278         /* Send a pulse on the GPIO pin */
279         gpio_set_value(rst_gpio, 1);
280         udelay(1);
281         gpio_set_value(rst_gpio, 0);
282         udelay(1);
283         gpio_set_value(rst_gpio, 1);
284 }
285
286 int board_eth_init(bd_t *bis)
287 {
288 #if defined(CONFIG_SMC911X)
289         env_set("ethaddr", NULL);
290         return smc911x_initialize(0, CONFIG_SMC911X_BASE);
291 #else
292         return 0;
293 #endif
294 }
295 #endif /* CONFIG_CMD_NET */
296
297 #if defined(CONFIG_MMC)
298 int board_mmc_init(bd_t *bis)
299 {
300         return omap_mmc_init(0, 0, 0, -1, -1);
301 }
302
303 void board_mmc_power_init(void)
304 {
305         twl4030_power_mmc_init(0);
306 }
307 #endif /* CONFIG_MMC */
308
309 #if defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET) && !defined(CONFIG_CMD_NET)
310 int board_eth_init(bd_t *bis)
311 {
312         return usb_eth_initialize(bis);
313 }
314 #endif /* CONFIG_USB_ETHER */