blob: 3412f10d3fd9b95e18f57105e45b658530c9dafe [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>
wdenk43d96162003-03-06 00:02:04 +000030
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
wdenk43d96162003-03-06 00:02:04 +000033#ifdef CONFIG_SHOW_BOOT_PROGRESS
34# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
35#else
36# define SHOW_BOOT_PROGRESS(arg)
37#endif
38
wdenk47cd00f2003-03-06 13:39:27 +000039/**
40 * i2c_init_board - reset i2c bus. When the board is powercycled during a
41 * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
42 * The Innokom board has GPIO70 connected to SCLK which can be toggled
43 * until all chips think that their current cycles are finished.
wdenk43d96162003-03-06 00:02:04 +000044 */
wdenkdc7c9a12003-03-26 06:55:25 +000045int i2c_init_board(void)
wdenk47cd00f2003-03-06 13:39:27 +000046{
wdenkdc7c9a12003-03-26 06:55:25 +000047 int i, icr;
wdenk47cd00f2003-03-06 13:39:27 +000048
wdenkdc7c9a12003-03-26 06:55:25 +000049 /* disable I2C controller first, otherwhise it thinks we want to */
50 /* talk to the slave port... */
51 icr = ICR; ICR &= ~(ICR_SCLE | ICR_IUE);
wdenk8bde7f72003-06-27 21:31:46 +000052
wdenkdc7c9a12003-03-26 06:55:25 +000053 /* set gpio pin low _before_ we change direction to output */
wdenk3e386912003-04-05 00:53:31 +000054 GPCR(70) = GPIO_bit(70);
wdenk8bde7f72003-06-27 21:31:46 +000055
wdenkdc7c9a12003-03-26 06:55:25 +000056 /* now toggle between output=low and high-impedance */
57 for (i = 0; i < 20; i++) {
58 GPDR(70) |= GPIO_bit(70); /* output */
wdenk47cd00f2003-03-06 13:39:27 +000059 udelay(10);
wdenkdc7c9a12003-03-26 06:55:25 +000060 GPDR(70) &= ~GPIO_bit(70); /* input */
wdenk47cd00f2003-03-06 13:39:27 +000061 udelay(10);
62 }
wdenkdc7c9a12003-03-26 06:55:25 +000063
64 ICR = icr;
65
66 return 0;
wdenk47cd00f2003-03-06 13:39:27 +000067}
68
69
70/**
71 * misc_init_r: - misc initialisation routines
72 */
73
74int misc_init_r(void)
75{
Jean-Christophe PLAGNIOL-VILLARD96455bf2007-10-19 00:07:39 +020076 char *str;
wdenk47cd00f2003-03-06 13:39:27 +000077
78 /* determine if the software update key is pressed during startup */
79 if (GPLR0 & 0x00000800) {
80 printf("using bootcmd_normal (sw-update button not pressed)\n");
81 str = getenv("bootcmd_normal");
82 } else {
83 printf("using bootcmd_update (sw-update button pressed)\n");
84 str = getenv("bootcmd_update");
85 }
86
87 setenv("bootcmd",str);
88
89 return 0;
90}
wdenk43d96162003-03-06 00:02:04 +000091
92
93/**
94 * board_init: - setup some data structures
95 *
96 * @return: 0 in case of success
97 */
98
99int board_init (void)
100{
wdenk43d96162003-03-06 00:02:04 +0000101 /* memory and cpu-speed are setup before relocation */
102 /* so we do _nothing_ here */
103
wdenk47cd00f2003-03-06 13:39:27 +0000104 gd->bd->bi_arch_number = MACH_TYPE_INNOKOM;
wdenk43d96162003-03-06 00:02:04 +0000105 gd->bd->bi_boot_params = 0xa0000100;
wdenkdc7c9a12003-03-26 06:55:25 +0000106 gd->bd->bi_baudrate = CONFIG_BAUDRATE;
107
wdenk43d96162003-03-06 00:02:04 +0000108 return 0;
109}
110
111
112/**
113 * dram_init: - setup dynamic RAM
114 *
115 * @return: 0 in case of success
116 */
117
118int dram_init (void)
119{
wdenk43d96162003-03-06 00:02:04 +0000120 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
121 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
122
123 return 0;
124}
125
126
127/**
128 * innokom_set_led: - switch LEDs on or off
129 *
130 * @param led: LED to switch (0,1,2)
131 * @param state: switch on (1) or off (0)
132 */
133
134void innokom_set_led(int led, int state)
135{
136 switch(led) {
137/*
138 case 0: if (state==1) {
139 GPCR0 |= CSB226_USER_LED0;
140 } else if (state==0) {
141 GPSR0 |= CSB226_USER_LED0;
142 }
143 break;
144
145 case 1: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000146 GPCR0 |= CSB226_USER_LED1;
147 } else if (state==0) {
148 GPSR0 |= CSB226_USER_LED1;
149 }
150 break;
wdenk43d96162003-03-06 00:02:04 +0000151
152 case 2: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000153 GPCR0 |= CSB226_USER_LED2;
154 } else if (state==0) {
155 GPSR0 |= CSB226_USER_LED2;
156 }
157 break;
wdenk43d96162003-03-06 00:02:04 +0000158*/
159 }
160
161 return;
162}
163
164
165/**
166 * show_boot_progress: - indicate state of the boot process
167 *
168 * @param status: Status number - see README for details.
169 *
170 * The CSB226 does only have 3 LEDs, so we switch them on at the most
171 * important states (1, 5, 15).
172 */
173
174void show_boot_progress (int status)
175{
176 switch(status) {
177/*
178 case 1: csb226_set_led(0,1); break;
179 case 5: csb226_set_led(1,1); break;
180 case 15: csb226_set_led(2,1); break;
181*/
182 }
183
184 return;
185}
Ben Warren7194ab82009-10-04 22:37:03 -0700186
187#ifdef CONFIG_CMD_NET
188int board_eth_init(bd_t *bis)
189{
190 int rc = 0;
191#ifdef CONFIG_SMC91111
192 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
193#endif
194 return rc;
195}
196#endif