Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/28953 )
Change subject: treewide: use /usr/bin/env where appropriate
......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/#/c/28953/1/util/ipqheader/mbn_tools.py
File util/ipqheader/mbn_tools.py:
https://review.coreboot.org/#/c/28953/1/util/ipqheader/mbn_tools.py@1
PS1, Line 1: #!/usr/bin/env python
> This was not addressed, but the patch was merged anyway. […]
oops, sorry - I missed this. can you put up a commit to fix this?
--
To view, visit https://review.coreboot.org/28953
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: I7546bcb881c532adc984577ecb0ee2ec4f2efe00
Gerrit-Change-Number: 28953
Gerrit-PatchSet: 2
Gerrit-Owner: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Sat, 17 Nov 2018 07:58:34 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Angel Pons has posted comments on this change. ( https://review.coreboot.org/28953 )
Change subject: treewide: use /usr/bin/env where appropriate
......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/#/c/28953/1/util/ipqheader/mbn_tools.py
File util/ipqheader/mbn_tools.py:
https://review.coreboot.org/#/c/28953/1/util/ipqheader/mbn_tools.py@1
PS1, Line 1: #!/usr/bin/env python
> Yes, it definitely was. Thanks.
This was not addressed, but the patch was merged anyway. (!)
--
To view, visit https://review.coreboot.org/28953
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: I7546bcb881c532adc984577ecb0ee2ec4f2efe00
Gerrit-Change-Number: 28953
Gerrit-PatchSet: 2
Gerrit-Owner: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Sat, 17 Nov 2018 07:44:30 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/28953 )
Change subject: treewide: use /usr/bin/env where appropriate
......................................................................
Patch Set 1: Code-Review+2
--
To view, visit https://review.coreboot.org/28953
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: I7546bcb881c532adc984577ecb0ee2ec4f2efe00
Gerrit-Change-Number: 28953
Gerrit-PatchSet: 1
Gerrit-Owner: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Yegor Timoshenko <yegortimoshenko(a)riseup.net>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Sat, 17 Nov 2018 07:31:58 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Patrick Georgi has submitted this change and it was merged. ( https://review.coreboot.org/29649 )
Change subject: mb/google/sarien: Set SMBIOS mainboard SKU
......................................................................
mb/google/sarien: Set SMBIOS mainboard SKU
Setting sku_id() is not enough to get a value to show up in the SMBIOS
tables, it also needs to be returned as a string for the table creation
to consume. This change defines the smbios_mainboard_sku() function
and returns a string constant of "sku#" as expected.
Change-Id: I03013bab89d53d1eba969c6ffb7e95fcbb315a81
Signed-off-by: Duncan Laurie <dlaurie(a)google.com>
Reviewed-on: https://review.coreboot.org/29649
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Furquan Shaikh <furquan(a)google.com>
Reviewed-by: Trent Begin <tbegin(a)google.com>
---
M src/mainboard/google/sarien/sku.c
M src/mainboard/google/sarien/variants/arcada/include/variant/variant.h
M src/mainboard/google/sarien/variants/sarien/include/variant/variant.h
3 files changed, 8 insertions(+), 0 deletions(-)
Approvals:
build bot (Jenkins): Verified
Furquan Shaikh: Looks good to me, approved
Trent Begin: Looks good to me, but someone else must approve
diff --git a/src/mainboard/google/sarien/sku.c b/src/mainboard/google/sarien/sku.c
index 9fc61a3..c064c02 100644
--- a/src/mainboard/google/sarien/sku.c
+++ b/src/mainboard/google/sarien/sku.c
@@ -14,9 +14,15 @@
*/
#include <boardid.h>
+#include <smbios.h>
#include <variant/variant.h>
uint32_t sku_id(void)
{
return VARIANT_SKU_ID;
}
+
+const char *smbios_mainboard_sku(void)
+{
+ return VARIANT_SKU_NAME;
+}
diff --git a/src/mainboard/google/sarien/variants/arcada/include/variant/variant.h b/src/mainboard/google/sarien/variants/arcada/include/variant/variant.h
index f1e551a..d128432 100644
--- a/src/mainboard/google/sarien/variants/arcada/include/variant/variant.h
+++ b/src/mainboard/google/sarien/variants/arcada/include/variant/variant.h
@@ -18,5 +18,6 @@
/* Arcada is SKU ID 2 */
#define VARIANT_SKU_ID 2
+#define VARIANT_SKU_NAME "sku2"
#endif
diff --git a/src/mainboard/google/sarien/variants/sarien/include/variant/variant.h b/src/mainboard/google/sarien/variants/sarien/include/variant/variant.h
index d0be7fc..d367505 100644
--- a/src/mainboard/google/sarien/variants/sarien/include/variant/variant.h
+++ b/src/mainboard/google/sarien/variants/sarien/include/variant/variant.h
@@ -18,5 +18,6 @@
/* Sarien is SKU ID 1 */
#define VARIANT_SKU_ID 1
+#define VARIANT_SKU_NAME "sku1"
#endif
--
To view, visit https://review.coreboot.org/29649
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I03013bab89d53d1eba969c6ffb7e95fcbb315a81
Gerrit-Change-Number: 29649
Gerrit-PatchSet: 2
Gerrit-Owner: Duncan Laurie <dlaurie(a)chromium.org>
Gerrit-Reviewer: Duncan Laurie <dlaurie(a)chromium.org>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Trent Begin <tbegin(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Ivy Jian has posted comments on this change. ( https://review.coreboot.org/29656 )
Change subject: mb/google/kahlee/variants/delan: Enable Weida touchscreen device
......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/#/c/29656/1/src/mainboard/google/kahlee/variant…
File src/mainboard/google/kahlee/variants/delan/devicetree.cb:
https://review.coreboot.org/#/c/29656/1/src/mainboard/google/kahlee/variant…
PS1, Line 179: 130
> this looks pretty long compared to the other touchscreens?
That is required from vendor and described in datasheet.
refer to : issue https://issuetracker.google.com/issues/111102092#comment8
--
To view, visit https://review.coreboot.org/29656
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: Id1484a482de6282c97f3aac329f217bbcb7dbd18
Gerrit-Change-Number: 29656
Gerrit-PatchSet: 1
Gerrit-Owner: Ivy Jian <ivy_jian(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Ivy Jian <ivy_jian(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Daniel Kurtz <djkurtz(a)google.com>
Gerrit-Comment-Date: Sat, 17 Nov 2018 02:08:28 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Daniel Kurtz has posted comments on this change. ( https://review.coreboot.org/29656 )
Change subject: mb/google/kahlee/variants/delan: Enable Weida touchscreen device
......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/#/c/29656/1/src/mainboard/google/kahlee/variant…
File src/mainboard/google/kahlee/variants/delan/devicetree.cb:
https://review.coreboot.org/#/c/29656/1/src/mainboard/google/kahlee/variant…
PS1, Line 179: 130
this looks pretty long compared to the other touchscreens?
--
To view, visit https://review.coreboot.org/29656
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: Id1484a482de6282c97f3aac329f217bbcb7dbd18
Gerrit-Change-Number: 29656
Gerrit-PatchSet: 1
Gerrit-Owner: Ivy Jian <ivy_jian(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Ivy Jian <ivy_jian(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Daniel Kurtz <djkurtz(a)google.com>
Gerrit-Comment-Date: Fri, 16 Nov 2018 23:20:25 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Matt Delco has uploaded this change for review. ( https://review.coreboot.org/29664
Change subject: mb/google/poppy/variants/atlas: enable eist
......................................................................
mb/google/poppy/variants/atlas: enable eist
Enable Enhanced Intel SpeedStep (EIST) on Atlas.
There's also a redundant dptf_enable line (the other instance is earlier
in the file with a comment), so I just renamed the setting to kill two
birds with one commit.
Change-Id: I57dca346c43feebcddf88f38d4e9f3105775b398
Signed-off-by: Matt Delco <delco(a)chromium.org>
---
M src/mainboard/google/poppy/variants/atlas/devicetree.cb
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/29664/1
diff --git a/src/mainboard/google/poppy/variants/atlas/devicetree.cb b/src/mainboard/google/poppy/variants/atlas/devicetree.cb
index 229838f..6bdaa18 100644
--- a/src/mainboard/google/poppy/variants/atlas/devicetree.cb
+++ b/src/mainboard/google/poppy/variants/atlas/devicetree.cb
@@ -63,7 +63,7 @@
register "VmxEnable" = "1"
register "speed_shift_enable" = "1"
- register "dptf_enable" = "1"
+ register "eist_enable" = "1"
register "tdp_pl2_override" = "15"
register "psys_pmax" = "45"
register "tcc_offset" = "10"
--
To view, visit https://review.coreboot.org/29664
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: I57dca346c43feebcddf88f38d4e9f3105775b398
Gerrit-Change-Number: 29664
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Delco <delco(a)chromium.org>