blob: 2337e5b546f142483918c54c4b5dd19db1e5419a [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
31 select RETURN_FROM_VERSTAGE
32 select SOC_ROCKCHIP_RK3288
33 select SPI_FLASH
34 select SPI_FLASH_GIGADEVICE
35 select SPI_FLASH_WINBOND
36 select VIRTUAL_DEV_SWITCH
37 select CHROMEOS_VBNV_FLASH
38
39config MAINBOARD_DIR
40 string
41 default google/veyron_mickey
42
43config MAINBOARD_PART_NUMBER
44 string
45 default "Veyron_mickey"
46
47config MAINBOARD_VENDOR
48 string
49 default "Google"
50
51config BOOT_MEDIA_SPI_BUS
52 int
53 default 2
54
55config DRIVER_TPM_I2C_BUS
56 hex
57 default 0x1
58
59config DRIVER_TPM_I2C_ADDR
60 hex
61 default 0x20
62
63config CONSOLE_SERIAL_UART_ADDRESS
64 hex
65 depends on DRIVERS_UART
66 default 0xFF690000
67
68# FIXME(dhendrix): This is a gross hack intended to get us past
69# display init which currently hangs the machine. It will be removed
70# once we've re-factored the display init code to properly handle
71# various types of displays.
72config SKIP_DISPLAY_INIT_HACK
73 int
74 default 1
75
76config PMIC_BUS
77 int
78 default 0
79
80endif # BOARD_GOOGLE_VEYRON_MICKEY