micro9.c 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  linux/arch/arm/mach-ep93xx/micro9.c
 *
 * Copyright (C) 2006 Contec Steuerungstechnik & Automation GmbH
 *                   Manfred Gruber <manfred.gruber@contec.at>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
13
#include <linux/init.h>
14 15 16
#include <linux/platform_device.h>
#include <linux/mtd/physmap.h>

17
#include <mach/hardware.h>
18 19

#include <asm/mach-types.h>
20 21
#include <asm/mach/arch.h>

22 23

static struct ep93xx_eth_data micro9_eth_data = {
24
	.phy_id		= 0x1f,
25 26 27 28
};

static void __init micro9_init(void)
{
29
	ep93xx_register_eth(&micro9_eth_data, 1);
30 31 32 33 34 35 36
}

/*
 * Micro9-H
 */
#ifdef CONFIG_MACH_MICRO9H
static struct physmap_flash_data micro9h_flash_data = {
37
	.width		= 4,
38 39 40
};

static struct resource micro9h_flash_resource = {
41 42 43
	.start		= EP93XX_CS1_PHYS_BASE,
	.end		= EP93XX_CS1_PHYS_BASE + SZ_64M - 1,
	.flags		= IORESOURCE_MEM,
44 45 46
};

static struct platform_device micro9h_flash = {
47 48 49 50 51 52 53
	.name		= "physmap-flash",
	.id		= 0,
	.dev		= {
		.platform_data	= &micro9h_flash_data,
	},
	.num_resources	= 1,
	.resource	= &micro9h_flash_resource,
54 55 56 57
};

static void __init micro9h_init(void)
{
58
	platform_device_register(&micro9h_flash);
59 60 61 62
}

static void __init micro9h_init_machine(void)
{
63 64 65
	ep93xx_init_devices();
	micro9_init();
	micro9h_init();
66 67 68
}

MACHINE_START(MICRO9, "Contec Hypercontrol Micro9-H")
69 70 71 72 73 74 75 76
	/* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
	.phys_io	= EP93XX_APB_PHYS_BASE,
	.io_pg_offst	= ((EP93XX_APB_VIRT_BASE) >> 18) & 0xfffc,
	.boot_params	= EP93XX_SDCE3_PHYS_BASE_SYNC + 0x100,
	.map_io		= ep93xx_map_io,
	.init_irq	= ep93xx_init_irq,
	.timer		= &ep93xx_timer,
	.init_machine	= micro9h_init_machine,
77 78 79 80 81 82 83 84 85
MACHINE_END
#endif

/*
 * Micro9-M
 */
#ifdef CONFIG_MACH_MICRO9M
static void __init micro9m_init_machine(void)
{
86 87
	ep93xx_init_devices();
	micro9_init();
88 89 90
}

MACHINE_START(MICRO9M, "Contec Hypercontrol Micro9-M")
91 92 93 94 95 96 97 98
	/* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
	.phys_io	= EP93XX_APB_PHYS_BASE,
	.io_pg_offst	= ((EP93XX_APB_VIRT_BASE) >> 18) & 0xfffc,
	.boot_params	= EP93XX_SDCE3_PHYS_BASE_SYNC + 0x100,
	.map_io		= ep93xx_map_io,
	.init_irq	= ep93xx_init_irq,
	.timer		= &ep93xx_timer,
	.init_machine	= micro9m_init_machine,
99 100 101 102 103 104 105 106 107
MACHINE_END
#endif

/*
 * Micro9-L
 */
#ifdef CONFIG_MACH_MICRO9L
static void __init micro9l_init_machine(void)
{
108 109
	ep93xx_init_devices();
	micro9_init();
110 111 112
}

MACHINE_START(MICRO9L, "Contec Hypercontrol Micro9-L")
113 114 115 116 117 118 119 120
	/* Maintainer: Manfred Gruber <manfred.gruber@contec.at> */
	.phys_io	= EP93XX_APB_PHYS_BASE,
	.io_pg_offst	= ((EP93XX_APB_VIRT_BASE) >> 18) & 0xfffc,
	.boot_params	= EP93XX_SDCE3_PHYS_BASE_SYNC + 0x100,
	.map_io		= ep93xx_map_io,
	.init_irq	= ep93xx_init_irq,
	.timer		= &ep93xx_timer,
	.init_machine	= micro9l_init_machine,
121 122 123
MACHINE_END
#endif