blob: ee48276363fd523b6915fad4abce8ae8b40ac056 [file] [log] [blame]
David Hendricks113ef812015-05-13 13:58:24 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright 2014 Rockchip Inc.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
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## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc.
18##
19
20if BOARD_GOOGLE_VEYRON_MICKEY
21
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select BOARD_ID_AUTO
25 select BOARD_ROMSIZE_KB_4096
26 select COMMON_CBFS_SPI_WRAPPER
27 select HAVE_HARD_RESET
Martin Rothc0c115b2015-08-21 14:37:02 -060028 select MAINBOARD_HAS_NATIVE_VGA_INIT
David Hendricks113ef812015-05-13 13:58:24 -070029 select MAINBOARD_DO_NATIVE_VGA_INIT
30 select MAINBOARD_HAS_CHROMEOS
31 select RAM_CODE_SUPPORT
David Hendricks113ef812015-05-13 13:58:24 -070032 select SOC_ROCKCHIP_RK3288
33 select SPI_FLASH
34 select SPI_FLASH_GIGADEVICE
35 select SPI_FLASH_WINBOND
36 select VIRTUAL_DEV_SWITCH
Martin Roth967cd9a2015-08-18 14:22:58 -060037
38config CHROMEOS
David Hendricks113ef812015-05-13 13:58:24 -070039 select CHROMEOS_VBNV_FLASH
Martin Roth967cd9a2015-08-18 14:22:58 -060040 select PHYSICAL_REC_SWITCH
David Hendricks113ef812015-05-13 13:58:24 -070041
42config MAINBOARD_DIR
43 string
44 default google/veyron_mickey
45
46config MAINBOARD_PART_NUMBER
47 string
48 default "Veyron_mickey"
49
50config MAINBOARD_VENDOR
51 string
52 default "Google"
53
54config BOOT_MEDIA_SPI_BUS
55 int
56 default 2
57
58config DRIVER_TPM_I2C_BUS
59 hex
60 default 0x1
61
62config DRIVER_TPM_I2C_ADDR
63 hex
64 default 0x20
65
66config CONSOLE_SERIAL_UART_ADDRESS
67 hex
68 depends on DRIVERS_UART
69 default 0xFF690000
70
David Hendricks113ef812015-05-13 13:58:24 -070071config PMIC_BUS
72 int
73 default 0
74
75endif # BOARD_GOOGLE_VEYRON_MICKEY