3 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <asm/arch/pxa-regs.h>
31 DECLARE_GLOBAL_DATA_PTR;
33 /* ------------------------------------------------------------------------- */
36 /* local prototypes */
37 void set_led (int led, int color);
38 void error_code_halt (int code);
39 int init_sio (int led, unsigned long base);
40 inline void cradle_outb (unsigned short val, unsigned long base,
42 inline unsigned char cradle_inb (unsigned long base, unsigned long reg);
43 inline void sleep (int i);
46 /**********************************************************/
48 /**********************************************************/
56 /**********************************************************/
57 error_code_halt (int code)
58 /**********************************************************/
69 /**********************************************************/
70 led_code (int code, int color)
71 /**********************************************************/
75 code &= 0xf; /* only 4 leds */
77 for (i = 0; i < 4; i++) {
78 if (code & (1 << i)) {
87 /**********************************************************/
88 set_led (int led, int color)
89 /**********************************************************/
92 unsigned long mask = 0x3 << shift;
94 CRADLE_LED_CLR_REG = mask; /* clear bits */
95 CRADLE_LED_SET_REG = (color << shift); /* set bits */
100 /**********************************************************/
101 cradle_outb (unsigned short val, unsigned long base, unsigned long reg)
102 /**********************************************************/
104 *(volatile unsigned short *) (base + (reg * 2)) = val;
108 /**********************************************************/
109 cradle_inb (unsigned long base, unsigned long reg)
110 /**********************************************************/
114 val = *(volatile unsigned short *) (base + (reg * 2));
119 /**********************************************************/
120 init_sio (int led, unsigned long base)
121 /**********************************************************/
125 set_led (led, YELLOW);
126 val = cradle_inb (base, CRADLE_SIO_INDEX);
127 val = cradle_inb (base, CRADLE_SIO_INDEX);
133 /* map SCC2 to COM1 */
134 cradle_outb (0x01, base, CRADLE_SIO_INDEX);
135 cradle_outb (0x00, base, CRADLE_SIO_DATA);
137 /* enable SCC2 extended regs */
138 cradle_outb (0x40, base, CRADLE_SIO_INDEX);
139 cradle_outb (0xa0, base, CRADLE_SIO_DATA);
141 /* enable SCC2 clock multiplier */
142 cradle_outb (0x51, base, CRADLE_SIO_INDEX);
143 cradle_outb (0x04, base, CRADLE_SIO_DATA);
146 cradle_outb (0x00, base, CRADLE_SIO_INDEX);
147 cradle_outb (0x04, base, CRADLE_SIO_DATA);
149 /* map SCC2 DMA to channel 0 */
150 cradle_outb (0x4f, base, CRADLE_SIO_INDEX);
151 cradle_outb (0x09, base, CRADLE_SIO_DATA);
153 /* read ID from SIO to check operation */
154 cradle_outb (0xe4, base, 0x3f8 + 0x3);
155 val = cradle_inb (base, 0x3f8 + 0x0);
156 if ((val & 0xf0) != 0x20) {
159 cradle_outb (0, base, CRADLE_SIO_INDEX);
160 cradle_outb (0, base, CRADLE_SIO_DATA);
163 /* set back to bank 0 */
164 cradle_outb (0, base, 0x3f8 + 0x3);
165 set_led (led, GREEN);
170 * Miscelaneous platform dependent initialisations
174 /**********************************************************/
175 board_late_init (void)
176 /**********************************************************/
182 /**********************************************************/
184 /**********************************************************/
186 led_code (0xf, YELLOW);
188 /* arch number of HHP Cradle */
189 gd->bd->bi_arch_number = MACH_TYPE_HHP_CRADLE;
191 /* adress of boot parameters */
192 gd->bd->bi_boot_params = 0xa0000100;
194 /* Init SIOs to enable SCC2 */
195 udelay (100000); /* delay makes it look neat */
196 init_sio (0, CRADLE_SIO1_PHYS);
198 init_sio (1, CRADLE_SIO2_PHYS);
200 init_sio (2, CRADLE_SIO3_PHYS);
208 /**********************************************************/
210 /**********************************************************/
212 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
213 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
214 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
215 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
216 gd->bd->bi_dram[2].start = PHYS_SDRAM_3;
217 gd->bd->bi_dram[2].size = PHYS_SDRAM_3_SIZE;
218 gd->bd->bi_dram[3].start = PHYS_SDRAM_4;
219 gd->bd->bi_dram[3].size = PHYS_SDRAM_4_SIZE;
221 return (PHYS_SDRAM_1_SIZE +