summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-nomadik/include/mach/io.h
diff options
context:
space:
mode:
authorAlessandro Rubini2009-07-02 20:06:47 +0200
committerRussell King2009-07-02 22:20:44 +0200
commit28ad94ec61dc60207dbffdb95ff870c617fbb832 (patch)
tree4ee4d2fc06f98d70c0f7f803179b94638bc0e850 /arch/arm/mach-nomadik/include/mach/io.h
parent[ARM] 5583/1: VIC: acknowledge software interrupts (diff)
downloadkernel-qcow2-linux-28ad94ec61dc60207dbffdb95ff870c617fbb832.tar.gz
kernel-qcow2-linux-28ad94ec61dc60207dbffdb95ff870c617fbb832.tar.xz
kernel-qcow2-linux-28ad94ec61dc60207dbffdb95ff870c617fbb832.zip
[ARM] 5590/1: Add basic support for ST Nomadik 8815 SoC and evaluation board
This patch adds the basic infrastructure for the Nomadik 8815 CPU and the "Nomadik Hardware Kit" NHK8815. This patch only includes the serial console and core stuff, no drivers. Signed-off-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-nomadik/include/mach/io.h')
-rw-r--r--arch/arm/mach-nomadik/include/mach/io.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/mach-nomadik/include/mach/io.h b/arch/arm/mach-nomadik/include/mach/io.h
new file mode 100644
index 000000000000..2e1eca1b8243
--- /dev/null
+++ b/arch/arm/mach-nomadik/include/mach/io.h
@@ -0,0 +1,22 @@
+/*
+ * arch/arm/mach-nomadik/include/mach/io.h (copied from mach-sa1100)
+ *
+ * Copyright (C) 1997-1999 Russell King
+ *
+ * Modifications:
+ * 06-12-1997 RMK Created.
+ * 07-04-1999 RMK Major cleanup
+ */
+#ifndef __ASM_ARM_ARCH_IO_H
+#define __ASM_ARM_ARCH_IO_H
+
+#define IO_SPACE_LIMIT 0xffffffff
+
+/*
+ * We don't actually have real ISA nor PCI buses, but there is so many
+ * drivers out there that might just work if we fake them...
+ */
+#define __io(a) __typesafe_io(a)
+#define __mem_pci(a) (a)
+
+#endif