Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
[platform/kernel/u-boot.git] / include / configs / chromebook_coral.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2019 Google LLC
4  */
5
6 /*
7  * board/config.h - configuration options, board-specific
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 #define CONFIG_BOOTCOMMAND      \
14         "fatload mmc 1:c 1000000 syslinux/vmlinuz.A; zboot 1000000"
15
16 #include <configs/x86-common.h>
17 #include <configs/x86-chromebook.h>
18
19 #undef CONFIG_STD_DEVICES_SETTINGS
20 #define CONFIG_STD_DEVICES_SETTINGS     "stdin=usbkbd,i8042-kbd,serial\0" \
21                                         "stdout=vidconsole,serial\0" \
22                                         "stderr=vidconsole,serial\0"
23
24 #define CONFIG_ENV_SECT_SIZE            0x1000
25 #define CONFIG_ENV_OFFSET               0x003f8000
26
27 #define CONFIG_TPL_TEXT_BASE            0xffff8000
28
29 #define CONFIG_SYS_NS16550_MEM32
30 #undef CONFIG_SYS_NS16550_PORT_MAPPED
31
32 #endif  /* __CONFIG_H */