blob: 4c6cbb9fd97ef24c061d294fe85c1f9a57c5750d [file] [log] [blame]
Gabe Blackd3163ab2013-05-16 05:53:40 -07001##
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 Georgib890a122015-03-26 15:17:45 +010017## Foundation, Inc.
Gabe Blackd3163ab2013-05-16 05:53:40 -070018##
19
Gabe Black04bfbf52014-01-22 20:50:27 -080020if BOARD_GOOGLE_PEACH_PIT
Gabe Blackd3163ab2013-05-16 05:53:40 -070021
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
Gabe Blackd3163ab2013-05-16 05:53:40 -070024 select CPU_SAMSUNG_EXYNOS5420
Gabe Blackd3163ab2013-05-16 05:53:40 -070025 select EC_GOOGLE_CHROMEEC
Hung-Te Lin2b316792013-06-26 19:48:43 +080026 select EC_GOOGLE_CHROMEEC_SPI
Gabe Blackd3163ab2013-05-16 05:53:40 -070027 select BOARD_ROMSIZE_KB_4096
Kyösti Mälkkib1b9c932013-10-17 16:38:25 +030028 select MAINBOARD_HAS_CHROMEOS
Gabe Blackd3163ab2013-05-16 05:53:40 -070029 select MAINBOARD_HAS_NATIVE_VGA_INIT
30 select MAINBOARD_DO_NATIVE_VGA_INIT
Gabe Black05702862013-06-30 06:09:12 -070031 select DRIVER_PARADE_PS8625
Patrick Georgia1361d42015-04-22 13:18:22 +020032 select CHROMEOS_VBNV_EC
Gabe Blackd3163ab2013-05-16 05:53:40 -070033
34config MAINBOARD_DIR
35 string
Gabe Black04bfbf52014-01-22 20:50:27 -080036 default google/peach_pit
Gabe Blackd3163ab2013-05-16 05:53:40 -070037
38config MAINBOARD_PART_NUMBER
39 string
Gabe Black04bfbf52014-01-22 20:50:27 -080040 default "Peach Pit"
Gabe Blackd3163ab2013-05-16 05:53:40 -070041
Gabe Blackd3163ab2013-05-16 05:53:40 -070042config DRAM_SIZE_MB
43 int
44 default 2048
45
Hung-Te Lin2b316792013-06-26 19:48:43 +080046config EC_GOOGLE_CHROMEEC_SPI_BUS
Gabe Blackd3163ab2013-05-16 05:53:40 -070047 hex
Hung-Te Lin2b316792013-06-26 19:48:43 +080048 default 2
Gabe Blackd3163ab2013-05-16 05:53:40 -070049
Kyösti Mälkkif385ba42014-04-29 23:27:32 +030050config UART_FOR_CONSOLE
51 int
52 default 3
53
Gabe Black04bfbf52014-01-22 20:50:27 -080054endif # BOARD_GOOGLE_PEACH_PIT