[coreboot-gerrit] Patch set updated for coreboot: 6af0b02 lenovo/r400: Add clone of Lenovo T400

Francis Rowe (info@gluglug.org.uk) gerrit at coreboot.org
Wed Apr 29 22:06:50 CEST 2015


Francis Rowe (info at gluglug.org.uk) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8393

-gerrit

commit 6af0b026ba5eff274838579d7f5c4ae449824836
Author: Michał Masłowski <mtjm at mtjm.eu>
Date:   Tue Feb 3 23:26:05 2015 +0100

    lenovo/r400: Add clone of Lenovo T400
    
    The existing code for the Lenovo T400 works without changes on the
    Lenovo R400.
    
    The vendor BIOS provides different HDA verbs as the connectors are on
    the front and not the right, but this doesn't provide enough benefit
    to justify having different source files.
    
    This used to be based on the X200 code, now based on T400. This
    should still be replaced with a separate port, with the
    differences implemented, instead of being a clone.
    
    Change-Id: I1dadddd7250ab80a4c40c2435865d72e3e5d99c9
    Signed-off-by: Michał Masłowski <mtjm at mtjm.eu>
    Signed-off-by: Francis Rowe <info at gluglug.org.uk>
---
 src/mainboard/lenovo/Kconfig             | 6 ++++++
 src/mainboard/lenovo/r400/Kconfig        | 7 +++++++
 src/mainboard/lenovo/r400/board_info.txt | 6 ++++++
 src/mainboard/lenovo/t400/Kconfig        | 6 +++++-
 util/nvidia/cbootimage                   | 2 +-
 5 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/lenovo/Kconfig b/src/mainboard/lenovo/Kconfig
index b6da044..4fc56cd 100644
--- a/src/mainboard/lenovo/Kconfig
+++ b/src/mainboard/lenovo/Kconfig
@@ -70,6 +70,11 @@ config BOARD_LENOVO_G505S
 	help
 	  Lenovo G505s
 
+config BOARD_LENOVO_R400
+	bool "ThinkPad R400"
+	help
+	  Lenovo R400 laptop. Consult wiki for details.
+
 endchoice
 
 source "src/mainboard/lenovo/x60/Kconfig"
@@ -84,6 +89,7 @@ source "src/mainboard/lenovo/t520/Kconfig"
 source "src/mainboard/lenovo/t530/Kconfig"
 source "src/mainboard/lenovo/t60/Kconfig"
 source "src/mainboard/lenovo/g505s/Kconfig"
+source "src/mainboard/lenovo/r400/Kconfig"
 
 config MAINBOARD_VENDOR
 	string
diff --git a/src/mainboard/lenovo/r400/Kconfig b/src/mainboard/lenovo/r400/Kconfig
new file mode 100644
index 0000000..0966bf1
--- /dev/null
+++ b/src/mainboard/lenovo/r400/Kconfig
@@ -0,0 +1,7 @@
+if BOARD_LENOVO_R400
+
+config MAINBOARD_PART_NUMBER
+	string
+	default "ThinkPad R400"
+
+endif
diff --git a/src/mainboard/lenovo/r400/board_info.txt b/src/mainboard/lenovo/r400/board_info.txt
new file mode 100644
index 0000000..007ec6c
--- /dev/null
+++ b/src/mainboard/lenovo/r400/board_info.txt
@@ -0,0 +1,6 @@
+Category: laptop
+ROM package: SOIC-16 or SOIC-8
+ROM protocol: SPI
+ROM socketed: n
+Flashrom support: n
+Clone of: lenovo/t400
diff --git a/src/mainboard/lenovo/t400/Kconfig b/src/mainboard/lenovo/t400/Kconfig
index 392ce692..8287f5e 100644
--- a/src/mainboard/lenovo/t400/Kconfig
+++ b/src/mainboard/lenovo/t400/Kconfig
@@ -1,4 +1,4 @@
-if BOARD_LENOVO_T400
+if BOARD_LENOVO_T400 || BOARD_LENOVO_R400
 
 config BOARD_SPECIFIC_OPTIONS # dummy
 	def_bool y
@@ -26,10 +26,14 @@ config MAINBOARD_DIR
 	string
 	default lenovo/t400
 
+if BOARD_LENOVO_T400
+
 config MAINBOARD_PART_NUMBER
 	string
 	default "ThinkPad T400"
 
+endif
+
 config MMCONF_BASE_ADDRESS
 	hex
 	default 0xf0000000
diff --git a/util/nvidia/cbootimage b/util/nvidia/cbootimage
index 2eb9a86..b7d5b2d 160000
--- a/util/nvidia/cbootimage
+++ b/util/nvidia/cbootimage
@@ -1 +1 @@
-Subproject commit 2eb9a86724db0d86c9ab9b6aeca21d1000d74e78
+Subproject commit b7d5b2d6a6dd05874d86ee900ff441d261f9034c



More information about the coreboot-gerrit mailing list