| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 | /* * linux/arch/arm/mach-sa1100/generic.c * * Author: Nicolas Pitre * * Code common to all SA11x0 machines. * * 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/gpio.h>#include <linux/module.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/delay.h>#include <linux/dma-mapping.h>#include <linux/pm.h>#include <linux/cpufreq.h>#include <linux/ioport.h>#include <linux/platform_device.h>#include <video/sa1100fb.h>#include <asm/div64.h>#include <asm/mach/map.h>#include <asm/mach/flash.h>#include <asm/irq.h>#include <asm/system_misc.h>#include <mach/hardware.h>#include <mach/irqs.h>#include "generic.h"unsigned int reset_status;EXPORT_SYMBOL(reset_status);#define NR_FREQS	16/* * This table is setup for a 3.6864MHz Crystal. */static const unsigned short cclk_frequency_100khz[NR_FREQS] = {	 590,	/*  59.0 MHz */	 737,	/*  73.7 MHz */	 885,	/*  88.5 MHz */	1032,	/* 103.2 MHz */	1180,	/* 118.0 MHz */	1327,	/* 132.7 MHz */	1475,	/* 147.5 MHz */	1622,	/* 162.2 MHz */	1769,	/* 176.9 MHz */	1917,	/* 191.7 MHz */	2064,	/* 206.4 MHz */	2212,	/* 221.2 MHz */	2359,	/* 235.9 MHz */	2507,	/* 250.7 MHz */	2654,	/* 265.4 MHz */	2802	/* 280.2 MHz */};/* rounds up(!)  */unsigned int sa11x0_freq_to_ppcr(unsigned int khz){	int i;	khz /= 100;	for (i = 0; i < NR_FREQS; i++)		if (cclk_frequency_100khz[i] >= khz)			break;	return i;}unsigned int sa11x0_ppcr_to_freq(unsigned int idx){	unsigned int freq = 0;	if (idx < NR_FREQS)		freq = cclk_frequency_100khz[idx] * 100;	return freq;}/* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on * this platform, anyway. */int sa11x0_verify_speed(struct cpufreq_policy *policy){	unsigned int tmp;	if (policy->cpu)		return -EINVAL;	cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);	/* make sure that at least one frequency is within the policy */	tmp = cclk_frequency_100khz[sa11x0_freq_to_ppcr(policy->min)] * 100;	if (tmp > policy->max)		policy->max = tmp;	cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);	return 0;}unsigned int sa11x0_getspeed(unsigned int cpu){	if (cpu)		return 0;	return cclk_frequency_100khz[PPCR & 0xf] * 100;}/* * Default power-off for SA1100 */static void sa1100_power_off(void){	mdelay(100);	local_irq_disable();	/* disable internal oscillator, float CS lines */	PCFR = (PCFR_OPDE | PCFR_FP | PCFR_FS);	/* enable wake-up on GPIO0 (Assabet...) */	PWER = GFER = GRER = 1;	/*	 * set scratchpad to zero, just in case it is used as a	 * restart address by the bootloader.	 */	PSPR = 0;	/* enter sleep mode */	PMCR = PMCR_SF;}void sa11x0_restart(char mode, const char *cmd){	if (mode == 's') {		/* Jump into ROM at address 0 */		soft_restart(0);	} else {		/* Use on-chip reset capability */		RSRR = RSRR_SWR;	}}static void sa11x0_register_device(struct platform_device *dev, void *data){	int err;	dev->dev.platform_data = data;	err = platform_device_register(dev);	if (err)		printk(KERN_ERR "Unable to register device %s: %d\n",			dev->name, err);}static struct resource sa11x0udc_resources[] = {	[0] = DEFINE_RES_MEM(__PREG(Ser0UDCCR), SZ_64K),	[1] = DEFINE_RES_IRQ(IRQ_Ser0UDC),};static u64 sa11x0udc_dma_mask = 0xffffffffUL;static struct platform_device sa11x0udc_device = {	.name		= "sa11x0-udc",	.id		= -1,	.dev		= {		.dma_mask = &sa11x0udc_dma_mask,		.coherent_dma_mask = 0xffffffff,	},	.num_resources	= ARRAY_SIZE(sa11x0udc_resources),	.resource	= sa11x0udc_resources,};static struct resource sa11x0uart1_resources[] = {	[0] = DEFINE_RES_MEM(__PREG(Ser1UTCR0), SZ_64K),	[1] = DEFINE_RES_IRQ(IRQ_Ser1UART),};static struct platform_device sa11x0uart1_device = {	.name		= "sa11x0-uart",	.id		= 1,	.num_resources	= ARRAY_SIZE(sa11x0uart1_resources),	.resource	= sa11x0uart1_resources,};static struct resource sa11x0uart3_resources[] = {	[0] = DEFINE_RES_MEM(__PREG(Ser3UTCR0), SZ_64K),	[1] = DEFINE_RES_IRQ(IRQ_Ser3UART),};static struct platform_device sa11x0uart3_device = {	.name		= "sa11x0-uart",	.id		= 3,	.num_resources	= ARRAY_SIZE(sa11x0uart3_resources),	.resource	= sa11x0uart3_resources,};static struct resource sa11x0mcp_resources[] = {	[0] = DEFINE_RES_MEM(__PREG(Ser4MCCR0), SZ_64K),	[1] = DEFINE_RES_MEM(__PREG(Ser4MCCR1), 4),	[2] = DEFINE_RES_IRQ(IRQ_Ser4MCP),};static u64 sa11x0mcp_dma_mask = 0xffffffffUL;static struct platform_device sa11x0mcp_device = {	.name		= "sa11x0-mcp",	.id		= -1,	.dev = {		.dma_mask = &sa11x0mcp_dma_mask,		.coherent_dma_mask = 0xffffffff,	},	.num_resources	= ARRAY_SIZE(sa11x0mcp_resources),	.resource	= sa11x0mcp_resources,};void __init sa11x0_ppc_configure_mcp(void){	/* Setup the PPC unit for the MCP */	PPDR &= ~PPC_RXD4;	PPDR |= PPC_TXD4 | PPC_SCLK | PPC_SFRM;	PSDR |= PPC_RXD4;	PSDR &= ~(PPC_TXD4 | PPC_SCLK | PPC_SFRM);	PPSR &= ~(PPC_TXD4 | PPC_SCLK | PPC_SFRM);}void sa11x0_register_mcp(struct mcp_plat_data *data){	sa11x0_register_device(&sa11x0mcp_device, data);}static struct resource sa11x0ssp_resources[] = {	[0] = DEFINE_RES_MEM(0x80070000, SZ_64K),	[1] = DEFINE_RES_IRQ(IRQ_Ser4SSP),};static u64 sa11x0ssp_dma_mask = 0xffffffffUL;static struct platform_device sa11x0ssp_device = {	.name		= "sa11x0-ssp",	.id		= -1,	.dev = {		.dma_mask = &sa11x0ssp_dma_mask,		.coherent_dma_mask = 0xffffffff,	},	.num_resources	= ARRAY_SIZE(sa11x0ssp_resources),	.resource	= sa11x0ssp_resources,};static struct resource sa11x0fb_resources[] = {	[0] = DEFINE_RES_MEM(0xb0100000, SZ_64K),
 |