blob: d4d32758e990f69e101814a8ab8a57c469f1207d [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 \
Simon Glass34c58f62020-11-04 09:57:37 -070014 "tpm init; tpm startup TPM2_SU_CLEAR; " \
15 "read mmc 2:2 100000 0 80; setexpr loader *001004f0; " \
16 "setexpr size *00100518; setexpr blocks $size / 200; " \
17 "read mmc 2:2 100000 80 $blocks; setexpr setup $loader - 1000; " \
18 "setexpr cmdline $loader - 2000; " \
19 "part uuid mmc 2:2 uuid; setenv bootargs_U $uuid; " \
20 "zboot start 100000 0 0 0 $setup $cmdline; " \
21 "zboot load; zboot setup; zboot dump; zboot go"
Simon Glass124602a2019-12-08 17:40:20 -070022
23#include <configs/x86-common.h>
24#include <configs/x86-chromebook.h>
25
26#undef CONFIG_STD_DEVICES_SETTINGS
27#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \
28 "stdout=vidconsole,serial\0" \
29 "stderr=vidconsole,serial\0"
30
31#define CONFIG_ENV_SECT_SIZE 0x1000
32#define CONFIG_ENV_OFFSET 0x003f8000
33
34#define CONFIG_TPL_TEXT_BASE 0xffff8000
35
36#define CONFIG_SYS_NS16550_MEM32
37#undef CONFIG_SYS_NS16550_PORT_MAPPED
38
39#endif /* __CONFIG_H */