2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-11-11 01:00:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Graeme Russ, graeme.russ@gmail.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/ibmpc.h>
|
|
|
|
|
|
|
|
#ifndef __CONFIG_X86_COMMON_H
|
|
|
|
#define __CONFIG_X86_COMMON_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options
|
|
|
|
* (easy to change)
|
|
|
|
*/
|
|
|
|
#define CONFIG_PHYSMEM
|
|
|
|
|
|
|
|
#define CONFIG_LMB
|
|
|
|
|
|
|
|
#define CONFIG_SYS_BOOTM_LEN (16 << 20)
|
|
|
|
|
|
|
|
/* SATA AHCI storage */
|
|
|
|
#ifdef CONFIG_SCSI_AHCI
|
2015-05-16 01:33:18 +00:00
|
|
|
#define CONFIG_LBA48
|
2014-11-11 01:00:23 +00:00
|
|
|
#define CONFIG_SYS_64BIT_LBA
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Generic TPM interfaced through LPC bus */
|
|
|
|
#define CONFIG_TPM_TIS_BASE_ADDRESS 0xfed40000
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* Real Time Clock Configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
|
|
|
|
#define CONFIG_SYS_ISA_IO CONFIG_SYS_ISA_IO_BASE_ADDRESS
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* Serial Configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_NS16550_PORT_MAPPED
|
|
|
|
|
2018-01-03 15:23:46 +00:00
|
|
|
#ifndef CONFIG_BOOTCOMMAND
|
2014-11-11 01:00:23 +00:00
|
|
|
#define CONFIG_BOOTCOMMAND \
|
|
|
|
"ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000"
|
2018-01-03 15:23:46 +00:00
|
|
|
#endif
|
2014-11-11 01:00:23 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_KGDB)
|
|
|
|
#define CONFIG_KGDB_BAUDRATE 115200
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellaneous configurable options
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_CBSIZE 512
|
|
|
|
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x20000000
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* CPU Features
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONFIG_SYS_STACK_SIZE (32 * 1024)
|
|
|
|
#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN 0x200000
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* Environment configuration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* PCI configuration
|
|
|
|
*/
|
2015-08-13 07:29:15 +00:00
|
|
|
#define CONFIG_PCI_CONFIG_HOST_BRIDGE
|
2014-11-11 01:00:23 +00:00
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* USB configuration
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONFIG_TFTP_TSIZE
|
|
|
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
|
|
|
|
2015-03-12 05:08:46 +00:00
|
|
|
/* Default environment */
|
|
|
|
#define CONFIG_ROOTPATH "/opt/nfsroot"
|
2018-03-28 12:38:20 +00:00
|
|
|
#define CONFIG_HOSTNAME "x86"
|
2015-03-12 05:08:46 +00:00
|
|
|
#define CONFIG_BOOTFILE "bzImage"
|
|
|
|
#define CONFIG_LOADADDR 0x1000000
|
2016-05-07 14:46:35 +00:00
|
|
|
#define CONFIG_RAMDISK_ADDR 0x4000000
|
2018-08-23 15:24:11 +00:00
|
|
|
#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
|
2016-05-07 14:46:35 +00:00
|
|
|
#define CONFIG_OTHBOOTARGS "othbootargs=\0"
|
|
|
|
#else
|
|
|
|
#define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"
|
|
|
|
#endif
|
2015-03-12 05:08:46 +00:00
|
|
|
|
2019-08-14 08:23:05 +00:00
|
|
|
#if defined(CONFIG_DISTRO_DEFAULTS)
|
|
|
|
#define DISTRO_BOOTENV BOOTENV
|
|
|
|
#else
|
|
|
|
#define DISTRO_BOOTENV
|
2019-07-28 15:13:58 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-12 05:08:46 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2019-08-14 08:23:05 +00:00
|
|
|
DISTRO_BOOTENV \
|
2015-03-12 05:08:46 +00:00
|
|
|
CONFIG_STD_DEVICES_SETTINGS \
|
2015-05-23 16:12:32 +00:00
|
|
|
"pciconfighost=1\0" \
|
2015-03-12 05:08:46 +00:00
|
|
|
"netdev=eth0\0" \
|
|
|
|
"consoledev=ttyS0\0" \
|
2016-05-07 14:46:35 +00:00
|
|
|
CONFIG_OTHBOOTARGS \
|
2019-07-28 15:13:58 +00:00
|
|
|
"scriptaddr=0x7000000\0" \
|
|
|
|
"kernel_addr_r=0x1000000\0" \
|
|
|
|
"ramdisk_addr_r=0x4000000\0" \
|
2019-08-14 08:23:05 +00:00
|
|
|
"ramdiskfile=initramfs.gz\0"
|
|
|
|
|
2015-03-12 05:08:46 +00:00
|
|
|
|
|
|
|
#define CONFIG_RAMBOOTCOMMAND \
|
|
|
|
"setenv bootargs root=/dev/ram rw " \
|
|
|
|
"ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
|
|
|
|
"console=$consoledev,$baudrate $othbootargs;" \
|
2019-07-28 15:13:58 +00:00
|
|
|
"tftpboot $kernel_addr_r $bootfile;" \
|
|
|
|
"tftpboot $ramdisk_addr_r $ramdiskfile;" \
|
|
|
|
"zboot $kernel_addr_r 0 $ramdisk_addr_r $filesize"
|
2015-03-12 05:08:46 +00:00
|
|
|
|
|
|
|
#define CONFIG_NFSBOOTCOMMAND \
|
|
|
|
"setenv bootargs root=/dev/nfs rw " \
|
|
|
|
"nfsroot=$serverip:$rootpath " \
|
|
|
|
"ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
|
|
|
|
"console=$consoledev,$baudrate $othbootargs;" \
|
2019-07-28 15:13:58 +00:00
|
|
|
"tftpboot $kernel_addr_r $bootfile;" \
|
|
|
|
"zboot $kernel_addr_r"
|
2014-11-11 01:00:23 +00:00
|
|
|
|
2016-01-18 13:49:56 +00:00
|
|
|
|
2014-11-11 01:00:23 +00:00
|
|
|
#endif /* __CONFIG_H */
|