3 * Stefano Babic, DENX Gmbh, sbabic@denx.de
6 * Robert Whaley, Applied Data Systems, Inc. rwhaley@applieddata.net
9 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Marius Groeger <mgroeger@sysgo.de>
15 * See file CREDITS for list of people who contributed to this
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
35 #include <asm/arch/pxa-regs.h>
37 DECLARE_GLOBAL_DATA_PTR;
39 #define RH_A_PSM (1 << 8) /* power switching mode */
40 #define RH_A_NPS (1 << 9) /* no power switching */
42 extern struct serial_device serial_ffuart_device;
43 extern struct serial_device serial_btuart_device;
44 extern struct serial_device serial_stuart_device;
46 /* ------------------------------------------------------------------------- */
49 * Miscelaneous platform dependent initialisations
52 void usb_board_init(void)
54 UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
55 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE);
59 while (UHCHR & UHCHR_FSBIR);
62 UHCHIE = (UHCHIE_UPRIE | UHCHIE_RWIE);
64 /* Clear any OTG Pin Hold */
65 if (PSSR & PSSR_OTGPH)
68 UHCRHDA &= ~(RH_A_NPS);
71 /* Set port power control mask bits, only 3 ports. */
75 void usb_board_init_fail(void)
80 void usb_board_stop(void)
89 CKEN &= ~CKEN10_USBHOST;
91 puts("Called USB STOP\n");
97 /* memory and cpu-speed are setup before relocation */
98 /* so we do _nothing_ here */
100 /* arch number of ConXS Board */
101 gd->bd->bi_arch_number = 776;
103 /* adress of boot parameters */
104 gd->bd->bi_boot_params = 0xa000003c;
109 int board_late_init(void)
111 #if defined(CONFIG_SERIAL_MULTI)
112 char *console=getenv("boot_console");
114 if ((strcmp(console,"serial_btuart") == 0) ||
115 (strcmp(console,"serial_stuart") == 0) ||
116 (strcmp(console,"serial_ffuart") == 0)) {
117 setenv("stdout",console);
118 setenv("stdin", console);
119 setenv("stderr",console);
121 setenv("stdout", "serial");
122 setenv("stdin", "serial");
123 setenv("stderr", "serial");
129 struct serial_device *default_serial_console (void)
131 return &serial_ffuart_device;
136 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
137 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
138 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
139 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
140 gd->bd->bi_dram[2].start = PHYS_SDRAM_3;
141 gd->bd->bi_dram[2].size = PHYS_SDRAM_3_SIZE;
142 gd->bd->bi_dram[3].start = PHYS_SDRAM_4;
143 gd->bd->bi_dram[3].size = PHYS_SDRAM_4_SIZE;