blob: 3e66688681ab7b740473f60936505b600abfd478 [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
Icarus Chaud5f551a2015-02-13 15:16:37 -080035 select HAS_PRECBMEM_TIMESTAMP_REGION
36 select RETURN_FROM_VERSTAGE
Daisuke Nojiria6712f32015-01-23 10:06:19 -080037
38if SOC_BROADCOM_CYGNUS
39
40config BOOTBLOCK_CPU_INIT
41 string
42 default "soc/broadcom/cygnus/bootblock.c"
43
Daisuke Nojiric047b102015-01-23 10:02:24 -080044config CONSOLE_SERIAL_UART_ADDRESS
45 hex
Patrick Georgi01368ed2015-04-16 15:27:52 +020046 depends on DRIVERS_UART
Daisuke Nojiric047b102015-01-23 10:02:24 -080047 default 0x18023000
48
Icarus Chaud5f551a2015-02-13 15:16:37 -080049config CYGNUS_DDR800
50 bool "DDR Speed at 800MHz"
51 default y
52
53config CYGNUS_SHMOO_REUSE_DDR_32BIT
54 bool "Indicate if DDR width is 32-bit"
55 default n
56
57config CYGNUS_SDRAM_TEST_DDR
58 bool "Run a write-read test on DDR after initialization"
59 default n
60
61config CYGNUS_PRINT_SHMOO_DEBUG
62 bool "Print debug info for shmoo"
63 default n
Daisuke Nojiria6712f32015-01-23 10:06:19 -080064endif