blob: 2f5ad21bc3b9560b0d38c5da4da66e35b09107ca [file] [log] [blame]
Daisuke Nojiria6712f32015-01-23 10:06:19 -08001##
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_BROADCOM_CYGNUS
21 bool
22 default n
23 select ARCH_BOOTBLOCK_ARMV7
24 select ARCH_RAMSTAGE_ARMV7
25 select ARCH_ROMSTAGE_ARMV7
26 select ARCH_VERSTAGE_ARMV7
27 select BOOTBLOCK_CONSOLE
28 select CPU_HAS_BOOTBLOCK_INIT
29 select DYNAMIC_CBMEM
30 select EARLY_CONSOLE
31 select GENERIC_UDELAY
32 select HAVE_MONOTONIC_TIMER
33 select HAVE_UART_MEMORY_MAPPED
34 select HAVE_UART_SPECIAL
35 select RETURN_FROM_VERSTAGE
36
37if SOC_BROADCOM_CYGNUS
38
39config BOOTBLOCK_CPU_INIT
40 string
41 default "soc/broadcom/cygnus/bootblock.c"
42
43endif