2005-10-28 09:35:50 +04:00
|
|
|
/*
|
|
|
|
* arch/powerpc/platforms/pseries/xics.c
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* Copyright 2000 IBM Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/gfp.h>
|
|
|
|
#include <linux/radix-tree.h>
|
|
|
|
#include <linux/cpu.h>
|
2006-03-21 12:45:59 +03:00
|
|
|
#include <asm/firmware.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/prom.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/smp.h>
|
|
|
|
#include <asm/rtas.h>
|
|
|
|
#include <asm/hvcall.h>
|
|
|
|
#include <asm/machdep.h>
|
2005-10-28 05:47:17 +04:00
|
|
|
#include <asm/i8259.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-28 09:35:50 +04:00
|
|
|
#include "xics.h"
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* This is used to map real irq numbers to virtual */
|
|
|
|
static struct radix_tree_root irq_map = RADIX_TREE_INIT(GFP_ATOMIC);
|
|
|
|
|
|
|
|
#define XICS_IPI 2
|
|
|
|
#define XICS_IRQ_SPURIOUS 0
|
|
|
|
|
|
|
|
/* Want a priority other than 0. Various HW issues require this. */
|
|
|
|
#define DEFAULT_PRIORITY 5
|
|
|
|
|
2005-10-28 09:35:50 +04:00
|
|
|
/*
|
2005-04-17 02:20:36 +04:00
|
|
|
* Mark IPIs as higher priority so we can take them inside interrupts that
|
2006-07-02 06:29:22 +04:00
|
|
|
* arent marked IRQF_DISABLED
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
#define IPI_PRIORITY 4
|
|
|
|
|
|
|
|
struct xics_ipl {
|
|
|
|
union {
|
|
|
|
u32 word;
|
|
|
|
u8 bytes[4];
|
|
|
|
} xirr_poll;
|
|
|
|
union {
|
|
|
|
u32 word;
|
|
|
|
u8 bytes[4];
|
|
|
|
} xirr;
|
|
|
|
u32 dummy;
|
|
|
|
union {
|
|
|
|
u32 word;
|
|
|
|
u8 bytes[4];
|
|
|
|
} qirr;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct xics_ipl __iomem *xics_per_cpu[NR_CPUS];
|
|
|
|
|
|
|
|
static int xics_irq_8259_cascade = 0;
|
|
|
|
static int xics_irq_8259_cascade_real = 0;
|
|
|
|
static unsigned int default_server = 0xFF;
|
2005-09-12 07:12:11 +04:00
|
|
|
static unsigned int default_distrib_server = 0;
|
|
|
|
static unsigned int interrupt_server_size = 8;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XICS only has a single IPI, so encode the messages per CPU
|
|
|
|
*/
|
|
|
|
struct xics_ipi_struct xics_ipi_message[NR_CPUS] __cacheline_aligned;
|
|
|
|
|
|
|
|
/* RTAS service tokens */
|
2005-09-12 07:12:11 +04:00
|
|
|
static int ibm_get_xive;
|
|
|
|
static int ibm_set_xive;
|
|
|
|
static int ibm_int_on;
|
|
|
|
static int ibm_int_off;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
/* Direct HW low level accessors */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline int direct_xirr_info_get(int n_cpu)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return in_be32(&xics_per_cpu[n_cpu]->xirr.word);
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void direct_xirr_info_set(int n_cpu, int value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
out_be32(&xics_per_cpu[n_cpu]->xirr.word, value);
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void direct_cppr_info(int n_cpu, u8 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
out_8(&xics_per_cpu[n_cpu]->xirr.bytes[0], value);
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void direct_qirr_info(int n_cpu, u8 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
out_8(&xics_per_cpu[n_cpu]->qirr.bytes[0], value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
/* LPAR low level accessors */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
static inline long plpar_eoi(unsigned long xirr)
|
|
|
|
{
|
|
|
|
return plpar_hcall_norets(H_EOI, xirr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long plpar_cppr(unsigned long cppr)
|
|
|
|
{
|
|
|
|
return plpar_hcall_norets(H_CPPR, cppr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long plpar_ipi(unsigned long servernum, unsigned long mfrr)
|
|
|
|
{
|
|
|
|
return plpar_hcall_norets(H_IPI, servernum, mfrr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long plpar_xirr(unsigned long *xirr_ret)
|
|
|
|
{
|
|
|
|
unsigned long dummy;
|
|
|
|
return plpar_hcall(H_XIRR, 0, 0, 0, 0, xirr_ret, &dummy, &dummy);
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline int lpar_xirr_info_get(int n_cpu)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned long lpar_rc;
|
2005-10-28 09:35:50 +04:00
|
|
|
unsigned long return_value;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
lpar_rc = plpar_xirr(&return_value);
|
2006-03-30 16:49:40 +04:00
|
|
|
if (lpar_rc != H_SUCCESS)
|
2005-10-28 09:35:50 +04:00
|
|
|
panic(" bad return code xirr - rc = %lx \n", lpar_rc);
|
2005-04-17 02:20:36 +04:00
|
|
|
return (int)return_value;
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void lpar_xirr_info_set(int n_cpu, int value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned long lpar_rc;
|
|
|
|
unsigned long val64 = value & 0xffffffff;
|
|
|
|
|
|
|
|
lpar_rc = plpar_eoi(val64);
|
2006-03-30 16:49:40 +04:00
|
|
|
if (lpar_rc != H_SUCCESS)
|
2005-04-17 02:20:36 +04:00
|
|
|
panic("bad return code EOI - rc = %ld, value=%lx\n", lpar_rc,
|
2005-10-28 09:35:50 +04:00
|
|
|
val64);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void lpar_cppr_info(int n_cpu, u8 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned long lpar_rc;
|
|
|
|
|
|
|
|
lpar_rc = plpar_cppr(value);
|
2006-03-30 16:49:40 +04:00
|
|
|
if (lpar_rc != H_SUCCESS)
|
2005-10-28 09:35:50 +04:00
|
|
|
panic("bad return code cppr - rc = %lx\n", lpar_rc);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline void lpar_qirr_info(int n_cpu , u8 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned long lpar_rc;
|
|
|
|
|
|
|
|
lpar_rc = plpar_ipi(get_hard_smp_processor_id(n_cpu), value);
|
2006-03-30 16:49:40 +04:00
|
|
|
if (lpar_rc != H_SUCCESS)
|
2005-10-28 09:35:50 +04:00
|
|
|
panic("bad return code qirr - rc = %lx\n", lpar_rc);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
/* High level handlers and init code */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
static int get_irq_server(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int server;
|
|
|
|
/* For the moment only implement delivery to all cpus or one cpu */
|
2006-06-29 13:24:38 +04:00
|
|
|
cpumask_t cpumask = irq_desc[irq].affinity;
|
2005-04-17 02:20:36 +04:00
|
|
|
cpumask_t tmp = CPU_MASK_NONE;
|
|
|
|
|
|
|
|
if (!distribute_irqs)
|
|
|
|
return default_server;
|
|
|
|
|
|
|
|
if (cpus_equal(cpumask, CPU_MASK_ALL)) {
|
|
|
|
server = default_distrib_server;
|
|
|
|
} else {
|
|
|
|
cpus_and(tmp, cpu_online_map, cpumask);
|
|
|
|
|
|
|
|
if (cpus_empty(tmp))
|
|
|
|
server = default_distrib_server;
|
|
|
|
else
|
|
|
|
server = get_hard_smp_processor_id(first_cpu(tmp));
|
|
|
|
}
|
|
|
|
|
|
|
|
return server;
|
|
|
|
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static int get_irq_server(unsigned int irq)
|
|
|
|
{
|
|
|
|
return default_server;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
|
|
|
|
static void xics_unmask_irq(unsigned int virq)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned int irq;
|
|
|
|
int call_status;
|
|
|
|
unsigned int server;
|
|
|
|
|
|
|
|
irq = virt_irq_to_real(irq_offset_down(virq));
|
2006-07-03 13:32:51 +04:00
|
|
|
WARN_ON(irq == NO_IRQ);
|
|
|
|
if (irq == XICS_IPI || irq == NO_IRQ)
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
server = get_irq_server(virq);
|
2006-07-03 13:32:51 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server,
|
|
|
|
DEFAULT_PRIORITY);
|
|
|
|
if (call_status != 0) {
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_ERR "xics_enable_irq: irq=%u: ibm_set_xive "
|
|
|
|
"returned %d\n", irq, call_status);
|
|
|
|
printk("set_xive %x, server %x\n", ibm_set_xive, server);
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now unmask the interrupt (often a no-op) */
|
|
|
|
call_status = rtas_call(ibm_int_on, 1, 1, NULL, irq);
|
|
|
|
if (call_status != 0) {
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_ERR "xics_enable_irq: irq=%u: ibm_int_on "
|
|
|
|
"returned %d\n", irq, call_status);
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static void xics_mask_real_irq(unsigned int irq)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int call_status;
|
|
|
|
unsigned int server;
|
|
|
|
|
|
|
|
if (irq == XICS_IPI)
|
|
|
|
return;
|
|
|
|
|
|
|
|
call_status = rtas_call(ibm_int_off, 1, 1, NULL, irq);
|
|
|
|
if (call_status != 0) {
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_ERR "xics_disable_real_irq: irq=%u: "
|
|
|
|
"ibm_int_off returned %d\n", irq, call_status);
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
server = get_irq_server(irq);
|
|
|
|
/* Have to set XIVE to 0xff to be able to remove a slot */
|
|
|
|
call_status = rtas_call(ibm_set_xive, 3, 1, NULL, irq, server, 0xff);
|
|
|
|
if (call_status != 0) {
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_ERR "xics_disable_irq: irq=%u: ibm_set_xive(0xff)"
|
|
|
|
" returned %d\n", irq, call_status);
|
2005-04-17 02:20:36 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static void xics_mask_irq(unsigned int virq)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned int irq;
|
|
|
|
|
|
|
|
irq = virt_irq_to_real(irq_offset_down(virq));
|
2006-07-03 13:32:51 +04:00
|
|
|
WARN_ON(irq == NO_IRQ);
|
|
|
|
if (irq != NO_IRQ)
|
|
|
|
xics_mask_real_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xics_set_irq_revmap(unsigned int virq)
|
|
|
|
{
|
|
|
|
unsigned int irq;
|
|
|
|
|
|
|
|
irq = irq_offset_down(virq);
|
|
|
|
if (radix_tree_insert(&irq_map, virt_irq_to_real(irq),
|
|
|
|
&virt_irq_to_real_map[irq]) == -ENOMEM)
|
|
|
|
printk(KERN_CRIT "Out of memory creating real -> virtual"
|
|
|
|
" IRQ mapping for irq %u (real 0x%x)\n",
|
|
|
|
virq, virt_irq_to_real(irq));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static unsigned int xics_startup(unsigned int virq)
|
|
|
|
{
|
|
|
|
xics_set_irq_revmap(virq);
|
|
|
|
xics_unmask_irq(virq);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int real_irq_to_virt(unsigned int real_irq)
|
|
|
|
{
|
|
|
|
unsigned int *ptr;
|
|
|
|
|
|
|
|
ptr = radix_tree_lookup(&irq_map, real_irq);
|
|
|
|
if (ptr == NULL)
|
|
|
|
return NO_IRQ;
|
|
|
|
return ptr - virt_irq_to_real_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xics_eoi_direct(unsigned int irq)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
iosync();
|
2006-07-03 13:32:51 +04:00
|
|
|
direct_xirr_info_set(cpu, ((0xff << 24) |
|
|
|
|
(virt_irq_to_real(irq_offset_down(irq)))));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
|
|
|
|
static void xics_eoi_lpar(unsigned int irq)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
iosync();
|
|
|
|
lpar_xirr_info_set(cpu, ((0xff << 24) |
|
|
|
|
(virt_irq_to_real(irq_offset_down(irq)))));
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static inline int xics_remap_irq(int vec)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int irq;
|
|
|
|
|
|
|
|
vec &= 0x00ffffff;
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
if (vec == XICS_IRQ_SPURIOUS)
|
|
|
|
return NO_IRQ;
|
|
|
|
|
|
|
|
irq = real_irq_to_virt(vec);
|
|
|
|
if (irq == NO_IRQ)
|
|
|
|
irq = real_irq_to_virt_slowpath(vec);
|
|
|
|
if (likely(irq != NO_IRQ))
|
|
|
|
return irq_offset_up(irq);
|
|
|
|
|
|
|
|
printk(KERN_ERR "Interrupt %u (real) is invalid,"
|
|
|
|
" disabling it.\n", vec);
|
|
|
|
xics_mask_real_irq(vec);
|
|
|
|
return NO_IRQ;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static int xics_get_irq_direct(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
unsigned int cpu = smp_processor_id();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
return xics_remap_irq(direct_xirr_info_get(cpu));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xics_get_irq_lpar(struct pt_regs *regs)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2006-07-03 13:32:51 +04:00
|
|
|
unsigned int cpu = smp_processor_id();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
return xics_remap_irq(lpar_xirr_info_get(cpu));
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static irqreturn_t xics_ipi_dispatch(int cpu, struct pt_regs *regs)
|
|
|
|
{
|
2005-04-17 02:20:36 +04:00
|
|
|
WARN_ON(cpu_is_offline(cpu));
|
|
|
|
|
|
|
|
while (xics_ipi_message[cpu].value) {
|
|
|
|
if (test_and_clear_bit(PPC_MSG_CALL_FUNCTION,
|
|
|
|
&xics_ipi_message[cpu].value)) {
|
|
|
|
mb();
|
|
|
|
smp_message_recv(PPC_MSG_CALL_FUNCTION, regs);
|
|
|
|
}
|
|
|
|
if (test_and_clear_bit(PPC_MSG_RESCHEDULE,
|
|
|
|
&xics_ipi_message[cpu].value)) {
|
|
|
|
mb();
|
|
|
|
smp_message_recv(PPC_MSG_RESCHEDULE, regs);
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
if (test_and_clear_bit(PPC_MSG_MIGRATE_TASK,
|
|
|
|
&xics_ipi_message[cpu].value)) {
|
|
|
|
mb();
|
|
|
|
smp_message_recv(PPC_MSG_MIGRATE_TASK, regs);
|
|
|
|
}
|
|
|
|
#endif
|
2005-12-04 10:39:43 +03:00
|
|
|
#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
|
2005-04-17 02:20:36 +04:00
|
|
|
if (test_and_clear_bit(PPC_MSG_DEBUGGER_BREAK,
|
|
|
|
&xics_ipi_message[cpu].value)) {
|
|
|
|
mb();
|
|
|
|
smp_message_recv(PPC_MSG_DEBUGGER_BREAK, regs);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static irqreturn_t xics_ipi_action_direct(int irq, void *dev_id, struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
direct_qirr_info(cpu, 0xff);
|
|
|
|
|
|
|
|
return xics_ipi_dispatch(cpu, regs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t xics_ipi_action_lpar(int irq, void *dev_id, struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
lpar_qirr_info(cpu, 0xff);
|
|
|
|
|
|
|
|
return xics_ipi_dispatch(cpu, regs);
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
void xics_cause_IPI(int cpu)
|
|
|
|
{
|
2006-07-03 13:32:51 +04:00
|
|
|
if (firmware_has_feature(FW_FEATURE_LPAR))
|
|
|
|
lpar_qirr_info(cpu, IPI_PRIORITY);
|
|
|
|
else
|
|
|
|
direct_qirr_info(cpu, IPI_PRIORITY);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2006-07-03 13:32:51 +04:00
|
|
|
|
2005-05-06 10:28:56 +04:00
|
|
|
#endif /* CONFIG_SMP */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static void xics_set_cpu_priority(int cpu, unsigned char cppr)
|
|
|
|
{
|
|
|
|
if (firmware_has_feature(FW_FEATURE_LPAR))
|
|
|
|
lpar_cppr_info(cpu, cppr);
|
|
|
|
else
|
|
|
|
direct_cppr_info(cpu, cppr);
|
|
|
|
iosync();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xics_set_affinity(unsigned int virq, cpumask_t cpumask)
|
|
|
|
{
|
|
|
|
unsigned int irq;
|
|
|
|
int status;
|
|
|
|
int xics_status[2];
|
|
|
|
unsigned long newmask;
|
|
|
|
cpumask_t tmp = CPU_MASK_NONE;
|
|
|
|
|
|
|
|
irq = virt_irq_to_real(irq_offset_down(virq));
|
|
|
|
if (irq == XICS_IPI || irq == NO_IRQ)
|
|
|
|
return;
|
|
|
|
|
|
|
|
status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
printk(KERN_ERR "xics_set_affinity: irq=%u ibm,get-xive "
|
|
|
|
"returns %d\n", irq, status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For the moment only implement delivery to all cpus or one cpu */
|
|
|
|
if (cpus_equal(cpumask, CPU_MASK_ALL)) {
|
|
|
|
newmask = default_distrib_server;
|
|
|
|
} else {
|
|
|
|
cpus_and(tmp, cpu_online_map, cpumask);
|
|
|
|
if (cpus_empty(tmp))
|
|
|
|
return;
|
|
|
|
newmask = get_hard_smp_processor_id(first_cpu(tmp));
|
|
|
|
}
|
|
|
|
|
|
|
|
status = rtas_call(ibm_set_xive, 3, 1, NULL,
|
|
|
|
irq, newmask, xics_status[1]);
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
printk(KERN_ERR "xics_set_affinity: irq=%u ibm,set-xive "
|
|
|
|
"returns %d\n", irq, status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip xics_pic_direct = {
|
|
|
|
.typename = " XICS ",
|
|
|
|
.startup = xics_startup,
|
|
|
|
.mask = xics_mask_irq,
|
|
|
|
.unmask = xics_unmask_irq,
|
|
|
|
.eoi = xics_eoi_direct,
|
|
|
|
.set_affinity = xics_set_affinity
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct irq_chip xics_pic_lpar = {
|
|
|
|
.typename = " XICS ",
|
|
|
|
.startup = xics_startup,
|
|
|
|
.mask = xics_mask_irq,
|
|
|
|
.unmask = xics_unmask_irq,
|
|
|
|
.eoi = xics_eoi_lpar,
|
|
|
|
.set_affinity = xics_set_affinity
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
void xics_setup_cpu(void)
|
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
xics_set_cpu_priority(cpu, 0xff);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-05-06 10:28:56 +04:00
|
|
|
/*
|
|
|
|
* Put the calling processor into the GIQ. This is really only
|
|
|
|
* necessary from a secondary thread as the OF start-cpu interface
|
|
|
|
* performs this function for us on primary threads.
|
|
|
|
*
|
|
|
|
* XXX: undo of teardown on kexec needs this too, as may hotplug
|
|
|
|
*/
|
|
|
|
rtas_set_indicator(GLOBAL_INTERRUPT_QUEUE,
|
|
|
|
(1UL << interrupt_server_size) - 1 - default_distrib_server, 1);
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
void xics_init_IRQ(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned long intr_size = 0;
|
|
|
|
struct device_node *np;
|
|
|
|
uint *ireg, ilen, indx = 0;
|
|
|
|
unsigned long intr_base = 0;
|
|
|
|
struct xics_interrupt_node {
|
|
|
|
unsigned long addr;
|
|
|
|
unsigned long size;
|
2005-10-28 09:35:50 +04:00
|
|
|
} intnodes[NR_CPUS];
|
2006-07-03 13:32:51 +04:00
|
|
|
struct irq_chip *chip;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ppc64_boot_msg(0x20, "XICS Init");
|
|
|
|
|
|
|
|
ibm_get_xive = rtas_token("ibm,get-xive");
|
|
|
|
ibm_set_xive = rtas_token("ibm,set-xive");
|
|
|
|
ibm_int_on = rtas_token("ibm,int-on");
|
|
|
|
ibm_int_off = rtas_token("ibm,int-off");
|
|
|
|
|
|
|
|
np = of_find_node_by_type(NULL, "PowerPC-External-Interrupt-Presentation");
|
|
|
|
if (!np)
|
|
|
|
panic("xics_init_IRQ: can't find interrupt presentation");
|
|
|
|
|
|
|
|
nextnode:
|
|
|
|
ireg = (uint *)get_property(np, "ibm,interrupt-server-ranges", NULL);
|
|
|
|
if (ireg) {
|
|
|
|
/*
|
|
|
|
* set node starting index for this node
|
|
|
|
*/
|
|
|
|
indx = *ireg;
|
|
|
|
}
|
|
|
|
|
|
|
|
ireg = (uint *)get_property(np, "reg", &ilen);
|
|
|
|
if (!ireg)
|
|
|
|
panic("xics_init_IRQ: can't find interrupt reg property");
|
2005-10-28 09:35:50 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
while (ilen) {
|
|
|
|
intnodes[indx].addr = (unsigned long)*ireg++ << 32;
|
|
|
|
ilen -= sizeof(uint);
|
|
|
|
intnodes[indx].addr |= *ireg++;
|
|
|
|
ilen -= sizeof(uint);
|
|
|
|
intnodes[indx].size = (unsigned long)*ireg++ << 32;
|
|
|
|
ilen -= sizeof(uint);
|
|
|
|
intnodes[indx].size |= *ireg++;
|
|
|
|
ilen -= sizeof(uint);
|
|
|
|
indx++;
|
|
|
|
if (indx >= NR_CPUS) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
np = of_find_node_by_type(np, "PowerPC-External-Interrupt-Presentation");
|
|
|
|
if ((indx < NR_CPUS) && np) goto nextnode;
|
|
|
|
|
|
|
|
/* Find the server numbers for the boot cpu. */
|
|
|
|
for (np = of_find_node_by_type(NULL, "cpu");
|
|
|
|
np;
|
|
|
|
np = of_find_node_by_type(np, "cpu")) {
|
|
|
|
ireg = (uint *)get_property(np, "reg", &ilen);
|
2006-03-25 09:25:17 +03:00
|
|
|
if (ireg && ireg[0] == get_hard_smp_processor_id(boot_cpuid)) {
|
2005-04-17 02:20:36 +04:00
|
|
|
ireg = (uint *)get_property(np, "ibm,ppc-interrupt-gserver#s",
|
|
|
|
&ilen);
|
|
|
|
i = ilen / sizeof(int);
|
|
|
|
if (ireg && i > 0) {
|
|
|
|
default_server = ireg[0];
|
|
|
|
default_distrib_server = ireg[i-1]; /* take last element */
|
|
|
|
}
|
|
|
|
ireg = (uint *)get_property(np,
|
|
|
|
"ibm,interrupt-server#-size", NULL);
|
|
|
|
if (ireg)
|
|
|
|
interrupt_server_size = *ireg;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
of_node_put(np);
|
|
|
|
|
|
|
|
intr_base = intnodes[0].addr;
|
|
|
|
intr_size = intnodes[0].size;
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
if (firmware_has_feature(FW_FEATURE_LPAR)) {
|
|
|
|
ppc_md.get_irq = xics_get_irq_lpar;
|
|
|
|
chip = &xics_pic_lpar;
|
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SMP
|
2006-03-29 02:50:51 +04:00
|
|
|
for_each_possible_cpu(i) {
|
2005-04-17 02:20:36 +04:00
|
|
|
int hard_id;
|
|
|
|
|
|
|
|
/* FIXME: Do this dynamically! --RR */
|
|
|
|
if (!cpu_present(i))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
hard_id = get_hard_smp_processor_id(i);
|
2005-10-28 09:35:50 +04:00
|
|
|
xics_per_cpu[i] = ioremap(intnodes[hard_id].addr,
|
2005-04-17 02:20:36 +04:00
|
|
|
intnodes[hard_id].size);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
xics_per_cpu[0] = ioremap(intr_base, intr_size);
|
|
|
|
#endif /* CONFIG_SMP */
|
2006-07-03 13:32:51 +04:00
|
|
|
ppc_md.get_irq = xics_get_irq_direct;
|
|
|
|
chip = &xics_pic_direct;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
for (i = irq_offset_value(); i < NR_IRQS; ++i) {
|
|
|
|
/* All IRQs on XICS are level for now. MSI code may want to modify
|
|
|
|
* that for reporting purposes
|
|
|
|
*/
|
|
|
|
get_irq_desc(i)->status |= IRQ_LEVEL;
|
|
|
|
set_irq_chip_and_handler(i, chip, handle_fasteoi_irq);
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-05-06 10:28:56 +04:00
|
|
|
xics_setup_cpu();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ppc64_boot_msg(0x21, "XICS Done");
|
|
|
|
}
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
static int xics_setup_8259_cascade(void)
|
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
uint *ireg;
|
|
|
|
|
|
|
|
np = of_find_node_by_type(NULL, "interrupt-controller");
|
|
|
|
if (np == NULL) {
|
|
|
|
printk(KERN_WARNING "xics: no ISA interrupt controller\n");
|
|
|
|
xics_irq_8259_cascade_real = -1;
|
|
|
|
xics_irq_8259_cascade = -1;
|
|
|
|
return 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2006-07-03 13:32:51 +04:00
|
|
|
|
|
|
|
ireg = (uint *) get_property(np, "interrupts", NULL);
|
|
|
|
if (!ireg)
|
|
|
|
panic("xics_init_IRQ: can't find ISA interrupts property");
|
|
|
|
|
|
|
|
xics_irq_8259_cascade_real = *ireg;
|
|
|
|
xics_irq_8259_cascade = irq_offset_up
|
|
|
|
(virt_irq_create_mapping(xics_irq_8259_cascade_real));
|
|
|
|
i8259_init(0, 0);
|
|
|
|
of_node_put(np);
|
|
|
|
|
|
|
|
xics_set_irq_revmap(xics_irq_8259_cascade);
|
|
|
|
set_irq_chained_handler(xics_irq_8259_cascade, pSeries_8259_cascade);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2006-07-03 13:32:51 +04:00
|
|
|
arch_initcall(xics_setup_8259_cascade);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
void xics_request_IPIs(void)
|
|
|
|
{
|
|
|
|
virt_irq_to_real_map[XICS_IPI] = XICS_IPI;
|
|
|
|
|
2006-07-02 06:29:22 +04:00
|
|
|
/*
|
|
|
|
* IPIs are marked IRQF_DISABLED as they must run with irqs
|
|
|
|
* disabled
|
|
|
|
*/
|
2006-07-03 13:32:51 +04:00
|
|
|
set_irq_handler(irq_offset_up(XICS_IPI), handle_percpu_irq);
|
|
|
|
if (firmware_has_feature(FW_FEATURE_LPAR))
|
|
|
|
request_irq(irq_offset_up(XICS_IPI), xics_ipi_action_lpar,
|
|
|
|
SA_INTERRUPT, "IPI", NULL);
|
|
|
|
else
|
|
|
|
request_irq(irq_offset_up(XICS_IPI), xics_ipi_action_direct,
|
|
|
|
SA_INTERRUPT, "IPI", NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2006-07-03 13:32:51 +04:00
|
|
|
#endif /* CONFIG_SMP */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-08-04 23:53:37 +04:00
|
|
|
void xics_teardown_cpu(int secondary)
|
[PATCH] ppc64: kexec support for ppc64
This patch implements the kexec support for ppc64 platforms.
A couple of notes:
1) We copy the pages in virtual mode, using the full base kernel
and a statically allocated stack. At kexec_prepare time we
scan the pages and if any overlap our (0, _end[]) range we
return -ETXTBSY.
On PowerPC 64 systems running in LPAR (logical partitioning)
mode, only a small region of memory, referred to as the RMO,
can be accessed in real mode. Since Linux runs with only one
zone of memory in the memory allocator, and it can be orders of
magnitude more memory than the RMO, looping until we allocate
pages in the source region is not feasible. Copying in virtual
means we don't have to write a hash table generation and call
hypervisor to insert translations, instead we rely on the pinned
kernel linear mapping. The kernel already has move to linked
location built in, so there is no requirement to load it at 0.
If we want to load something other than a kernel, then a stub
can be written to copy a linear chunk in real mode.
2) The start entry point gets passed parameters from the kernel.
Slaves are started at a fixed address after copying code from
the entry point.
All CPUs get passed their firmware assigned physical id in r3
(most calling conventions use this register for the first
argument).
This is used to distinguish each CPU from all other CPUs.
Since firmware is not around, there is no other way to obtain
this information other than to pass it somewhere.
A single CPU, referred to here as the master and the one executing
the kexec call, branches to start with the address of start in r4.
While this can be calculated, we have to load it through a gpr to
branch to this point so defining the register this is contained
in is free. A stack of unspecified size is available at r1
(also common calling convention).
All remaining running CPUs are sent to start at absolute address
0x60 after copying the first 0x100 bytes from start to address 0.
This convention was chosen because it matches what the kernel
has been doing itself. (only gpr3 is defined).
Note: This is not quite the convention of the kexec bootblock v2
in the kernel. A stub has been written to convert between them,
and we may adjust the kernel in the future to allow this directly
without any stub.
3) Destination pages can be placed anywhere, even where they
would not be accessible in real mode. This will allow us to
place ram disks above the RMO if we choose.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: R Sharada <sharada@in.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-26 01:58:10 +04:00
|
|
|
{
|
2006-07-03 13:32:51 +04:00
|
|
|
struct irq_desc *desc = get_irq_desc(irq_offset_up(XICS_IPI));
|
[PATCH] ppc64: kexec support for ppc64
This patch implements the kexec support for ppc64 platforms.
A couple of notes:
1) We copy the pages in virtual mode, using the full base kernel
and a statically allocated stack. At kexec_prepare time we
scan the pages and if any overlap our (0, _end[]) range we
return -ETXTBSY.
On PowerPC 64 systems running in LPAR (logical partitioning)
mode, only a small region of memory, referred to as the RMO,
can be accessed in real mode. Since Linux runs with only one
zone of memory in the memory allocator, and it can be orders of
magnitude more memory than the RMO, looping until we allocate
pages in the source region is not feasible. Copying in virtual
means we don't have to write a hash table generation and call
hypervisor to insert translations, instead we rely on the pinned
kernel linear mapping. The kernel already has move to linked
location built in, so there is no requirement to load it at 0.
If we want to load something other than a kernel, then a stub
can be written to copy a linear chunk in real mode.
2) The start entry point gets passed parameters from the kernel.
Slaves are started at a fixed address after copying code from
the entry point.
All CPUs get passed their firmware assigned physical id in r3
(most calling conventions use this register for the first
argument).
This is used to distinguish each CPU from all other CPUs.
Since firmware is not around, there is no other way to obtain
this information other than to pass it somewhere.
A single CPU, referred to here as the master and the one executing
the kexec call, branches to start with the address of start in r4.
While this can be calculated, we have to load it through a gpr to
branch to this point so defining the register this is contained
in is free. A stack of unspecified size is available at r1
(also common calling convention).
All remaining running CPUs are sent to start at absolute address
0x60 after copying the first 0x100 bytes from start to address 0.
This convention was chosen because it matches what the kernel
has been doing itself. (only gpr3 is defined).
Note: This is not quite the convention of the kexec bootblock v2
in the kernel. A stub has been written to convert between them,
and we may adjust the kernel in the future to allow this directly
without any stub.
3) Destination pages can be placed anywhere, even where they
would not be accessible in real mode. This will allow us to
place ram disks above the RMO if we choose.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: R Sharada <sharada@in.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-26 01:58:10 +04:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
2006-07-03 13:32:51 +04:00
|
|
|
xics_set_cpu_priority(cpu, 0);
|
2006-04-06 07:10:18 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we need to EOI the IPI if we got here from kexec down IPI
|
|
|
|
*
|
|
|
|
* probably need to check all the other interrupts too
|
|
|
|
* should we be flagging idle loop instead?
|
|
|
|
* or creating some task to be scheduled?
|
|
|
|
*/
|
2006-07-03 13:32:51 +04:00
|
|
|
if (desc->chip && desc->chip->eoi)
|
|
|
|
desc->chip->eoi(XICS_IPI);
|
2006-04-06 07:10:18 +04:00
|
|
|
|
[PATCH] ppc64: kexec support for ppc64
This patch implements the kexec support for ppc64 platforms.
A couple of notes:
1) We copy the pages in virtual mode, using the full base kernel
and a statically allocated stack. At kexec_prepare time we
scan the pages and if any overlap our (0, _end[]) range we
return -ETXTBSY.
On PowerPC 64 systems running in LPAR (logical partitioning)
mode, only a small region of memory, referred to as the RMO,
can be accessed in real mode. Since Linux runs with only one
zone of memory in the memory allocator, and it can be orders of
magnitude more memory than the RMO, looping until we allocate
pages in the source region is not feasible. Copying in virtual
means we don't have to write a hash table generation and call
hypervisor to insert translations, instead we rely on the pinned
kernel linear mapping. The kernel already has move to linked
location built in, so there is no requirement to load it at 0.
If we want to load something other than a kernel, then a stub
can be written to copy a linear chunk in real mode.
2) The start entry point gets passed parameters from the kernel.
Slaves are started at a fixed address after copying code from
the entry point.
All CPUs get passed their firmware assigned physical id in r3
(most calling conventions use this register for the first
argument).
This is used to distinguish each CPU from all other CPUs.
Since firmware is not around, there is no other way to obtain
this information other than to pass it somewhere.
A single CPU, referred to here as the master and the one executing
the kexec call, branches to start with the address of start in r4.
While this can be calculated, we have to load it through a gpr to
branch to this point so defining the register this is contained
in is free. A stack of unspecified size is available at r1
(also common calling convention).
All remaining running CPUs are sent to start at absolute address
0x60 after copying the first 0x100 bytes from start to address 0.
This convention was chosen because it matches what the kernel
has been doing itself. (only gpr3 is defined).
Note: This is not quite the convention of the kexec bootblock v2
in the kernel. A stub has been written to convert between them,
and we may adjust the kernel in the future to allow this directly
without any stub.
3) Destination pages can be placed anywhere, even where they
would not be accessible in real mode. This will allow us to
place ram disks above the RMO if we choose.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: R Sharada <sharada@in.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-26 01:58:10 +04:00
|
|
|
/*
|
2005-08-04 23:53:37 +04:00
|
|
|
* Some machines need to have at least one cpu in the GIQ,
|
|
|
|
* so leave the master cpu in the group.
|
[PATCH] ppc64: kexec support for ppc64
This patch implements the kexec support for ppc64 platforms.
A couple of notes:
1) We copy the pages in virtual mode, using the full base kernel
and a statically allocated stack. At kexec_prepare time we
scan the pages and if any overlap our (0, _end[]) range we
return -ETXTBSY.
On PowerPC 64 systems running in LPAR (logical partitioning)
mode, only a small region of memory, referred to as the RMO,
can be accessed in real mode. Since Linux runs with only one
zone of memory in the memory allocator, and it can be orders of
magnitude more memory than the RMO, looping until we allocate
pages in the source region is not feasible. Copying in virtual
means we don't have to write a hash table generation and call
hypervisor to insert translations, instead we rely on the pinned
kernel linear mapping. The kernel already has move to linked
location built in, so there is no requirement to load it at 0.
If we want to load something other than a kernel, then a stub
can be written to copy a linear chunk in real mode.
2) The start entry point gets passed parameters from the kernel.
Slaves are started at a fixed address after copying code from
the entry point.
All CPUs get passed their firmware assigned physical id in r3
(most calling conventions use this register for the first
argument).
This is used to distinguish each CPU from all other CPUs.
Since firmware is not around, there is no other way to obtain
this information other than to pass it somewhere.
A single CPU, referred to here as the master and the one executing
the kexec call, branches to start with the address of start in r4.
While this can be calculated, we have to load it through a gpr to
branch to this point so defining the register this is contained
in is free. A stack of unspecified size is available at r1
(also common calling convention).
All remaining running CPUs are sent to start at absolute address
0x60 after copying the first 0x100 bytes from start to address 0.
This convention was chosen because it matches what the kernel
has been doing itself. (only gpr3 is defined).
Note: This is not quite the convention of the kexec bootblock v2
in the kernel. A stub has been written to convert between them,
and we may adjust the kernel in the future to allow this directly
without any stub.
3) Destination pages can be placed anywhere, even where they
would not be accessible in real mode. This will allow us to
place ram disks above the RMO if we choose.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: R Sharada <sharada@in.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-26 01:58:10 +04:00
|
|
|
*/
|
2006-04-06 07:10:18 +04:00
|
|
|
if (secondary)
|
2005-08-04 23:53:37 +04:00
|
|
|
rtas_set_indicator(GLOBAL_INTERRUPT_QUEUE,
|
|
|
|
(1UL << interrupt_server_size) - 1 -
|
|
|
|
default_distrib_server, 0);
|
[PATCH] ppc64: kexec support for ppc64
This patch implements the kexec support for ppc64 platforms.
A couple of notes:
1) We copy the pages in virtual mode, using the full base kernel
and a statically allocated stack. At kexec_prepare time we
scan the pages and if any overlap our (0, _end[]) range we
return -ETXTBSY.
On PowerPC 64 systems running in LPAR (logical partitioning)
mode, only a small region of memory, referred to as the RMO,
can be accessed in real mode. Since Linux runs with only one
zone of memory in the memory allocator, and it can be orders of
magnitude more memory than the RMO, looping until we allocate
pages in the source region is not feasible. Copying in virtual
means we don't have to write a hash table generation and call
hypervisor to insert translations, instead we rely on the pinned
kernel linear mapping. The kernel already has move to linked
location built in, so there is no requirement to load it at 0.
If we want to load something other than a kernel, then a stub
can be written to copy a linear chunk in real mode.
2) The start entry point gets passed parameters from the kernel.
Slaves are started at a fixed address after copying code from
the entry point.
All CPUs get passed their firmware assigned physical id in r3
(most calling conventions use this register for the first
argument).
This is used to distinguish each CPU from all other CPUs.
Since firmware is not around, there is no other way to obtain
this information other than to pass it somewhere.
A single CPU, referred to here as the master and the one executing
the kexec call, branches to start with the address of start in r4.
While this can be calculated, we have to load it through a gpr to
branch to this point so defining the register this is contained
in is free. A stack of unspecified size is available at r1
(also common calling convention).
All remaining running CPUs are sent to start at absolute address
0x60 after copying the first 0x100 bytes from start to address 0.
This convention was chosen because it matches what the kernel
has been doing itself. (only gpr3 is defined).
Note: This is not quite the convention of the kexec bootblock v2
in the kernel. A stub has been written to convert between them,
and we may adjust the kernel in the future to allow this directly
without any stub.
3) Destination pages can be placed anywhere, even where they
would not be accessible in real mode. This will allow us to
place ram disks above the RMO if we choose.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: R Sharada <sharada@in.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-26 01:58:10 +04:00
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
|
|
|
|
|
/* Interrupts are disabled. */
|
|
|
|
void xics_migrate_irqs_away(void)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
unsigned int irq, virq, cpu = smp_processor_id();
|
|
|
|
|
|
|
|
/* Reject any interrupt that was queued to us... */
|
2006-07-03 13:32:51 +04:00
|
|
|
xics_set_cpu_priority(cpu, 0);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* remove ourselves from the global interrupt queue */
|
|
|
|
status = rtas_set_indicator(GLOBAL_INTERRUPT_QUEUE,
|
|
|
|
(1UL << interrupt_server_size) - 1 - default_distrib_server, 0);
|
|
|
|
WARN_ON(status < 0);
|
|
|
|
|
|
|
|
/* Allow IPIs again... */
|
2006-07-03 13:32:51 +04:00
|
|
|
xics_set_cpu_priority(cpu, DEFAULT_PRIORITY);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
for_each_irq(virq) {
|
2006-07-03 13:32:51 +04:00
|
|
|
struct irq_desc *desc;
|
2005-04-17 02:20:36 +04:00
|
|
|
int xics_status[2];
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/* We cant set affinity on ISA interrupts */
|
|
|
|
if (virq < irq_offset_value())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
desc = get_irq_desc(virq);
|
|
|
|
irq = virt_irq_to_real(irq_offset_down(virq));
|
|
|
|
|
|
|
|
/* We need to get IPIs still. */
|
|
|
|
if (irq == XICS_IPI || irq == NO_IRQ)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* We only need to migrate enabled IRQS */
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 13:24:36 +04:00
|
|
|
if (desc == NULL || desc->chip == NULL
|
2005-04-17 02:20:36 +04:00
|
|
|
|| desc->action == NULL
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 13:24:36 +04:00
|
|
|
|| desc->chip->set_affinity == NULL)
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&desc->lock, flags);
|
|
|
|
|
|
|
|
status = rtas_call(ibm_get_xive, 1, 3, xics_status, irq);
|
|
|
|
if (status) {
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_ERR "migrate_irqs_away: irq=%u "
|
2005-04-17 02:20:36 +04:00
|
|
|
"ibm,get-xive returns %d\n",
|
|
|
|
virq, status);
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We only support delivery to all cpus or to one cpu.
|
|
|
|
* The irq has to be migrated only in the single cpu
|
|
|
|
* case.
|
|
|
|
*/
|
|
|
|
if (xics_status[0] != get_hard_smp_processor_id(cpu))
|
|
|
|
goto unlock;
|
|
|
|
|
2005-09-12 07:12:11 +04:00
|
|
|
printk(KERN_WARNING "IRQ %u affinity broken off cpu %u\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
virq, cpu);
|
|
|
|
|
|
|
|
/* Reset affinity to all cpus */
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 13:24:36 +04:00
|
|
|
desc->chip->set_affinity(virq, CPU_MASK_ALL);
|
2006-06-29 13:24:38 +04:00
|
|
|
irq_desc[irq].affinity = CPU_MASK_ALL;
|
2005-04-17 02:20:36 +04:00
|
|
|
unlock:
|
|
|
|
spin_unlock_irqrestore(&desc->lock, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|