2 * Toradex Colibri PXA270 Support
7 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/arch/hardware.h>
12 #include <asm/arch/pxa.h>
13 #include <asm/arch/regs-mmc.h>
14 #include <asm/arch/regs-uart.h>
16 #include <dm/platdata.h>
17 #include <dm/platform_data/serial_pxa.h>
22 DECLARE_GLOBAL_DATA_PTR;
26 /* We have RAM, disable cache */
30 /* arch number of Toradex Colibri PXA270 */
31 gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
33 /* adress of boot parameters */
34 gd->bd->bi_boot_params = 0xa0000100;
41 puts("Model: Toradex Colibri PXA270\n");
49 gd->ram_size = PHYS_SDRAM_1_SIZE;
54 int board_usb_init(int index, enum usb_init_type init)
56 writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
57 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
60 writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
62 while (UHCHR & UHCHR_FSBIR)
65 writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
66 writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
68 /* Clear any OTG Pin Hold */
69 if (readl(PSSR) & PSSR_OTGPH)
70 writel(readl(PSSR) | PSSR_OTGPH, PSSR);
72 writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
73 writel(readl(UHCRHDA) | 0x100, UHCRHDA);
75 /* Set port power control mask bits, only 3 ports. */
76 writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
79 writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
80 UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
85 int board_usb_cleanup(int index, enum usb_init_type init)
90 void usb_board_stop(void)
92 writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
94 writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
96 writel(readl(UHCCOMS) | 1, UHCCOMS);
99 writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
105 #ifdef CONFIG_DRIVER_DM9000
106 int board_eth_init(bd_t *bis)
108 return dm9000_initialize(bis);
112 #ifdef CONFIG_CMD_MMC
113 int board_mmc_init(bd_t *bis)
120 static const struct pxa_serial_platdata serial_platdata = {
121 .base = (struct pxa_uart_regs *)FFUART_BASE,
122 .port = FFUART_INDEX,
123 .baudrate = CONFIG_BAUDRATE,
126 U_BOOT_DEVICE(pxa_serials) = {
127 .name = "serial_pxa",
128 .platdata = &serial_platdata,