blob: 6adcf7264fd2694188ec5805faef0d2105a46aec [file] [log] [blame]
Ronald G. Minnich98312442016-02-12 22:37:48 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2014 Google Inc.
5##
6## This software is licensed under the terms of the GNU General Public
7## License version 2, as published by the Free Software Foundation, and
8## may be copied, distributed, and modified under those terms.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14
15# To execute, do:
16# qemu-system-??
17
18if BOARD_EMULATION_QEMU_POWER8
19
20config BOARD_SPECIFIC_OPTIONS # dummy
21 def_bool y
22 select BOARD_ROMSIZE_KB_4096
23 select ARCH_BOOTBLOCK_POWER8
24 select HAVE_UART_SPECIAL
25 select ARCH_POWER8
Aaron Durbin4a36c4e2016-08-11 11:02:26 -050026 select BOOT_DEVICE_NOT_SPI_FLASH
Ronald G. Minnich98312442016-02-12 22:37:48 +000027
28config MAINBOARD_DIR
29 string
30 default "emulation/qemu-power8"
31
32config MAINBOARD_PART_NUMBER
33 string
34 default "QEMU POWER8"
35
36config MAX_CPUS
37 int
38 default 1
39
40config MAINBOARD_VENDOR
41 string
42 default "QEMU"
43
44config DRAM_SIZE_MB
45 int
46 default 32768
47
Ronald G. Minnich98312442016-02-12 22:37:48 +000048endif # BOARD_EMULATION_QEMU_POWER8