1 // SPDX-License-Identifier: GPL-2.0+
3 * Toradex Colibri PXA270 Support
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>
21 #include <asm/mach-types.h>
22 #include "../common/tdx-common.h"
24 DECLARE_GLOBAL_DATA_PTR;
28 /* We have RAM, disable cache */
32 /* arch number of Toradex Colibri PXA270 */
33 gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
35 /* adress of boot parameters */
36 gd->bd->bi_boot_params = 0xa0000100;
43 puts("Model: Toradex Colibri PXA270\n");
48 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
49 int ft_board_setup(void *blob, bd_t *bd)
51 return ft_common_board_setup(blob, bd);
58 gd->ram_size = PHYS_SDRAM_1_SIZE;
63 int board_usb_init(int index, enum usb_init_type init)
65 writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
66 ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
69 writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
71 while (UHCHR & UHCHR_FSBIR)
74 writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
75 writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
77 /* Clear any OTG Pin Hold */
78 if (readl(PSSR) & PSSR_OTGPH)
79 writel(readl(PSSR) | PSSR_OTGPH, PSSR);
81 writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
82 writel(readl(UHCRHDA) | 0x100, UHCRHDA);
84 /* Set port power control mask bits, only 3 ports. */
85 writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
88 writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
89 UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
94 int board_usb_cleanup(int index, enum usb_init_type init)
99 void usb_board_stop(void)
101 writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
103 writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
105 writel(readl(UHCCOMS) | 1, UHCCOMS);
108 writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
114 #ifdef CONFIG_DRIVER_DM9000
115 int board_eth_init(bd_t *bis)
117 return dm9000_initialize(bis);
121 #ifdef CONFIG_CMD_MMC
122 int board_mmc_init(bd_t *bis)
129 static const struct pxa_serial_platdata serial_platdata = {
130 .base = (struct pxa_uart_regs *)FFUART_BASE,
131 .port = FFUART_INDEX,
132 .baudrate = CONFIG_BAUDRATE,
135 U_BOOT_DEVICE(pxa_serials) = {
136 .name = "serial_pxa",
137 .platdata = &serial_platdata,