blob: 329b270467e20c9264377044392edc56005fe304 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass880a3cc2014-11-10 18:00:23 -07002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2008
5 * Graeme Russ, graeme.russ@gmail.com.
Simon Glass880a3cc2014-11-10 18:00:23 -07006 */
7
8#include <asm/ibmpc.h>
9
10#ifndef __CONFIG_X86_COMMON_H
11#define __CONFIG_X86_COMMON_H
12
13/*
14 * High Level Configuration Options
15 * (easy to change)
16 */
Simon Glass880a3cc2014-11-10 18:00:23 -070017#define CONFIG_PHYSMEM
Simon Glass880a3cc2014-11-10 18:00:23 -070018
Simon Glass880a3cc2014-11-10 18:00:23 -070019#define CONFIG_LMB
Simon Glass880a3cc2014-11-10 18:00:23 -070020
Simon Glass880a3cc2014-11-10 18:00:23 -070021#undef CONFIG_ZLIB
22#undef CONFIG_GZIP
23#define CONFIG_SYS_BOOTM_LEN (16 << 20)
24
25/* SATA AHCI storage */
Simon Glass880a3cc2014-11-10 18:00:23 -070026#ifdef CONFIG_SCSI_AHCI
Bin Menga40abfc2015-05-16 09:33:18 +080027#define CONFIG_LBA48
Simon Glass880a3cc2014-11-10 18:00:23 -070028#define CONFIG_SYS_64BIT_LBA
29
Simon Glass880a3cc2014-11-10 18:00:23 -070030#endif
31
32/* Generic TPM interfaced through LPC bus */
Simon Glass880a3cc2014-11-10 18:00:23 -070033#define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000
34
35/*-----------------------------------------------------------------------
36 * Real Time Clock Configuration
37 */
Simon Glass880a3cc2014-11-10 18:00:23 -070038#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
39#define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_BASE_ADDRESS
40
41/*-----------------------------------------------------------------------
42 * Serial Configuration
43 */
Simon Glass880a3cc2014-11-10 18:00:23 -070044#define CONFIG_SYS_NS16550_PORT_MAPPED
45
Simon Glass880a3cc2014-11-10 18:00:23 -070046/*-----------------------------------------------------------------------
47 * Command line configuration.
48 */
Simon Glass880a3cc2014-11-10 18:00:23 -070049
Heinrich Schuchardt368e86d2018-01-03 16:23:46 +010050#ifndef CONFIG_BOOTCOMMAND
Simon Glass880a3cc2014-11-10 18:00:23 -070051#define CONFIG_BOOTCOMMAND \
52 "ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000"
Heinrich Schuchardt368e86d2018-01-03 16:23:46 +010053#endif
Simon Glass880a3cc2014-11-10 18:00:23 -070054
55#if defined(CONFIG_CMD_KGDB)
56#define CONFIG_KGDB_BAUDRATE 115200
57#endif
58
59/*
60 * Miscellaneous configurable options
61 */
Simon Glass880a3cc2014-11-10 18:00:23 -070062#define CONFIG_SYS_CBSIZE 512
Simon Glass880a3cc2014-11-10 18:00:23 -070063
64#define CONFIG_SYS_MEMTEST_START 0x00100000
65#define CONFIG_SYS_MEMTEST_END 0x01000000
66#define CONFIG_SYS_LOAD_ADDR 0x20000000
67
68/*-----------------------------------------------------------------------
Simon Glass880a3cc2014-11-10 18:00:23 -070069 * CPU Features
70 */
71
Simon Glass880a3cc2014-11-10 18:00:23 -070072#define CONFIG_SYS_STACK_SIZE (32 * 1024)
73#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
74#define CONFIG_SYS_MALLOC_LEN 0x200000
Simon Glass880a3cc2014-11-10 18:00:23 -070075
76/* allow to overwrite serial and ethaddr */
77#define CONFIG_ENV_OVERWRITE
78
79/*-----------------------------------------------------------------------
Simon Glass880a3cc2014-11-10 18:00:23 -070080 * Environment configuration
81 */
Simon Glass880a3cc2014-11-10 18:00:23 -070082
83/*-----------------------------------------------------------------------
84 * PCI configuration
85 */
Bin Meng3ff2f002015-08-13 00:29:15 -070086#define CONFIG_PCI_CONFIG_HOST_BRIDGE
Simon Glass880a3cc2014-11-10 18:00:23 -070087
88/*-----------------------------------------------------------------------
89 * USB configuration
90 */
Simon Glass880a3cc2014-11-10 18:00:23 -070091
Simon Glass880a3cc2014-11-10 18:00:23 -070092#define CONFIG_TFTP_TSIZE
Simon Glass880a3cc2014-11-10 18:00:23 -070093#define CONFIG_BOOTP_BOOTFILESIZE
Simon Glass880a3cc2014-11-10 18:00:23 -070094
Bin Meng6f1eba42015-03-12 13:08:46 +080095/* Default environment */
96#define CONFIG_ROOTPATH "/opt/nfsroot"
Mario Six5bc05432018-03-28 14:38:20 +020097#define CONFIG_HOSTNAME "x86"
Bin Meng6f1eba42015-03-12 13:08:46 +080098#define CONFIG_BOOTFILE "bzImage"
99#define CONFIG_LOADADDR 0x1000000
Bin Meng030b9e32016-05-07 07:46:35 -0700100#define CONFIG_RAMDISK_ADDR 0x4000000
Bin Menga0913cd2018-08-23 08:24:11 -0700101#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
Bin Meng030b9e32016-05-07 07:46:35 -0700102#define CONFIG_OTHBOOTARGS "othbootargs=\0"
103#else
104#define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"
105#endif
Bin Meng6f1eba42015-03-12 13:08:46 +0800106
Bin Meng039c0312019-08-14 01:23:05 -0700107#if defined(CONFIG_DISTRO_DEFAULTS)
108#define DISTRO_BOOTENV BOOTENV
109#else
110#define DISTRO_BOOTENV
Bin Meng68d70a12019-07-28 08:13:58 -0700111#endif
112
Bin Meng6f1eba42015-03-12 13:08:46 +0800113#define CONFIG_EXTRA_ENV_SETTINGS \
Bin Meng039c0312019-08-14 01:23:05 -0700114 DISTRO_BOOTENV \
Bin Meng6f1eba42015-03-12 13:08:46 +0800115 CONFIG_STD_DEVICES_SETTINGS \
Bin Meng54669832015-05-24 00:12:32 +0800116 "pciconfighost=1\0" \
Bin Meng6f1eba42015-03-12 13:08:46 +0800117 "netdev=eth0\0" \
118 "consoledev=ttyS0\0" \
Bin Meng030b9e32016-05-07 07:46:35 -0700119 CONFIG_OTHBOOTARGS \
Bin Meng68d70a12019-07-28 08:13:58 -0700120 "scriptaddr=0x7000000\0" \
121 "kernel_addr_r=0x1000000\0" \
122 "ramdisk_addr_r=0x4000000\0" \
Bin Meng039c0312019-08-14 01:23:05 -0700123 "ramdiskfile=initramfs.gz\0"
124
Bin Meng6f1eba42015-03-12 13:08:46 +0800125
126#define CONFIG_RAMBOOTCOMMAND \
127 "setenv bootargs root=/dev/ram rw " \
128 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
129 "console=$consoledev,$baudrate $othbootargs;" \
Bin Meng68d70a12019-07-28 08:13:58 -0700130 "tftpboot $kernel_addr_r $bootfile;" \
131 "tftpboot $ramdisk_addr_r $ramdiskfile;" \
132 "zboot $kernel_addr_r 0 $ramdisk_addr_r $filesize"
Bin Meng6f1eba42015-03-12 13:08:46 +0800133
134#define CONFIG_NFSBOOTCOMMAND \
135 "setenv bootargs root=/dev/nfs rw " \
136 "nfsroot=$serverip:$rootpath " \
137 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
138 "console=$consoledev,$baudrate $othbootargs;" \
Bin Meng68d70a12019-07-28 08:13:58 -0700139 "tftpboot $kernel_addr_r $bootfile;" \
140 "zboot $kernel_addr_r"
Simon Glass880a3cc2014-11-10 18:00:23 -0700141
Stefan Roesef7c36382016-01-18 14:49:56 +0100142
Simon Glass880a3cc2014-11-10 18:00:23 -0700143#endif /* __CONFIG_H */