1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * arch/arm/mach-ep93xx/gesbc9312.c
4 * Glomation GESBC-9312-sx support.
6 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/platform_device.h>
12 #include <linux/sizes.h>
16 #include <asm/mach-types.h>
17 #include <asm/mach/arch.h>
21 static struct ep93xx_eth_data __initdata gesbc9312_eth_data
= {
25 static void __init
gesbc9312_init_machine(void)
27 ep93xx_init_devices();
28 ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE
, SZ_8M
);
29 ep93xx_register_eth(&gesbc9312_eth_data
, 0);
32 MACHINE_START(GESBC9312
, "Glomation GESBC-9312-sx")
33 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
35 .map_io
= ep93xx_map_io
,
36 .init_irq
= ep93xx_init_irq
,
37 .init_time
= ep93xx_timer_init
,
38 .init_machine
= gesbc9312_init_machine
,
39 .init_late
= ep93xx_init_late
,
40 .restart
= ep93xx_restart
,