2019-05-27 08:55:01 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2006-12-01 15:15:55 +01:00
|
|
|
/*
|
|
|
|
|
* arch/arm/mach-ep93xx/adssphere.c
|
|
|
|
|
* ADS Sphere support.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
#include <linux/platform_device.h>
|
2012-09-03 20:29:28 +08:00
|
|
|
#include <linux/sizes.h>
|
2009-07-06 17:39:50 +01:00
|
|
|
|
2019-04-15 22:17:12 +02:00
|
|
|
#include "hardware.h"
|
2009-07-06 17:39:50 +01:00
|
|
|
|
2006-12-01 15:15:55 +01:00
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
|
2012-01-11 09:06:08 +11:00
|
|
|
#include "soc.h"
|
2009-07-06 17:39:50 +01:00
|
|
|
|
2010-03-18 18:04:06 +01:00
|
|
|
static struct ep93xx_eth_data __initdata adssphere_eth_data = {
|
2006-12-01 15:15:55 +01:00
|
|
|
.phy_id = 1,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void __init adssphere_init_machine(void)
|
|
|
|
|
{
|
|
|
|
|
ep93xx_init_devices();
|
2010-06-10 16:19:08 +01:00
|
|
|
ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_32M);
|
2008-10-04 20:01:49 +01:00
|
|
|
ep93xx_register_eth(&adssphere_eth_data, 1);
|
2006-12-01 15:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MACHINE_START(ADSSPHERE, "ADS Sphere board")
|
|
|
|
|
/* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
|
2011-07-05 22:38:11 -04:00
|
|
|
.atag_offset = 0x100,
|
2019-09-20 10:10:03 +02:00
|
|
|
.nr_irqs = NR_EP93XX_IRQS,
|
2006-12-01 15:15:55 +01:00
|
|
|
.map_io = ep93xx_map_io,
|
|
|
|
|
.init_irq = ep93xx_init_irq,
|
2012-11-08 12:40:59 -07:00
|
|
|
.init_time = ep93xx_timer_init,
|
2006-12-01 15:15:55 +01:00
|
|
|
.init_machine = adssphere_init_machine,
|
2011-11-05 09:54:14 +00:00
|
|
|
.restart = ep93xx_restart,
|
2006-12-01 15:15:55 +01:00
|
|
|
MACHINE_END
|