blob: 11cab005c661b1338be5f80ef099404be8f29deb [file] [log] [blame]
wdenkf2d42942002-10-28 00:05:30 +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>
wdenk384ae022002-11-05 00:17:55 +000027#include <asm/arch/pxa-regs.h>
wdenkf2d42942002-10-28 00:05:30 +000028
wdenk384ae022002-11-05 00:17:55 +000029#ifdef CONFIG_SHOW_BOOT_PROGRESS
30# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
31#else
32# define SHOW_BOOT_PROGRESS(arg)
33#endif
wdenkf2d42942002-10-28 00:05:30 +000034
wdenk47cd00f2003-03-06 13:39:27 +000035/**
36 * misc_init_r: - misc initialisation routines
wdenkf2d42942002-10-28 00:05:30 +000037 */
38
wdenk47cd00f2003-03-06 13:39:27 +000039int misc_init_r(void)
40{
41 uchar *str;
42
43 /* determine if the software update key is pressed during startup */
44#if 0
45 /* not ported yet... */
46 if (GPLR0 & 0x00000800) {
47 printf("using bootcmd_normal (sw-update button not pressed)\n");
48 str = getenv("bootcmd_normal");
49 } else {
50 printf("using bootcmd_update (sw-update button pressed)\n");
51 str = getenv("bootcmd_update");
52 }
53
54 setenv("bootcmd",str);
55#endif
56 return 0;
57}
58
wdenk384ae022002-11-05 00:17:55 +000059
60/**
61 * board_init: - setup some data structures
62 *
63 * @return: 0 in case of success
64 */
65
wdenkf2d42942002-10-28 00:05:30 +000066int board_init (void)
67{
68 DECLARE_GLOBAL_DATA_PTR;
69
70 /* memory and cpu-speed are setup before relocation */
71 /* so we do _nothing_ here */
72
73 /* arch number of CSB226 board */
wdenk24ee89b2002-11-03 17:56:27 +000074 gd->bd->bi_arch_number = 216;
wdenkf2d42942002-10-28 00:05:30 +000075
76 /* adress of boot parameters */
77 gd->bd->bi_boot_params = 0xa0000100;
78
79 return 0;
80}
81
wdenk384ae022002-11-05 00:17:55 +000082
83/**
84 * dram_init: - setup dynamic RAM
85 *
86 * @return: 0 in case of success
87 */
88
wdenkf2d42942002-10-28 00:05:30 +000089int dram_init (void)
90{
91 DECLARE_GLOBAL_DATA_PTR;
92
93 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
94 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
95
96 return 0;
97}
wdenk384ae022002-11-05 00:17:55 +000098
99
100/**
101 * csb226_set_led: - switch LEDs on or off
102 *
103 * @param led: LED to switch (0,1,2)
104 * @param state: switch on (1) or off (0)
105 */
106
107void csb226_set_led(int led, int state)
108{
109 switch(led) {
110
111 case 0: if (state==1) {
112 GPCR0 |= CSB226_USER_LED0;
113 } else if (state==0) {
114 GPSR0 |= CSB226_USER_LED0;
115 }
116 break;
117
118 case 1: if (state==1) {
119 GPCR0 |= CSB226_USER_LED1;
120 } else if (state==0) {
121 GPSR0 |= CSB226_USER_LED1;
122 }
123 break;
124
125 case 2: if (state==1) {
126 GPCR0 |= CSB226_USER_LED2;
127 } else if (state==0) {
128 GPSR0 |= CSB226_USER_LED2;
129 }
130 break;
131 }
132
133 return;
134}
135
136
137/**
138 * show_boot_progress: - indicate state of the boot process
139 *
140 * @param status: Status number - see README for details.
141 *
142 * The CSB226 does only have 3 LEDs, so we switch them on at the most
143 * important states (1, 5, 15).
144 */
145
146void show_boot_progress (int status)
147{
148 switch(status) {
149 case 1: csb226_set_led(0,1); break;
150 case 5: csb226_set_led(1,1); break;
151 case 15: csb226_set_led(2,1); break;
152 }
153
154 return;
155}
156