Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the coreboot project. |
| 3 | ## |
| 4 | ## Copyright 2013 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 |
Patrick Georgi | b890a12 | 2015-03-26 15:17:45 +0100 | [diff] [blame] | 17 | ## Foundation, Inc. |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 18 | ## |
| 19 | |
Gabe Black | 04bfbf5 | 2014-01-22 20:50:27 -0800 | [diff] [blame] | 20 | if BOARD_GOOGLE_PEACH_PIT |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 21 | |
| 22 | config BOARD_SPECIFIC_OPTIONS # dummy |
| 23 | def_bool y |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 24 | select CPU_SAMSUNG_EXYNOS5420 |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 25 | select EC_GOOGLE_CHROMEEC |
Hung-Te Lin | 2b31679 | 2013-06-26 19:48:43 +0800 | [diff] [blame] | 26 | select EC_GOOGLE_CHROMEEC_SPI |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 27 | select BOARD_ROMSIZE_KB_4096 |
Kyösti Mälkki | b1b9c93 | 2013-10-17 16:38:25 +0300 | [diff] [blame] | 28 | select MAINBOARD_HAS_CHROMEOS |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 29 | select MAINBOARD_HAS_NATIVE_VGA_INIT |
| 30 | select MAINBOARD_DO_NATIVE_VGA_INIT |
Gabe Black | 0570286 | 2013-06-30 06:09:12 -0700 | [diff] [blame] | 31 | select DRIVER_PARADE_PS8625 |
Patrick Georgi | a1361d4 | 2015-04-22 13:18:22 +0200 | [diff] [blame] | 32 | select CHROMEOS_VBNV_EC |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 33 | |
| 34 | config MAINBOARD_DIR |
| 35 | string |
Gabe Black | 04bfbf5 | 2014-01-22 20:50:27 -0800 | [diff] [blame] | 36 | default google/peach_pit |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 37 | |
| 38 | config MAINBOARD_PART_NUMBER |
| 39 | string |
Gabe Black | 04bfbf5 | 2014-01-22 20:50:27 -0800 | [diff] [blame] | 40 | default "Peach Pit" |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 41 | |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 42 | config DRAM_SIZE_MB |
| 43 | int |
| 44 | default 2048 |
| 45 | |
Hung-Te Lin | 2b31679 | 2013-06-26 19:48:43 +0800 | [diff] [blame] | 46 | config EC_GOOGLE_CHROMEEC_SPI_BUS |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 47 | hex |
Hung-Te Lin | 2b31679 | 2013-06-26 19:48:43 +0800 | [diff] [blame] | 48 | default 2 |
Gabe Black | d3163ab | 2013-05-16 05:53:40 -0700 | [diff] [blame] | 49 | |
Kyösti Mälkki | f385ba4 | 2014-04-29 23:27:32 +0300 | [diff] [blame] | 50 | config UART_FOR_CONSOLE |
| 51 | int |
| 52 | default 3 |
| 53 | |
Gabe Black | 04bfbf5 | 2014-01-22 20:50:27 -0800 | [diff] [blame] | 54 | endif # BOARD_GOOGLE_PEACH_PIT |