45 lines
1,003 B
Text
45 lines
1,003 B
Text
|
##
|
||
|
## This file is part of the coreboot project.
|
||
|
##
|
||
|
## Copyright (C) 2016 Marvell, Inc.
|
||
|
##
|
||
|
## This program is free software; you can redistribute it and/or modify
|
||
|
## it under the terms of the GNU General Public License as published by
|
||
|
## the Free Software Foundation; version 2 of the License.
|
||
|
##
|
||
|
## This program is distributed in the hope that it will be useful,
|
||
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
## GNU General Public License for more details.
|
||
|
##
|
||
|
|
||
|
if BOARD_GOOGLE_ROTOR
|
||
|
|
||
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
||
|
def_bool y
|
||
|
select SOC_MARVELL_MVMAP2315
|
||
|
select MAINBOARD_HAS_CHROMEOS
|
||
|
select BOARD_ROMSIZE_KB_4096
|
||
|
|
||
|
config CHROMEOS
|
||
|
select VBOOT_MOCK_SECDATA
|
||
|
|
||
|
config MAINBOARD_DIR
|
||
|
string
|
||
|
default google/rotor
|
||
|
|
||
|
config MAINBOARD_PART_NUMBER
|
||
|
string
|
||
|
default "rotor"
|
||
|
|
||
|
config GBB_HWID
|
||
|
string
|
||
|
depends on CHROMEOS
|
||
|
default "ROTOR TEST 1234"
|
||
|
|
||
|
config DRAM_SIZE_MB
|
||
|
int
|
||
|
default 232
|
||
|
|
||
|
endif # BOARD_MARVELL_ROTOR
|