blob: bd62798d2665414d021c164d30361262a9f8c694 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassff7636c2014-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 Glassff7636c2014-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 Glassff7636c2014-11-10 18:00:23 -070017#define CONFIG_PHYSMEM
Simon Glassff7636c2014-11-10 18:00:23 -070018
Simon Glassff7636c2014-11-10 18:00:23 -070019#define CONFIG_LMB
Simon Glassff7636c2014-11-10 18:00:23 -070020
Simon Glassff7636c2014-11-10 18:00:23 -070021#define CONFIG_SYS_BOOTM_LEN (16 << 20)
22
23/* SATA AHCI storage */
Simon Glassff7636c2014-11-10 18:00:23 -070024#ifdef CONFIG_SCSI_AHCI
Bin Meng186e64e2015-05-16 09:33:18 +080025#define CONFIG_LBA48
Simon Glassff7636c2014-11-10 18:00:23 -070026#define CONFIG_SYS_64BIT_LBA
27
Simon Glassff7636c2014-11-10 18:00:23 -070028#endif
29
30/* Generic TPM interfaced through LPC bus */
Simon Glassff7636c2014-11-10 18:00:23 -070031#define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000
32
33/*-----------------------------------------------------------------------
34 * Real Time Clock Configuration
35 */
Simon Glassff7636c2014-11-10 18:00:23 -070036#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
37#define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_BASE_ADDRESS
38
39/*-----------------------------------------------------------------------
40 * Serial Configuration
41 */
Simon Glassff7636c2014-11-10 18:00:23 -070042#define CONFIG_SYS_NS16550_PORT_MAPPED
43
Heinrich Schuchardtea2e31b2018-01-03 16:23:46 +010044#ifndef CONFIG_BOOTCOMMAND
Simon Glassff7636c2014-11-10 18:00:23 -070045#define CONFIG_BOOTCOMMAND \
46 "ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000"
Heinrich Schuchardtea2e31b2018-01-03 16:23:46 +010047#endif
Simon Glassff7636c2014-11-10 18:00:23 -070048
49#if defined(CONFIG_CMD_KGDB)
50#define CONFIG_KGDB_BAUDRATE 115200
51#endif
52
53/*
54 * Miscellaneous configurable options
55 */
Simon Glassff7636c2014-11-10 18:00:23 -070056#define CONFIG_SYS_CBSIZE 512
Simon Glassff7636c2014-11-10 18:00:23 -070057
Simon Glassff7636c2014-11-10 18:00:23 -070058#define CONFIG_SYS_LOAD_ADDR 0x20000000
59
60/*-----------------------------------------------------------------------
Simon Glassff7636c2014-11-10 18:00:23 -070061 * CPU Features
62 */
63
Simon Glassff7636c2014-11-10 18:00:23 -070064#define CONFIG_SYS_STACK_SIZE (32 * 1024)
65#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
66#define CONFIG_SYS_MALLOC_LEN 0x200000
Simon Glassff7636c2014-11-10 18:00:23 -070067
68/* allow to overwrite serial and ethaddr */
69#define CONFIG_ENV_OVERWRITE
70
71/*-----------------------------------------------------------------------
Simon Glassff7636c2014-11-10 18:00:23 -070072 * Environment configuration
73 */
Simon Glassff7636c2014-11-10 18:00:23 -070074
75/*-----------------------------------------------------------------------
76 * PCI configuration
77 */
Bin Meng4dde0452015-08-13 00:29:15 -070078#define CONFIG_PCI_CONFIG_HOST_BRIDGE
Simon Glassff7636c2014-11-10 18:00:23 -070079
80/*-----------------------------------------------------------------------
81 * USB configuration
82 */
Simon Glassff7636c2014-11-10 18:00:23 -070083
Simon Glassff7636c2014-11-10 18:00:23 -070084#define CONFIG_TFTP_TSIZE
Simon Glassff7636c2014-11-10 18:00:23 -070085#define CONFIG_BOOTP_BOOTFILESIZE
Simon Glassff7636c2014-11-10 18:00:23 -070086
Bin Mengf95a6c82015-03-12 13:08:46 +080087/* Default environment */
88#define CONFIG_ROOTPATH "/opt/nfsroot"
Mario Six790d8442018-03-28 14:38:20 +020089#define CONFIG_HOSTNAME "x86"
Bin Mengf95a6c82015-03-12 13:08:46 +080090#define CONFIG_BOOTFILE "bzImage"
91#define CONFIG_LOADADDR 0x1000000
Bin Meng2b81f612016-05-07 07:46:35 -070092#define CONFIG_RAMDISK_ADDR 0x4000000
Bin Mengdc81d842018-08-23 08:24:11 -070093#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
Bin Meng2b81f612016-05-07 07:46:35 -070094#define CONFIG_OTHBOOTARGS "othbootargs=\0"
95#else
96#define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"
97#endif
Bin Mengf95a6c82015-03-12 13:08:46 +080098
Bin Menga5e37ef2019-08-14 01:23:05 -070099#if defined(CONFIG_DISTRO_DEFAULTS)
100#define DISTRO_BOOTENV BOOTENV
101#else
102#define DISTRO_BOOTENV
Bin Meng11ca7162019-07-28 08:13:58 -0700103#endif
104
Bin Mengf95a6c82015-03-12 13:08:46 +0800105#define CONFIG_EXTRA_ENV_SETTINGS \
Bin Menga5e37ef2019-08-14 01:23:05 -0700106 DISTRO_BOOTENV \
Bin Mengf95a6c82015-03-12 13:08:46 +0800107 CONFIG_STD_DEVICES_SETTINGS \
Bin Mengde5b8b12015-05-24 00:12:32 +0800108 "pciconfighost=1\0" \
Bin Mengf95a6c82015-03-12 13:08:46 +0800109 "netdev=eth0\0" \
110 "consoledev=ttyS0\0" \
Bin Meng2b81f612016-05-07 07:46:35 -0700111 CONFIG_OTHBOOTARGS \
Bin Meng11ca7162019-07-28 08:13:58 -0700112 "scriptaddr=0x7000000\0" \
113 "kernel_addr_r=0x1000000\0" \
114 "ramdisk_addr_r=0x4000000\0" \
Bin Menga5e37ef2019-08-14 01:23:05 -0700115 "ramdiskfile=initramfs.gz\0"
116
Bin Mengf95a6c82015-03-12 13:08:46 +0800117
118#define CONFIG_RAMBOOTCOMMAND \
119 "setenv bootargs root=/dev/ram rw " \
120 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
121 "console=$consoledev,$baudrate $othbootargs;" \
Bin Meng11ca7162019-07-28 08:13:58 -0700122 "tftpboot $kernel_addr_r $bootfile;" \
123 "tftpboot $ramdisk_addr_r $ramdiskfile;" \
124 "zboot $kernel_addr_r 0 $ramdisk_addr_r $filesize"
Bin Mengf95a6c82015-03-12 13:08:46 +0800125
126#define CONFIG_NFSBOOTCOMMAND \
127 "setenv bootargs root=/dev/nfs rw " \
128 "nfsroot=$serverip:$rootpath " \
129 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
130 "console=$consoledev,$baudrate $othbootargs;" \
Bin Meng11ca7162019-07-28 08:13:58 -0700131 "tftpboot $kernel_addr_r $bootfile;" \
132 "zboot $kernel_addr_r"
Simon Glassff7636c2014-11-10 18:00:23 -0700133
Stefan Roesef381b062016-01-18 14:49:56 +0100134
Simon Glassff7636c2014-11-10 18:00:23 -0700135#endif /* __CONFIG_H */