Merge tag 'efi-2020-10-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi...
[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  * KGDB
13  */
14 #ifdef  CONFIG_CMD_KGDB
15 #define CONFIG_KGDB_BAUDRATE            230400
16 #endif
17
18 /*
19  * OHCI USB
20  */
21 #ifdef  CONFIG_CMD_USB
22 #define CONFIG_USB_OHCI_NEW
23 #define CONFIG_SYS_USB_OHCI_CPU_INIT
24 #define CONFIG_SYS_USB_OHCI_BOARD_INIT
25 #ifdef CONFIG_CPU_PXA27X
26 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      3
27 #else
28 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
29 #endif
30 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x4c000000
31 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "pxa-ohci"
32 #endif
33
34 #endif  /* __CONFIG_PXA_COMMON_H__ */