All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6.15 1/2] ia64: use i386 dmi_scan.c
@ 2006-01-04 22:16 ` Matt Domsch
  0 siblings, 0 replies; 70+ messages in thread
From: Matt Domsch @ 2006-01-04 22:16 UTC (permalink / raw)
  To: linux-ia64, ak, openipmi-developer, akpm; +Cc: linux-kernel

Andi Kleen has a patch in his x86_64 tree which enables the use of
i386 dmi_scan.c on x86_64.  dmi_scan.c functions are being used by the
drivers/char/ipmi/ipmi_si_intf.c driver for autodetecting the ports or
memory spaces where the IPMI controllers may be found.

This patch adds equivalent changes for ia64 as to what is in the
x86_64 tree.

Tested on ia64 with 2.6.15, plus the 'dmi' patch from
ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt which Andi has queued for
submission for 2.6.16, plus a patch to ipmi_si_intf.c which will
follow separately.

Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>

-- 
Matt Domsch
Software Architect
Dell Linux Solutions linux.dell.com & www.dell.com/linux
Linux on Dell mailing lists @ http://lists.us.dell.com

diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig
index 199eeaf..e4c7988 100644
--- a/arch/ia64/Kconfig
+++ b/arch/ia64/Kconfig
@@ -5,6 +5,10 @@
 
 mainmenu "IA-64 Linux Kernel Configuration"
 
+config DMI
+	bool
+	default y
+
 source "init/Kconfig"
 
 menu "Processor type and features"
diff --git a/arch/ia64/kernel/Makefile b/arch/ia64/kernel/Makefile
index 307514f..6fc59ed 100644
--- a/arch/ia64/kernel/Makefile
+++ b/arch/ia64/kernel/Makefile
@@ -7,7 +7,7 @@ extra-y	:= head.o init_task.o vmlinux.ld
 obj-y := acpi.o entry.o efi.o efi_stub.o gate-data.o fsys.o ia64_ksyms.o irq.o irq_ia64.o	\
 	 irq_lsapic.o ivt.o machvec.o pal.o patch.o process.o perfmon.o ptrace.o sal.o		\
 	 salinfo.o semaphore.o setup.o signal.o sys_ia64.o time.o traps.o unaligned.o \
-	 unwind.o mca.o mca_asm.o topology.o
+	 unwind.o mca.o mca_asm.o topology.o dmi_scan.o
 
 obj-$(CONFIG_IA64_BRL_EMU)	+= brl_emu.o
 obj-$(CONFIG_IA64_GENERIC)	+= acpi-ext.o
@@ -25,6 +25,7 @@ obj-$(CONFIG_IA64_MCA_RECOVERY)	+= mca_r
 obj-$(CONFIG_KPROBES)		+= kprobes.o jprobes.o
 obj-$(CONFIG_IA64_UNCACHED_ALLOCATOR)	+= uncached.o
 mca_recovery-y			+= mca_drv.o mca_drv_asm.o
+dmi_scan-y			+= ../../i386/kernel/dmi_scan.o
 
 # The gate DSO image is built using a special linker script.
 targets += gate.so gate-syms.o
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c
index 5add0bc..03e0c60 100644
--- a/arch/ia64/kernel/setup.c
+++ b/arch/ia64/kernel/setup.c
@@ -43,6 +43,7 @@
 #include <linux/initrd.h>
 #include <linux/platform.h>
 #include <linux/pm.h>
+#include <linux/dmi.h>
 
 #include <asm/ia32.h>
 #include <asm/machvec.h>
@@ -870,3 +871,10 @@ check_bugs (void)
 	ia64_patch_mckinley_e9((unsigned long) __start___mckinley_e9_bundles,
 			       (unsigned long) __end___mckinley_e9_bundles);
 }
+
+static int __init run_dmi_scan(void)
+{
+	dmi_scan_machine();
+	return 0;
+}
+core_initcall(run_dmi_scan);
diff --git a/include/asm-ia64/io.h b/include/asm-ia64/io.h
index cf772a6..54f7457 100644
--- a/include/asm-ia64/io.h
+++ b/include/asm-ia64/io.h
@@ -434,6 +434,11 @@ iounmap (volatile void __iomem *addr)
 
 #define ioremap_nocache(o,s)	ioremap(o,s)
 
+/* Use normal IO mappings for DMI */
+#define dmi_ioremap ioremap
+#define dmi_iounmap(x,l) iounmap(x)
+#define dmi_alloc(l) kmalloc(l, GFP_ATOMIC)
+
 # ifdef __KERNEL__
 
 /*

^ permalink raw reply related	[flat|nested] 70+ messages in thread

end of thread, other threads:[~2006-03-18 19:55 UTC | newest]

Thread overview: 70+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-04 22:16 [PATCH 2.6.15 1/2] ia64: use i386 dmi_scan.c Matt Domsch
2006-01-04 22:16 ` Matt Domsch
2006-01-04 22:36 ` Alex Williamson
2006-01-04 22:36   ` Alex Williamson
2006-01-04 23:29   ` Matt Domsch
2006-01-04 23:29     ` Matt Domsch
2006-01-05 16:41     ` Bjorn Helgaas
2006-01-05 16:41       ` Bjorn Helgaas
2006-01-05 17:37       ` Matt Domsch
2006-01-05 17:37         ` Matt Domsch
2006-01-05 17:54         ` Bjorn Helgaas
2006-01-05 17:54           ` Bjorn Helgaas
2006-01-06  0:02           ` Bjorn Helgaas
2006-01-06  0:02             ` Bjorn Helgaas
2006-01-06 17:15             ` Matt Domsch
2006-01-06 17:15               ` Matt Domsch
2006-01-04 22:55 ` Alan Cox
2006-01-06 17:21 ` [PATCH 2.6.15] " Matt Domsch
2006-01-06 17:21   ` Matt Domsch
2006-01-06 19:03   ` Tolentino, Matthew E
2006-01-06 19:03     ` Tolentino, Matthew E
2006-01-06 22:36     ` Matt Domsch
2006-01-06 22:36       ` Matt Domsch
2006-01-06 22:39   ` Matt Domsch
2006-01-06 22:39     ` Matt Domsch
2006-01-14  0:24     ` Bjorn Helgaas
2006-01-14  0:24       ` Bjorn Helgaas
2006-01-14  0:45       ` Alan Cox
2006-01-14  1:19       ` Andi Kleen
2006-01-14  1:19         ` Andi Kleen
2006-01-14  5:05         ` Bjorn Helgaas
2006-01-14  5:05           ` Bjorn Helgaas
2006-01-18  0:17       ` Bjorn Helgaas
2006-01-18  0:17         ` Bjorn Helgaas
2006-01-18  2:32         ` Andi Kleen
2006-01-18  2:32           ` Andi Kleen
2006-01-18 15:53           ` Bjorn Helgaas
2006-01-18 15:53             ` Bjorn Helgaas
2006-01-18 17:29         ` Bjorn Helgaas
2006-01-18 17:29           ` Bjorn Helgaas
2006-01-18 18:11           ` [Openipmi-developer] " Matt Domsch
2006-01-18 18:11             ` Matt Domsch
2006-01-19 20:10             ` [PATCH 0/5] ia64 ioremap, DMI, EFI system table Bjorn Helgaas
2006-01-19 20:10               ` Bjorn Helgaas
2006-01-19 20:10               ` Bjorn Helgaas
2006-01-19 20:12               ` [PATCH 1/5] EFI, /dev/mem: simplify efi_mem_attribute_range() Bjorn Helgaas
2006-01-19 20:12                 ` Bjorn Helgaas
2006-01-19 20:12                 ` Bjorn Helgaas
2006-01-19 20:12               ` [PATCH 2/5] ia64: ioremap: check EFI for valid memory attributes Bjorn Helgaas
2006-01-19 20:12                 ` Bjorn Helgaas
2006-01-19 20:12                 ` Bjorn Helgaas
2006-01-19 20:13               ` [PATCH 3/5] DMI: only ioremap stuff we actually need Bjorn Helgaas
2006-01-19 20:13                 ` Bjorn Helgaas
2006-01-19 20:13               ` [PATCH 4/5] EFI: keep physical table addresses in efi structure Bjorn Helgaas
2006-01-19 20:13                 ` Bjorn Helgaas
2006-01-19 20:14               ` [PATCH 5/5] ACPI: clean up memory attribute checking for map/read/write Bjorn Helgaas
2006-01-19 20:14                 ` Bjorn Helgaas
2006-01-19 20:14                 ` Bjorn Helgaas
2006-01-30 17:11               ` [Openipmi-developer] [PATCH 0/5] ia64 ioremap, DMI, EFI system table Matt Domsch
2006-01-30 17:11                 ` Matt Domsch
2006-03-17 23:54     ` [PATCH 2.6.15] ia64: use i386 dmi_scan.c Andrew Morton
2006-03-17 23:54       ` Andrew Morton
2006-03-18 14:56       ` Matt Domsch
2006-03-18 14:56         ` Matt Domsch
2006-03-18 15:43         ` Matt Domsch
2006-03-18 15:43           ` Matt Domsch
2006-03-18 19:51           ` Andrew Morton
2006-03-18 19:51             ` Andrew Morton
2006-01-19 14:19   ` Tolentino, Matthew E
2006-01-19 14:19     ` Tolentino, Matthew E

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.