Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Xu Ziyuan | 1c62d99 | 2016-08-01 08:46:19 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd |
Xu Ziyuan | 1c62d99 | 2016-08-01 08:46:19 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
Jagan Teki | d7e7a5b | 2020-01-23 19:42:21 +0530 | [diff] [blame^] | 9 | #define ROCKCHIP_DEVICE_SETTINGS \ |
| 10 | "stdin=serial,cros-ec-keyb\0" \ |
| 11 | "stdout=serial,vidconsole\0" \ |
| 12 | "stderr=serial,vidconsole\0" |
| 13 | |
Xu Ziyuan | 1c62d99 | 2016-08-01 08:46:19 +0800 | [diff] [blame] | 14 | #include <configs/rk3288_common.h> |
| 15 | |
Xu Ziyuan | c12777a | 2016-09-09 21:44:50 +0800 | [diff] [blame] | 16 | #undef BOOT_TARGET_DEVICES |
| 17 | |
| 18 | #define BOOT_TARGET_DEVICES(func) \ |
Michael Trimarchi | 59b01eb | 2019-11-15 22:07:24 +0100 | [diff] [blame] | 19 | func(MMC, mmc, 0) \ |
Eddie Cai | bfc664b | 2017-04-01 14:46:52 +0800 | [diff] [blame] | 20 | func(MMC, mmc, 1) \ |
| 21 | func(USB, usb, 0) \ |
| 22 | func(PXE, pxe, na) \ |
| 23 | func(DHCP, dchp, na) |
Xu Ziyuan | c12777a | 2016-09-09 21:44:50 +0800 | [diff] [blame] | 24 | |
Jacob Chen | 483a801 | 2017-03-15 17:28:43 +0800 | [diff] [blame] | 25 | #define CONFIG_SYS_MMC_ENV_DEV 1 |
Jacob Chen | e1e9703 | 2016-11-18 15:54:25 +0800 | [diff] [blame] | 26 | |
Xu Ziyuan | 1c62d99 | 2016-08-01 08:46:19 +0800 | [diff] [blame] | 27 | #endif |