2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-pxa/pxa25x.c
|
|
|
|
*
|
|
|
|
* Author: Nicolas Pitre
|
|
|
|
* Created: Jun 15, 2001
|
|
|
|
* Copyright: MontaVista Software Inc.
|
|
|
|
*
|
|
|
|
* Code specific to PXA21x/25x/26x variants.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Since this file should be linked before any other machine specific file,
|
|
|
|
* the __initcall() here will be executed first. This serves as default
|
|
|
|
* initialization stuff for PXA machines which can be overridden later if
|
|
|
|
* need be.
|
|
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2007-05-15 11:39:49 +02:00
|
|
|
#include <linux/platform_device.h>
|
2007-10-18 12:04:39 +02:00
|
|
|
#include <linux/suspend.h>
|
2008-01-29 00:00:02 +01:00
|
|
|
#include <linux/sysdev.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include <asm/hardware.h>
|
2007-06-22 05:14:09 +02:00
|
|
|
#include <asm/arch/irqs.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/arch/pxa-regs.h>
|
2008-03-11 02:46:28 +01:00
|
|
|
#include <asm/arch/mfp-pxa25x.h>
|
2007-05-15 12:16:10 +02:00
|
|
|
#include <asm/arch/pm.h>
|
2007-06-22 06:40:17 +02:00
|
|
|
#include <asm/arch/dma.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include "generic.h"
|
2007-05-15 16:39:36 +02:00
|
|
|
#include "devices.h"
|
2007-08-20 11:18:02 +02:00
|
|
|
#include "clock.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Various clock factors driven by the CCCR register.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Crystal Frequency to Memory Frequency Multiplier (L) */
|
|
|
|
static unsigned char L_clk_mult[32] = { 0, 27, 32, 36, 40, 45, 0, };
|
|
|
|
|
|
|
|
/* Memory Frequency to Run Mode Frequency Multiplier (M) */
|
|
|
|
static unsigned char M_clk_mult[4] = { 0, 1, 2, 4 };
|
|
|
|
|
|
|
|
/* Run Mode Frequency to Turbo Mode Frequency Multiplier (N) */
|
|
|
|
/* Note: we store the value N * 2 here. */
|
|
|
|
static unsigned char N2_clk_mult[8] = { 0, 0, 2, 3, 4, 0, 6, 0 };
|
|
|
|
|
|
|
|
/* Crystal clock */
|
|
|
|
#define BASE_CLK 3686400
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the clock frequency as reflected by CCCR and the turbo flag.
|
|
|
|
* We assume these values have been applied via a fcs.
|
|
|
|
* If info is not 0 we also display the current settings.
|
|
|
|
*/
|
2007-08-20 11:07:44 +02:00
|
|
|
unsigned int pxa25x_get_clk_frequency_khz(int info)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
unsigned long cccr, turbo;
|
|
|
|
unsigned int l, L, m, M, n2, N;
|
|
|
|
|
|
|
|
cccr = CCCR;
|
|
|
|
asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (turbo) );
|
|
|
|
|
|
|
|
l = L_clk_mult[(cccr >> 0) & 0x1f];
|
|
|
|
m = M_clk_mult[(cccr >> 5) & 0x03];
|
|
|
|
n2 = N2_clk_mult[(cccr >> 7) & 0x07];
|
|
|
|
|
|
|
|
L = l * BASE_CLK;
|
|
|
|
M = m * L;
|
|
|
|
N = n2 * M / 2;
|
|
|
|
|
|
|
|
if(info)
|
|
|
|
{
|
|
|
|
L += 5000;
|
|
|
|
printk( KERN_INFO "Memory clock: %d.%02dMHz (*%d)\n",
|
|
|
|
L / 1000000, (L % 1000000) / 10000, l );
|
|
|
|
M += 5000;
|
|
|
|
printk( KERN_INFO "Run Mode clock: %d.%02dMHz (*%d)\n",
|
|
|
|
M / 1000000, (M % 1000000) / 10000, m );
|
|
|
|
N += 5000;
|
|
|
|
printk( KERN_INFO "Turbo Mode clock: %d.%02dMHz (*%d.%d, %sactive)\n",
|
|
|
|
N / 1000000, (N % 1000000) / 10000, n2 / 2, (n2 % 2) * 5,
|
|
|
|
(turbo & 1) ? "" : "in" );
|
|
|
|
}
|
|
|
|
|
|
|
|
return (turbo & 1) ? (N/1000) : (M/1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the current memory clock frequency in units of 10kHz
|
|
|
|
*/
|
2007-08-20 11:07:44 +02:00
|
|
|
unsigned int pxa25x_get_memclk_frequency_10khz(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return L_clk_mult[(CCCR >> 0) & 0x1f] * BASE_CLK / 10000;
|
|
|
|
}
|
|
|
|
|
2007-08-20 11:18:02 +02:00
|
|
|
static unsigned long clk_pxa25x_lcd_getrate(struct clk *clk)
|
|
|
|
{
|
|
|
|
return pxa25x_get_memclk_frequency_10khz() * 10000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct clkops clk_pxa25x_lcd_ops = {
|
|
|
|
.enable = clk_cken_enable,
|
|
|
|
.disable = clk_cken_disable,
|
|
|
|
.getrate = clk_pxa25x_lcd_getrate,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3.6864MHz -> OST, GPIO, SSP, PWM, PLLs (95.842MHz, 147.456MHz)
|
|
|
|
* 95.842MHz -> MMC 19.169MHz, I2C 31.949MHz, FICP 47.923MHz, USB 47.923MHz
|
|
|
|
* 147.456MHz -> UART 14.7456MHz, AC97 12.288MHz, I2S 5.672MHz (allegedly)
|
|
|
|
*/
|
2008-01-27 23:11:48 +01:00
|
|
|
static struct clk pxa25x_hwuart_clk =
|
|
|
|
INIT_CKEN("UARTCLK", HWUART, 14745600, 1, &pxa_device_hwuart.dev)
|
|
|
|
;
|
|
|
|
|
2007-08-20 11:18:02 +02:00
|
|
|
static struct clk pxa25x_clks[] = {
|
|
|
|
INIT_CK("LCDCLK", LCD, &clk_pxa25x_lcd_ops, &pxa_device_fb.dev),
|
|
|
|
INIT_CKEN("UARTCLK", FFUART, 14745600, 1, &pxa_device_ffuart.dev),
|
|
|
|
INIT_CKEN("UARTCLK", BTUART, 14745600, 1, &pxa_device_btuart.dev),
|
2007-09-02 18:08:42 +02:00
|
|
|
INIT_CKEN("UARTCLK", STUART, 14745600, 1, NULL),
|
2007-08-20 11:18:02 +02:00
|
|
|
INIT_CKEN("UDCCLK", USB, 47923000, 5, &pxa_device_udc.dev),
|
|
|
|
INIT_CKEN("MMCCLK", MMC, 19169000, 0, &pxa_device_mci.dev),
|
|
|
|
INIT_CKEN("I2CCLK", I2C, 31949000, 0, &pxa_device_i2c.dev),
|
2007-12-10 10:54:36 +01:00
|
|
|
|
|
|
|
INIT_CKEN("SSPCLK", SSP, 3686400, 0, &pxa25x_device_ssp.dev),
|
|
|
|
INIT_CKEN("SSPCLK", NSSP, 3686400, 0, &pxa25x_device_nssp.dev),
|
|
|
|
INIT_CKEN("SSPCLK", ASSP, 3686400, 0, &pxa25x_device_assp.dev),
|
|
|
|
|
2008-03-04 11:14:22 +01:00
|
|
|
INIT_CKEN("AC97CLK", AC97, 24576000, 0, NULL),
|
|
|
|
|
2007-08-20 11:18:02 +02:00
|
|
|
/*
|
|
|
|
INIT_CKEN("PWMCLK", PWM0, 3686400, 0, NULL),
|
|
|
|
INIT_CKEN("PWMCLK", PWM0, 3686400, 0, NULL),
|
|
|
|
INIT_CKEN("I2SCLK", I2S, 14745600, 0, NULL),
|
|
|
|
*/
|
2007-09-02 18:08:42 +02:00
|
|
|
INIT_CKEN("FICPCLK", FICP, 47923000, 0, NULL),
|
2007-08-20 11:18:02 +02:00
|
|
|
};
|
|
|
|
|
2005-06-13 23:35:41 +02:00
|
|
|
#ifdef CONFIG_PM
|
2005-06-03 21:52:27 +02:00
|
|
|
|
2007-07-18 12:38:45 +02:00
|
|
|
#define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x
|
|
|
|
#define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x]
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List of global PXA peripheral registers to preserve.
|
|
|
|
* More ones like CP and general purpose register values are preserved
|
|
|
|
* with the stack pointer in sleep.S.
|
|
|
|
*/
|
|
|
|
enum { SLEEP_SAVE_START = 0,
|
|
|
|
|
|
|
|
SLEEP_SAVE_PGSR0, SLEEP_SAVE_PGSR1, SLEEP_SAVE_PGSR2,
|
|
|
|
|
|
|
|
SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR0_U,
|
|
|
|
SLEEP_SAVE_GAFR1_L, SLEEP_SAVE_GAFR1_U,
|
|
|
|
SLEEP_SAVE_GAFR2_L, SLEEP_SAVE_GAFR2_U,
|
|
|
|
|
|
|
|
SLEEP_SAVE_PSTR,
|
|
|
|
|
|
|
|
SLEEP_SAVE_CKEN,
|
|
|
|
|
|
|
|
SLEEP_SAVE_SIZE
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_save(unsigned long *sleep_save)
|
|
|
|
{
|
|
|
|
SAVE(PGSR0); SAVE(PGSR1); SAVE(PGSR2);
|
|
|
|
|
|
|
|
SAVE(GAFR0_L); SAVE(GAFR0_U);
|
|
|
|
SAVE(GAFR1_L); SAVE(GAFR1_U);
|
|
|
|
SAVE(GAFR2_L); SAVE(GAFR2_U);
|
|
|
|
|
|
|
|
SAVE(CKEN);
|
|
|
|
SAVE(PSTR);
|
2008-01-02 00:54:49 +01:00
|
|
|
|
|
|
|
/* Clear GPIO transition detect bits */
|
|
|
|
GEDR0 = GEDR0; GEDR1 = GEDR1; GEDR2 = GEDR2;
|
2007-07-18 12:38:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_restore(unsigned long *sleep_save)
|
|
|
|
{
|
2008-01-02 00:54:49 +01:00
|
|
|
/* ensure not to come back here if it wasn't intended */
|
|
|
|
PSPR = 0;
|
|
|
|
|
2007-07-18 12:38:45 +02:00
|
|
|
/* restore registers */
|
|
|
|
RESTORE(GAFR0_L); RESTORE(GAFR0_U);
|
|
|
|
RESTORE(GAFR1_L); RESTORE(GAFR1_U);
|
|
|
|
RESTORE(GAFR2_L); RESTORE(GAFR2_U);
|
|
|
|
RESTORE(PGSR0); RESTORE(PGSR1); RESTORE(PGSR2);
|
|
|
|
|
2008-01-02 00:54:49 +01:00
|
|
|
PSSR = PSSR_RDH | PSSR_PH;
|
|
|
|
|
2007-07-18 12:38:45 +02:00
|
|
|
RESTORE(CKEN);
|
|
|
|
RESTORE(PSTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_enter(suspend_state_t state)
|
2005-06-03 21:52:27 +02:00
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case PM_SUSPEND_MEM:
|
|
|
|
/* set resume return address */
|
|
|
|
PSPR = virt_to_phys(pxa_cpu_resume);
|
2007-07-18 12:40:13 +02:00
|
|
|
pxa25x_cpu_suspend(PWRMODE_SLEEP);
|
2005-06-03 21:52:27 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-06-13 23:35:41 +02:00
|
|
|
|
2007-07-18 12:38:45 +02:00
|
|
|
static struct pxa_cpu_pm_fns pxa25x_cpu_pm_fns = {
|
|
|
|
.save_size = SLEEP_SAVE_SIZE,
|
2007-10-18 12:04:40 +02:00
|
|
|
.valid = suspend_valid_only_mem,
|
2007-07-18 12:38:45 +02:00
|
|
|
.save = pxa25x_cpu_pm_save,
|
|
|
|
.restore = pxa25x_cpu_pm_restore,
|
|
|
|
.enter = pxa25x_cpu_pm_enter,
|
2007-05-15 12:16:10 +02:00
|
|
|
};
|
2007-07-18 12:38:45 +02:00
|
|
|
|
|
|
|
static void __init pxa25x_init_pm(void)
|
|
|
|
{
|
|
|
|
pxa_cpu_pm_fns = &pxa25x_cpu_pm_fns;
|
|
|
|
}
|
2008-01-02 01:24:49 +01:00
|
|
|
#else
|
|
|
|
static inline void pxa25x_init_pm(void) {}
|
2005-06-13 23:35:41 +02:00
|
|
|
#endif
|
2007-05-15 12:16:10 +02:00
|
|
|
|
2007-08-29 11:22:17 +02:00
|
|
|
/* PXA25x: supports wakeup from GPIO0..GPIO15 and RTC alarm
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int pxa25x_set_wake(unsigned int irq, unsigned int on)
|
|
|
|
{
|
|
|
|
int gpio = IRQ_TO_GPIO(irq);
|
2008-03-11 02:46:28 +01:00
|
|
|
uint32_t mask = 0;
|
|
|
|
|
|
|
|
if (gpio >= 0 && gpio < 85)
|
|
|
|
return gpio_set_wake(gpio, on);
|
2007-08-29 11:22:17 +02:00
|
|
|
|
|
|
|
if (irq == IRQ_RTCAlrm) {
|
|
|
|
mask = PWER_RTC;
|
|
|
|
goto set_pwer;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
set_pwer:
|
|
|
|
if (on)
|
|
|
|
PWER |= mask;
|
|
|
|
else
|
|
|
|
PWER &=~mask;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-22 05:14:09 +02:00
|
|
|
void __init pxa25x_init_irq(void)
|
|
|
|
{
|
2008-03-04 07:19:58 +01:00
|
|
|
pxa_init_irq(32, pxa25x_set_wake);
|
|
|
|
pxa_init_gpio(85, pxa25x_set_wake);
|
2007-06-22 05:14:09 +02:00
|
|
|
}
|
|
|
|
|
2007-05-15 11:39:49 +02:00
|
|
|
static struct platform_device *pxa25x_devices[] __initdata = {
|
2007-07-17 11:45:58 +02:00
|
|
|
&pxa_device_udc,
|
|
|
|
&pxa_device_ffuart,
|
|
|
|
&pxa_device_btuart,
|
|
|
|
&pxa_device_stuart,
|
|
|
|
&pxa_device_i2s,
|
|
|
|
&pxa_device_rtc,
|
2007-12-10 10:54:36 +01:00
|
|
|
&pxa25x_device_ssp,
|
|
|
|
&pxa25x_device_nssp,
|
|
|
|
&pxa25x_device_assp,
|
2007-05-15 11:39:49 +02:00
|
|
|
};
|
|
|
|
|
2008-01-29 00:00:02 +01:00
|
|
|
static struct sys_device pxa25x_sysdev[] = {
|
|
|
|
{
|
|
|
|
.cls = &pxa_irq_sysclass,
|
2008-01-29 00:00:02 +01:00
|
|
|
}, {
|
|
|
|
.cls = &pxa_gpio_sysclass,
|
2008-01-29 00:00:02 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2007-05-15 12:16:10 +02:00
|
|
|
static int __init pxa25x_init(void)
|
|
|
|
{
|
2008-01-29 00:00:02 +01:00
|
|
|
int i, ret = 0;
|
2007-06-22 06:40:17 +02:00
|
|
|
|
2008-01-27 23:11:48 +01:00
|
|
|
/* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */
|
|
|
|
if (cpu_is_pxa25x())
|
|
|
|
clks_register(&pxa25x_hwuart_clk, 1);
|
|
|
|
|
2007-05-15 12:16:10 +02:00
|
|
|
if (cpu_is_pxa21x() || cpu_is_pxa25x()) {
|
2007-08-20 11:18:02 +02:00
|
|
|
clks_register(pxa25x_clks, ARRAY_SIZE(pxa25x_clks));
|
|
|
|
|
2007-06-22 06:40:17 +02:00
|
|
|
if ((ret = pxa_init_dma(16)))
|
|
|
|
return ret;
|
2008-01-02 01:24:49 +01:00
|
|
|
|
2007-07-18 12:38:45 +02:00
|
|
|
pxa25x_init_pm();
|
2008-01-02 01:24:49 +01:00
|
|
|
|
2008-01-29 00:00:02 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(pxa25x_sysdev); i++) {
|
|
|
|
ret = sysdev_register(&pxa25x_sysdev[i]);
|
|
|
|
if (ret)
|
|
|
|
pr_err("failed to register sysdev[%d]\n", i);
|
|
|
|
}
|
|
|
|
|
2007-05-15 11:39:49 +02:00
|
|
|
ret = platform_add_devices(pxa25x_devices,
|
|
|
|
ARRAY_SIZE(pxa25x_devices));
|
2008-01-29 00:00:02 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2007-05-15 12:16:10 +02:00
|
|
|
}
|
2008-01-29 00:00:02 +01:00
|
|
|
|
2007-05-15 11:39:49 +02:00
|
|
|
/* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */
|
|
|
|
if (cpu_is_pxa25x())
|
2007-07-17 11:45:58 +02:00
|
|
|
ret = platform_device_register(&pxa_device_hwuart);
|
2007-05-15 11:39:49 +02:00
|
|
|
|
|
|
|
return ret;
|
2007-05-15 12:16:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(pxa25x_init);
|