| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 | /* *  linux/arch/arm/common/vic.c * *  Copyright (C) 1999 - 2003 ARM Limited *  Copyright (C) 2000 Deep Blue Solutions Ltd * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include <linux/export.h>#include <linux/init.h>#include <linux/list.h>#include <linux/io.h>#include <linux/irqdomain.h>#include <linux/of.h>#include <linux/of_address.h>#include <linux/of_irq.h>#include <linux/syscore_ops.h>#include <linux/device.h>#include <linux/amba/bus.h>#include <asm/exception.h>#include <asm/mach/irq.h>#include <asm/hardware/vic.h>/** * struct vic_device - VIC PM device * @irq: The IRQ number for the base of the VIC. * @base: The register base for the VIC. * @valid_sources: A bitmask of valid interrupts * @resume_sources: A bitmask of interrupts for resume. * @resume_irqs: The IRQs enabled for resume. * @int_select: Save for VIC_INT_SELECT. * @int_enable: Save for VIC_INT_ENABLE. * @soft_int: Save for VIC_INT_SOFT. * @protect: Save for VIC_PROTECT. * @domain: The IRQ domain for the VIC. */struct vic_device {	void __iomem	*base;	int		irq;	u32		valid_sources;	u32		resume_sources;	u32		resume_irqs;	u32		int_select;	u32		int_enable;	u32		soft_int;	u32		protect;	struct irq_domain *domain;};/* we cannot allocate memory when VICs are initially registered */static struct vic_device vic_devices[CONFIG_ARM_VIC_NR];static int vic_id;/** * vic_init2 - common initialisation code * @base: Base of the VIC. * * Common initialisation code for registration * and resume.*/static void vic_init2(void __iomem *base){	int i;	for (i = 0; i < 16; i++) {		void __iomem *reg = base + VIC_VECT_CNTL0 + (i * 4);		writel(VIC_VECT_CNTL_ENABLE | i, reg);	}	writel(32, base + VIC_PL190_DEF_VECT_ADDR);}#ifdef CONFIG_PMstatic void resume_one_vic(struct vic_device *vic){	void __iomem *base = vic->base;	printk(KERN_DEBUG "%s: resuming vic at %p\n", __func__, base);	/* re-initialise static settings */	vic_init2(base);	writel(vic->int_select, base + VIC_INT_SELECT);	writel(vic->protect, base + VIC_PROTECT);	/* set the enabled ints and then clear the non-enabled */	writel(vic->int_enable, base + VIC_INT_ENABLE);	writel(~vic->int_enable, base + VIC_INT_ENABLE_CLEAR);	/* and the same for the soft-int register */	writel(vic->soft_int, base + VIC_INT_SOFT);	writel(~vic->soft_int, base + VIC_INT_SOFT_CLEAR);}static void vic_resume(void){	int id;	for (id = vic_id - 1; id >= 0; id--)		resume_one_vic(vic_devices + id);}static void suspend_one_vic(struct vic_device *vic){	void __iomem *base = vic->base;	printk(KERN_DEBUG "%s: suspending vic at %p\n", __func__, base);	vic->int_select = readl(base + VIC_INT_SELECT);	vic->int_enable = readl(base + VIC_INT_ENABLE);	vic->soft_int = readl(base + VIC_INT_SOFT);	vic->protect = readl(base + VIC_PROTECT);	/* set the interrupts (if any) that are used for	 * resuming the system */	writel(vic->resume_irqs, base + VIC_INT_ENABLE);	writel(~vic->resume_irqs, base + VIC_INT_ENABLE_CLEAR);}static int vic_suspend(void){	int id;	for (id = 0; id < vic_id; id++)		suspend_one_vic(vic_devices + id);	return 0;}struct syscore_ops vic_syscore_ops = {	.suspend	= vic_suspend,	.resume		= vic_resume,};/** * vic_pm_init - initicall to register VIC pm * * This is called via late_initcall() to register * the resources for the VICs due to the early * nature of the VIC's registration.*/static int __init vic_pm_init(void){	if (vic_id > 0)		register_syscore_ops(&vic_syscore_ops);	return 0;}late_initcall(vic_pm_init);#endif /* CONFIG_PM */static struct irq_chip vic_chip;static int vic_irqdomain_map(struct irq_domain *d, unsigned int irq,			     irq_hw_number_t hwirq){	struct vic_device *v = d->host_data;	/* Skip invalid IRQs, only register handlers for the real ones */	if (!(v->valid_sources & (1 << hwirq)))		return -ENOTSUPP;	irq_set_chip_and_handler(irq, &vic_chip, handle_level_irq);	irq_set_chip_data(irq, v->base);	set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);	return 0;}static struct irq_domain_ops vic_irqdomain_ops = {	.map = vic_irqdomain_map,	.xlate = irq_domain_xlate_onetwocell,};/** * vic_register() - Register a VIC. * @base: The base address of the VIC. * @irq: The base IRQ for the VIC. * @valid_sources: bitmask of valid interrupts
 |