blob: 89023a9474050a6728befd622b2355dd69b36c4d [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
Daisuke Nojiria6712f32015-01-23 10:06:19 -080035
36if SOC_BROADCOM_CYGNUS
37
38config BOOTBLOCK_CPU_INIT
39 string
40 default "soc/broadcom/cygnus/bootblock.c"
41
Daisuke Nojiric047b102015-01-23 10:02:24 -080042config CONSOLE_SERIAL_UART_ADDRESS
43 hex
Patrick Georgi01368ed2015-04-16 15:27:52 +020044 depends on DRIVERS_UART
Daisuke Nojiric047b102015-01-23 10:02:24 -080045 default 0x18023000
46
Daisuke Nojiria6712f32015-01-23 10:06:19 -080047endif