blob: d72e5d6b5a09d68c715fa5b35c031ddf7974360e [file] [log] [blame]
Marek Vasut163551a2010-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 Vasute326a232011-11-26 07:15:36 +010024#include <asm/arch/regs-mmc.h>
Marek Vasut71d058b2011-11-26 11:17:32 +010025#include <asm/arch/pxa.h>
Marek Vasutce2f0902010-08-08 15:55:51 +020026#include <netdev.h>
Marek Vasut2db1e962010-09-09 09:50:39 +020027#include <asm/io.h>
Marek Vasute326a232011-11-26 07:15:36 +010028#include <serial.h>
Marek Vasut163551a2010-05-11 04:31:44 +020029
30DECLARE_GLOBAL_DATA_PTR;
31
Marek Vasute326a232011-11-26 07:15:36 +010032struct serial_device *default_serial_console(void)
Marek Vasut163551a2010-05-11 04:31:44 +020033{
34 return &serial_ffuart_device;
35}
36
Marek Vasute326a232011-11-26 07:15:36 +010037int board_init(void)
Marek Vasut163551a2010-05-11 04:31:44 +020038{
Marek Vasut20212992010-10-20 20:15:11 +020039 /* We have RAM, disable cache */
40 dcache_disable();
41 icache_disable();
Marek Vasut163551a2010-05-11 04:31:44 +020042
43 /* arch number of vpac270 */
44 gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
45
46 /* adress of boot parameters */
47 gd->bd->bi_boot_params = 0xa0000100;
48
49 return 0;
50}
51
Marek Vasut20212992010-10-20 20:15:11 +020052int dram_init(void)
Marek Vasut163551a2010-05-11 04:31:44 +020053{
Marek Vasut08341be2011-11-26 11:18:57 +010054 pxa2xx_dram_init();
Marek Vasut20212992010-10-20 20:15:11 +020055 gd->ram_size = PHYS_SDRAM_1_SIZE;
56 return 0;
57}
Marek Vasut163551a2010-05-11 04:31:44 +020058
Marek Vasut163551a2010-05-11 04:31:44 +020059#ifdef CONFIG_CMD_USB
60int usb_board_init(void)
61{
Marek Vasut2db1e962010-09-09 09:50:39 +020062 writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
63 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
64 UHCHR);
Marek Vasut163551a2010-05-11 04:31:44 +020065
Marek Vasut2db1e962010-09-09 09:50:39 +020066 writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
Marek Vasut163551a2010-05-11 04:31:44 +020067
Marek Vasute326a232011-11-26 07:15:36 +010068 while (UHCHR & UHCHR_FSBIR)
69 ;
Marek Vasut163551a2010-05-11 04:31:44 +020070
Marek Vasut2db1e962010-09-09 09:50:39 +020071 writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
72 writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
Marek Vasut163551a2010-05-11 04:31:44 +020073
74 /* Clear any OTG Pin Hold */
Marek Vasut2db1e962010-09-09 09:50:39 +020075 if (readl(PSSR) & PSSR_OTGPH)
76 writel(readl(PSSR) | PSSR_OTGPH, PSSR);
Marek Vasut163551a2010-05-11 04:31:44 +020077
Marek Vasut2db1e962010-09-09 09:50:39 +020078 writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
79 writel(readl(UHCRHDA) | 0x100, UHCRHDA);
Marek Vasut163551a2010-05-11 04:31:44 +020080
81 /* Set port power control mask bits, only 3 ports. */
Marek Vasut2db1e962010-09-09 09:50:39 +020082 writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
Marek Vasut163551a2010-05-11 04:31:44 +020083
84 /* enable port 2 */
Marek Vasut2db1e962010-09-09 09:50:39 +020085 writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
86 UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
Marek Vasut163551a2010-05-11 04:31:44 +020087
88 return 0;
89}
90
91void usb_board_init_fail(void)
92{
93 return;
94}
95
96void usb_board_stop(void)
97{
Marek Vasut2db1e962010-09-09 09:50:39 +020098 writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
Marek Vasut163551a2010-05-11 04:31:44 +020099 udelay(11);
Marek Vasut2db1e962010-09-09 09:50:39 +0200100 writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
Marek Vasut163551a2010-05-11 04:31:44 +0200101
Marek Vasut2db1e962010-09-09 09:50:39 +0200102 writel(readl(UHCCOMS) | 1, UHCCOMS);
Marek Vasut163551a2010-05-11 04:31:44 +0200103 udelay(10);
104
Marek Vasut2db1e962010-09-09 09:50:39 +0200105 writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
Marek Vasut163551a2010-05-11 04:31:44 +0200106
107 return;
108}
109#endif
110
111#ifdef CONFIG_DRIVER_DM9000
112int board_eth_init(bd_t *bis)
113{
114 return dm9000_initialize(bis);
115}
116#endif
Marek Vasute326a232011-11-26 07:15:36 +0100117
118#ifdef CONFIG_CMD_MMC
119int board_mmc_init(bd_t *bis)
120{
121 pxa_mmc_register(0);
122 return 0;
123}
124#endif