Merge tag 'u-boot-stm32-20211012' of https://source.denx.de/u-boot/custodians/u-boot-stm
[platform/kernel/u-boot.git] / include / configs / pxa-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Toradex Colibri PXA270 configuration file
4  *
5  * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
6  */
7
8 #ifndef __CONFIG_PXA_COMMON_H__
9 #define __CONFIG_PXA_COMMON_H__
10
11 /*
12  * OHCI USB
13  */
14 #ifdef  CONFIG_CMD_USB
15 #define CONFIG_USB_OHCI_NEW
16 #define CONFIG_SYS_USB_OHCI_CPU_INIT
17 #define CONFIG_SYS_USB_OHCI_BOARD_INIT
18 #ifdef CONFIG_CPU_PXA27X
19 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      3
20 #else
21 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
22 #endif
23 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x4c000000
24 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "pxa-ohci"
25 #endif
26
27 #endif  /* __CONFIG_PXA_COMMON_H__ */