blob: 3c90dcc9e659e2f1614483558a1157313adb89f9 [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
28 select MAINBOARD_DO_NATIVE_VGA_INIT
29 select MAINBOARD_HAS_CHROMEOS
30 select RAM_CODE_SUPPORT
David Hendricks113ef812015-05-13 13:58:24 -070031 select SOC_ROCKCHIP_RK3288
32 select SPI_FLASH
33 select SPI_FLASH_GIGADEVICE
34 select SPI_FLASH_WINBOND
35 select VIRTUAL_DEV_SWITCH
Martin Roth967cd9a2015-08-18 14:22:58 -060036
37config CHROMEOS
David Hendricks113ef812015-05-13 13:58:24 -070038 select CHROMEOS_VBNV_FLASH
Martin Roth967cd9a2015-08-18 14:22:58 -060039 select PHYSICAL_REC_SWITCH
David Hendricks113ef812015-05-13 13:58:24 -070040
41config MAINBOARD_DIR
42 string
43 default google/veyron_mickey
44
45config MAINBOARD_PART_NUMBER
46 string
47 default "Veyron_mickey"
48
49config MAINBOARD_VENDOR
50 string
51 default "Google"
52
53config BOOT_MEDIA_SPI_BUS
54 int
55 default 2
56
57config DRIVER_TPM_I2C_BUS
58 hex
59 default 0x1
60
61config DRIVER_TPM_I2C_ADDR
62 hex
63 default 0x20
64
65config CONSOLE_SERIAL_UART_ADDRESS
66 hex
67 depends on DRIVERS_UART
68 default 0xFF690000
69
David Hendricks113ef812015-05-13 13:58:24 -070070config PMIC_BUS
71 int
72 default 0
73
74endif # BOARD_GOOGLE_VEYRON_MICKEY