blob: fc9bc1eeb9166f6d58ed264bae35fa8a050e8b91 [file] [log] [blame]
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +02001# This file is part of the coreboot project.
2#
3# Copyright (C) 2018 Jonathan Neuschäfer
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14if BOARD_SIFIVE_HIFIVE_UNLEASHED
15
Elyes HAOUASf0c5be22018-11-27 20:36:44 +010016config BOARD_SPECIFIC_OPTIONS
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +020017 def_bool y
18 select SOC_SIFIVE_FU540
19 select BOARD_ROMSIZE_KB_32768
Nico Huber9df62b02018-10-17 19:40:26 +020020 select MISSING_BOARD_RESET
Xiang Wang411a8b72019-01-23 11:45:06 +080021 select FLATTENED_DEVICE_TREE
Xiang Wangd5777262019-08-27 16:04:54 +080022 select SPI_SDCARD
Xiang Wang411a8b72019-01-23 11:45:06 +080023
24config HEAP_SIZE
25 default 0x10000
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +020026
27config MAINBOARD_DIR
28 string
29 default sifive/hifive-unleashed
30
Jonathan Neuschäfer1c09cfa2018-04-19 16:23:55 +020031config MAINBOARD_PART_NUMBER
32 string
33 default "HiFive Unleashed"
34
35endif