]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/csb226/csb226.c
* Patch by Robert Schwebel, 04 Nov 2002:
[karo-tx-uboot.git] / board / csb226 / csb226.c
1 /*
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>
27 #include <asm/arch/pxa-regs.h>
28
29 #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
34
35 /*
36  * Miscelaneous platform dependent initialisations
37  */
38
39
40 /** 
41  * board_init: - setup some data structures
42  *
43  * @return: 0 in case of success        
44  */
45
46 int board_init (void)
47 {
48         DECLARE_GLOBAL_DATA_PTR;
49
50         /* memory and cpu-speed are setup before relocation */
51         /* so we do _nothing_ here */
52
53         /* arch number of CSB226 board */
54         gd->bd->bi_arch_number = 216;
55
56         /* adress of boot parameters */
57         gd->bd->bi_boot_params = 0xa0000100;
58
59         return 0;
60 }
61
62
63 /** 
64  * dram_init: - setup dynamic RAM
65  *
66  * @return: 0 in case of success
67  */
68
69 int dram_init (void)
70 {
71         DECLARE_GLOBAL_DATA_PTR;
72
73         gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
74         gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
75
76         return 0;
77 }
78
79
80 /** 
81  * csb226_set_led: - switch LEDs on or off
82  *
83  * @param led:   LED to switch (0,1,2)
84  * @param state: switch on (1) or off (0)
85  */
86
87 void csb226_set_led(int led, int state)
88 {
89         switch(led) {
90
91                 case 0: if (state==1) { 
92                                 GPCR0 |= CSB226_USER_LED0; 
93                         } else if (state==0) {
94                                 GPSR0 |= CSB226_USER_LED0;
95                         }
96                         break;
97
98                 case 1: if (state==1) {
99                                 GPCR0 |= CSB226_USER_LED1;
100                         } else if (state==0) {
101                                 GPSR0 |= CSB226_USER_LED1;
102                         }
103                         break;
104
105                 case 2: if (state==1) {
106                                 GPCR0 |= CSB226_USER_LED2;
107                         } else if (state==0) {
108                                 GPSR0 |= CSB226_USER_LED2;
109                         }
110                         break;
111         }
112
113         return;
114 }
115
116
117 /**
118  * show_boot_progress: - indicate state of the boot process
119  *
120  * @param status: Status number - see README for details. 
121  *
122  * The CSB226 does only have 3 LEDs, so we switch them on at the most 
123  * important states (1, 5, 15).  
124  */
125
126 void show_boot_progress (int status)
127 {
128         switch(status) {
129                 case  1: csb226_set_led(0,1); break;
130                 case  5: csb226_set_led(1,1); break;
131                 case 15: csb226_set_led(2,1); break;
132         }
133
134         return;
135 }
136