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