Sheng-Liang Pan has posted comments on this change. ( https://review.coreboot.org/28332 )
Change subject: mb/google/octopus: add Digitizer and Synaptics Touchpad for bobba
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://review.coreboot.org/28332
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie0bf8ebab6d9cb9c8fe42a500efaa3d11ae359db
Gerrit-Change-Number: 28332
Gerrit-PatchSet: 1
Gerrit-Owner: Pan Sheng-Liang <sl.pan.quantw(a)gmail.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Justin TerAvest <teravest(a)chromium.org>
Gerrit-Reviewer: Sheng-Liang Pan <sheng-liang.pan(a)quanta.corp-partner.google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Mon, 27 Aug 2018 02:29:47 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Furquan Shaikh has uploaded this change for review. ( https://review.coreboot.org/28352
Change subject: drivers/intel/wifi: Make WIFI_SAR_CBFS user visible
......................................................................
drivers/intel/wifi: Make WIFI_SAR_CBFS user visible
This change makes WIFI_SAR_CBFS user selectable option so that it can
be enabled/disabled from menuconfig along with the SAR filepath.
BUG=b:112425861
Change-Id: Idf6feaefe68e7ebf6786c2c36e92a054fba4483c
Signed-off-by: Furquan Shaikh <furquan(a)google.com>
---
M src/drivers/intel/wifi/Kconfig
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/28352/1
diff --git a/src/drivers/intel/wifi/Kconfig b/src/drivers/intel/wifi/Kconfig
index 3cf0446..4dc4d7f 100644
--- a/src/drivers/intel/wifi/Kconfig
+++ b/src/drivers/intel/wifi/Kconfig
@@ -31,7 +31,7 @@
depends on USE_SAR
config WIFI_SAR_CBFS
- bool
+ bool "Enable SAR table addition to CBFS"
default n
depends on USE_SAR
help
--
To view, visit https://review.coreboot.org/28352
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: Idf6feaefe68e7ebf6786c2c36e92a054fba4483c
Gerrit-Change-Number: 28352
Gerrit-PatchSet: 1
Gerrit-Owner: Furquan Shaikh <furquan(a)google.com>
Philipp Deppenwiese has uploaded this change for review. ( https://review.coreboot.org/28351
Change subject: vendorcode/facebook: Add vendorcode
......................................................................
vendorcode/facebook: Add vendorcode
* Add Open Cellular extensions for TIVA communication
and reset.
Change-Id: I761ac3d1dcbab9dceb7a4c4f835ca8363680eb03
Signed-off-by: Philipp Deppenwiese <zaolin(a)das-labor.org>
---
M src/vendorcode/Makefile.inc
A src/vendorcode/facebook/Kconfig
A src/vendorcode/facebook/Makefile.inc
A src/vendorcode/facebook/opencellular/reset.c
4 files changed, 78 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/28351/1
diff --git a/src/vendorcode/Makefile.inc b/src/vendorcode/Makefile.inc
index 522d415..c4dbb67 100644
--- a/src/vendorcode/Makefile.inc
+++ b/src/vendorcode/Makefile.inc
@@ -3,3 +3,4 @@
subdirs-y += intel
subdirs-y += siemens
subdirs-y += cavium
+subdirs-y += facebook
diff --git a/src/vendorcode/facebook/Kconfig b/src/vendorcode/facebook/Kconfig
new file mode 100644
index 0000000..f512145
--- /dev/null
+++ b/src/vendorcode/facebook/Kconfig
@@ -0,0 +1,33 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright 2018-present Facebook, 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.
+##
+
+config FACEBOOK_OPENCELLULAR
+ def_bool n
+ select HAVE_HARD_RESET
+ help
+ Build Facebook OC extensions
+
+if FACEBOOK_OPENCELLULAR
+
+menu "Open Celluar"
+
+config FACEBOOK_OPENCELLULAR_TIVA_RESET
+ bool "Enables TIVA hard reset feature"
+ default n
+ depends on FACEBOOK_OPENCELLULAR
+
+endmenu
+
+endif
diff --git a/src/vendorcode/facebook/Makefile.inc b/src/vendorcode/facebook/Makefile.inc
new file mode 100644
index 0000000..ec01240
--- /dev/null
+++ b/src/vendorcode/facebook/Makefile.inc
@@ -0,0 +1,22 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright 2018-present Facebook, 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.
+##
+
+ifeq ($(CONFIG_FACEBOOK_OPENCELLULAR),y)
+
+verstage-$(CONFIG_FACEBOOK_OPENCELLULAR_TIVA_RESET) += opencellular/reset.c
+romstage-$(CONFIG_FACEBOOK_OPENCELLULAR_TIVA_RESET) += opencellular/reset.c
+ramstage-$(CONFIG_FACEBOOK_OPENCELLULAR_TIVA_RESET) += opencellular/reset.c
+
+endif
diff --git a/src/vendorcode/facebook/opencellular/reset.c b/src/vendorcode/facebook/opencellular/reset.c
new file mode 100644
index 0000000..fbba43c
--- /dev/null
+++ b/src/vendorcode/facebook/opencellular/reset.c
@@ -0,0 +1,22 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2018-present Facebook, 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.
+ *
+ * Derived from Cavium's BSD-3 Clause OCTEONTX-SDK-6.2.0.
+ */
+
+#include <reset.h>
+
+void do_hard_reset(void)
+{
+}
--
To view, visit https://review.coreboot.org/28351
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: I761ac3d1dcbab9dceb7a4c4f835ca8363680eb03
Gerrit-Change-Number: 28351
Gerrit-PatchSet: 1
Gerrit-Owner: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Felix Held has posted comments on this change. ( https://review.coreboot.org/28348 )
Change subject: src/drivers/pc80/pc: Remove unneeded include
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/28348
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ic238181d5c26ab8cf549137824a7c5e6c6d80ab1
Gerrit-Change-Number: 28348
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Sun, 26 Aug 2018 16:08:28 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes