blob: a63c3c9eea87329f7d6a9d35d1e2a0aa26a73efb [file] [log] [blame]
Simon Glass124602a2019-12-08 17:40:20 -07001/* 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 */