Justin TerAvest has uploaded a new patch set (#2). ( https://review.coreboot.org/25131 )
Change subject: mb/google/octopus: Create yorp variant
......................................................................
mb/google/octopus: Create yorp variant
This commit provides a Yorp board config option and the necessary
variant files to allow building.
BUG=b:74443669,b:74067452
TEST=Build
Signed-off-by: Justin TerAvest <teravest(a)chromium.org>
Change-Id: Id6962f15956a4d5280062ee684bb5154163e5473
---
M src/mainboard/google/octopus/Kconfig
M src/mainboard/google/octopus/Kconfig.name
A src/mainboard/google/octopus/variants/yorp/include/variant/acpi/dptf.asl
A src/mainboard/google/octopus/variants/yorp/include/variant/ec.h
A src/mainboard/google/octopus/variants/yorp/include/variant/gpio.h
5 files changed, 69 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/25131/2
--
To view, visit https://review.coreboot.org/25131
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Id6962f15956a4d5280062ee684bb5154163e5473
Gerrit-Change-Number: 25131
Gerrit-PatchSet: 2
Gerrit-Owner: Justin TerAvest <teravest(a)chromium.org>
Justin TerAvest has uploaded this change for review. ( https://review.coreboot.org/25131
Change subject: mb/google/octopus: Create yorp variant.
......................................................................
mb/google/octopus: Create yorp variant.
This commit provides a Yorp board config option and the necessary
variant files to allow building.
BUG=b:74443669,b:74067452
TEST=Build
Signed-off-by: Justin TerAvest <teravest(a)chromium.org>
Change-Id: Id6962f15956a4d5280062ee684bb5154163e5473
---
M src/mainboard/google/octopus/Kconfig
M src/mainboard/google/octopus/Kconfig.name
A src/mainboard/google/octopus/variants/yorp/include/variant/acpi/dptf.asl
A src/mainboard/google/octopus/variants/yorp/include/variant/ec.h
A src/mainboard/google/octopus/variants/yorp/include/variant/gpio.h
5 files changed, 69 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/25131/1
diff --git a/src/mainboard/google/octopus/Kconfig b/src/mainboard/google/octopus/Kconfig
index 0f30316..0375b78 100644
--- a/src/mainboard/google/octopus/Kconfig
+++ b/src/mainboard/google/octopus/Kconfig
@@ -33,6 +33,7 @@
config VARIANT_DIR
string
+ default "yorp" if BOARD_GOOGLE_YORP
default "octopus" if BOARD_GOOGLE_OCTOPUS
config DEVICETREE
@@ -41,6 +42,7 @@
config MAINBOARD_PART_NUMBER
string
+ default "yorp" if BOARD_GOOGLE_YORP
default "octopus" if BOARD_GOOGLE_OCTOPUS
config MAINBOARD_FAMILY
@@ -50,6 +52,7 @@
config GBB_HWID
string
depends on CHROMEOS
+ default "YORP TEST 7755" if BOARD_GOOGLE_YORP
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 5d375f7..f4bd02c 100644
--- a/src/mainboard/google/octopus/Kconfig.name
+++ b/src/mainboard/google/octopus/Kconfig.name
@@ -2,3 +2,11 @@
bool "Octopus"
select BOARD_GOOGLE_BASEBOARD_OCTOPUS
select BASEBOARD_OCTOPUS_LAPTOP
+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/yorp/include/variant/acpi/dptf.asl b/src/mainboard/google/octopus/variants/yorp/include/variant/acpi/dptf.asl
new file mode 100644
index 0000000..f3ff04b
--- /dev/null
+++ b/src/mainboard/google/octopus/variants/yorp/include/variant/acpi/dptf.asl
@@ -0,0 +1,16 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2016 Google Inc.
+ *
+ * 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 <baseboard/acpi/dptf.asl>
diff --git a/src/mainboard/google/octopus/variants/yorp/include/variant/ec.h b/src/mainboard/google/octopus/variants/yorp/include/variant/ec.h
new file mode 100644
index 0000000..586f106
--- /dev/null
+++ b/src/mainboard/google/octopus/variants/yorp/include/variant/ec.h
@@ -0,0 +1,21 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2016 Google Inc.
+ *
+ * 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 <baseboard/ec.h>
+
+#endif
diff --git a/src/mainboard/google/octopus/variants/yorp/include/variant/gpio.h b/src/mainboard/google/octopus/variants/yorp/include/variant/gpio.h
new file mode 100644
index 0000000..6d1ce5a
--- /dev/null
+++ b/src/mainboard/google/octopus/variants/yorp/include/variant/gpio.h
@@ -0,0 +1,21 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2016 Google Inc.
+ *
+ * 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 <baseboard/gpio.h>
+
+#endif /* MAINBOARD_GPIO_H */
--
To view, visit https://review.coreboot.org/25131
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Id6962f15956a4d5280062ee684bb5154163e5473
Gerrit-Change-Number: 25131
Gerrit-PatchSet: 1
Gerrit-Owner: Justin TerAvest <teravest(a)chromium.org>