blob: 00760b8a30769cd8fa7e9754ba96c6107affa887 [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; " \
Simon Glass2daf7de2021-03-15 18:00:05 +130015 "read mmc 0:2 100000 0 80; setexpr loader *001004f0; " \
Simon Glass34c58f62020-11-04 09:57:37 -070016 "setexpr size *00100518; setexpr blocks $size / 200; " \
Simon Glass2daf7de2021-03-15 18:00:05 +130017 "read mmc 0:2 100000 80 $blocks; setexpr setup $loader - 1000; " \
Simon Glassb48bf182020-11-09 07:12:25 -070018 "setexpr cmdline_ptr $loader - 2000; " \
19 "setexpr.s cmdline *$cmdline_ptr; " \
20 "setexpr cmdline gsub %U \\\\${uuid}; " \
Simon Glass2daf7de2021-03-15 18:00:05 +130021 "if part uuid mmc 0:2 uuid; then " \
Simon Glassb48bf182020-11-09 07:12:25 -070022 "zboot start 100000 0 0 0 $setup cmdline; " \
23 "zboot load; zboot setup; zboot dump; zboot go;" \
24 "fi"
Simon Glass124602a2019-12-08 17:40:20 -070025
26#include <configs/x86-common.h>
27#include <configs/x86-chromebook.h>
28
29#undef CONFIG_STD_DEVICES_SETTINGS
30#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \
31 "stdout=vidconsole,serial\0" \
32 "stderr=vidconsole,serial\0"
33
34#define CONFIG_ENV_SECT_SIZE 0x1000
35#define CONFIG_ENV_OFFSET 0x003f8000
36
37#define CONFIG_TPL_TEXT_BASE 0xffff8000
38
39#define CONFIG_SYS_NS16550_MEM32
40#undef CONFIG_SYS_NS16550_PORT_MAPPED
41
42#endif /* __CONFIG_H */