blob: 3a4712e4d3850a399d7032317d9c0b5109d481e5 [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
jinkun.hongac490b82014-06-22 20:40:39 -070027 select HAVE_MONOTONIC_TIMER
Aaron Durbine5e36302014-09-25 10:05:15 -050028 select GENERIC_UDELAY
jinkun.hongac490b82014-06-22 20:40:39 -070029 select HAVE_UART_SPECIAL
30 select BOOTBLOCK_CONSOLE
Julius Wernercdf92ea2014-12-09 12:18:00 -080031 select UNCOMPRESSED_RAMSTAGE
Stefan Reinauer97db1fb2015-03-26 15:58:41 -070032 select GENERIC_GPIO_LIB
Patrick Georgi0770f252015-04-22 13:28:21 +020033 select RTC
Patrick Georgibfa51972015-06-25 17:04:31 +020034 select VBOOT_STARTS_IN_BOOTBLOCK
35 select SEPARATE_VERSTAGE
36 select RETURN_FROM_VERSTAGE
Kyösti Mälkki51794192015-03-17 07:11:26 +020037
jinkun.hongac490b82014-06-22 20:40:39 -070038if SOC_ROCKCHIP_RK3288
39
40config BOOTBLOCK_CPU_INIT
41 string
42 default "soc/rockchip/rk3288/bootblock.c"
43
David Hendricks4d244212015-01-12 13:13:30 -080044config PMIC_BUS
45 int
46 default -1
47
jinkun.hongac490b82014-06-22 20:40:39 -070048endif