2 * linux/arch/arm/mach-ep93xx/micro9.c
4 * Copyright (C) 2006 Contec Steuerungstechnik & Automation GmbH
5 * Manfred Gruber <manfred.gruber@contec.at>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/ioport.h>
15 #include <linux/kernel.h>
17 #include <linux/platform_device.h>
18 #include <linux/sched.h>
20 #include <linux/mtd/physmap.h>
23 #include <asm/arch/hardware.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach-types.h>
28 static struct ep93xx_eth_data micro9_eth_data
= {
32 static struct resource micro9_eth_resource
[] = {
34 .start
= EP93XX_ETHERNET_PHYS_BASE
,
35 .end
= EP93XX_ETHERNET_PHYS_BASE
+ 0xffff,
36 .flags
= IORESOURCE_MEM
,
38 .start
= IRQ_EP93XX_ETHERNET
,
39 .end
= IRQ_EP93XX_ETHERNET
,
40 .flags
= IORESOURCE_IRQ
,
44 static struct platform_device micro9_eth_device
= {
48 .platform_data
= µ9_eth_data
,
50 .num_resources
= ARRAY_SIZE(micro9_eth_resource
),
51 .resource
= micro9_eth_resource
,
54 static void __init
micro9_eth_init(void)
56 memcpy(micro9_eth_data
.dev_addr
,
57 (void *)(EP93XX_ETHERNET_BASE
+ 0x50), 6);
58 platform_device_register(µ9_eth_device
);
61 static void __init
micro9_init(void)
69 #ifdef CONFIG_MACH_MICRO9H
70 static struct physmap_flash_data micro9h_flash_data
= {
74 static struct resource micro9h_flash_resource
= {
77 .flags
= IORESOURCE_MEM
,
80 static struct platform_device micro9h_flash
= {
81 .name
= "physmap-flash",
84 .platform_data
= µ9h_flash_data
,
87 .resource
= µ9h_flash_resource
,
90 static void __init
micro9h_init(void)
92 platform_device_register(µ9h_flash
);
95 static void __init
micro9h_init_machine(void)
97 ep93xx_init_devices();
102 MACHINE_START(MICRO9
, "Contec Hypercontrol Micro9-H")
103 /* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
104 .phys_io
= EP93XX_APB_PHYS_BASE
,
105 .io_pg_offst
= ((EP93XX_APB_VIRT_BASE
) >> 18) & 0xfffc,
106 .boot_params
= 0x00000100,
107 .map_io
= ep93xx_map_io
,
108 .init_irq
= ep93xx_init_irq
,
109 .timer
= &ep93xx_timer
,
110 .init_machine
= micro9h_init_machine
,
117 #ifdef CONFIG_MACH_MICRO9M
118 static void __init
micro9m_init_machine(void)
120 ep93xx_init_devices();
124 MACHINE_START(MICRO9M
, "Contec Hypercontrol Micro9-M")
125 /* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
126 .phys_io
= EP93XX_APB_PHYS_BASE
,
127 .io_pg_offst
= ((EP93XX_APB_VIRT_BASE
) >> 18) & 0xfffc,
128 .boot_params
= 0x00000100,
129 .map_io
= ep93xx_map_io
,
130 .init_irq
= ep93xx_init_irq
,
131 .timer
= &ep93xx_timer
,
132 .init_machine
= micro9m_init_machine
,
139 #ifdef CONFIG_MACH_MICRO9L
140 static void __init
micro9l_init_machine(void)
142 ep93xx_init_devices();
146 MACHINE_START(MICRO9L
, "Contec Hypercontrol Micro9-L")
147 /* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
148 .phys_io
= EP93XX_APB_PHYS_BASE
,
149 .io_pg_offst
= ((EP93XX_APB_VIRT_BASE
) >> 18) & 0xfffc,
150 .boot_params
= 0x00000100,
151 .map_io
= ep93xx_map_io
,
152 .init_irq
= ep93xx_init_irq
,
153 .timer
= &ep93xx_timer
,
154 .init_machine
= micro9l_init_machine
,