blob: 0a6c13dd29b046ff89c46b46d134d6a5966edecb [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>
Ben Warrenb1c0eaa2009-08-25 13:09:37 -070027#include <netdev.h>
wdenk384ae022002-11-05 00:17:55 +000028#include <asm/arch/pxa-regs.h>
wdenkf2d42942002-10-28 00:05:30 +000029
Wolfgang Denkd87080b2006-03-31 18:32:53 +020030DECLARE_GLOBAL_DATA_PTR;
31
wdenk384ae022002-11-05 00:17:55 +000032#ifdef CONFIG_SHOW_BOOT_PROGRESS
33# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
34#else
35# define SHOW_BOOT_PROGRESS(arg)
36#endif
wdenkf2d42942002-10-28 00:05:30 +000037
wdenk8bde7f72003-06-27 21:31:46 +000038/**
wdenk47cd00f2003-03-06 13:39:27 +000039 * misc_init_r: - misc initialisation routines
wdenkf2d42942002-10-28 00:05:30 +000040 */
41
wdenk47cd00f2003-03-06 13:39:27 +000042int misc_init_r(void)
43{
wdenk8bde7f72003-06-27 21:31:46 +000044#if 0
wdenk47cd00f2003-03-06 13:39:27 +000045 uchar *str;
wdenk8bde7f72003-06-27 21:31:46 +000046
wdenk47cd00f2003-03-06 13:39:27 +000047 /* determine if the software update key is pressed during startup */
wdenk47cd00f2003-03-06 13:39:27 +000048 /* not ported yet... */
49 if (GPLR0 & 0x00000800) {
50 printf("using bootcmd_normal (sw-update button not pressed)\n");
51 str = getenv("bootcmd_normal");
52 } else {
53 printf("using bootcmd_update (sw-update button pressed)\n");
54 str = getenv("bootcmd_update");
55 }
56
57 setenv("bootcmd",str);
wdenk8bde7f72003-06-27 21:31:46 +000058#endif
wdenk47cd00f2003-03-06 13:39:27 +000059 return 0;
wdenk8bde7f72003-06-27 21:31:46 +000060}
wdenk47cd00f2003-03-06 13:39:27 +000061
wdenk384ae022002-11-05 00:17:55 +000062
wdenk8bde7f72003-06-27 21:31:46 +000063/**
wdenk384ae022002-11-05 00:17:55 +000064 * board_init: - setup some data structures
65 *
wdenk8bde7f72003-06-27 21:31:46 +000066 * @return: 0 in case of success
wdenk384ae022002-11-05 00:17:55 +000067 */
68
wdenkf2d42942002-10-28 00:05:30 +000069int board_init (void)
70{
wdenkf2d42942002-10-28 00:05:30 +000071 /* memory and cpu-speed are setup before relocation */
72 /* so we do _nothing_ here */
73
74 /* arch number of CSB226 board */
wdenk731215e2004-10-10 18:41:04 +000075 gd->bd->bi_arch_number = MACH_TYPE_CSB226;
wdenkf2d42942002-10-28 00:05:30 +000076
77 /* adress of boot parameters */
78 gd->bd->bi_boot_params = 0xa0000100;
79
80 return 0;
81}
82
wdenk384ae022002-11-05 00:17:55 +000083
wdenk8bde7f72003-06-27 21:31:46 +000084/**
wdenk384ae022002-11-05 00:17:55 +000085 * dram_init: - setup dynamic RAM
86 *
87 * @return: 0 in case of success
88 */
89
wdenkf2d42942002-10-28 00:05:30 +000090int dram_init (void)
91{
wdenkf2d42942002-10-28 00:05:30 +000092 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
93 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
94
95 return 0;
96}
wdenk384ae022002-11-05 00:17:55 +000097
98
wdenk8bde7f72003-06-27 21:31:46 +000099/**
wdenk384ae022002-11-05 00:17:55 +0000100 * csb226_set_led: - switch LEDs on or off
101 *
102 * @param led: LED to switch (0,1,2)
103 * @param state: switch on (1) or off (0)
104 */
105
106void csb226_set_led(int led, int state)
107{
108 switch(led) {
109
wdenk8bde7f72003-06-27 21:31:46 +0000110 case 0: if (state==1) {
111 GPCR0 |= CSB226_USER_LED0;
wdenk384ae022002-11-05 00:17:55 +0000112 } else if (state==0) {
113 GPSR0 |= CSB226_USER_LED0;
114 }
115 break;
116
117 case 1: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000118 GPCR0 |= CSB226_USER_LED1;
119 } else if (state==0) {
120 GPSR0 |= CSB226_USER_LED1;
121 }
122 break;
wdenk384ae022002-11-05 00:17:55 +0000123
124 case 2: if (state==1) {
wdenk8bde7f72003-06-27 21:31:46 +0000125 GPCR0 |= CSB226_USER_LED2;
126 } else if (state==0) {
127 GPSR0 |= CSB226_USER_LED2;
128 }
129 break;
wdenk384ae022002-11-05 00:17:55 +0000130 }
131
132 return;
133}
134
135
136/**
137 * show_boot_progress: - indicate state of the boot process
138 *
wdenk8bde7f72003-06-27 21:31:46 +0000139 * @param status: Status number - see README for details.
wdenk384ae022002-11-05 00:17:55 +0000140 *
wdenk8bde7f72003-06-27 21:31:46 +0000141 * The CSB226 does only have 3 LEDs, so we switch them on at the most
142 * important states (1, 5, 15).
wdenk384ae022002-11-05 00:17:55 +0000143 */
144
145void show_boot_progress (int status)
146{
147 switch(status) {
148 case 1: csb226_set_led(0,1); break;
149 case 5: csb226_set_led(1,1); break;
150 case 15: csb226_set_led(2,1); break;
151 }
152
153 return;
154}
Ben Warrenb1c0eaa2009-08-25 13:09:37 -0700155
156#ifdef CONFIG_CMD_NET
157int board_eth_init(bd_t *bis)
158{
159 int rc = 0;
160#ifdef CONFIG_CS8900
161 rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
162#endif
163 return rc;
164}
165#endif