Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38159 )
Change subject: drivers/i2c/i2cmux: Drop unused i2c multiplex
......................................................................
drivers/i2c/i2cmux: Drop unused i2c multiplex
There is no documentation what hardware this was compatible
with.
Change-Id: Ie8832f1d7f4ca2bc8121f84b1ee564403cc69026
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
D src/drivers/i2c/i2cmux/Kconfig
D src/drivers/i2c/i2cmux/Makefile.inc
D src/drivers/i2c/i2cmux/i2cmux.c
3 files changed, 0 insertions(+), 48 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/38159/1
diff --git a/src/drivers/i2c/i2cmux/Kconfig b/src/drivers/i2c/i2cmux/Kconfig
deleted file mode 100644
index 57bb278..0000000
--- a/src/drivers/i2c/i2cmux/Kconfig
+++ /dev/null
@@ -1,2 +0,0 @@
-config DRIVERS_I2C_I2CMUX
- bool
diff --git a/src/drivers/i2c/i2cmux/Makefile.inc b/src/drivers/i2c/i2cmux/Makefile.inc
deleted file mode 100644
index 64bbdce..0000000
--- a/src/drivers/i2c/i2cmux/Makefile.inc
+++ /dev/null
@@ -1 +0,0 @@
-ramstage-$(CONFIG_DRIVERS_I2C_I2CMUX) += i2cmux.c
diff --git a/src/drivers/i2c/i2cmux/i2cmux.c b/src/drivers/i2c/i2cmux/i2cmux.c
deleted file mode 100644
index 42b9d31..0000000
--- a/src/drivers/i2c/i2cmux/i2cmux.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * 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 <device/device.h>
-#include <device/smbus.h>
-
-static void i2cmux_set_link(struct device *dev, unsigned int link)
-{
- if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
- if (ops_smbus_bus(get_pbus_smbus(dev))) {
- smbus_write_byte(dev, 0x01, 1 << link); // output value
- smbus_write_byte(dev, 0x03, 0); // all output
- }
- }
-}
-
-static struct device_operations i2cmux_operations = {
- .read_resources = DEVICE_NOOP,
- .set_resources = DEVICE_NOOP,
- .enable_resources = DEVICE_NOOP,
- .init = DEVICE_NOOP,
- .scan_bus = scan_smbus,
- .set_link = i2cmux_set_link,
-};
-
-static void enable_dev(struct device *dev)
-{
- if (dev->link_list != NULL)
- dev->ops = &i2cmux_operations;
-}
-
-struct chip_operations drivers_i2c_i2cmux_ops = {
- CHIP_NAME("i2cmux")
- .enable_dev = enable_dev,
-};
--
To view, visit https://review.coreboot.org/c/coreboot/+/38159
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie8832f1d7f4ca2bc8121f84b1ee564403cc69026
Gerrit-Change-Number: 38159
Gerrit-PatchSet: 1
Gerrit-Owner: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-MessageType: newchange
Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38158 )
Change subject: drivers/i2c/lm63: Drop unused hardware monitor support
......................................................................
drivers/i2c/lm63: Drop unused hardware monitor support
Change-Id: Ie72f66a8fc93e4994df5463b8ff19ba118c88389
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
D src/drivers/i2c/lm63/Kconfig
D src/drivers/i2c/lm63/Makefile.inc
D src/drivers/i2c/lm63/lm63.c
3 files changed, 0 insertions(+), 50 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/38158/1
diff --git a/src/drivers/i2c/lm63/Kconfig b/src/drivers/i2c/lm63/Kconfig
deleted file mode 100644
index 120ee0d..0000000
--- a/src/drivers/i2c/lm63/Kconfig
+++ /dev/null
@@ -1,2 +0,0 @@
-config DRIVERS_I2C_LM63
- bool
diff --git a/src/drivers/i2c/lm63/Makefile.inc b/src/drivers/i2c/lm63/Makefile.inc
deleted file mode 100644
index bd1c7ef..0000000
--- a/src/drivers/i2c/lm63/Makefile.inc
+++ /dev/null
@@ -1 +0,0 @@
-ramstage-$(CONFIG_DRIVERS_I2C_LM63) += lm63.c
diff --git a/src/drivers/i2c/lm63/lm63.c b/src/drivers/i2c/lm63/lm63.c
deleted file mode 100644
index 3da38d8..0000000
--- a/src/drivers/i2c/lm63/lm63.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * 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 <device/device.h>
-#include <device/smbus.h>
-
-static void lm63_init(struct device *dev)
-{
- int result;
- if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
- if (ops_smbus_bus(get_pbus_smbus(dev))) {
- if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
- smbus_set_link(dev); // it is under mux
- result = smbus_read_byte(dev, 0x03);
-// result &= ~0x04;
- result |= 0x04;
- smbus_write_byte(dev, 0x03, result & 0xff); // config lm63
- }
- }
-}
-
-static struct device_operations lm63_operations = {
- .read_resources = DEVICE_NOOP,
- .set_resources = DEVICE_NOOP,
- .enable_resources = DEVICE_NOOP,
- .init = lm63_init,
-};
-
-static void enable_dev(struct device *dev)
-{
- dev->ops = &lm63_operations;
-}
-
-struct chip_operations drivers_i2c_lm63_ops = {
- CHIP_NAME("National Semiconductor LM63")
- .enable_dev = enable_dev,
-};
--
To view, visit https://review.coreboot.org/c/coreboot/+/38158
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie72f66a8fc93e4994df5463b8ff19ba118c88389
Gerrit-Change-Number: 38158
Gerrit-PatchSet: 1
Gerrit-Owner: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-MessageType: newchange
Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38156 )
Change subject: drivers/i2c/adm1026: Drop unused hardware monitor support
......................................................................
drivers/i2c/adm1026: Drop unused hardware monitor support
Change-Id: I4e2ebe4f2a90cc27f9a4de907b873df44718234d
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
D src/drivers/i2c/adm1026/Kconfig
D src/drivers/i2c/adm1026/Makefile.inc
D src/drivers/i2c/adm1026/adm1026.c
3 files changed, 0 insertions(+), 74 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/56/38156/1
diff --git a/src/drivers/i2c/adm1026/Kconfig b/src/drivers/i2c/adm1026/Kconfig
deleted file mode 100644
index 8168b29..0000000
--- a/src/drivers/i2c/adm1026/Kconfig
+++ /dev/null
@@ -1,2 +0,0 @@
-config DRIVERS_I2C_ADM1026
- bool
diff --git a/src/drivers/i2c/adm1026/Makefile.inc b/src/drivers/i2c/adm1026/Makefile.inc
deleted file mode 100644
index 7652a75..0000000
--- a/src/drivers/i2c/adm1026/Makefile.inc
+++ /dev/null
@@ -1 +0,0 @@
-ramstage-$(CONFIG_DRIVERS_I2C_ADM1026) += adm1026.c
diff --git a/src/drivers/i2c/adm1026/adm1026.c b/src/drivers/i2c/adm1026/adm1026.c
deleted file mode 100644
index c1bd905..0000000
--- a/src/drivers/i2c/adm1026/adm1026.c
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * 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 <console/console.h>
-#include <device/device.h>
-#include <device/smbus.h>
-
-#define ADM1026_DEVICE 0x2d /* Either 0x2c or 0x2d or 0x2e */
-#define ADM1026_REG_CONFIG1 0x00
-#define CFG1_MONITOR 0x01
-#define CFG1_INT_ENABLE 0x02
-#define CFG1_INT_CLEAR 0x04
-#define CFG1_AIN8_9 0x08
-#define CFG1_THERM_HOT 0x10
-#define CFT1_DAC_AFC 0x20
-#define CFG1_PWM_AFC 0x40
-#define CFG1_RESET 0x80
-#define ADM1026_REG_CONFIG2 0x01
-#define ADM1026_REG_CONFIG3 0x07
-
-static void adm1026_enable_monitoring(struct device *dev)
-{
- int result;
- result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
-
- result = (result | CFG1_MONITOR) & ~(CFG1_INT_CLEAR | CFG1_RESET);
- result = smbus_write_byte(dev, ADM1026_REG_CONFIG1, result);
-
- result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
- if (!(result & CFG1_MONITOR)) {
- printk(BIOS_DEBUG, "ADM1026: monitoring would not enable");
- }
-}
-
-static void adm1026_init(struct device *dev)
-{
- if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
- if (ops_smbus_bus(get_pbus_smbus(dev))) {
- if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
- smbus_set_link(dev); // it is under mux
- adm1026_enable_monitoring(dev);
- }
- }
-}
-
-static struct device_operations adm1026_operations = {
- .read_resources = DEVICE_NOOP,
- .set_resources = DEVICE_NOOP,
- .enable_resources = DEVICE_NOOP,
- .init = adm1026_init,
-};
-
-static void enable_dev(struct device *dev)
-{
- dev->ops = &adm1026_operations;
-}
-
-struct chip_operations drivers_i2c_adm1026_ops = {
- CHIP_NAME("adm1026")
- .enable_dev = enable_dev,
-};
--
To view, visit https://review.coreboot.org/c/coreboot/+/38156
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I4e2ebe4f2a90cc27f9a4de907b873df44718234d
Gerrit-Change-Number: 38156
Gerrit-PatchSet: 1
Gerrit-Owner: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-MessageType: newchange
awokd(a)danwin1210.me has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38173 )
Change subject: vc/amd/agesa/[...]/Proc/Mem: Comment out unused function
......................................................................
vc/amd/agesa/[...]/Proc/Mem: Comment out unused function
The MemNTrainingFlowNb function is not in use, but is creating a
Coverity warning. Comment it and its declaration out.
Change-Id: Ib56fb6d98f5afa0a73004c29d05647683e7a63d9
Signed-off-by: Joe Moore <awokd(a)danwin1210.me>
Found-by: Coverity CID 1357451
---
M src/vendorcode/amd/agesa/f14/Proc/Mem/NB/mn.c
M src/vendorcode/amd/agesa/f14/Proc/Mem/mn.h
M src/vendorcode/amd/agesa/f15tn/Proc/Mem/NB/mn.c
M src/vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h
4 files changed, 8 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/73/38173/1
diff --git a/src/vendorcode/amd/agesa/f14/Proc/Mem/NB/mn.c b/src/vendorcode/amd/agesa/f14/Proc/Mem/NB/mn.c
index 6afc3d0..f149d9b 100644
--- a/src/vendorcode/amd/agesa/f14/Proc/Mem/NB/mn.c
+++ b/src/vendorcode/amd/agesa/f14/Proc/Mem/NB/mn.c
@@ -296,7 +296,7 @@
* The DDR3 mode bit must be set prior to calling this function
*
* @param[in,out] *NBPtr - Pointer to the MEM_NB_BLOCK
- */
+
BOOLEAN
MemNTrainingFlowNb (
IN OUT MEM_NB_BLOCK *NBPtr
@@ -309,6 +309,7 @@
}
return TRUE;
}
+*/
/*-----------------------------------------------------------------------------*/
/**
diff --git a/src/vendorcode/amd/agesa/f14/Proc/Mem/mn.h b/src/vendorcode/amd/agesa/f14/Proc/Mem/mn.h
index e25c938..ec6cbc2 100644
--- a/src/vendorcode/amd/agesa/f14/Proc/Mem/mn.h
+++ b/src/vendorcode/amd/agesa/f14/Proc/Mem/mn.h
@@ -1023,10 +1023,12 @@
IN OUT MEM_NB_BLOCK *NBPtr
);
+/*
BOOLEAN
MemNTrainingFlowNb (
IN OUT MEM_NB_BLOCK *NBPtr
);
+*/
VOID
MemNRecTrainingFlowNb (
diff --git a/src/vendorcode/amd/agesa/f15tn/Proc/Mem/NB/mn.c b/src/vendorcode/amd/agesa/f15tn/Proc/Mem/NB/mn.c
index 63195e0..03f05f0 100644
--- a/src/vendorcode/amd/agesa/f15tn/Proc/Mem/NB/mn.c
+++ b/src/vendorcode/amd/agesa/f15tn/Proc/Mem/NB/mn.c
@@ -292,7 +292,7 @@
* The DDR3 mode bit must be set prior to calling this function
*
* @param[in,out] *NBPtr - Pointer to the MEM_NB_BLOCK
- */
+
BOOLEAN
MemNTrainingFlowNb (
IN OUT MEM_NB_BLOCK *NBPtr
@@ -305,6 +305,7 @@
}
return TRUE;
}
+*/
/*-----------------------------------------------------------------------------*/
/**
diff --git a/src/vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h b/src/vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h
index 4be78a3..b409ac5 100644
--- a/src/vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h
+++ b/src/vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h
@@ -1127,10 +1127,12 @@
IN OUT MEM_NB_BLOCK *NBPtr
);
+/*
BOOLEAN
MemNTrainingFlowNb (
IN OUT MEM_NB_BLOCK *NBPtr
);
+*/
VOID
MemNRecTrainingFlowNb (
--
To view, visit https://review.coreboot.org/c/coreboot/+/38173
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib56fb6d98f5afa0a73004c29d05647683e7a63d9
Gerrit-Change-Number: 38173
Gerrit-PatchSet: 1
Gerrit-Owner: awokd(a)danwin1210.me
Gerrit-MessageType: newchange
Hello Patrick Rudolph, Subrata Banik, Balaji Manigandan, Aamir Bohra, Sridhar Siricilla, Rizwan Qureshi, build bot (Jenkins), Patrick Georgi, Furquan Shaikh, V Sowmya, Andrey Petrov, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35403
to look at the new patch set (#38).
Change subject: soc/intel/common/basecode: Implement CSE update flow
......................................................................
soc/intel/common/basecode: Implement CSE update flow
This is the core patch that implement CSE FW update flow.
To enable the FW update flow the following are required:
* Descriptor change to accommodate a larger CSME region
The CSME size is 4.1MB.
* FMAP changes to accommodate ME update binary in RW CBFSes & larger
CSE binary.
Due to the increased CSME binary size and to accommodate the extra
CSME RW binaries (which are ~2.5 MB) in RW CBFSes, the board FMAP has
to be modified.
* The new CSE binary with new partitions and respective RW area binaries.
The following changes have been done in this patch:
* Implement Update flow
Get the partition info containing version of ME RW using
GET_BOOT_PARTITION_INFO HECI command
Get the me_rw.version from the currently selected RW slot.
If the version from the above 2 locations don't match start the update
- Set the CSE's next boot partition to RO using SET_BOOT_PARTITION
HECI command.
- Send global reset command to reset only the CSME
- Wait for CSME to enter SOFT_TEMP_DISABLE operation mode
(indicated by HFSTS1 register bit 19:16)
- Enable HMRFPO (Host ME Region Flash Protection Override) using the
HMRFPO_ENABLE HECI command
- Erase and Copy the CBFS ME RW to ME RW partition
- Set the CSE's next boot partition to RW using
SET_BOOT_PARTITION HECI command
- Trigger global reset
The system should boot with the Updated ME
Verified basic update flows on Cometlake RVP and hatch.
BUG=b:111330995
Change-Id: I12f6bba3324069d65edabaccd234006b0840e700
Signed-off-by: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Signed-off-by: V Sowmya <v.sowmya(a)intel.com>
Signed-off-by: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
---
A Documentation/soc/intel/cse_fw_update/Layout_after.svg
A Documentation/soc/intel/cse_fw_update/Layout_before.svg
A Documentation/soc/intel/cse_fw_update/cse_fw_update.md
M Documentation/soc/intel/index.md
A src/soc/intel/common/basecode/fw_update/Kconfig
A src/soc/intel/common/basecode/fw_update/Makefile.inc
A src/soc/intel/common/basecode/fw_update/cse_update.c
A src/soc/intel/common/basecode/include/intelbasecode/cse_update.h
8 files changed, 854 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/03/35403/38
--
To view, visit https://review.coreboot.org/c/coreboot/+/35403
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I12f6bba3324069d65edabaccd234006b0840e700
Gerrit-Change-Number: 35403
Gerrit-PatchSet: 38
Gerrit-Owner: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Gerrit-Reviewer: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Reviewer: Andrey Petrov <anpetrov(a)fb.com>
Gerrit-Reviewer: Balaji Manigandan <balaji.manigandan(a)intel.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Gerrit-Reviewer: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Gerrit-Reviewer: Sridhar Siricilla <sridhar.siricilla(a)intel.corp-partner.google.com>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: V Sowmya <v.sowmya(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Maxim Polyakov <max.senia.poliak(a)gmail.com>
Gerrit-CC: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-CC: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-MessageType: newpatchset
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/37565
to look at the new patch set (#3).
Change subject: [WIP] [Untested] Add Razer Blade Stealth IceLake Mercury White (late 2019)
......................................................................
[WIP] [Untested] Add Razer Blade Stealth IceLake Mercury White (late 2019)
The Razer Blade Stealth Mercury White is a IceLake system using:
- Intel i7-1065G7 (IceLake with Iris Plus GPU)
- ITE IT8320VG SuperIO
- Samsung M981 MZ-VLKB2560 256GB NVMe SSD
- Two Samsung K4UBE3D4AM-GHCL LPDDR4 chips
- Integrated TitanRidge Thunderbolt 3 controller
- ??? USB-PD power switch / multiplexer
Change-Id: I5711cbcd69813832d9bacc9563f651ab8702554a
Signed-off-by: Johanna Schander <coreboot(a)mimoja.de>
---
A src/mainboard/razer/blade_stealth_icl/Kconfig
A src/mainboard/razer/blade_stealth_icl/Kconfig.name
A src/mainboard/razer/blade_stealth_icl/Makefile.inc
A src/mainboard/razer/blade_stealth_icl/acpi/mainboard.asl
A src/mainboard/razer/blade_stealth_icl/acpi_tables.c
A src/mainboard/razer/blade_stealth_icl/board_info.txt
A src/mainboard/razer/blade_stealth_icl/bootblock.c
A src/mainboard/razer/blade_stealth_icl/devicetree.cb
A src/mainboard/razer/blade_stealth_icl/dsdt.asl
A src/mainboard/razer/blade_stealth_icl/ec.h
A src/mainboard/razer/blade_stealth_icl/gpio.h
A src/mainboard/razer/blade_stealth_icl/hda_verb.c
A src/mainboard/razer/blade_stealth_icl/hda_verb.h
A src/mainboard/razer/blade_stealth_icl/ramstage.c
A src/mainboard/razer/blade_stealth_icl/romstage.c
A src/mainboard/razer/blade_stealth_icl/spd/Makefile.inc
A src/mainboard/razer/blade_stealth_icl/spd/samsung_K4F6E304HBMGCJ.spd.hex
A src/mainboard/razer/blade_stealth_icl/spd/spd.h
A src/mainboard/razer/blade_stealth_icl/spd/spd_util.c
19 files changed, 1,192 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/37565/3
--
To view, visit https://review.coreboot.org/c/coreboot/+/37565
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5711cbcd69813832d9bacc9563f651ab8702554a
Gerrit-Change-Number: 37565
Gerrit-PatchSet: 3
Gerrit-Owner: Mimoja <coreboot(a)mimoja.de>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Mimoja <coreboot(a)mimoja.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Felix Singer <felixsinger(a)posteo.net>
Gerrit-CC: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-MessageType: newpatchset