micro9.c 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  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/init.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/platform_device.h>
#include <linux/sched.h>
19
#include <linux/io.h>
20
#include <linux/i2c.h>
21 22
#include <linux/mtd/physmap.h>

23
#include <mach/hardware.h>
24 25 26 27 28

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

static struct ep93xx_eth_data micro9_eth_data = {
29
	.phy_id		= 0x1f,
30 31 32 33
};

static void __init micro9_init(void)
{
34
	ep93xx_register_eth(&micro9_eth_data, 1);
35 36 37 38 39 40 41
}

/*
 * Micro9-H
 */
#ifdef CONFIG_MACH_MICRO9H
static struct physmap_flash_data micro9h_flash_data = {
42
	.width		= 4,
43 44 45
};

static struct resource micro9h_flash_resource = {
46 47 48
	.start		= EP93XX_CS1_PHYS_BASE,
	.end		= EP93XX_CS1_PHYS_BASE + SZ_64M - 1,
	.flags		= IORESOURCE_MEM,
49 50 51
};

static struct platform_device micro9h_flash = {
52 53 54 55 56 57 58
	.name		= "physmap-flash",
	.id		= 0,
	.dev		= {
		.platform_data	= &micro9h_flash_data,
	},
	.num_resources	= 1,
	.resource	= &micro9h_flash_resource,
59 60 61 62
};

static void __init micro9h_init(void)
{
63
	platform_device_register(&micro9h_flash);
64 65 66 67
}

static void __init micro9h_init_machine(void)
{
68 69 70
	ep93xx_init_devices();
	micro9_init();
	micro9h_init();
71 72 73
}

MACHINE_START(MICRO9, "Contec Hypercontrol Micro9-H")
74 75 76 77 78 79 80 81
	/* 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,
82 83 84 85 86 87 88 89 90
MACHINE_END
#endif

/*
 * Micro9-M
 */
#ifdef CONFIG_MACH_MICRO9M
static void __init micro9m_init_machine(void)
{
91 92
	ep93xx_init_devices();
	micro9_init();
93 94 95
}

MACHINE_START(MICRO9M, "Contec Hypercontrol Micro9-M")
96 97 98 99 100 101 102 103
	/* 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,
104 105 106 107 108 109 110 111 112
MACHINE_END
#endif

/*
 * Micro9-L
 */
#ifdef CONFIG_MACH_MICRO9L
static void __init micro9l_init_machine(void)
{
113 114
	ep93xx_init_devices();
	micro9_init();
115 116 117
}

MACHINE_START(MICRO9L, "Contec Hypercontrol Micro9-L")
118 119 120 121 122 123 124 125
	/* 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,
126 127 128
MACHINE_END
#endif