[coreboot] [commit] r5759 - in trunk/src/mainboard/pcengines: . alix2d alix2d3

repository service svn at coreboot.org
Tue Aug 31 21:02:46 CEST 2010


Author: myles
Date: Tue Aug 31 21:02:45 2010
New Revision: 5759
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5759

Log:
Make ALIX.2D3 support 2D2 as well.

Signed-off-by: Jens Rottmann <JRottmann at LiPPERTEmbedded.de>
Acked-by: Myles Watson <mylesgw at gmail.com>

Added:
   trunk/src/mainboard/pcengines/alix2d/
      - copied from r5756, trunk/src/mainboard/pcengines/alix2d3/
Deleted:
   trunk/src/mainboard/pcengines/alix2d3/
Modified:
   trunk/src/mainboard/pcengines/Kconfig
   trunk/src/mainboard/pcengines/alix2d/Kconfig
   trunk/src/mainboard/pcengines/alix2d/irq_tables.c
   trunk/src/mainboard/pcengines/alix2d/mainboard.c
   trunk/src/mainboard/pcengines/alix2d/romstage.c

Modified: trunk/src/mainboard/pcengines/Kconfig
==============================================================================
--- trunk/src/mainboard/pcengines/Kconfig	Tue Aug 31 08:10:54 2010	(r5758)
+++ trunk/src/mainboard/pcengines/Kconfig	Tue Aug 31 21:02:45 2010	(r5759)
@@ -5,13 +5,13 @@
 
 config BOARD_PCENGINES_ALIX1C
 	bool "ALIX.1C"
-config BOARD_PCENGINES_ALIX2D3
-	bool "ALIX.2D3"
+config BOARD_PCENGINES_ALIX2D
+	bool "ALIX.2D2 or 2D3"
 
 endchoice
 
 source "src/mainboard/pcengines/alix1c/Kconfig"
-source "src/mainboard/pcengines/alix2d3/Kconfig"
+source "src/mainboard/pcengines/alix2d/Kconfig"
 
 config MAINBOARD_VENDOR
 	string

Modified: trunk/src/mainboard/pcengines/alix2d/Kconfig
==============================================================================
--- trunk/src/mainboard/pcengines/alix2d3/Kconfig	Mon Aug 30 19:53:13 2010	(r5756)
+++ trunk/src/mainboard/pcengines/alix2d/Kconfig	Tue Aug 31 21:02:45 2010	(r5759)
@@ -1,4 +1,4 @@
-if BOARD_PCENGINES_ALIX2D3
+if BOARD_PCENGINES_ALIX2D
 
 config BOARD_SPECIFIC_OPTIONS # dummy
 	def_bool y
@@ -14,18 +14,18 @@
 
 config MAINBOARD_DIR
 	string
-	default pcengines/alix2d3
+	default pcengines/alix2d
 
 config MAINBOARD_PART_NUMBER
 	string
-	default "ALIX.2D3"
+	default "ALIX.2D"
 
 config IRQ_SLOT_COUNT
 	int
-	default 6
+	default 7
 
 config RAMBASE
 	hex
 	default 0x4000
 
-endif # BOARD_PCENGINES_ALIX2D3
+endif # BOARD_PCENGINES_ALIX2D

Modified: trunk/src/mainboard/pcengines/alix2d/irq_tables.c
==============================================================================
--- trunk/src/mainboard/pcengines/alix2d3/irq_tables.c	Mon Aug 30 19:53:13 2010	(r5756)
+++ trunk/src/mainboard/pcengines/alix2d/irq_tables.c	Tue Aug 31 21:02:45 2010	(r5759)
@@ -94,7 +94,7 @@
 		/* On-board ethernet (Left) */
 		{0x00, (0x09 << 3) | 0x0, {{L_PIRQB, M_PIRQB}, {0x00, 0x00}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
 
-		/* On-board ethernet (Middle) */
+		/* On-board ethernet (Middle, ALIX.2D3 only) */
 		{0x00, (0x0A << 3) | 0x0, {{L_PIRQC, M_PIRQC}, {0x00, 0x00}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
 
 		/* On-board ethernet (Right) */
@@ -103,6 +103,9 @@
 		/* Mini PCI (slot 1) */
 		{0x00, (0x0C << 3) | 0x0, {{L_PIRQA, M_PIRQA}, {L_PIRQB, M_PIRQB}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
 
+		/* Mini PCI (slot 2, ALIX.2D2 only) */
+		{0x00, (0x0E << 3) | 0x0, {{L_PIRQC, M_PIRQC}, {L_PIRQD, M_PIRQD}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
+
 		/* Chipset slots -- f.3 wires to B, and f.4 and f.5 wires to D. */
 		{0x00, (0x0F << 3) | 0x0, {{L_PIRQA, M_PIRQA}, {L_PIRQB, M_PIRQB}, {L_PIRQC, M_PIRQC}, {L_PIRQD, M_PIRQD}}, 0x0, 0x0},
 	}

Modified: trunk/src/mainboard/pcengines/alix2d/mainboard.c
==============================================================================
--- trunk/src/mainboard/pcengines/alix2d3/mainboard.c	Mon Aug 30 19:53:13 2010	(r5756)
+++ trunk/src/mainboard/pcengines/alix2d/mainboard.c	Tue Aug 31 21:02:45 2010	(r5759)
@@ -23,8 +23,8 @@
 
 static void init(struct device *dev)
 {
-	printk(BIOS_DEBUG, "ALIX.2D3 ENTER %s\n", __func__);
-	printk(BIOS_DEBUG, "ALIX.2D3 EXIT %s\n", __func__);
+	printk(BIOS_DEBUG, "ALIX.2D ENTER %s\n", __func__);
+	printk(BIOS_DEBUG, "ALIX.2D EXIT %s\n", __func__);
 }
 
 static void enable_dev(struct device *dev)
@@ -33,7 +33,7 @@
 }
 
 struct chip_operations mainboard_ops = {
-	CHIP_NAME("PC Engines ALIX.2D3 Mainboard")
+	CHIP_NAME("PC Engines ALIX.2D Mainboard")
 	.enable_dev = enable_dev,
 };
 

Modified: trunk/src/mainboard/pcengines/alix2d/romstage.c
==============================================================================
--- trunk/src/mainboard/pcengines/alix2d3/romstage.c	Mon Aug 30 19:53:13 2010	(r5756)
+++ trunk/src/mainboard/pcengines/alix2d/romstage.c	Tue Aug 31 21:02:45 2010	(r5759)
@@ -35,7 +35,7 @@
 
 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
 
-/* The ALIX.2D3 has no SMBus; the setup is hard-wired. */
+/* The ALIX.2D has no SMBus; the setup is hard-wired. */
 static void cs5536_enable_smbus(void)
 {
 }




More information about the coreboot mailing list