blob: 1800b16f269dd2abd4d66fe9227888af2bd56444 [file] [log] [blame]
jinkun.hongac490b82014-06-22 20:40:39 -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
Patrick Georgib890a122015-03-26 15:17:45 +010017## Foundation, Inc.
jinkun.hongac490b82014-06-22 20:40:39 -070018##
19
20config SOC_ROCKCHIP_RK3288
21 bool
22 default n
23 select ARCH_BOOTBLOCK_ARMV7
24 select ARCH_VERSTAGE_ARMV7
25 select ARCH_ROMSTAGE_ARMV7
26 select ARCH_RAMSTAGE_ARMV7
Furquan Shaikhd17a8622014-11-03 14:39:11 -080027 select HAS_PRECBMEM_TIMESTAMP_REGION
jinkun.hongac490b82014-06-22 20:40:39 -070028 select HAVE_MONOTONIC_TIMER
Aaron Durbine5e36302014-09-25 10:05:15 -050029 select GENERIC_UDELAY
jinkun.hongac490b82014-06-22 20:40:39 -070030 select HAVE_UART_SPECIAL
31 select BOOTBLOCK_CONSOLE
Julius Wernercdf92ea2014-12-09 12:18:00 -080032 select UNCOMPRESSED_RAMSTAGE
Stefan Reinauer97db1fb2015-03-26 15:58:41 -070033 select GENERIC_GPIO_LIB
Patrick Georgi0770f252015-04-22 13:28:21 +020034 select RTC
Patrick Georgibfa51972015-06-25 17:04:31 +020035 select VBOOT_STARTS_IN_BOOTBLOCK
36 select SEPARATE_VERSTAGE
37 select RETURN_FROM_VERSTAGE
Kyösti Mälkki51794192015-03-17 07:11:26 +020038
jinkun.hongac490b82014-06-22 20:40:39 -070039if SOC_ROCKCHIP_RK3288
40
41config BOOTBLOCK_CPU_INIT
42 string
43 default "soc/rockchip/rk3288/bootblock.c"
44
David Hendricks4d244212015-01-12 13:13:30 -080045config PMIC_BUS
46 int
47 default -1
48
jinkun.hongac490b82014-06-22 20:40:39 -070049endif