blob: 9e91c5efc143aba4148a1e143cc88359c92e4781 [file] [log] [blame]
wdenk1eaeb582004-06-08 00:22:43 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
8 *
9 * (C) Copyright 2003
10 * Texas Instruments, <www.ti.com>
11 * Kshitij Gupta <Kshitij@ti.com>
12 *
13 * (C) Copyright 2004
14 * Texas Instruments, <www.ti.com>
15 * Rishi Bhattacharya <rishi@ti.com>
16 *
17 * See file CREDITS for list of people who contributed to this
18 * project.
19 *
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License as
22 * published by the Free Software Foundation; either version 2 of
23 * the License, or (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 * MA 02111-1307 USA
34 */
35
36#include <common.h>
Ben Warren1ab70f62009-12-14 16:30:39 -080037#include <netdev.h>
wdenk1eaeb582004-06-08 00:22:43 +000038#if defined(CONFIG_OMAP1610)
39#include <./configs/omap1510.h>
40#endif
41
Wolfgang Denkd87080b2006-03-31 18:32:53 +020042DECLARE_GLOBAL_DATA_PTR;
43
wdenk1eaeb582004-06-08 00:22:43 +000044void flash__init (void);
45void ether__init (void);
46void set_muxconf_regs (void);
47void peripheral_power_enable (void);
48
49#define COMP_MODE_ENABLE ((unsigned int)0x0000EAEF)
50
51static inline void delay (unsigned long loops)
52{
53 __asm__ volatile ("1:\n"
54 "subs %0, %1, #1\n"
55 "bne 1b":"=r" (loops):"0" (loops));
56}
57
58/*
59 * Miscellaneous platform dependent initialisations
60 */
61
62int board_init (void)
63{
wdenk731215e2004-10-10 18:41:04 +000064 gd->bd->bi_arch_number = MACH_TYPE_OMAP_OSK;
wdenk1eaeb582004-06-08 00:22:43 +000065
66 /* adress of boot parameters */
67 gd->bd->bi_boot_params = 0x10000100;
68
69 /* Configure MUX settings */
70 set_muxconf_regs ();
71 peripheral_power_enable ();
72
73/* this speeds up your boot a quite a bit. However to make it
74 * work, you need make sure your kernel startup flush bug is fixed.
75 * ... rkw ...
76 */
77 icache_enable ();
78
79 flash__init ();
80 ether__init ();
81 return 0;
82}
83
wdenk1eaeb582004-06-08 00:22:43 +000084/******************************
85 Routine:
86 Description:
87******************************/
88void flash__init (void)
89{
90#define EMIFS_GlB_Config_REG 0xfffecc0c
91 unsigned int regval;
92 regval = *((volatile unsigned int *) EMIFS_GlB_Config_REG);
93 /* Turn off write protection for flash devices. */
94 regval = regval | 0x0001;
95 *((volatile unsigned int *) EMIFS_GlB_Config_REG) = regval;
96}
97/*************************************************************
98 Routine:ether__init
99 Description: take the Ethernet controller out of reset and wait
100 for the EEPROM load to complete.
101*************************************************************/
102void ether__init (void)
103{
104#define ETH_CONTROL_REG 0x0480000b
105 int i;
106
107 *((volatile unsigned short *) 0xfffece08) = 0x03FF;
108 *((volatile unsigned short *) 0xfffb3824) = 0x8000;
109 *((volatile unsigned short *) 0xfffb3830) = 0x0000;
110 *((volatile unsigned short *) 0xfffb3834) = 0x0009;
111 *((volatile unsigned short *) 0xfffb3838) = 0x0009;
112 *((volatile unsigned short *) 0xfffb3818) = 0x0002;
113 *((volatile unsigned short *) 0xfffb382C) = 0x0048;
114 *((volatile unsigned short *) 0xfffb3824) = 0x8603;
115 udelay (3);
116 for (i=0;i<2000;i++);
117 *((volatile unsigned short *) 0xfffb381C) = 0x6610;
118 udelay (30);
119 for (i=0;i<10000;i++);
120
121 *((volatile unsigned char *) ETH_CONTROL_REG) &= ~0x01;
122 udelay (3);
123
124
125}
126
127/******************************
128 Routine:
129 Description:
130******************************/
Jon Hunterc8b30b82013-04-09 16:41:29 -0500131int dram_init(void)
132{
133 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
134
135 return 0;
136}
137
138void dram_init_banksize(void)
wdenk1eaeb582004-06-08 00:22:43 +0000139{
wdenk1eaeb582004-06-08 00:22:43 +0000140 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
141 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
wdenk1eaeb582004-06-08 00:22:43 +0000142}
143
144/******************************************************
145 Routine: set_muxconf_regs
146 Description: Setting up the configuration Mux registers
147 specific to the hardware
148*******************************************************/
149void set_muxconf_regs (void)
150{
151 volatile unsigned int *MuxConfReg;
152 /* set each registers to its reset value; */
153 MuxConfReg =
154 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_0);
155 /* setup for UART1 */
156 *MuxConfReg &= ~(0x02000000); /* bit 25 */
157 /* setup for UART2 */
158 *MuxConfReg &= ~(0x01000000); /* bit 24 */
159 /* Disable Uwire CS Hi-Z */
160 *MuxConfReg |= 0x08000000;
161 MuxConfReg =
162 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_3);
163 *MuxConfReg = 0x00000000;
164 MuxConfReg =
165 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_4);
166 *MuxConfReg = 0x00000000;
167 MuxConfReg =
168 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_5);
169 *MuxConfReg = 0x00000000;
170 MuxConfReg =
171 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_6);
172 /*setup mux for UART3 */
173 *MuxConfReg |= 0x00000001; /* bit3, 1, 0 (mux0 5,5,26) */
174 *MuxConfReg &= ~0x0000003e;
175 MuxConfReg =
176 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_7);
177 *MuxConfReg = 0x00000000;
178 MuxConfReg =
179 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_8);
180 /* Disable Uwire CS Hi-Z */
181 *MuxConfReg |= 0x00001200; /*bit 9 for CS0 12 for CS3 */
182 MuxConfReg =
183 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_9);
184 /* Need to turn on bits 21 and 12 in FUNC_MUX_CTRL_9 so the */
185 /* hardware will actually use TX and RTS based on bit 25 in */
186 /* FUNC_MUX_CTRL_0. I told you this thing was screwy! */
187 *MuxConfReg |= 0x00201000;
188 MuxConfReg =
189 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_A);
190 *MuxConfReg = 0x00000000;
191 MuxConfReg =
192 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_B);
193 *MuxConfReg = 0x00000000;
194 MuxConfReg =
195 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_C);
196 /* setup for UART2 */
197 /* Need to turn on bits 27 and 24 in FUNC_MUX_CTRL_C so the */
198 /* hardware will actually use TX and RTS based on bit 24 in */
199 /* FUNC_MUX_CTRL_0. */
200 *MuxConfReg |= 0x09000000;
201 MuxConfReg =
202 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_D);
203 *MuxConfReg |= 0x00000020;
204 MuxConfReg =
205 (volatile unsigned int *) ((unsigned int) PULL_DWN_CTRL_0);
206 *MuxConfReg = 0x00000000;
207 MuxConfReg =
208 (volatile unsigned int *) ((unsigned int) PULL_DWN_CTRL_1);
209 *MuxConfReg = 0x00000000;
210 /* mux setup for SD/MMC driver */
211 MuxConfReg =
212 (volatile unsigned int *) ((unsigned int) PULL_DWN_CTRL_2);
213 *MuxConfReg &= 0xFFFE0FFF;
214 MuxConfReg =
215 (volatile unsigned int *) ((unsigned int) PULL_DWN_CTRL_3);
216 *MuxConfReg = 0x00000000;
217 MuxConfReg =
218 (volatile unsigned int *) ((unsigned int) MOD_CONF_CTRL_0);
219 /* bit 13 for MMC2 XOR_CLK */
220 *MuxConfReg &= ~(0x00002000);
221 /* bit 29 for UART 1 */
222 *MuxConfReg &= ~(0x00002000);
223 MuxConfReg =
224 (volatile unsigned int *) ((unsigned int) FUNC_MUX_CTRL_0);
225 /* Configure for USB. Turn on VBUS_CTRL and VBUS_MODE. */
226 *MuxConfReg |= 0x000C0000;
227 MuxConfReg =
228 (volatile unsigned int *) ((unsigned int)USB_TRANSCEIVER_CTRL);
229 *MuxConfReg &= ~(0x00000070);
230 *MuxConfReg &= ~(0x00000008);
231 *MuxConfReg |= 0x00000003;
232 *MuxConfReg |= 0x00000180;
233 MuxConfReg =
234 (volatile unsigned int *) ((unsigned int) MOD_CONF_CTRL_0);
235 /* bit 17, software controls VBUS */
236 *MuxConfReg &= ~(0x00020000);
237 /* Enable USB 48 and 12M clocks */
238 *MuxConfReg |= 0x00000200;
239 *MuxConfReg &= ~(0x00000180);
240 /*2.75V for MMCSDIO1 */
241 MuxConfReg =
242 (volatile unsigned int *) ((unsigned int) VOLTAGE_CTRL_0);
243 *MuxConfReg = 0x00001FE7;
244 MuxConfReg =
245 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_0);
246 *MuxConfReg = 0x00000000;
247 MuxConfReg =
248 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_1);
249 *MuxConfReg = 0x00000000;
250 MuxConfReg =
251 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_2);
252 *MuxConfReg = 0x00000000;
253 MuxConfReg =
254 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_3);
255 *MuxConfReg = 0x00000000;
256 MuxConfReg =
257 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_4);
258 *MuxConfReg = 0x00000000;
259 MuxConfReg =
260 (volatile unsigned int *) ((unsigned int) PULL_DWN_CTRL_4);
261 *MuxConfReg = 0x00000000;
262 /* Turn on UART2 48 MHZ clock */
263 MuxConfReg =
264 (volatile unsigned int *) ((unsigned int) MOD_CONF_CTRL_0);
265 *MuxConfReg |= 0x40000000;
266 MuxConfReg =
267 (volatile unsigned int *) ((unsigned int) USB_OTG_CTRL);
268 /* setup for USB VBus detection OMAP161x */
269 *MuxConfReg |= 0x00040000; /* bit 18 */
270 MuxConfReg =
271 (volatile unsigned int *) ((unsigned int) PU_PD_SEL_2);
272 /* PullUps for SD/MMC driver */
273 *MuxConfReg |= ~(0xFFFE0FFF);
274 MuxConfReg =
275 (volatile unsigned int *) ((unsigned int)COMP_MODE_CTRL_0);
276 *MuxConfReg = COMP_MODE_ENABLE;
277}
278
279/******************************************************
280 Routine: peripheral_power_enable
281 Description: Enable the power for UART1
282*******************************************************/
283void peripheral_power_enable (void)
284{
285#define UART1_48MHZ_ENABLE ((unsigned short)0x0200)
286#define SW_CLOCK_REQUEST ((volatile unsigned short *)0xFFFE0834)
287
288 *SW_CLOCK_REQUEST |= UART1_48MHZ_ENABLE;
289}
Stefan Roese6080a0e2006-05-10 10:55:16 +0200290
291/*
292 * Check Board Identity
293 */
294int checkboard(void)
295{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000296 char buf[64];
297 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roese6080a0e2006-05-10 10:55:16 +0200298
299 puts("Board: OSK5912");
300
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000301 if (i > 0) {
Stefan Roese6080a0e2006-05-10 10:55:16 +0200302 puts(", serial# ");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000303 puts(buf);
Stefan Roese6080a0e2006-05-10 10:55:16 +0200304 }
305 putc('\n');
306
307 return (0);
308}
Ben Warren1ab70f62009-12-14 16:30:39 -0800309
310#ifdef CONFIG_CMD_NET
311int board_eth_init(bd_t *bis)
312{
313 int rc = 0;
314#ifdef CONFIG_LAN91C96
315 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
316#endif
317 return rc;
318}
319#endif