xref: /openbmc/u-boot/include/configs/sun8i.h (revision 4869fa3f)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2014 Chen-Yu Tsai <wens@csie.org>
4  *
5  * Configuration settings for the Allwinner A23 (sun8i) CPU
6  */
7 
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10 
11 /*
12  * A23 specific configuration
13  */
14 
15 #ifdef CONFIG_USB_EHCI_HCD
16 #define CONFIG_USB_EHCI_SUNXI
17 #endif
18 
19 /*
20  * Include common sunxi configuration where most the settings are
21  */
22 #include <configs/sunxi-common.h>
23 
24 #endif /* __CONFIG_H */
25