blob: b1fabb7b11c95d8679f7d61d334904ca469981ab [file] [log] [blame]
Daisuke Nojiri3df01262014-10-08 11:38:52 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright 2014 Google 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20config SOC_MARVELL_BG4CD
21 bool
22 default n
Daisuke Nojiri37083902014-10-21 11:22:54 -070023 select ARCH_BOOTBLOCK_ARMV7_M
Daisuke Nojiri3df01262014-10-08 11:38:52 -070024 select ARCH_RAMSTAGE_ARMV7
Vadim Bendebury771819a2014-10-15 18:19:03 -070025 select ARCH_ROMSTAGE_ARMV7
Daisuke Nojiri37083902014-10-21 11:22:54 -070026 select ARCH_VERSTAGE_ARMV7_M
Daisuke Nojiri3df01262014-10-08 11:38:52 -070027 select BOOTBLOCK_CONSOLE
Vadim Bendebury771819a2014-10-15 18:19:03 -070028 select CPU_HAS_BOOTBLOCK_INIT
29 select DYNAMIC_CBMEM
30 select EARLY_CONSOLE
31 select GENERIC_UDELAY
32 select HAVE_MONOTONIC_TIMER
Stefan Reinauer97db1fb2015-03-26 15:58:41 -070033 select GENERIC_GPIO_LIB
Daisuke Nojiri3df01262014-10-08 11:38:52 -070034
35if SOC_MARVELL_BG4CD
36
37config BOOTBLOCK_CPU_INIT
38 string
39 default "soc/marvell/bg4cd/bootblock.c"
40
Daisuke Nojiri3df01262014-10-08 11:38:52 -070041endif