xref: /OK3568_Linux_fs/u-boot/include/configs/evb_rk3368.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * SPDX-License-Identifier:     GPL-2.0+
3  *
4  * Copyright (c) 2018 Rockchip Electronics Co., Ltd
5  */
6 
7 #ifndef __CONFIGS_RK3368_EVB_H
8 #define __CONFIGS_RK3368_EVB_H
9 
10 #include <configs/rk3368_common.h>
11 
12 #ifndef CONFIG_SPL_BUILD
13 
14 #undef ROCKCHIP_DEVICE_SETTINGS
15 #define ROCKCHIP_DEVICE_SETTINGS \
16 		"stdout=serial,vidconsole\0" \
17 		"stderr=serial,vidconsole\0"
18 
19 #undef CONFIG_BOOTCOMMAND
20 #define CONFIG_BOOTCOMMAND RKIMG_BOOTCOMMAND
21 #endif
22 
23 /* rockchip ohci host driver */
24 #define CONFIG_USB_OHCI_NEW
25 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS	1
26 
27 #endif
28