Casper Chang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36766 )
Change subject: TEST ONLY: DO NOT MERGE
......................................................................
TEST ONLY: DO NOT MERGE
Change-Id: I53ef63261537acdaf74edc13047a3e5e499e749f
---
A src/mainboard/google/kukui/TESTONLY
1 file changed, 0 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/36766/1
diff --git a/src/mainboard/google/kukui/TESTONLY b/src/mainboard/google/kukui/TESTONLY
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/mainboard/google/kukui/TESTONLY
--
To view, visit https://review.coreboot.org/c/coreboot/+/36766
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I53ef63261537acdaf74edc13047a3e5e499e749f
Gerrit-Change-Number: 36766
Gerrit-PatchSet: 1
Gerrit-Owner: Casper Chang <casper.chang(a)bitland.corp-partner.google.com>
Gerrit-MessageType: newchange
huayang duan has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36906 )
Change subject: soc/mediatek/mt8183: Always run full calibration for debug DRAM issue [DONOT MERGE] Disable fast calibration, that is always run full calibration for debug DRAM bitfilp issue.
......................................................................
soc/mediatek/mt8183: Always run full calibration for debug DRAM issue [DONOT MERGE]
Disable fast calibration, that is always run full calibration for
debug DRAM bitfilp issue.
BUG=b:80501386,b:142358843
BRANCH=kukui
TEST=Boots correctly on Kukui
Change-Id: I693cfe98ea4317c4b856e9bb1f18046a10fe72f8
---
M src/soc/mediatek/mt8183/memory.c
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/06/36906/1
diff --git a/src/soc/mediatek/mt8183/memory.c b/src/soc/mediatek/mt8183/memory.c
index 13c3d9a..fafe2a6 100644
--- a/src/soc/mediatek/mt8183/memory.c
+++ b/src/soc/mediatek/mt8183/memory.c
@@ -170,6 +170,11 @@
if (CONFIG(MT8183_DRAM_DVFS) && !recovery_mode)
config |= DRAMC_CONFIG_DVFS;
+
+printk(BIOS_ERR, "DRAM-K: Force disable Fast Calibration for debug DRAM issue\n");
+
+// disable fast calibration for debug DRAM issue
+if (0) {
/* Load calibration params from flash and run fast calibration */
if (recovery_mode) {
printk(BIOS_WARNING, "Skip loading cached calibration data\n");
@@ -195,6 +200,7 @@
printk(BIOS_WARNING,
"Failed to read calibration data from flash\n");
}
+}
/* Run full calibration */
printk(BIOS_INFO, "DRAM-K: Full Calibration\n");
--
To view, visit https://review.coreboot.org/c/coreboot/+/36906
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I693cfe98ea4317c4b856e9bb1f18046a10fe72f8
Gerrit-Change-Number: 36906
Gerrit-PatchSet: 1
Gerrit-Owner: huayang duan <huayangduan(a)gmail.com>
Gerrit-MessageType: newchange
Name of user not set #1002701 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/37551 )
Change subject: New PCI ID for FCH SATA Controller (AHCI Mode) for AMD driver.
......................................................................
New PCI ID for FCH SATA Controller (AHCI Mode) for AMD driver.
The 1022:7904 FCH SATA Controller is found in the AMD Bettong board.
Support is added to configure properly the SATA device in initialization.
SATA Controller has different device IDs for different drivers. They
are renamed accordingly.
Change-Id: Icdede188c82bfe8964c32fe81bdf6a3a6a17096c
Signed-off-by: Jorge Fernandez <jorgefm(a)cirsa.com>
---
M src/include/device/pci_ids.h
M src/soc/amd/common/block/sata/sata.c
M src/southbridge/amd/pi/hudson/sata.c
3 files changed, 6 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/37551/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 1276994..853e910 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -447,8 +447,8 @@
#define PCI_DEVICE_ID_AMD_CZ_HDA 0x157A
#define PCI_DEVICE_ID_AMD_CZ_LPC 0x790E
-#define PCI_DEVICE_ID_AMD_CZ_SATA 0x7900
-#define PCI_DEVICE_ID_AMD_CZ_SATA_AHCI 0x7901
+#define PCI_DEVICE_ID_AMD_CZ_SATA_IDE 0x7900
+#define PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_MS 0x7901
#define PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_AMD 0x7904
#define PCI_DEVICE_ID_AMD_CZ_USB_0 0x7907
#define PCI_DEVICE_ID_AMD_CZ_USB_1 0x7908
diff --git a/src/soc/amd/common/block/sata/sata.c b/src/soc/amd/common/block/sata/sata.c
index 1cd342e..b276809 100644
--- a/src/soc/amd/common/block/sata/sata.c
+++ b/src/soc/amd/common/block/sata/sata.c
@@ -28,8 +28,8 @@
};
static const unsigned short pci_device_ids[] = {
- PCI_DEVICE_ID_AMD_CZ_SATA,
- PCI_DEVICE_ID_AMD_CZ_SATA_AHCI,
+ PCI_DEVICE_ID_AMD_CZ_SATA_IDE,
+ PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_MS,
PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_AMD,
0
};
diff --git a/src/southbridge/amd/pi/hudson/sata.c b/src/southbridge/amd/pi/hudson/sata.c
index 77365ef..5846a45 100644
--- a/src/southbridge/amd/pi/hudson/sata.c
+++ b/src/southbridge/amd/pi/hudson/sata.c
@@ -68,8 +68,8 @@
static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_AMD_SB900_SATA,
PCI_DEVICE_ID_AMD_SB900_SATA_AHCI,
- PCI_DEVICE_ID_AMD_CZ_SATA,
- PCI_DEVICE_ID_AMD_CZ_SATA_AHCI,
+ PCI_DEVICE_ID_AMD_CZ_SATA_IDE,
+ PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_MS,
PCI_DEVICE_ID_AMD_CZ_SATA_AHCI_AMD,
0
};
--
To view, visit https://review.coreboot.org/c/coreboot/+/37551
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Icdede188c82bfe8964c32fe81bdf6a3a6a17096c
Gerrit-Change-Number: 37551
Gerrit-PatchSet: 1
Gerrit-Owner: Name of user not set #1002701
Gerrit-MessageType: newchange