]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/colibri_pxa270/colibri_pxa270.c
PXA: Toradex Colibri PXA270 support
[karo-tx-uboot.git] / board / colibri_pxa270 / colibri_pxa270.c
1 /*
2  * Toradex Colibri PXA270 Support
3  *
4  * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  */
21
22 #include <common.h>
23 #include <asm/arch/hardware.h>
24
25 DECLARE_GLOBAL_DATA_PTR;
26
27 /* ------------------------------------------------------------------------- */
28
29 /*
30  * Miscelaneous platform dependent initialisations
31  */
32 extern struct serial_device serial_ffuart_device;
33 extern struct serial_device serial_btuart_device;
34 extern struct serial_device serial_stuart_device;
35
36 struct serial_device *default_serial_console (void)
37 {
38         return &serial_ffuart_device;
39 }
40
41 int board_init (void)
42 {
43         /* memory and cpu-speed are setup before relocation */
44         /* so we do _nothing_ here */
45
46         /* arch number of vpac270 */
47         gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
48
49         /* adress of boot parameters */
50         gd->bd->bi_boot_params = 0xa0000100;
51
52         return 0;
53 }
54
55 int dram_init (void)
56 {
57         gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
58
59         gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
60
61         return 0;
62 }
63
64 #ifdef  CONFIG_CMD_USB
65 int usb_board_init(void)
66 {
67         UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
68                 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE);
69
70         UHCHR |= UHCHR_FSBIR;
71
72         while (UHCHR & UHCHR_FSBIR);
73
74         UHCHR &= ~UHCHR_SSE;
75         UHCHIE = (UHCHIE_UPRIE | UHCHIE_RWIE);
76
77         /* Clear any OTG Pin Hold */
78         if (PSSR & PSSR_OTGPH)
79                 PSSR |= PSSR_OTGPH;
80
81         UHCRHDA &= ~(0x200);
82         UHCRHDA |= 0x100;
83
84         /* Set port power control mask bits, only 3 ports. */
85         UHCRHDB |= (0x7<<17);
86
87         /* enable port 2 */
88         UP2OCR |= UP2OCR_HXOE | UP2OCR_HXS | UP2OCR_DMPDE | UP2OCR_DPPDE;
89
90         return 0;
91 }
92
93 void usb_board_init_fail(void)
94 {
95         return;
96 }
97
98 void usb_board_stop(void)
99 {
100         UHCHR |= UHCHR_FHR;
101         udelay(11);
102         UHCHR &= ~UHCHR_FHR;
103
104         UHCCOMS |= 1;
105         udelay(10);
106
107         CKEN &= ~CKEN10_USBHOST;
108
109         return;
110 }
111 #endif
112
113 #ifdef CONFIG_DRIVER_DM9000
114 int board_eth_init(bd_t *bis)
115 {
116         return dm9000_initialize(bis);
117 }
118 #endif