gesbc9312.c 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * arch/arm/mach-ep93xx/gesbc9312.c
 * Glomation GESBC-9312-sx support.
 *
 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/init.h>
15
#include <linux/platform_device.h>
16
#include <linux/sizes.h>
17

18
#include <mach/hardware.h>
19

20
#include <asm/hardware/vic.h>
21 22 23
#include <asm/mach-types.h>
#include <asm/mach/arch.h>

24
#include "soc.h"
25

26
static struct ep93xx_eth_data __initdata gesbc9312_eth_data = {
27
	.phy_id		= 1,
28 29
};

30 31 32
static void __init gesbc9312_init_machine(void)
{
	ep93xx_init_devices();
33
	ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_8M);
34
	ep93xx_register_eth(&gesbc9312_eth_data, 0);
35 36 37 38
}

MACHINE_START(GESBC9312, "Glomation GESBC-9312-sx")
	/* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
39
	.atag_offset	= 0x100,
40 41
	.map_io		= ep93xx_map_io,
	.init_irq	= ep93xx_init_irq,
42
	.handle_irq	= vic_handle_irq,
43 44
	.timer		= &ep93xx_timer,
	.init_machine	= gesbc9312_init_machine,
45
	.init_late	= ep93xx_init_late,
46
	.restart	= ep93xx_restart,
47
MACHINE_END