blob: e7b9e0e3b7f84ce4165e571eaa74a8d4d1b503cd [file] [log] [blame]
Vadim Bendeburyab0f7102014-08-21 14:19:31 -07001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2014 Imagination Technologies
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; version 2 of
9# the License.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070016
17if BOARD_GOOGLE_URARA
18
19config BOARD_SPECIFIC_OPTIONS
20 def_bool y
Vadim Bendeburycbc44f72014-11-29 15:28:23 -080021 select BOARD_ROMSIZE_KB_512
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070022 select BOOTBLOCK_CONSOLE
Vadim Bendeburyd0daeba2014-10-28 18:23:28 -070023 select MAINBOARD_HAS_CHROMEOS
Ionela Voinescudfd441d2014-11-11 13:39:18 +000024 select SPI_FLASH_WINBOND
Vadim Bendebury2d510d02014-09-29 12:43:40 -070025 select CPU_IMGTEC_PISTACHIO
Martin Roth595e7772015-04-26 18:53:26 -060026 select COMMON_CBFS_SPI_WRAPPER
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070027 select SPI_FLASH
Vladimir Serbinenko1e161422015-05-30 22:47:22 +020028 select BOARD_ID_MANUAL
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070029
30config MAINBOARD_DIR
31 string
32 default "google/urara"
33
34config MAINBOARD_PART_NUMBER
35 string
Vadim Bendebury2d510d02014-09-29 12:43:40 -070036 default "ImgTec Pistachio Virtual Platform"
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070037
Ionela Voinescub3f666b2015-01-18 22:37:11 +000038config BOOTBLOCK_MAINBOARD_INIT
39 string
40 default "mainboard/google/urara/bootblock.c"
41
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070042config DRAM_SIZE_MB
43 int
44 default 256
45
Ionela Voinescu33c10f82014-10-30 14:49:53 +000046config TTYS0_LCS
47 int
48 default 3
49
David Hendricks352135e2015-01-26 07:15:01 -080050config CONSOLE_SERIAL_UART_ADDRESS
51 hex
52 depends on DRIVERS_UART
53 default 0xB8101500
54
Aaron Durbin08e842c2016-08-11 14:40:09 -050055config BOOT_DEVICE_SPI_FLASH_BUS
Ionela Voinescudfd441d2014-11-11 13:39:18 +000056 int
57 default 1
58
Patrick Georgia0f6abc2016-02-05 11:30:19 +010059config GBB_HWID
60 string
61 depends on CHROMEOS
62 default "Urara TEST 1"
Vadim Bendeburyab0f7102014-08-21 14:19:31 -070063endif