micro9.c 3.0 KB
Newer Older
1 2 3 4
/*
 *  linux/arch/arm/mach-ep93xx/micro9.c
 *
 * Copyright (C) 2006 Contec Steuerungstechnik & Automation GmbH
5 6 7
 *                    Manfred Gruber <m.gruber@tirol.com>
 * Copyright (C) 2009 Contec Steuerungstechnik & Automation GmbH
 *                    Hubert Feurstein <hubert.feurstein@contec.at>
8 9 10 11 12 13 14
 *
 * 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>
15
#include <linux/init.h>
16 17 18
#include <linux/platform_device.h>
#include <linux/mtd/physmap.h>

19
#include <mach/hardware.h>
20 21

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

24 25

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

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

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

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

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

static void __init micro9h_init(void)
{
60
	platform_device_register(&micro9h_flash);
61 62 63 64
}

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

MACHINE_START(MICRO9, "Contec Hypercontrol Micro9-H")
71
	/* Maintainer: Hubert Feurstein <hubert.feurstein@contec.at> */
72 73 74 75 76 77 78
	.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,
79 80 81 82 83 84 85 86 87
MACHINE_END
#endif

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

MACHINE_START(MICRO9M, "Contec Hypercontrol Micro9-M")
93
	/* Maintainer: Hubert Feurstein <hubert.feurstein@contec.at> */
94 95 96 97 98 99 100
	.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,
101 102 103 104 105 106 107 108 109
MACHINE_END
#endif

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

MACHINE_START(MICRO9L, "Contec Hypercontrol Micro9-L")
115
	/* Maintainer: Hubert Feurstein <hubert.feurstein@contec.at> */
116 117 118 119 120 121 122
	.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,
123 124 125
MACHINE_END
#endif