From 4a664fa61ba91117921e4b70f9e14917b0ca7ce9 Mon Sep 17 00:00:00 2001 From: Justin TerAvest Date: Mon, 19 Mar 2018 16:32:28 -0600 Subject: mb/google/octopus: Create bip variant This creates a bip variant for octopus. Nothing is set in the variant files here-- everything is picked up from baseboard. BUG=b:75976864 TEST=None Change-Id: I7a8ac3d8bb71416f05ef1a605684d92d5902abda Signed-off-by: Justin TerAvest Reviewed-on: https://review.coreboot.org/25285 Reviewed-by: Furquan Shaikh Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/mainboard/google/octopus/Kconfig | 3 +++ src/mainboard/google/octopus/Kconfig.name | 4 ++++ .../variants/bip/include/variant/acpi/dptf.asl | 16 ++++++++++++++++ .../octopus/variants/bip/include/variant/ec.h | 21 +++++++++++++++++++++ .../octopus/variants/bip/include/variant/gpio.h | 21 +++++++++++++++++++++ 5 files changed, 65 insertions(+) create mode 100644 src/mainboard/google/octopus/variants/bip/include/variant/acpi/dptf.asl create mode 100644 src/mainboard/google/octopus/variants/bip/include/variant/ec.h create mode 100644 src/mainboard/google/octopus/variants/bip/include/variant/gpio.h (limited to 'src') diff --git a/src/mainboard/google/octopus/Kconfig b/src/mainboard/google/octopus/Kconfig index 62130f6571..0e58215e2a 100644 --- a/src/mainboard/google/octopus/Kconfig +++ b/src/mainboard/google/octopus/Kconfig @@ -39,6 +39,7 @@ config MAINBOARD_DIR config VARIANT_DIR string default "yorp" if BOARD_GOOGLE_YORP + default "bip" if BOARD_GOOGLE_BIP default "octopus" if BOARD_GOOGLE_OCTOPUS config DEVICETREE @@ -48,6 +49,7 @@ config DEVICETREE config MAINBOARD_PART_NUMBER string default "yorp" if BOARD_GOOGLE_YORP + default "bip" if BOARD_GOOGLE_BIP default "octopus" if BOARD_GOOGLE_OCTOPUS config MAINBOARD_FAMILY @@ -58,6 +60,7 @@ config GBB_HWID string depends on CHROMEOS default "YORP TEST 7755" if BOARD_GOOGLE_YORP + default "BIP TEST 5732" if BOARD_GOOGLE_BIP default "OCTOPUS TEST 6859" if BOARD_GOOGLE_OCTOPUS config MAX_CPUS diff --git a/src/mainboard/google/octopus/Kconfig.name b/src/mainboard/google/octopus/Kconfig.name index fa72b49c68..f4bd02c29c 100644 --- a/src/mainboard/google/octopus/Kconfig.name +++ b/src/mainboard/google/octopus/Kconfig.name @@ -6,3 +6,7 @@ config BOARD_GOOGLE_YORP bool "Yorp" select BOARD_GOOGLE_BASEBOARD_OCTOPUS select BASEBOARD_OCTOPUS_LAPTOP +config BOARD_GOOGLE_BIP + bool "Bip" + select BOARD_GOOGLE_BASEBOARD_OCTOPUS + select BASEBOARD_OCTOPUS_LAPTOP diff --git a/src/mainboard/google/octopus/variants/bip/include/variant/acpi/dptf.asl b/src/mainboard/google/octopus/variants/bip/include/variant/acpi/dptf.asl new file mode 100644 index 0000000000..cc17d560cf --- /dev/null +++ b/src/mainboard/google/octopus/variants/bip/include/variant/acpi/dptf.asl @@ -0,0 +1,16 @@ +/* + * This file is part of the coreboot project. + * + * Copyright 2018 Google LLC + * + * 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. + */ + +#include diff --git a/src/mainboard/google/octopus/variants/bip/include/variant/ec.h b/src/mainboard/google/octopus/variants/bip/include/variant/ec.h new file mode 100644 index 0000000000..16f931b6cd --- /dev/null +++ b/src/mainboard/google/octopus/variants/bip/include/variant/ec.h @@ -0,0 +1,21 @@ +/* + * This file is part of the coreboot project. + * + * Copyright 2018 Google LLC + * + * 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. + */ + +#ifndef MAINBOARD_EC_H +#define MAINBOARD_EC_H + +#include + +#endif diff --git a/src/mainboard/google/octopus/variants/bip/include/variant/gpio.h b/src/mainboard/google/octopus/variants/bip/include/variant/gpio.h new file mode 100644 index 0000000000..1fd1e11716 --- /dev/null +++ b/src/mainboard/google/octopus/variants/bip/include/variant/gpio.h @@ -0,0 +1,21 @@ +/* + * This file is part of the coreboot project. + * + * Copyright 2018 Google LLC + * + * 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. + */ + +#ifndef MAINBOARD_GPIO_H +#define MAINBOARD_GPIO_H + +#include + +#endif /* MAINBOARD_GPIO_H */ -- cgit v1.2.3