2008-10-02 21:15:35 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-pxa/mp900.c
|
|
|
|
*
|
|
|
|
* Support for the NEC MobilePro900/C platform
|
|
|
|
*
|
|
|
|
* Based on mach-pxa/gumstix.c
|
|
|
|
*
|
|
|
|
* 2007, 2008 Kristoffer Ericson <kristoffer.ericson@gmail.com>
|
|
|
|
* 2007, 2008 Michael Petchkovsky <mkpetch@internode.on.net>
|
|
|
|
*
|
|
|
|
* 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/init.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/usb/isp116x.h>
|
|
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/arch.h>
|
2009-01-02 16:17:22 +01:00
|
|
|
|
|
|
|
#include <mach/pxa25x.h>
|
2008-10-02 21:15:35 +02:00
|
|
|
#include "generic.h"
|
|
|
|
|
|
|
|
static void isp116x_pfm_delay(struct device *dev, int delay)
|
|
|
|
{
|
|
|
|
|
2015-05-14 17:18:46 +02:00
|
|
|
/* 400MHz PXA2 = 2.5ns / instruction */
|
2008-10-02 21:15:35 +02:00
|
|
|
|
|
|
|
int cyc = delay / 10;
|
|
|
|
|
|
|
|
/* 4 Instructions = 4 x 2.5ns = 10ns */
|
|
|
|
__asm__ volatile ("0:\n"
|
|
|
|
"subs %0, %1, #1\n"
|
|
|
|
"bge 0b\n"
|
|
|
|
:"=r" (cyc)
|
|
|
|
:"0"(cyc)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct isp116x_platform_data isp116x_pfm_data = {
|
|
|
|
.remote_wakeup_enable = 1,
|
|
|
|
.delay = isp116x_pfm_delay,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource isp116x_pfm_resources[] = {
|
|
|
|
[0] = {
|
|
|
|
.start = 0x0d000000,
|
|
|
|
.end = 0x0d000000 + 1,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
[1] = {
|
|
|
|
.start = 0x0d000000 + 4,
|
|
|
|
.end = 0x0d000000 + 5,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
[2] = {
|
|
|
|
.start = 61,
|
|
|
|
.end = 61,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device mp900c_dummy_device = {
|
|
|
|
.name = "mp900c_dummy",
|
|
|
|
.id = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device mp900c_usb = {
|
|
|
|
.name = "isp116x-hcd",
|
|
|
|
.num_resources = ARRAY_SIZE(isp116x_pfm_resources),
|
|
|
|
.resource = isp116x_pfm_resources,
|
|
|
|
.dev.platform_data = &isp116x_pfm_data,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device *devices[] __initdata = {
|
|
|
|
&mp900c_dummy_device,
|
|
|
|
&mp900c_usb,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void __init mp900c_init(void)
|
|
|
|
{
|
|
|
|
printk(KERN_INFO "MobilePro 900/C machine init\n");
|
2009-11-09 06:34:08 +01:00
|
|
|
pxa_set_ffuart_info(NULL);
|
|
|
|
pxa_set_btuart_info(NULL);
|
|
|
|
pxa_set_stuart_info(NULL);
|
2008-10-02 21:15:35 +02:00
|
|
|
platform_add_devices(devices, ARRAY_SIZE(devices));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Maintainer - Michael Petchkovsky <mkpetch@internode.on.net> */
|
|
|
|
MACHINE_START(NEC_MP900, "MobilePro900/C")
|
2011-07-06 04:38:15 +02:00
|
|
|
.atag_offset = 0x220100,
|
2012-11-08 20:40:59 +01:00
|
|
|
.init_time = pxa_timer_init,
|
2010-10-11 02:20:19 +02:00
|
|
|
.map_io = pxa25x_map_io,
|
2012-01-03 23:53:48 +01:00
|
|
|
.nr_irqs = PXA_NR_IRQS,
|
2008-10-02 21:15:35 +02:00
|
|
|
.init_irq = pxa25x_init_irq,
|
2011-05-18 15:30:04 +02:00
|
|
|
.handle_irq = pxa25x_handle_irq,
|
2008-10-02 21:15:35 +02:00
|
|
|
.init_machine = mp900c_init,
|
2011-11-04 15:15:53 +01:00
|
|
|
.restart = pxa_restart,
|
2008-10-02 21:15:35 +02:00
|
|
|
MACHINE_END
|
|
|
|
|