Merge branch 'merge' into next

This commit is contained in:
Benjamin Herrenschmidt 2012-05-09 10:57:57 +10:00
commit ea4e89afed
15 changed files with 55 additions and 104 deletions

View File

@ -288,13 +288,6 @@ label##_hv: \
/* Exception addition: Hard disable interrupts */ /* Exception addition: Hard disable interrupts */
#define DISABLE_INTS SOFT_DISABLE_INTS(r10,r11) #define DISABLE_INTS SOFT_DISABLE_INTS(r10,r11)
/* Exception addition: Keep interrupt state */
#define ENABLE_INTS \
ld r11,PACAKMSR(r13); \
ld r12,_MSR(r1); \
rlwimi r11,r12,0,MSR_EE; \
mtmsrd r11,1
#define ADD_NVGPRS \ #define ADD_NVGPRS \
bl .save_nvgprs bl .save_nvgprs

View File

@ -18,10 +18,6 @@
#include <linux/atomic.h> #include <linux/atomic.h>
/* Define a way to iterate across irqs. */
#define for_each_irq(i) \
for ((i) = 0; (i) < NR_IRQS; ++(i))
extern atomic_t ppc_n_lost_interrupts; extern atomic_t ppc_n_lost_interrupts;
/* This number is used when no interrupt has been assigned */ /* This number is used when no interrupt has been assigned */

View File

@ -763,16 +763,6 @@ do_work:
SOFT_DISABLE_INTS(r3,r4) SOFT_DISABLE_INTS(r3,r4)
1: bl .preempt_schedule_irq 1: bl .preempt_schedule_irq
/* Hard-disable interrupts again (and update PACA) */
#ifdef CONFIG_PPC_BOOK3E
wrteei 0
#else
ld r10,PACAKMSR(r13) /* Get kernel MSR without EE */
mtmsrd r10,1
#endif /* CONFIG_PPC_BOOK3E */
li r0,PACA_IRQ_HARD_DIS
stb r0,PACAIRQHAPPENED(r13)
/* Re-test flags and eventually loop */ /* Re-test flags and eventually loop */
clrrdi r9,r1,THREAD_SHIFT clrrdi r9,r1,THREAD_SHIFT
ld r4,TI_FLAGS(r9) ld r4,TI_FLAGS(r9)
@ -783,14 +773,6 @@ do_work:
user_work: user_work:
#endif /* CONFIG_PREEMPT */ #endif /* CONFIG_PREEMPT */
/* Enable interrupts */
#ifdef CONFIG_PPC_BOOK3E
wrteei 1
#else
ori r10,r10,MSR_EE
mtmsrd r10,1
#endif /* CONFIG_PPC_BOOK3E */
andi. r0,r4,_TIF_NEED_RESCHED andi. r0,r4,_TIF_NEED_RESCHED
beq 1f beq 1f
bl .restore_interrupts bl .restore_interrupts

View File

@ -764,8 +764,8 @@ alignment_common:
std r3,_DAR(r1) std r3,_DAR(r1)
std r4,_DSISR(r1) std r4,_DSISR(r1)
bl .save_nvgprs bl .save_nvgprs
DISABLE_INTS
addi r3,r1,STACK_FRAME_OVERHEAD addi r3,r1,STACK_FRAME_OVERHEAD
ENABLE_INTS
bl .alignment_exception bl .alignment_exception
b .ret_from_except b .ret_from_except

View File

@ -260,11 +260,17 @@ EXPORT_SYMBOL(arch_local_irq_restore);
* if they are currently disabled. This is typically called before * if they are currently disabled. This is typically called before
* schedule() or do_signal() when returning to userspace. We do it * schedule() or do_signal() when returning to userspace. We do it
* in C to avoid the burden of dealing with lockdep etc... * in C to avoid the burden of dealing with lockdep etc...
*
* NOTE: This is called with interrupts hard disabled but not marked
* as such in paca->irq_happened, so we need to resync this.
*/ */
void restore_interrupts(void) void restore_interrupts(void)
{ {
if (irqs_disabled()) if (irqs_disabled()) {
local_paca->irq_happened |= PACA_IRQ_HARD_DIS;
local_irq_enable(); local_irq_enable();
} else
__hard_irq_enable();
} }
#endif /* CONFIG_PPC64 */ #endif /* CONFIG_PPC64 */
@ -330,14 +336,10 @@ void migrate_irqs(void)
alloc_cpumask_var(&mask, GFP_KERNEL); alloc_cpumask_var(&mask, GFP_KERNEL);
for_each_irq(irq) { for_each_irq_desc(irq, desc) {
struct irq_data *data; struct irq_data *data;
struct irq_chip *chip; struct irq_chip *chip;
desc = irq_to_desc(irq);
if (!desc)
continue;
data = irq_desc_get_irq_data(desc); data = irq_desc_get_irq_data(desc);
if (irqd_is_per_cpu(data)) if (irqd_is_per_cpu(data))
continue; continue;

View File

@ -23,14 +23,11 @@
void machine_kexec_mask_interrupts(void) { void machine_kexec_mask_interrupts(void) {
unsigned int i; unsigned int i;
struct irq_desc *desc;
for_each_irq(i) { for_each_irq_desc(i, desc) {
struct irq_desc *desc = irq_to_desc(i);
struct irq_chip *chip; struct irq_chip *chip;
if (!desc)
continue;
chip = irq_desc_get_chip(desc); chip = irq_desc_get_chip(desc);
if (!chip) if (!chip)
continue; continue;

View File

@ -248,7 +248,7 @@ void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr)
addr, regs->nip, regs->link, code); addr, regs->nip, regs->link, code);
} }
if (!arch_irq_disabled_regs(regs)) if (arch_irqs_disabled() && !arch_irq_disabled_regs(regs))
local_irq_enable(); local_irq_enable();
memset(&info, 0, sizeof(info)); memset(&info, 0, sizeof(info));
@ -1019,7 +1019,9 @@ void __kprobes program_check_exception(struct pt_regs *regs)
return; return;
} }
local_irq_enable(); /* We restore the interrupt state now */
if (!arch_irq_disabled_regs(regs))
local_irq_enable();
#ifdef CONFIG_MATH_EMULATION #ifdef CONFIG_MATH_EMULATION
/* (reason & REASON_ILLEGAL) would be the obvious thing here, /* (reason & REASON_ILLEGAL) would be the obvious thing here,
@ -1069,6 +1071,10 @@ void alignment_exception(struct pt_regs *regs)
{ {
int sig, code, fixed = 0; int sig, code, fixed = 0;
/* We restore the interrupt state now */
if (!arch_irq_disabled_regs(regs))
local_irq_enable();
/* we don't implement logging of alignment exceptions */ /* we don't implement logging of alignment exceptions */
if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS)) if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS))
fixed = fix_alignment(regs); fixed = fix_alignment(regs);

View File

@ -114,7 +114,7 @@ static void axon_msi_cascade(unsigned int irq, struct irq_desc *desc)
pr_devel("axon_msi: woff %x roff %x msi %x\n", pr_devel("axon_msi: woff %x roff %x msi %x\n",
write_offset, msic->read_offset, msi); write_offset, msic->read_offset, msi);
if (msi < NR_IRQS && irq_get_chip_data(msi) == msic) { if (msi < nr_irqs && irq_get_chip_data(msi) == msic) {
generic_handle_irq(msi); generic_handle_irq(msi);
msic->fifo_virt[idx] = cpu_to_le32(0xffffffff); msic->fifo_virt[idx] = cpu_to_le32(0xffffffff);
} else { } else {
@ -276,9 +276,6 @@ static int axon_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
if (rc) if (rc)
return rc; return rc;
/* We rely on being able to stash a virq in a u16 */
BUILD_BUG_ON(NR_IRQS > 65536);
list_for_each_entry(entry, &dev->msi_list, list) { list_for_each_entry(entry, &dev->msi_list, list) {
virq = irq_create_direct_mapping(msic->irq_domain); virq = irq_create_direct_mapping(msic->irq_domain);
if (virq == NO_IRQ) { if (virq == NO_IRQ) {
@ -392,7 +389,8 @@ static int axon_msi_probe(struct platform_device *device)
} }
memset(msic->fifo_virt, 0xff, MSIC_FIFO_SIZE_BYTES); memset(msic->fifo_virt, 0xff, MSIC_FIFO_SIZE_BYTES);
msic->irq_domain = irq_domain_add_nomap(dn, 0, &msic_host_ops, msic); /* We rely on being able to stash a virq in a u16, so limit irqs to < 65536 */
msic->irq_domain = irq_domain_add_nomap(dn, 65536, &msic_host_ops, msic);
if (!msic->irq_domain) { if (!msic->irq_domain) {
printk(KERN_ERR "axon_msi: couldn't allocate irq_domain for %s\n", printk(KERN_ERR "axon_msi: couldn't allocate irq_domain for %s\n",
dn->full_name); dn->full_name);

View File

@ -248,6 +248,6 @@ void beatic_deinit_IRQ(void)
{ {
int i; int i;
for (i = 1; i < NR_IRQS; i++) for (i = 1; i < nr_irqs; i++)
beat_destruct_irq_plug(i); beat_destruct_irq_plug(i);
} }

View File

@ -57,9 +57,9 @@ static int max_real_irqs;
static DEFINE_RAW_SPINLOCK(pmac_pic_lock); static DEFINE_RAW_SPINLOCK(pmac_pic_lock);
#define NR_MASK_WORDS ((NR_IRQS + 31) / 32) /* The max irq number this driver deals with is 128; see max_irqs */
static unsigned long ppc_lost_interrupts[NR_MASK_WORDS]; static DECLARE_BITMAP(ppc_lost_interrupts, 128);
static unsigned long ppc_cached_irq_mask[NR_MASK_WORDS]; static DECLARE_BITMAP(ppc_cached_irq_mask, 128);
static int pmac_irq_cascade = -1; static int pmac_irq_cascade = -1;
static struct irq_domain *pmac_pic_host; static struct irq_domain *pmac_pic_host;

View File

@ -30,9 +30,9 @@ config PPC_SPLPAR
two or more partitions. two or more partitions.
config EEH config EEH
bool "PCI Extended Error Handling (EEH)" if EXPERT bool
depends on PPC_PSERIES && PCI depends on PPC_PSERIES && PCI
default y if !EXPERT default y
config PSERIES_MSI config PSERIES_MSI
bool bool

View File

@ -51,8 +51,7 @@
static intctl_cpm2_t __iomem *cpm2_intctl; static intctl_cpm2_t __iomem *cpm2_intctl;
static struct irq_domain *cpm2_pic_host; static struct irq_domain *cpm2_pic_host;
#define NR_MASK_WORDS ((NR_IRQS + 31) / 32) static unsigned long ppc_cached_irq_mask[2]; /* 2 32-bit registers */
static unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
static const u_char irq_to_siureg[] = { static const u_char irq_to_siureg[] = {
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,

View File

@ -18,69 +18,45 @@
extern int cpm_get_irq(struct pt_regs *regs); extern int cpm_get_irq(struct pt_regs *regs);
static struct irq_domain *mpc8xx_pic_host; static struct irq_domain *mpc8xx_pic_host;
#define NR_MASK_WORDS ((NR_IRQS + 31) / 32) static unsigned long mpc8xx_cached_irq_mask;
static unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
static sysconf8xx_t __iomem *siu_reg; static sysconf8xx_t __iomem *siu_reg;
int cpm_get_irq(struct pt_regs *regs); static inline unsigned long mpc8xx_irqd_to_bit(struct irq_data *d)
{
return 0x80000000 >> irqd_to_hwirq(d);
}
static void mpc8xx_unmask_irq(struct irq_data *d) static void mpc8xx_unmask_irq(struct irq_data *d)
{ {
int bit, word; mpc8xx_cached_irq_mask |= mpc8xx_irqd_to_bit(d);
unsigned int irq_nr = (unsigned int)irqd_to_hwirq(d); out_be32(&siu_reg->sc_simask, mpc8xx_cached_irq_mask);
bit = irq_nr & 0x1f;
word = irq_nr >> 5;
ppc_cached_irq_mask[word] |= (1 << (31-bit));
out_be32(&siu_reg->sc_simask, ppc_cached_irq_mask[word]);
} }
static void mpc8xx_mask_irq(struct irq_data *d) static void mpc8xx_mask_irq(struct irq_data *d)
{ {
int bit, word; mpc8xx_cached_irq_mask &= ~mpc8xx_irqd_to_bit(d);
unsigned int irq_nr = (unsigned int)irqd_to_hwirq(d); out_be32(&siu_reg->sc_simask, mpc8xx_cached_irq_mask);
bit = irq_nr & 0x1f;
word = irq_nr >> 5;
ppc_cached_irq_mask[word] &= ~(1 << (31-bit));
out_be32(&siu_reg->sc_simask, ppc_cached_irq_mask[word]);
} }
static void mpc8xx_ack(struct irq_data *d) static void mpc8xx_ack(struct irq_data *d)
{ {
int bit; out_be32(&siu_reg->sc_sipend, mpc8xx_irqd_to_bit(d));
unsigned int irq_nr = (unsigned int)irqd_to_hwirq(d);
bit = irq_nr & 0x1f;
out_be32(&siu_reg->sc_sipend, 1 << (31-bit));
} }
static void mpc8xx_end_irq(struct irq_data *d) static void mpc8xx_end_irq(struct irq_data *d)
{ {
int bit, word; mpc8xx_cached_irq_mask |= mpc8xx_irqd_to_bit(d);
unsigned int irq_nr = (unsigned int)irqd_to_hwirq(d); out_be32(&siu_reg->sc_simask, mpc8xx_cached_irq_mask);
bit = irq_nr & 0x1f;
word = irq_nr >> 5;
ppc_cached_irq_mask[word] |= (1 << (31-bit));
out_be32(&siu_reg->sc_simask, ppc_cached_irq_mask[word]);
} }
static int mpc8xx_set_irq_type(struct irq_data *d, unsigned int flow_type) static int mpc8xx_set_irq_type(struct irq_data *d, unsigned int flow_type)
{ {
if (flow_type & IRQ_TYPE_EDGE_FALLING) { /* only external IRQ senses are programmable */
irq_hw_number_t hw = (unsigned int)irqd_to_hwirq(d); if ((flow_type & IRQ_TYPE_EDGE_FALLING) && !(irqd_to_hwirq(d) & 1)) {
unsigned int siel = in_be32(&siu_reg->sc_siel); unsigned int siel = in_be32(&siu_reg->sc_siel);
siel |= mpc8xx_irqd_to_bit(d);
/* only external IRQ senses are programmable */ out_be32(&siu_reg->sc_siel, siel);
if ((hw & 1) == 0) { __irq_set_handler_locked(d->irq, handle_edge_irq);
siel |= (0x80000000 >> hw);
out_be32(&siu_reg->sc_siel, siel);
__irq_set_handler_locked(d->irq, handle_edge_irq);
}
} }
return 0; return 0;
} }
@ -132,6 +108,9 @@ static int mpc8xx_pic_host_xlate(struct irq_domain *h, struct device_node *ct,
IRQ_TYPE_EDGE_FALLING, IRQ_TYPE_EDGE_FALLING,
}; };
if (intspec[0] > 0x1f)
return 0;
*out_hwirq = intspec[0]; *out_hwirq = intspec[0];
if (intsize > 1 && intspec[1] < 4) if (intsize > 1 && intspec[1] < 4)
*out_flags = map_pic_senses[intspec[1]]; *out_flags = map_pic_senses[intspec[1]];

View File

@ -188,6 +188,7 @@ void xics_migrate_irqs_away(void)
{ {
int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id(); int cpu = smp_processor_id(), hw_cpu = hard_smp_processor_id();
unsigned int irq, virq; unsigned int irq, virq;
struct irq_desc *desc;
/* If we used to be the default server, move to the new "boot_cpuid" */ /* If we used to be the default server, move to the new "boot_cpuid" */
if (hw_cpu == xics_default_server) if (hw_cpu == xics_default_server)
@ -202,8 +203,7 @@ void xics_migrate_irqs_away(void)
/* Allow IPIs again... */ /* Allow IPIs again... */
icp_ops->set_priority(DEFAULT_PRIORITY); icp_ops->set_priority(DEFAULT_PRIORITY);
for_each_irq(virq) { for_each_irq_desc(virq, desc) {
struct irq_desc *desc;
struct irq_chip *chip; struct irq_chip *chip;
long server; long server;
unsigned long flags; unsigned long flags;
@ -212,9 +212,8 @@ void xics_migrate_irqs_away(void)
/* We can't set affinity on ISA interrupts */ /* We can't set affinity on ISA interrupts */
if (virq < NUM_ISA_INTERRUPTS) if (virq < NUM_ISA_INTERRUPTS)
continue; continue;
desc = irq_to_desc(virq);
/* We only need to migrate enabled IRQS */ /* We only need to migrate enabled IRQS */
if (!desc || !desc->action) if (!desc->action)
continue; continue;
if (desc->irq_data.domain != xics_host) if (desc->irq_data.domain != xics_host)
continue; continue;

View File

@ -469,7 +469,7 @@ static irqreturn_t pmz_interrupt(int irq, void *dev_id)
tty = NULL; tty = NULL;
if (r3 & (CHAEXT | CHATxIP | CHARxIP)) { if (r3 & (CHAEXT | CHATxIP | CHARxIP)) {
if (!ZS_IS_OPEN(uap_a)) { if (!ZS_IS_OPEN(uap_a)) {
pmz_debug("ChanA interrupt while open !\n"); pmz_debug("ChanA interrupt while not open !\n");
goto skip_a; goto skip_a;
} }
write_zsreg(uap_a, R0, RES_H_IUS); write_zsreg(uap_a, R0, RES_H_IUS);
@ -493,8 +493,8 @@ static irqreturn_t pmz_interrupt(int irq, void *dev_id)
spin_lock(&uap_b->port.lock); spin_lock(&uap_b->port.lock);
tty = NULL; tty = NULL;
if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) { if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) {
if (!ZS_IS_OPEN(uap_a)) { if (!ZS_IS_OPEN(uap_b)) {
pmz_debug("ChanB interrupt while open !\n"); pmz_debug("ChanB interrupt while not open !\n");
goto skip_b; goto skip_b;
} }
write_zsreg(uap_b, R0, RES_H_IUS); write_zsreg(uap_b, R0, RES_H_IUS);