123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /*
- * OMAP2+ common Power & Reset Management (PRM) IP block functions
- *
- * Copyright (C) 2011 Texas Instruments, Inc.
- * Tero Kristo <t-kristo@ti.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.
- *
- *
- * For historical purposes, the API used to configure the PRM
- * interrupt handler refers to it as the "PRCM interrupt." The
- * underlying registers are located in the PRM on OMAP3/4.
- *
- * XXX This code should eventually be moved to a PRM driver.
- */
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/io.h>
- #include <linux/irq.h>
- #include <linux/interrupt.h>
- #include <linux/slab.h>
- #include "prm2xxx_3xxx.h"
- #include "prm2xxx.h"
- #include "prm3xxx.h"
- #include "prm44xx.h"
- #include "common.h"
- /*
- * OMAP_PRCM_MAX_NR_PENDING_REG: maximum number of PRM_IRQ*_MPU regs
- * XXX this is technically not needed, since
- * omap_prcm_register_chain_handler() could allocate this based on the
- * actual amount of memory needed for the SoC
- */
- #define OMAP_PRCM_MAX_NR_PENDING_REG 2
- /*
- * prcm_irq_chips: an array of all of the "generic IRQ chips" in use
- * by the PRCM interrupt handler code. There will be one 'chip' per
- * PRM_{IRQSTATUS,IRQENABLE}_MPU register pair. (So OMAP3 will have
- * one "chip" and OMAP4 will have two.)
- */
- static struct irq_chip_generic **prcm_irq_chips;
- /*
- * prcm_irq_setup: the PRCM IRQ parameters for the hardware the code
- * is currently running on. Defined and passed by initialization code
- * that calls omap_prcm_register_chain_handler().
- */
- static struct omap_prcm_irq_setup *prcm_irq_setup;
- /* prm_base: base virtual address of the PRM IP block */
- void __iomem *prm_base;
- /*
- * prm_ll_data: function pointers to SoC-specific implementations of
- * common PRM functions
- */
- static struct prm_ll_data null_prm_ll_data;
- static struct prm_ll_data *prm_ll_data = &null_prm_ll_data;
- /* Private functions */
- /*
- * Move priority events from events to priority_events array
- */
- static void omap_prcm_events_filter_priority(unsigned long *events,
- unsigned long *priority_events)
- {
- int i;
- for (i = 0; i < prcm_irq_setup->nr_regs; i++) {
- priority_events[i] =
- events[i] & prcm_irq_setup->priority_mask[i];
- events[i] ^= priority_events[i];
- }
- }
- /*
- * PRCM Interrupt Handler
- *
- * This is a common handler for the OMAP PRCM interrupts. Pending
- * interrupts are detected by a call to prcm_pending_events and
- * dispatched accordingly. Clearing of the wakeup events should be
- * done by the SoC specific individual handlers.
- */
- static void omap_prcm_irq_handler(unsigned int irq, struct irq_desc *desc)
- {
- unsigned long pending[OMAP_PRCM_MAX_NR_PENDING_REG];
- unsigned long priority_pending[OMAP_PRCM_MAX_NR_PENDING_REG];
- struct irq_chip *chip = irq_desc_get_chip(desc);
- unsigned int virtirq;
- int nr_irq = prcm_irq_setup->nr_regs * 32;
- /*
- * If we are suspended, mask all interrupts from PRCM level,
- * this does not ack them, and they will be pending until we
- * re-enable the interrupts, at which point the
- * omap_prcm_irq_handler will be executed again. The
- * _save_and_clear_irqen() function must ensure that the PRM
- * write to disable all IRQs has reached the PRM before
- * returning, or spurious PRCM interrupts may occur during
- * suspend.
- */
- if (prcm_irq_setup->suspended) {
- prcm_irq_setup->save_and_clear_irqen(prcm_irq_setup->saved_mask);
- prcm_irq_setup->suspend_save_flag = true;
- }
- /*
- * Loop until all pending irqs are handled, since
- * generic_handle_irq() can cause new irqs to come
- */
- while (!prcm_irq_setup->suspended) {
- prcm_irq_setup->read_pending_irqs(pending);
- /* No bit set, then all IRQs are handled */
- if (find_first_bit(pending, nr_irq) >= nr_irq)
- break;
- omap_prcm_events_filter_priority(pending, priority_pending);
- /*
- * Loop on all currently pending irqs so that new irqs
- * cannot starve previously pending irqs
- */
- /* Serve priority events first */
- for_each_set_bit(virtirq, priority_pending, nr_irq)
- generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
- /* Serve normal events next */
- for_each_set_bit(virtirq, pending, nr_irq)
- generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
- }
- if (chip->irq_ack)
- chip->irq_ack(&desc->irq_data);
- if (chip->irq_eoi)
- chip->irq_eoi(&desc->irq_data);
- chip->irq_unmask(&desc->irq_data);
|