summaryrefslogtreecommitdiff
path: root/hw/mainstone.h
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-02 02:20:03 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-02 02:20:03 +0000
commit7233b355571ad2a8e7aec7eb19db5f530e81f052 (patch)
treecd7835d9c3689be95c2f3d77d28b3b581f06c476 /hw/mainstone.h
parentd2c38b24d1d9b0b94137b7190f80fd4d0f4a0fb1 (diff)
downloadqemu-7233b355571ad2a8e7aec7eb19db5f530e81f052.tar.gz
Mainstone re-org, by Armin Kuster.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3758 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mainstone.h')
-rw-r--r--hw/mainstone.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/hw/mainstone.h b/hw/mainstone.h
new file mode 100644
index 0000000000..c7bcb93f01
--- /dev/null
+++ b/hw/mainstone.h
@@ -0,0 +1,25 @@
+/*
+ * PXA270-based Intel Mainstone platforms.
+ *
+ * Copyright (c) 2007 by Armin Kuster <akuster@kama-aina.net> or
+ * <akuster@mvista.com>
+ *
+ * This code is licensed under the GNU GPL v2.
+ */
+
+#ifndef __MAINSTONE_H__
+#define __MAINSTONE_H__
+
+/* Device addresses */
+#define MST_FPGA_PHYS 0x08000000
+#define MST_ETH_PHYS 0x10000300
+#define MST_FLASH_0 0x00000000
+#define MST_FLASH_1 0x04000000
+
+/* IRQ definitions */
+#define ETHERNET_IRQ 3
+
+extern qemu_irq
+*mst_irq_init(struct pxa2xx_state_s *cpu, uint32_t base, int irq);
+
+#endif /* __MAINSTONE_H__ */