2010-05-20 07:05:33 +02:00
|
|
|
/* arch/arm/plat-samsung/wakeup-mask.c
|
|
|
|
*
|
|
|
|
* Copyright 2010 Ben Dooks <ben-linux@fluff.org>
|
|
|
|
*
|
|
|
|
* Support for wakeup mask interrupts on newer SoCs
|
|
|
|
*
|
|
|
|
* 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/kernel.h>
|
|
|
|
#include <linux/spinlock.h>
|
2011-12-22 01:26:03 +01:00
|
|
|
#include <linux/device.h>
|
2010-05-20 07:05:33 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include <plat/wakeup-mask.h>
|
|
|
|
#include <plat/pm.h>
|
|
|
|
|
|
|
|
void samsung_sync_wakemask(void __iomem *reg,
|
|
|
|
struct samsung_wakeup_mask *mask, int nr_mask)
|
|
|
|
{
|
2011-03-24 12:36:46 +01:00
|
|
|
struct irq_data *data;
|
2010-05-20 07:05:33 +02:00
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = __raw_readl(reg);
|
|
|
|
|
|
|
|
for (; nr_mask > 0; nr_mask--, mask++) {
|
|
|
|
if (mask->irq == NO_WAKEUP_IRQ) {
|
|
|
|
val |= mask->bit;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-03-24 12:36:46 +01:00
|
|
|
data = irq_get_irq_data(mask->irq);
|
2010-05-20 07:05:33 +02:00
|
|
|
|
2011-03-24 12:36:46 +01:00
|
|
|
/* bit of a liberty to read this directly from irq_data. */
|
|
|
|
if (irqd_is_wakeup_set(data))
|
2010-05-20 07:05:33 +02:00
|
|
|
val &= ~mask->bit;
|
|
|
|
else
|
|
|
|
val |= mask->bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printk(KERN_INFO "wakemask %08x => %08x\n", __raw_readl(reg), val);
|
|
|
|
__raw_writel(val, reg);
|
|
|
|
}
|