2009-11-28 14:17:18 +07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008-2009 ST-Ericsson
|
|
|
|
*
|
|
|
|
* Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/amba/bus.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/platform_device.h>
|
2010-03-01 11:03:31 +07:00
|
|
|
#include <linux/io.h>
|
2009-11-28 14:17:18 +07:00
|
|
|
|
2010-03-01 11:03:31 +07:00
|
|
|
#include <asm/localtimer.h>
|
2009-11-28 14:17:18 +07:00
|
|
|
#include <asm/hardware/gic.h>
|
|
|
|
#include <asm/mach/map.h>
|
2010-03-01 11:03:31 +07:00
|
|
|
#include <plat/mtu.h>
|
2009-11-28 14:17:18 +07:00
|
|
|
#include <mach/hardware.h>
|
2010-03-01 11:03:31 +07:00
|
|
|
#include <mach/setup.h>
|
2009-11-28 14:17:18 +07:00
|
|
|
|
|
|
|
/* add any platform devices here - TODO */
|
|
|
|
static struct platform_device *platform_devs[] __initdata = {
|
|
|
|
/* yet to be added, add i2c0, gpio.. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define __IO_DEV_DESC(x, sz) { \
|
|
|
|
.virtual = IO_ADDRESS(x), \
|
|
|
|
.pfn = __phys_to_pfn(x), \
|
|
|
|
.length = sz, \
|
|
|
|
.type = MT_DEVICE, \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* minimum static i/o mapping required to boot U8500 platforms */
|
|
|
|
static struct map_desc u8500_io_desc[] __initdata = {
|
2010-02-12 12:23:07 +07:00
|
|
|
__IO_DEV_DESC(U8500_UART2_BASE, SZ_4K),
|
2009-11-28 14:17:18 +07:00
|
|
|
__IO_DEV_DESC(U8500_GIC_CPU_BASE, SZ_4K),
|
|
|
|
__IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K),
|
|
|
|
__IO_DEV_DESC(U8500_TWD_BASE, SZ_4K),
|
|
|
|
__IO_DEV_DESC(U8500_SCU_BASE, SZ_4K),
|
|
|
|
__IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K),
|
|
|
|
};
|
|
|
|
|
2010-03-01 11:05:56 +07:00
|
|
|
static struct map_desc u8500ed_io_desc[] __initdata = {
|
|
|
|
__IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct map_desc u8500v1_io_desc[] __initdata = {
|
|
|
|
__IO_DEV_DESC(U8500_MTU0_BASE_V1, SZ_4K),
|
|
|
|
};
|
|
|
|
|
2009-11-28 14:17:18 +07:00
|
|
|
void __init u8500_map_io(void)
|
|
|
|
{
|
|
|
|
iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
|
2010-03-01 11:05:56 +07:00
|
|
|
|
|
|
|
if (cpu_is_u8500ed())
|
|
|
|
iotable_init(u8500ed_io_desc, ARRAY_SIZE(u8500ed_io_desc));
|
|
|
|
else
|
|
|
|
iotable_init(u8500v1_io_desc, ARRAY_SIZE(u8500v1_io_desc));
|
2009-11-28 14:17:18 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init u8500_init_irq(void)
|
|
|
|
{
|
|
|
|
gic_dist_init(0, __io_address(U8500_GIC_DIST_BASE), 29);
|
|
|
|
gic_cpu_init(0, __io_address(U8500_GIC_CPU_BASE));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is called from the board init
|
|
|
|
*/
|
|
|
|
void __init u8500_init_devices(void)
|
|
|
|
{
|
|
|
|
/* Register the platform devices */
|
|
|
|
platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
|
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|
2010-03-01 11:03:31 +07:00
|
|
|
|
|
|
|
static void __init u8500_timer_init(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_LOCAL_TIMERS
|
|
|
|
/* Setup the local timer base */
|
|
|
|
twd_base = __io_address(U8500_TWD_BASE);
|
|
|
|
#endif
|
|
|
|
/* Setup the MTU base */
|
2010-03-01 11:05:56 +07:00
|
|
|
if (cpu_is_u8500ed())
|
|
|
|
mtu_base = __io_address(U8500_MTU0_BASE_ED);
|
|
|
|
else
|
|
|
|
mtu_base = __io_address(U8500_MTU0_BASE_V1);
|
2010-03-01 11:03:31 +07:00
|
|
|
|
|
|
|
nmdk_timer_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sys_timer u8500_timer = {
|
|
|
|
.init = u8500_timer_init,
|
|
|
|
};
|