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>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
#include <linux/platform_device.h>
|
2012-09-03 14:29:28 +02:00
|
|
|
#include <linux/sizes.h>
|
2009-07-06 18:39:50 +02:00
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/hardware.h>
|
2009-07-06 18:39:50 +02:00
|
|
|
|
2006-12-01 15:15:55 +01:00
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
|
2012-01-10 23:06:08 +01:00
|
|
|
#include "soc.h"
|
2009-07-06 18:39:50 +02: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 17:19:08 +02:00
|
|
|
ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_32M);
|
2008-10-04 21:01:49 +02: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-06 04:38:11 +02:00
|
|
|
.atag_offset = 0x100,
|
2006-12-01 15:15:55 +01:00
|
|
|
.map_io = ep93xx_map_io,
|
|
|
|
.init_irq = ep93xx_init_irq,
|
2012-11-08 20:40:59 +01:00
|
|
|
.init_time = ep93xx_timer_init,
|
2006-12-01 15:15:55 +01:00
|
|
|
.init_machine = adssphere_init_machine,
|
2012-04-26 04:05:15 +02:00
|
|
|
.init_late = ep93xx_init_late,
|
2011-11-05 10:54:14 +01:00
|
|
|
.restart = ep93xx_restart,
|
2006-12-01 15:15:55 +01:00
|
|
|
MACHINE_END
|