Add the coreboot board files for samus
- Based on Bolt
- GPIO setup based on 0.91 schematic
- Support both memory types
- No HDA verb table for this platform
- Some GPIO interrupts are shared and need to be passed to OS
Change-Id: I8dbd7639456c631a0115b03a493d94b5e2361ab5
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/171694
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
(cherry picked from commit 249a74c628)
Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com>
Reviewed-on: http://review.coreboot.org/6775
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
71 lines
2 KiB
Text
71 lines
2 KiB
Text
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2012 The ChromiumOS Authors
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program; if not, write to the Free Software
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
##
|
|
if VENDOR_GOOGLE
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_GOOGLE_BOLT
|
|
bool "Bolt"
|
|
config BOARD_GOOGLE_BUTTERFLY
|
|
bool "Butterfly"
|
|
config BOARD_GOOGLE_FALCO
|
|
bool "Falco"
|
|
config BOARD_GOOGLE_LINK
|
|
bool "Link"
|
|
config BOARD_GOOGLE_PANTHER
|
|
bool "Panther"
|
|
config BOARD_GOOGLE_PARROT
|
|
bool "Parrot"
|
|
config BOARD_GOOGLE_PEPPY
|
|
bool "Peppy"
|
|
config BOARD_GOOGLE_PIT
|
|
bool "Pit"
|
|
config BOARD_GOOGLE_RAMBI
|
|
bool "Rambi"
|
|
config BOARD_GOOGLE_SAMUS
|
|
bool "Samus"
|
|
config BOARD_GOOGLE_SLIPPY
|
|
bool "Slippy"
|
|
config BOARD_GOOGLE_SNOW
|
|
bool "Snow"
|
|
config BOARD_GOOGLE_STOUT
|
|
bool "Stout"
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/google/bolt/Kconfig"
|
|
source "src/mainboard/google/butterfly/Kconfig"
|
|
source "src/mainboard/google/falco/Kconfig"
|
|
source "src/mainboard/google/link/Kconfig"
|
|
source "src/mainboard/google/panther/Kconfig"
|
|
source "src/mainboard/google/parrot/Kconfig"
|
|
source "src/mainboard/google/peppy/Kconfig"
|
|
source "src/mainboard/google/pit/Kconfig"
|
|
source "src/mainboard/google/rambi/Kconfig"
|
|
source "src/mainboard/google/samus/Kconfig"
|
|
source "src/mainboard/google/slippy/Kconfig"
|
|
source "src/mainboard/google/snow/Kconfig"
|
|
source "src/mainboard/google/stout/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string "Mainboard Vendor"
|
|
default "Google"
|
|
|
|
endif # VENDOR_GOOGLE
|