blob: 191fb333e40ff53f9aba9c7c414b16fe2898df4d [file] [log] [blame]
Marek Vasut2e499842010-05-11 04:31:44 +02001/*
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>
Marek Vasutc7e61332010-08-08 15:55:51 +020024#include <netdev.h>
Marek Vasut3ba8bf72010-09-09 09:50:39 +020025#include <asm/io.h>
Marek Vasut2e499842010-05-11 04:31:44 +020026
27DECLARE_GLOBAL_DATA_PTR;
28
29/* ------------------------------------------------------------------------- */
30
31/*
32 * Miscelaneous platform dependent initialisations
33 */
34extern struct serial_device serial_ffuart_device;
35extern struct serial_device serial_btuart_device;
36extern struct serial_device serial_stuart_device;
37
38struct serial_device *default_serial_console (void)
39{
40 return &serial_ffuart_device;
41}
42
43int board_init (void)
44{
Marek Vasutd94bbbe2010-10-20 20:15:11 +020045 /* We have RAM, disable cache */
46 dcache_disable();
47 icache_disable();
Marek Vasut2e499842010-05-11 04:31:44 +020048
49 /* arch number of vpac270 */
50 gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
51
52 /* adress of boot parameters */
53 gd->bd->bi_boot_params = 0xa0000100;
54
55 return 0;
56}
57
Marek Vasutd94bbbe2010-10-20 20:15:11 +020058extern void pxa_dram_init(void);
59int dram_init(void)
60{
61 pxa_dram_init();
62 gd->ram_size = PHYS_SDRAM_1_SIZE;
63 return 0;
64}
65
66void dram_init_banksize(void)
Marek Vasut2e499842010-05-11 04:31:44 +020067{
68 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
Marek Vasut2e499842010-05-11 04:31:44 +020069 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
Marek Vasut2e499842010-05-11 04:31:44 +020070}
71
72#ifdef CONFIG_CMD_USB
73int usb_board_init(void)
74{
Marek Vasut3ba8bf72010-09-09 09:50:39 +020075 writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
76 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
77 UHCHR);
Marek Vasut2e499842010-05-11 04:31:44 +020078
Marek Vasut3ba8bf72010-09-09 09:50:39 +020079 writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
Marek Vasut2e499842010-05-11 04:31:44 +020080
81 while (UHCHR & UHCHR_FSBIR);
82
Marek Vasut3ba8bf72010-09-09 09:50:39 +020083 writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
84 writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
Marek Vasut2e499842010-05-11 04:31:44 +020085
86 /* Clear any OTG Pin Hold */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020087 if (readl(PSSR) & PSSR_OTGPH)
88 writel(readl(PSSR) | PSSR_OTGPH, PSSR);
Marek Vasut2e499842010-05-11 04:31:44 +020089
Marek Vasut3ba8bf72010-09-09 09:50:39 +020090 writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
91 writel(readl(UHCRHDA) | 0x100, UHCRHDA);
Marek Vasut2e499842010-05-11 04:31:44 +020092
93 /* Set port power control mask bits, only 3 ports. */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020094 writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
Marek Vasut2e499842010-05-11 04:31:44 +020095
96 /* enable port 2 */
Marek Vasut3ba8bf72010-09-09 09:50:39 +020097 writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
98 UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
Marek Vasut2e499842010-05-11 04:31:44 +020099
100 return 0;
101}
102
103void usb_board_init_fail(void)
104{
105 return;
106}
107
108void usb_board_stop(void)
109{
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200110 writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
Marek Vasut2e499842010-05-11 04:31:44 +0200111 udelay(11);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200112 writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
Marek Vasut2e499842010-05-11 04:31:44 +0200113
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200114 writel(readl(UHCCOMS) | 1, UHCCOMS);
Marek Vasut2e499842010-05-11 04:31:44 +0200115 udelay(10);
116
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200117 writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
Marek Vasut2e499842010-05-11 04:31:44 +0200118
119 return;
120}
121#endif
122
123#ifdef CONFIG_DRIVER_DM9000
124int board_eth_init(bd_t *bis)
125{
126 return dm9000_initialize(bis);
127}
128#endif