Bin Meng | 405d820 | 2014-12-17 15:50:41 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * board/config.h - configuration options, board specific |
| 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
| 14 | #include <configs/x86-common.h> |
| 15 | |
| 16 | #define CONFIG_SYS_MONITOR_LEN (1 << 20) |
| 17 | #define CONFIG_SYS_X86_START16 0xfffff800 |
| 18 | #define CONFIG_BOARD_EARLY_INIT_F |
| 19 | |
| 20 | #define CONFIG_X86_RESET_VECTOR |
| 21 | #define CONFIG_NR_DRAM_BANKS 1 |
| 22 | |
Bin Meng | 41702ba | 2014-12-17 15:50:47 +0800 | [diff] [blame^] | 23 | #define CONFIG_X86_SERIAL |
Bin Meng | 405d820 | 2014-12-17 15:50:41 +0800 | [diff] [blame] | 24 | #define CONFIG_SMSC_LPC47M |
| 25 | |
| 26 | #define CONFIG_PCI_MEM_BUS 0x40000000 |
| 27 | #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS |
| 28 | #define CONFIG_PCI_MEM_SIZE 0x80000000 |
| 29 | |
| 30 | #define CONFIG_PCI_PREF_BUS 0xc0000000 |
| 31 | #define CONFIG_PCI_PREF_PHYS CONFIG_PCI_PREF_BUS |
| 32 | #define CONFIG_PCI_PREF_SIZE 0x20000000 |
| 33 | |
| 34 | #define CONFIG_PCI_IO_BUS 0x2000 |
| 35 | #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS |
| 36 | #define CONFIG_PCI_IO_SIZE 0xe000 |
| 37 | |
| 38 | #define CONFIG_SYS_EARLY_PCI_INIT |
| 39 | #define CONFIG_PCI_PNP |
Bin Meng | 0ff65eb | 2014-12-17 15:50:45 +0800 | [diff] [blame] | 40 | #define CONFIG_E1000 |
Bin Meng | 405d820 | 2014-12-17 15:50:41 +0800 | [diff] [blame] | 41 | |
| 42 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \ |
| 43 | "stdout=serial\0" \ |
| 44 | "stderr=serial\0" |
| 45 | |
| 46 | #define CONFIG_SCSI_DEV_LIST \ |
| 47 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SATA} |
| 48 | |
Bin Meng | adfe3b2 | 2014-12-17 15:50:44 +0800 | [diff] [blame] | 49 | #define CONFIG_SPI_FLASH_SST |
| 50 | |
Bin Meng | aada627 | 2014-12-17 15:50:46 +0800 | [diff] [blame] | 51 | #define CONFIG_MMC |
| 52 | #define CONFIG_SDHCI |
| 53 | #define CONFIG_GENERIC_MMC |
| 54 | #define CONFIG_MMC_SDMA |
| 55 | #define CONFIG_CMD_MMC |
| 56 | |
Bin Meng | 405d820 | 2014-12-17 15:50:41 +0800 | [diff] [blame] | 57 | /* Video is not supported */ |
| 58 | #undef CONFIG_VIDEO |
| 59 | #undef CONFIG_CFB_CONSOLE |
| 60 | |
| 61 | #endif /* __CONFIG_H */ |