aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-u300/include/mach/io.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@stericsson.com>2009-04-23 10:19:58 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-04-28 22:44:05 +0100
commitfa59440d0c7b5a2bcdc9e35f25fdac693e54c86a (patch)
tree4856086aecdd7d74372a062c0e319400e0fbdaa3 /arch/arm/mach-u300/include/mach/io.h
parentb4175b89921fefb2f352472fa6dccb0fc4fb37d9 (diff)
downloadkernel_samsung_smdk4412-fa59440d0c7b5a2bcdc9e35f25fdac693e54c86a.zip
kernel_samsung_smdk4412-fa59440d0c7b5a2bcdc9e35f25fdac693e54c86a.tar.gz
kernel_samsung_smdk4412-fa59440d0c7b5a2bcdc9e35f25fdac693e54c86a.tar.bz2
[ARM] 5470/1: U300 register definitions
This adds registers, interrupt numbers and IO mappings for the U300 series platforms core support, including basic block offsets and registers definitions for the system controller. Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-u300/include/mach/io.h')
-rw-r--r--arch/arm/mach-u300/include/mach/io.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-u300/include/mach/io.h b/arch/arm/mach-u300/include/mach/io.h
new file mode 100644
index 0000000..5d6b4c1
--- /dev/null
+++ b/arch/arm/mach-u300/include/mach/io.h
@@ -0,0 +1,20 @@
+/*
+ *
+ * arch/arm/mach-u300/include/mach/io.h
+ *
+ *
+ * Copyright (C) 2006-2009 ST-Ericsson AB
+ * License terms: GNU General Public License (GPL) version 2
+ * Dummy IO map for being able to use writew()/readw(),
+ * writel()/readw() and similar accessor functions.
+ * Author: Linus Walleij <linus.walleij@stericsson.com>
+ */
+#ifndef __MACH_IO_H
+#define __MACH_IO_H
+
+#define IO_SPACE_LIMIT 0xffffffff
+
+#define __io(a) __typesafe_io(a)
+#define __mem_pci(a) (a)
+
+#endif