Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47782 )
Change subject: drivers/i2c/hid: Use ACPI device name if provided by config
......................................................................
drivers/i2c/hid: Use ACPI device name if provided by config
Follow model of drivers/i2c/generic and use user-supplied device
name if specified in the chip config.
Change-Id: Ia783bac2797e239989c03a3421b9293a055db3d0
Signed-off-by: Matt DeVillier <matt.devillier(a)puri.sm>
---
M src/drivers/i2c/hid/hid.c
1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/47782/1
diff --git a/src/drivers/i2c/hid/hid.c b/src/drivers/i2c/hid/hid.c
index 0755852..2d213eb 100644
--- a/src/drivers/i2c/hid/hid.c
+++ b/src/drivers/i2c/hid/hid.c
@@ -28,6 +28,10 @@
static const char *i2c_hid_acpi_name(const struct device *dev)
{
static char name[5];
+ struct drivers_i2c_hid_config *config = dev->chip_info;
+ if (config->generic.name)
+ return config->generic.name;
+
snprintf(name, sizeof(name), "H%03.3X", dev->path.i2c.device);
name[4] = '\0';
return name;
--
To view, visit https://review.coreboot.org/c/coreboot/+/47782
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia783bac2797e239989c03a3421b9293a055db3d0
Gerrit-Change-Number: 47782
Gerrit-PatchSet: 1
Gerrit-Owner: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-MessageType: newchange
Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47781 )
Change subject: drivers/i2c/generic: Only write DDN field if description not empty
......................................................................
drivers/i2c/generic: Only write DDN field if description not empty
DDN field isn't required, no point in writing an empty string to it.
Change-Id: Ifea6e48c324598f114178e86a79f519ee35f5258
Signed-off-by: Matt DeVillier <matt.devillier(a)puri.sm>
---
M src/drivers/i2c/generic/generic.c
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/47781/1
diff --git a/src/drivers/i2c/generic/generic.c b/src/drivers/i2c/generic/generic.c
index cd74068..1c7267e 100644
--- a/src/drivers/i2c/generic/generic.c
+++ b/src/drivers/i2c/generic/generic.c
@@ -72,7 +72,8 @@
if (config->cid)
acpigen_write_name_string("_CID", config->cid);
acpigen_write_name_integer("_UID", config->uid);
- acpigen_write_name_string("_DDN", config->desc);
+ if (config->desc)
+ acpigen_write_name_string("_DDN", config->desc);
acpigen_write_STA(acpi_device_status(dev));
/* Resources */
--
To view, visit https://review.coreboot.org/c/coreboot/+/47781
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ifea6e48c324598f114178e86a79f519ee35f5258
Gerrit-Change-Number: 47781
Gerrit-PatchSet: 1
Gerrit-Owner: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-MessageType: newchange
Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47762 )
Change subject: Documentation: Mention newer Intel μ-code updates in 4.13 release notes
......................................................................
Documentation: Mention newer Intel μ-code updates in 4.13 release notes
Start a new section *Notes* for these kind of information.
Change-Id: I86be22cebb96e6f07676a9bc52794a4c12dad3e4
Signed-off-by: Paul Menzel <pmenzel(a)molgen.mpg.de>
---
M Documentation/releases/coreboot-4.13-relnotes.md
1 file changed, 24 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/47762/1
diff --git a/Documentation/releases/coreboot-4.13-relnotes.md b/Documentation/releases/coreboot-4.13-relnotes.md
index c9447a3..a5d05ac 100644
--- a/Documentation/releases/coreboot-4.13-relnotes.md
+++ b/Documentation/releases/coreboot-4.13-relnotes.md
@@ -120,3 +120,27 @@
In order to minimize the usage of PCI bus mastering, the options we introduced in
this release will be dropped in a future release again. For more details, please
see [Preparations to minimize enabling PCI bus mastering](#preparations-to-minimize-enabling-pci-bus-mastering-in-coreboot).
+
+Notes
+-----
+
+### Intel microcode updates
+
+Intel microcode updates tagged *microcode-20200616* are still included in our
+builds. Note, [Intel released new microcode updates]
+(https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/blob/main/releasenote.md)
+tagged
+
+1. *microcode-20201110*
+1. *microcode-20201112*
+1. *microcode-20201118*
+
+with security updates for [INTEL-SA-00381]
+(https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00381.html)
+and [INTEL-SA-00389]
+(https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00389.html).
+
+Due to too short time for rigorous testing, and bad experience with botched
+microcode updates in the past, these new updates are not included. Users wanting
+to use those, can apply them in the operating system, or update the submodule
+pointer themselves.
--
To view, visit https://review.coreboot.org/c/coreboot/+/47762
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I86be22cebb96e6f07676a9bc52794a4c12dad3e4
Gerrit-Change-Number: 47762
Gerrit-PatchSet: 1
Gerrit-Owner: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-MessageType: newchange