2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Platform dependent support for HP simulator.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-2001 Hewlett-Packard Co
|
|
|
|
* Copyright (C) 1998-2001 David Mosberger-Tang <davidm@hpl.hp.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
|
|
|
|
static unsigned int
|
2011-02-05 03:12:06 +08:00
|
|
|
hpsim_irq_startup(struct irq_data *data)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-02-05 03:12:06 +08:00
|
|
|
hpsim_irq_noop(struct irq_data *data)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-28 08:59:21 +08:00
|
|
|
static int
|
2011-02-05 03:12:06 +08:00
|
|
|
hpsim_set_affinity_noop(struct irq_data *d, const struct cpumask *b, bool f)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2009-04-28 08:59:21 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2009-06-11 03:45:00 +08:00
|
|
|
static struct irq_chip irq_type_hp_sim = {
|
2011-02-05 03:12:06 +08:00
|
|
|
.name = "hpsim",
|
|
|
|
.irq_startup = hpsim_irq_startup,
|
|
|
|
.irq_shutdown = hpsim_irq_noop,
|
|
|
|
.irq_enable = hpsim_irq_noop,
|
|
|
|
.irq_disable = hpsim_irq_noop,
|
|
|
|
.irq_ack = hpsim_irq_noop,
|
|
|
|
.irq_set_affinity = hpsim_set_affinity_noop,
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void __init
|
|
|
|
hpsim_irq_init (void)
|
|
|
|
{
|
2009-06-11 03:45:00 +08:00
|
|
|
struct irq_desc *idesc;
|
2005-04-17 06:20:36 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NR_IRQS; ++i) {
|
2006-06-29 17:24:38 +08:00
|
|
|
idesc = irq_desc + i;
|
2009-06-11 03:44:59 +08:00
|
|
|
if (idesc->chip == &no_irq_chip)
|
2006-06-29 17:24:38 +08:00
|
|
|
idesc->chip = &irq_type_hp_sim;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
}
|