2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-16 22:20:36 +00: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-06-17 17:02:05 +00:00
|
|
|
#include <linux/dmaengine.h>
|
|
|
|
#include <linux/dma/pxa-dma.h>
|
2011-07-26 09:53:52 +00:00
|
|
|
#include <linux/gpio.h>
|
2011-10-17 12:37:52 +00:00
|
|
|
#include <linux/gpio-pxa.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2007-05-15 09:39:49 +00:00
|
|
|
#include <linux/platform_device.h>
|
2007-10-18 10:04:39 +00:00
|
|
|
#include <linux/suspend.h>
|
2011-04-22 20:03:11 +00:00
|
|
|
#include <linux/syscore_ops.h>
|
2010-11-29 10:18:26 +00:00
|
|
|
#include <linux/irq.h>
|
2016-08-14 22:24:55 +00:00
|
|
|
#include <linux/irqchip.h>
|
2018-06-17 17:02:05 +00:00
|
|
|
#include <linux/platform_data/mmp_dma.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-10-11 00:20:19 +00:00
|
|
|
#include <asm/mach/map.h>
|
2011-06-22 16:41:48 +00:00
|
|
|
#include <asm/suspend.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/irqs.h>
|
2015-01-30 09:45:33 +00:00
|
|
|
#include "pxa25x.h"
|
2008-08-07 10:05:25 +00:00
|
|
|
#include <mach/reset.h>
|
2015-01-30 09:45:33 +00:00
|
|
|
#include "pm.h"
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/dma.h>
|
2010-11-03 15:29:35 +00:00
|
|
|
#include <mach/smemc.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include "generic.h"
|
2007-05-15 14:39:36 +00:00
|
|
|
#include "devices.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Various clock factors driven by the CCCR register.
|
|
|
|
*/
|
|
|
|
|
2005-06-13 21:35:41 +00:00
|
|
|
#ifdef CONFIG_PM
|
2005-06-03 19:52:27 +00:00
|
|
|
|
2007-07-18 10:38:45 +00: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.
|
|
|
|
*/
|
2008-09-03 10:06:34 +00:00
|
|
|
enum {
|
2007-07-18 10:38:45 +00:00
|
|
|
SLEEP_SAVE_PSTR,
|
2008-05-02 20:17:06 +00:00
|
|
|
SLEEP_SAVE_COUNT
|
2007-07-18 10:38:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_save(unsigned long *sleep_save)
|
|
|
|
{
|
|
|
|
SAVE(PSTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_restore(unsigned long *sleep_save)
|
|
|
|
{
|
|
|
|
RESTORE(PSTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_enter(suspend_state_t state)
|
2005-06-03 19:52:27 +00:00
|
|
|
{
|
2008-05-08 15:50:39 +00:00
|
|
|
/* Clear reset status */
|
|
|
|
RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
|
|
|
|
|
2005-06-03 19:52:27 +00:00
|
|
|
switch (state) {
|
|
|
|
case PM_SUSPEND_MEM:
|
2011-06-22 16:41:48 +00:00
|
|
|
cpu_suspend(PWRMODE_SLEEP, pxa25x_finish_suspend);
|
2005-06-03 19:52:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-06-13 21:35:41 +00:00
|
|
|
|
2008-08-27 11:55:04 +00:00
|
|
|
static int pxa25x_cpu_pm_prepare(void)
|
|
|
|
{
|
|
|
|
/* set resume return address */
|
2017-01-15 02:59:29 +00:00
|
|
|
PSPR = __pa_symbol(cpu_resume);
|
2008-08-27 11:55:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa25x_cpu_pm_finish(void)
|
|
|
|
{
|
|
|
|
/* ensure not to come back here if it wasn't intended */
|
|
|
|
PSPR = 0;
|
|
|
|
}
|
|
|
|
|
2007-07-18 10:38:45 +00:00
|
|
|
static struct pxa_cpu_pm_fns pxa25x_cpu_pm_fns = {
|
2008-05-02 20:17:06 +00:00
|
|
|
.save_count = SLEEP_SAVE_COUNT,
|
2007-10-18 10:04:40 +00:00
|
|
|
.valid = suspend_valid_only_mem,
|
2007-07-18 10:38:45 +00:00
|
|
|
.save = pxa25x_cpu_pm_save,
|
|
|
|
.restore = pxa25x_cpu_pm_restore,
|
|
|
|
.enter = pxa25x_cpu_pm_enter,
|
2008-08-27 11:55:04 +00:00
|
|
|
.prepare = pxa25x_cpu_pm_prepare,
|
|
|
|
.finish = pxa25x_cpu_pm_finish,
|
2007-05-15 10:16:10 +00:00
|
|
|
};
|
2007-07-18 10:38:45 +00:00
|
|
|
|
|
|
|
static void __init pxa25x_init_pm(void)
|
|
|
|
{
|
|
|
|
pxa_cpu_pm_fns = &pxa25x_cpu_pm_fns;
|
|
|
|
}
|
2008-01-02 00:24:49 +00:00
|
|
|
#else
|
|
|
|
static inline void pxa25x_init_pm(void) {}
|
2005-06-13 21:35:41 +00:00
|
|
|
#endif
|
2007-05-15 10:16:10 +00:00
|
|
|
|
2007-08-29 09:22:17 +00:00
|
|
|
/* PXA25x: supports wakeup from GPIO0..GPIO15 and RTC alarm
|
|
|
|
*/
|
|
|
|
|
2010-11-29 10:18:26 +00:00
|
|
|
static int pxa25x_set_wake(struct irq_data *d, unsigned int on)
|
2007-08-29 09:22:17 +00:00
|
|
|
{
|
2011-10-10 08:03:51 +00:00
|
|
|
int gpio = pxa_irq_to_gpio(d->irq);
|
2008-03-11 01:46:28 +00:00
|
|
|
uint32_t mask = 0;
|
|
|
|
|
|
|
|
if (gpio >= 0 && gpio < 85)
|
|
|
|
return gpio_set_wake(gpio, on);
|
2007-08-29 09:22:17 +00:00
|
|
|
|
2010-11-29 10:18:26 +00:00
|
|
|
if (d->irq == IRQ_RTCAlrm) {
|
2007-08-29 09:22:17 +00:00
|
|
|
mask = PWER_RTC;
|
|
|
|
goto set_pwer;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
set_pwer:
|
|
|
|
if (on)
|
|
|
|
PWER |= mask;
|
|
|
|
else
|
|
|
|
PWER &=~mask;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-22 03:14:09 +00:00
|
|
|
void __init pxa25x_init_irq(void)
|
|
|
|
{
|
2008-03-04 06:19:58 +00:00
|
|
|
pxa_init_irq(32, pxa25x_set_wake);
|
2007-06-22 03:14:09 +00:00
|
|
|
}
|
|
|
|
|
2008-11-26 10:12:04 +00:00
|
|
|
#ifdef CONFIG_CPU_PXA26x
|
|
|
|
void __init pxa26x_init_irq(void)
|
|
|
|
{
|
|
|
|
pxa_init_irq(32, pxa25x_set_wake);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-14 22:24:55 +00:00
|
|
|
static int __init __init
|
|
|
|
pxa25x_dt_init_irq(struct device_node *node, struct device_node *parent)
|
2016-04-10 19:29:58 +00:00
|
|
|
{
|
2016-08-14 22:24:55 +00:00
|
|
|
pxa_dt_irq_init(pxa25x_set_wake);
|
2016-09-26 07:21:51 +00:00
|
|
|
set_handle_irq(icip_handle_irq);
|
2016-08-14 22:24:55 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-04-10 19:29:58 +00:00
|
|
|
}
|
2016-08-14 22:24:55 +00:00
|
|
|
IRQCHIP_DECLARE(pxa25x_intc, "marvell,pxa-intc", pxa25x_dt_init_irq);
|
2016-04-10 19:29:58 +00:00
|
|
|
|
2010-10-11 00:20:19 +00:00
|
|
|
static struct map_desc pxa25x_io_desc[] __initdata = {
|
|
|
|
{ /* Mem Ctl */
|
2011-10-01 20:03:45 +00:00
|
|
|
.virtual = (unsigned long)SMEMC_VIRT,
|
2010-11-03 15:29:35 +00:00
|
|
|
.pfn = __phys_to_pfn(PXA2XX_SMEMC_BASE),
|
2014-07-11 11:00:36 +00:00
|
|
|
.length = SMEMC_SIZE,
|
2010-10-11 00:20:19 +00:00
|
|
|
.type = MT_DEVICE
|
2014-07-11 11:00:37 +00:00
|
|
|
}, { /* UNCACHED_PHYS_0 */
|
|
|
|
.virtual = UNCACHED_PHYS_0,
|
|
|
|
.pfn = __phys_to_pfn(0x00000000),
|
|
|
|
.length = UNCACHED_PHYS_0_SIZE,
|
|
|
|
.type = MT_DEVICE
|
2010-10-11 00:20:19 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
void __init pxa25x_map_io(void)
|
|
|
|
{
|
|
|
|
pxa_map_io();
|
|
|
|
iotable_init(ARRAY_AND_SIZE(pxa25x_io_desc));
|
|
|
|
pxa25x_get_clk_frequency_khz(1);
|
|
|
|
}
|
|
|
|
|
2012-11-21 00:37:25 +00:00
|
|
|
static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = {
|
2013-04-09 10:12:04 +00:00
|
|
|
.irq_base = PXA_GPIO_TO_IRQ(0),
|
|
|
|
.gpio_set_wake = gpio_set_wake,
|
2012-11-21 00:37:25 +00:00
|
|
|
};
|
|
|
|
|
2007-05-15 09:39:49 +00:00
|
|
|
static struct platform_device *pxa25x_devices[] __initdata = {
|
2008-06-22 22:36:39 +00:00
|
|
|
&pxa25x_device_udc,
|
2010-06-13 16:43:00 +00:00
|
|
|
&pxa_device_pmu,
|
2007-07-17 09:45:58 +00:00
|
|
|
&pxa_device_i2s,
|
2008-11-13 22:50:56 +00:00
|
|
|
&sa1100_device_rtc,
|
2007-12-10 09:54:36 +00:00
|
|
|
&pxa25x_device_ssp,
|
|
|
|
&pxa25x_device_nssp,
|
|
|
|
&pxa25x_device_assp,
|
2008-04-13 20:44:04 +00:00
|
|
|
&pxa25x_device_pwm0,
|
|
|
|
&pxa25x_device_pwm1,
|
2011-02-22 23:29:09 +00:00
|
|
|
&pxa_device_asoc_platform,
|
2007-05-15 09:39:49 +00:00
|
|
|
};
|
|
|
|
|
2018-06-17 17:02:05 +00:00
|
|
|
static const struct dma_slave_map pxa25x_slave_map[] = {
|
|
|
|
/* PXA25x, PXA27x and PXA3xx common entries */
|
|
|
|
{ "pxa2xx-ac97", "pcm_pcm_mic_mono", PDMA_FILTER_PARAM(LOWEST, 8) },
|
|
|
|
{ "pxa2xx-ac97", "pcm_pcm_aux_mono_in", PDMA_FILTER_PARAM(LOWEST, 9) },
|
|
|
|
{ "pxa2xx-ac97", "pcm_pcm_aux_mono_out",
|
|
|
|
PDMA_FILTER_PARAM(LOWEST, 10) },
|
|
|
|
{ "pxa2xx-ac97", "pcm_pcm_stereo_in", PDMA_FILTER_PARAM(LOWEST, 11) },
|
|
|
|
{ "pxa2xx-ac97", "pcm_pcm_stereo_out", PDMA_FILTER_PARAM(LOWEST, 12) },
|
|
|
|
{ "pxa-ssp-dai.1", "rx", PDMA_FILTER_PARAM(LOWEST, 13) },
|
|
|
|
{ "pxa-ssp-dai.1", "tx", PDMA_FILTER_PARAM(LOWEST, 14) },
|
|
|
|
{ "pxa-ssp-dai.2", "rx", PDMA_FILTER_PARAM(LOWEST, 15) },
|
|
|
|
{ "pxa-ssp-dai.2", "tx", PDMA_FILTER_PARAM(LOWEST, 16) },
|
|
|
|
{ "pxa2xx-ir", "rx", PDMA_FILTER_PARAM(LOWEST, 17) },
|
|
|
|
{ "pxa2xx-ir", "tx", PDMA_FILTER_PARAM(LOWEST, 18) },
|
|
|
|
{ "pxa2xx-mci.0", "rx", PDMA_FILTER_PARAM(LOWEST, 21) },
|
|
|
|
{ "pxa2xx-mci.0", "tx", PDMA_FILTER_PARAM(LOWEST, 22) },
|
|
|
|
|
|
|
|
/* PXA25x specific map */
|
|
|
|
{ "pxa25x-ssp.0", "rx", PDMA_FILTER_PARAM(LOWEST, 13) },
|
|
|
|
{ "pxa25x-ssp.0", "tx", PDMA_FILTER_PARAM(LOWEST, 14) },
|
|
|
|
{ "pxa25x-nssp.1", "rx", PDMA_FILTER_PARAM(LOWEST, 15) },
|
|
|
|
{ "pxa25x-nssp.1", "tx", PDMA_FILTER_PARAM(LOWEST, 16) },
|
|
|
|
{ "pxa25x-nssp.2", "rx", PDMA_FILTER_PARAM(LOWEST, 23) },
|
|
|
|
{ "pxa25x-nssp.2", "tx", PDMA_FILTER_PARAM(LOWEST, 24) },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct mmp_dma_platdata pxa25x_dma_pdata = {
|
|
|
|
.dma_channels = 16,
|
|
|
|
.nb_requestors = 40,
|
|
|
|
.slave_map = pxa25x_slave_map,
|
|
|
|
.slave_map_cnt = ARRAY_SIZE(pxa25x_slave_map),
|
|
|
|
};
|
|
|
|
|
2007-05-15 10:16:10 +00:00
|
|
|
static int __init pxa25x_init(void)
|
|
|
|
{
|
2011-04-22 20:03:11 +00:00
|
|
|
int ret = 0;
|
2007-06-22 04:40:17 +00:00
|
|
|
|
2008-09-11 02:27:30 +00:00
|
|
|
if (cpu_is_pxa25x()) {
|
2008-07-29 06:26:00 +00:00
|
|
|
|
|
|
|
reset_status = RCSR;
|
|
|
|
|
2007-07-18 10:38:45 +00:00
|
|
|
pxa25x_init_pm();
|
2008-01-02 00:24:49 +00:00
|
|
|
|
2011-04-22 20:03:11 +00:00
|
|
|
register_syscore_ops(&pxa_irq_syscore_ops);
|
|
|
|
register_syscore_ops(&pxa2xx_mfp_syscore_ops);
|
2008-01-28 23:00:02 +00:00
|
|
|
|
2016-04-10 19:29:59 +00:00
|
|
|
if (!of_have_populated_dt()) {
|
2018-06-17 17:02:05 +00:00
|
|
|
pxa2xx_set_dmac_info(&pxa25x_dma_pdata);
|
2016-04-10 19:29:59 +00:00
|
|
|
pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info);
|
|
|
|
ret = platform_add_devices(pxa25x_devices,
|
|
|
|
ARRAY_SIZE(pxa25x_devices));
|
|
|
|
}
|
2007-05-15 10:16:10 +00:00
|
|
|
}
|
2008-01-28 23:00:02 +00:00
|
|
|
|
2007-05-15 09:39:49 +00:00
|
|
|
return ret;
|
2007-05-15 10:16:10 +00:00
|
|
|
}
|
|
|
|
|
2008-04-19 09:59:24 +00:00
|
|
|
postcore_initcall(pxa25x_init);
|