2015-05-13 22:58:24 +02:00
|
|
|
##
|
|
|
|
## This file is part of the coreboot project.
|
|
|
|
##
|
|
|
|
## Copyright 2014 Rockchip 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_VEYRON_MICKEY
|
|
|
|
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
|
|
def_bool y
|
|
|
|
select BOARD_ID_AUTO
|
|
|
|
select BOARD_ROMSIZE_KB_4096
|
|
|
|
select COMMON_CBFS_SPI_WRAPPER
|
|
|
|
select HAVE_HARD_RESET
|
2015-08-21 22:37:02 +02:00
|
|
|
select MAINBOARD_HAS_NATIVE_VGA_INIT
|
2015-05-13 22:58:24 +02:00
|
|
|
select MAINBOARD_DO_NATIVE_VGA_INIT
|
|
|
|
select MAINBOARD_HAS_CHROMEOS
|
|
|
|
select RAM_CODE_SUPPORT
|
|
|
|
select SOC_ROCKCHIP_RK3288
|
|
|
|
select SPI_FLASH
|
|
|
|
select SPI_FLASH_GIGADEVICE
|
|
|
|
select SPI_FLASH_WINBOND
|
2015-08-18 22:22:58 +02:00
|
|
|
|
|
|
|
config CHROMEOS
|
|
|
|
select PHYSICAL_REC_SWITCH
|
2016-07-25 20:48:03 +02:00
|
|
|
select VBOOT_VBNV_FLASH
|
2015-05-13 22:58:24 +02:00
|
|
|
|
|
|
|
config MAINBOARD_DIR
|
|
|
|
string
|
|
|
|
default google/veyron_mickey
|
|
|
|
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
|
|
string
|
|
|
|
default "Veyron_mickey"
|
|
|
|
|
|
|
|
config MAINBOARD_VENDOR
|
|
|
|
string
|
|
|
|
default "Google"
|
|
|
|
|
2016-08-11 21:40:09 +02:00
|
|
|
config BOOT_DEVICE_SPI_FLASH_BUS
|
2015-05-13 22:58:24 +02:00
|
|
|
int
|
|
|
|
default 2
|
|
|
|
|
|
|
|
config DRIVER_TPM_I2C_BUS
|
|
|
|
hex
|
|
|
|
default 0x1
|
|
|
|
|
|
|
|
config DRIVER_TPM_I2C_ADDR
|
|
|
|
hex
|
|
|
|
default 0x20
|
|
|
|
|
|
|
|
config CONSOLE_SERIAL_UART_ADDRESS
|
|
|
|
hex
|
|
|
|
depends on DRIVERS_UART
|
|
|
|
default 0xFF690000
|
|
|
|
|
|
|
|
config PMIC_BUS
|
|
|
|
int
|
|
|
|
default 0
|
|
|
|
|
2016-02-05 11:30:19 +01:00
|
|
|
config GBB_HWID
|
|
|
|
string
|
|
|
|
depends on CHROMEOS
|
|
|
|
default "MICKEY TEST A-A 0352"
|
2016-12-06 21:59:23 +01:00
|
|
|
|
|
|
|
config CHROMEOS_FWID_MODEL
|
|
|
|
string
|
|
|
|
default "Google_Veyron_Mickey"
|
|
|
|
|
2015-05-13 22:58:24 +02:00
|
|
|
endif # BOARD_GOOGLE_VEYRON_MICKEY
|