blob: 5f4800bdac20da73ffaf3127ac465e3233559568 [file] [log] [blame]
Bin Menga2e3b052016-02-17 00:16:25 -08001/*
2 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
10#include <configs/x86-common.h>
11
12#define CONFIG_SYS_MONITOR_LEN (2 << 20)
Bin Menga2e3b052016-02-17 00:16:25 -080013
14#define CONFIG_SMSC_SIO1007
15
Bin Menga2e3b052016-02-17 00:16:25 -080016#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \
17 "stdout=serial,vga\0" \
18 "stderr=serial,vga\0"
19
20#define CONFIG_SCSI_DEV_LIST \
21 {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_AHCI_MOBILE}
22
23/* Environment configuration */
24#define CONFIG_ENV_SECT_SIZE 0x1000
25#define CONFIG_ENV_OFFSET 0x5ff000
26
Bin Menga2e3b052016-02-17 00:16:25 -080027#endif /* __CONFIG_H */