[coreboot-gerrit] Patch set updated for coreboot: df1ac6e southbridge/i82801gx: Add NM10 southbridge LPC id.

Damien Zammit (damien@zamaudio.com) gerrit at coreboot.org
Tue May 5 09:06:55 CEST 2015


Damien Zammit (damien at zamaudio.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10072

-gerrit

commit df1ac6ee731d846f89bbbd9b7646b1fe60f11d68
Author: Damien Zammit <damien at zamaudio.com>
Date:   Sun May 3 18:38:18 2015 +1000

    southbridge/i82801gx: Add NM10 southbridge LPC id.
    
    Treat NM10 as ICH7.
    
    There are references to ICH7 in NM10 datasheet,
    but nothing solid saying they are identical.
    I believe they are the same southbridges, just designed to be used with Atom
    processors.  If someone knows differently please correct me.
    
    Change-Id: Iffa30d9c9f67930fa21a5e7967dc1386b80a2be8
    Signed-off-by: Damien Zammit <damien at zamaudio.com>
---
 src/southbridge/intel/i82801gx/lpc.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/southbridge/intel/i82801gx/lpc.c b/src/southbridge/intel/i82801gx/lpc.c
index 2e3182b..1068967 100644
--- a/src/southbridge/intel/i82801gx/lpc.c
+++ b/src/southbridge/intel/i82801gx/lpc.c
@@ -670,6 +670,13 @@ static const struct pci_driver ich7m_ich7u_lpc __pci_driver = {
 	.device	= 0x27b9,
 };
 
+/* 82NM10 (NM10) */
+static const struct pci_driver nm10_lpc __pci_driver = {
+	.ops	= &device_ops,
+	.vendor	= PCI_VENDOR_ID_INTEL,
+	.device	= 0x27bc,
+};
+
 /* 82801GHM (ICH7-M DH) */
 static const struct pci_driver ich7m_dh_lpc __pci_driver = {
 	.ops	= &device_ops,



More information about the coreboot-gerrit mailing list