blob: 2c5112521be2396c957dd64452b48dfc155a9e7d [file] [log] [blame]
wdenk43d96162003-03-06 00:02:04 +00001/*
2 * (C) Copyright 2002
3 * Robert Schwebel, Pengutronix, r.schwebel@pengutronix.de
4 * Kyle Harris, Nexus Technologies, Inc., kharris@nexus-tech.net
5 * Marius Groeger, Sysgo Real-Time Solutions GmbH, mgroeger@sysgo.de
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -070027#include <netdev.h>
wdenk43d96162003-03-06 00:02:04 +000028#include <asm/arch/pxa-regs.h>
wdenk47cd00f2003-03-06 13:39:27 +000029#include <asm/mach-types.h>
Marek Vasut3ba8bf72010-09-09 09:50:39 +020030#include <asm/io.h>
wdenk43d96162003-03-06 00:02:04 +000031
Wolfgang Denkd87080b2006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
33
wdenk43d96162003-03-06 00:02:04 +000034#ifdef CONFIG_SHOW_BOOT_PROGRESS
35# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
36#else
37# define SHOW_BOOT_PROGRESS(arg)
38#endif
39
wdenk47cd00f2003-03-06 13:39:27 +000040/**
41 * i2c_init_board - reset i2c bus. When the board is powercycled during a
42 * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
43 * The Innokom board has GPIO70 connected to SCLK which can be toggled
44 * until all chips think that their current cycles are finished.
wdenk43d96162003-03-06 00:02:04 +000045 */
wdenkdc7c9a12003-03-26 06:55:25 +000046int i2c_init_board(void)
wdenk47cd00f2003-03-06 13:39:27 +000047{
wdenkdc7c9a12003-03-26 06:55:25 +000048 int i, icr;
wdenk47cd00f2003-03-06 13:39:27 +000049
wdenkdc7c9a12003-03-26 06:55:25 +000050 /* disable I2C controller first, otherwhise it thinks we want to */
51 /* talk to the slave port... */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020052 icr = readl(ICR);
53 writel(readl(ICR) & ~(ICR_SCLE | ICR_IUE), ICR);
wdenk8bde7f72003-06-27 21:31:46 +000054
wdenkdc7c9a12003-03-26 06:55:25 +000055 /* set gpio pin low _before_ we change direction to output */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020056 writel(GPIO_bit(70), GPCR(70));
wdenk8bde7f72003-06-27 21:31:46 +000057
wdenkdc7c9a12003-03-26 06:55:25 +000058 /* now toggle between output=low and high-impedance */
59 for (i = 0; i < 20; i++) {
Marek Vasut3ba8bf72010-09-09 09:50:39 +020060 writel(readl(GPDR(70)) | GPIO_bit(70), GPDR(70)); /* output */
wdenk47cd00f2003-03-06 13:39:27 +000061 udelay(10);
Marek Vasut3ba8bf72010-09-09 09:50:39 +020062 writel(readl(GPDR(70)) & ~GPIO_bit(70), GPDR(70)); /* input */
wdenk47cd00f2003-03-06 13:39:27 +000063 udelay(10);
64 }
wdenkdc7c9a12003-03-26 06:55:25 +000065
Marek Vasut3ba8bf72010-09-09 09:50:39 +020066 writel(icr, ICR);
wdenkdc7c9a12003-03-26 06:55:25 +000067
68 return 0;
wdenk47cd00f2003-03-06 13:39:27 +000069}
70
71
72/**
73 * misc_init_r: - misc initialisation routines
74 */
75
76int misc_init_r(void)
77{
Jean-Christophe PLAGNIOL-VILLARD96455bf2007-10-19 00:07:39 +020078 char *str;
wdenk47cd00f2003-03-06 13:39:27 +000079
80 /* determine if the software update key is pressed during startup */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020081 if (readl(GPLR0) & 0x00000800) {
wdenk47cd00f2003-03-06 13:39:27 +000082 printf("using bootcmd_normal (sw-update button not pressed)\n");
83 str = getenv("bootcmd_normal");
84 } else {
85 printf("using bootcmd_update (sw-update button pressed)\n");
86 str = getenv("bootcmd_update");
87 }
88
89 setenv("bootcmd",str);
90
91 return 0;
92}
wdenk43d96162003-03-06 00:02:04 +000093
94
95/**
96 * board_init: - setup some data structures
97 *
98 * @return: 0 in case of success
99 */
100
101int board_init (void)
102{
wdenk43d96162003-03-06 00:02:04 +0000103 /* memory and cpu-speed are setup before relocation */
104 /* so we do _nothing_ here */
105
wdenk47cd00f2003-03-06 13:39:27 +0000106 gd->bd->bi_arch_number = MACH_TYPE_INNOKOM;
wdenk43d96162003-03-06 00:02:04 +0000107 gd->bd->bi_boot_params = 0xa0000100;
wdenkdc7c9a12003-03-26 06:55:25 +0000108 gd->bd->bi_baudrate = CONFIG_BAUDRATE;
109
wdenk43d96162003-03-06 00:02:04 +0000110 return 0;
111}
112
113
114/**
115 * dram_init: - setup dynamic RAM
116 *
117 * @return: 0 in case of success
118 */
119
120int dram_init (void)
121{
wdenk43d96162003-03-06 00:02:04 +0000122 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
123 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
124
125 return 0;
126}
127
128
129/**
130 * innokom_set_led: - switch LEDs on or off
131 *
132 * @param led: LED to switch (0,1,2)
133 * @param state: switch on (1) or off (0)
134 */
135
136void innokom_set_led(int led, int state)
137{
138 switch(led) {
139/*
140 case 0: if (state==1) {
141 GPCR0 |= CSB226_USER_LED0;
142 } else if (state==0) {
143 GPSR0 |= CSB226_USER_LED0;
144 }
145 break;
146
147 case 1: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000148 GPCR0 |= CSB226_USER_LED1;
149 } else if (state==0) {
150 GPSR0 |= CSB226_USER_LED1;
151 }
152 break;
wdenk43d96162003-03-06 00:02:04 +0000153
154 case 2: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000155 GPCR0 |= CSB226_USER_LED2;
156 } else if (state==0) {
157 GPSR0 |= CSB226_USER_LED2;
158 }
159 break;
wdenk43d96162003-03-06 00:02:04 +0000160*/
161 }
162
163 return;
164}
165
166
167/**
168 * show_boot_progress: - indicate state of the boot process
169 *
170 * @param status: Status number - see README for details.
171 *
172 * The CSB226 does only have 3 LEDs, so we switch them on at the most
173 * important states (1, 5, 15).
174 */
175
176void show_boot_progress (int status)
177{
178 switch(status) {
179/*
180 case 1: csb226_set_led(0,1); break;
181 case 5: csb226_set_led(1,1); break;
182 case 15: csb226_set_led(2,1); break;
183*/
184 }
185
186 return;
187}
Ben Warren7194ab82009-10-04 22:37:03 -0700188
189#ifdef CONFIG_CMD_NET
190int board_eth_init(bd_t *bis)
191{
192 int rc = 0;
193#ifdef CONFIG_SMC91111
194 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
195#endif
196 return rc;
197}
198#endif