1 /* 2 * (C) Copyright 2014 Chen-Yu Tsai <wens@csie.org> 3 * 4 * Configuration settings for the Allwinner A23 (sun8i) CPU 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef __CONFIG_H 10 #define __CONFIG_H 11 12 /* 13 * A23 specific configuration 14 */ 15 16 #ifdef CONFIG_USB_EHCI 17 #define CONFIG_USB_EHCI_SUNXI 18 #endif 19 20 #ifdef CONFIG_MACH_SUN8I_H3 21 #define CONFIG_SUNXI_USB_PHYS 4 22 #elif defined CONFIG_MACH_SUN8I_A83T 23 #define CONFIG_SUNXI_USB_PHYS 3 24 #else 25 #define CONFIG_SUNXI_USB_PHYS 2 26 #endif 27 28 /* 29 * Include common sunxi configuration where most the settings are 30 */ 31 #include <configs/sunxi-common.h> 32 33 #endif /* __CONFIG_H */ 34