Linux Audio

Check our new training course

Loading...
v3.5.6
  1/*
  2 * Copyright 2011 IBM Corporation.
  3 *
  4 *  This program is free software; you can redistribute it and/or
  5 *  modify it under the terms of the GNU General Public License
  6 *  as published by the Free Software Foundation; either version
  7 *  2 of the License, or (at your option) any later version.
  8 *
  9 */
 10
 11#include <linux/types.h>
 12#include <linux/kernel.h>
 13#include <linux/irq.h>
 14#include <linux/smp.h>
 15#include <linux/interrupt.h>
 16#include <linux/init.h>
 17#include <linux/cpu.h>
 18#include <linux/of.h>
 19#include <linux/spinlock.h>
 20#include <linux/module.h>
 21
 22#include <asm/prom.h>
 23#include <asm/io.h>
 24#include <asm/smp.h>
 25#include <asm/irq.h>
 26#include <asm/errno.h>
 27#include <asm/xics.h>
 28#include <asm/kvm_ppc.h>
 
 29
 30struct icp_ipl {
 31	union {
 32		u32 word;
 33		u8 bytes[4];
 34	} xirr_poll;
 35	union {
 36		u32 word;
 37		u8 bytes[4];
 38	} xirr;
 39	u32 dummy;
 40	union {
 41		u32 word;
 42		u8 bytes[4];
 43	} qirr;
 44	u32 link_a;
 45	u32 link_b;
 46	u32 link_c;
 47};
 48
 49static struct icp_ipl __iomem *icp_native_regs[NR_CPUS];
 50
 51static inline unsigned int icp_native_get_xirr(void)
 52{
 53	int cpu = smp_processor_id();
 
 
 
 
 
 
 54
 55	return in_be32(&icp_native_regs[cpu]->xirr.word);
 56}
 57
 58static inline void icp_native_set_xirr(unsigned int value)
 59{
 60	int cpu = smp_processor_id();
 61
 62	out_be32(&icp_native_regs[cpu]->xirr.word, value);
 63}
 64
 65static inline void icp_native_set_cppr(u8 value)
 66{
 67	int cpu = smp_processor_id();
 68
 69	out_8(&icp_native_regs[cpu]->xirr.bytes[0], value);
 70}
 71
 72static inline void icp_native_set_qirr(int n_cpu, u8 value)
 73{
 74	out_8(&icp_native_regs[n_cpu]->qirr.bytes[0], value);
 75}
 76
 77static void icp_native_set_cpu_priority(unsigned char cppr)
 78{
 79	xics_set_base_cppr(cppr);
 80	icp_native_set_cppr(cppr);
 81	iosync();
 82}
 83
 84static void icp_native_eoi(struct irq_data *d)
 85{
 86	unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
 87
 88	iosync();
 89	icp_native_set_xirr((xics_pop_cppr() << 24) | hw_irq);
 90}
 91
 92static void icp_native_teardown_cpu(void)
 93{
 94	int cpu = smp_processor_id();
 95
 96	/* Clear any pending IPI */
 97	icp_native_set_qirr(cpu, 0xff);
 98}
 99
100static void icp_native_flush_ipi(void)
101{
102	/* We take the ipi irq but and never return so we
103	 * need to EOI the IPI, but want to leave our priority 0
104	 *
105	 * should we check all the other interrupts too?
106	 * should we be flagging idle loop instead?
107	 * or creating some task to be scheduled?
108	 */
109
110	icp_native_set_xirr((0x00 << 24) | XICS_IPI);
111}
112
113static unsigned int icp_native_get_irq(void)
114{
115	unsigned int xirr = icp_native_get_xirr();
116	unsigned int vec = xirr & 0x00ffffff;
117	unsigned int irq;
118
119	if (vec == XICS_IRQ_SPURIOUS)
120		return NO_IRQ;
121
122	irq = irq_radix_revmap_lookup(xics_host, vec);
123	if (likely(irq != NO_IRQ)) {
124		xics_push_cppr(vec);
125		return irq;
126	}
127
128	/* We don't have a linux mapping, so have rtas mask it. */
129	xics_mask_unknown_vec(vec);
130
131	/* We might learn about it later, so EOI it */
132	icp_native_set_xirr(xirr);
133
134	return NO_IRQ;
135}
136
137#ifdef CONFIG_SMP
138
139static void icp_native_cause_ipi(int cpu, unsigned long data)
140{
 
141	icp_native_set_qirr(cpu, IPI_PRIORITY);
142}
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144void xics_wake_cpu(int cpu)
145{
146	icp_native_set_qirr(cpu, IPI_PRIORITY);
147}
148EXPORT_SYMBOL_GPL(xics_wake_cpu);
149
150static irqreturn_t icp_native_ipi_action(int irq, void *dev_id)
151{
152	int cpu = smp_processor_id();
153
 
154	icp_native_set_qirr(cpu, 0xff);
155
156	return smp_ipi_demux();
157}
158
159#endif /* CONFIG_SMP */
160
161static int __init icp_native_map_one_cpu(int hw_id, unsigned long addr,
162					 unsigned long size)
163{
164	char *rname;
165	int i, cpu = -1;
166
167	/* This may look gross but it's good enough for now, we don't quite
168	 * have a hard -> linux processor id matching.
169	 */
170	for_each_possible_cpu(i) {
171		if (!cpu_present(i))
172			continue;
173		if (hw_id == get_hard_smp_processor_id(i)) {
174			cpu = i;
175			break;
176		}
177	}
178
179	/* Fail, skip that CPU. Don't print, it's normal, some XICS come up
180	 * with way more entries in there than you have CPUs
181	 */
182	if (cpu == -1)
183		return 0;
184
185	rname = kasprintf(GFP_KERNEL, "CPU %d [0x%x] Interrupt Presentation",
186			  cpu, hw_id);
187
188	if (!request_mem_region(addr, size, rname)) {
189		pr_warning("icp_native: Could not reserve ICP MMIO"
190			   " for CPU %d, interrupt server #0x%x\n",
191			   cpu, hw_id);
192		return -EBUSY;
193	}
194
195	icp_native_regs[cpu] = ioremap(addr, size);
196	kvmppc_set_xics_phys(cpu, addr);
197	if (!icp_native_regs[cpu]) {
198		pr_warning("icp_native: Failed ioremap for CPU %d, "
199			   "interrupt server #0x%x, addr %#lx\n",
200			   cpu, hw_id, addr);
201		release_mem_region(addr, size);
202		return -ENOMEM;
203	}
204	return 0;
205}
206
207static int __init icp_native_init_one_node(struct device_node *np,
208					   unsigned int *indx)
209{
210	unsigned int ilen;
211	const u32 *ireg;
212	int i;
213	int reg_tuple_size;
214	int num_servers = 0;
215
216	/* This code does the theorically broken assumption that the interrupt
217	 * server numbers are the same as the hard CPU numbers.
218	 * This happens to be the case so far but we are playing with fire...
219	 * should be fixed one of these days. -BenH.
220	 */
221	ireg = of_get_property(np, "ibm,interrupt-server-ranges", &ilen);
222
223	/* Do that ever happen ? we'll know soon enough... but even good'old
224	 * f80 does have that property ..
225	 */
226	WARN_ON((ireg == NULL) || (ilen != 2*sizeof(u32)));
227
228	if (ireg) {
229		*indx = of_read_number(ireg, 1);
230		if (ilen >= 2*sizeof(u32))
231			num_servers = of_read_number(ireg + 1, 1);
232	}
233
234	ireg = of_get_property(np, "reg", &ilen);
235	if (!ireg) {
236		pr_err("icp_native: Can't find interrupt reg property");
237		return -1;
238	}
239
240	reg_tuple_size = (of_n_addr_cells(np) + of_n_size_cells(np)) * 4;
241	if (((ilen % reg_tuple_size) != 0)
242	    || (num_servers && (num_servers != (ilen / reg_tuple_size)))) {
243		pr_err("icp_native: ICP reg len (%d) != num servers (%d)",
244		       ilen / reg_tuple_size, num_servers);
245		return -1;
246	}
247
248	for (i = 0; i < (ilen / reg_tuple_size); i++) {
249		struct resource r;
250		int err;
251
252		err = of_address_to_resource(np, i, &r);
253		if (err) {
254			pr_err("icp_native: Could not translate ICP MMIO"
255			       " for interrupt server 0x%x (%d)\n", *indx, err);
256			return -1;
257		}
258
259		if (icp_native_map_one_cpu(*indx, r.start, resource_size(&r)))
260			return -1;
261
262		(*indx)++;
263	}
264	return 0;
265}
266
267static const struct icp_ops icp_native_ops = {
268	.get_irq	= icp_native_get_irq,
269	.eoi		= icp_native_eoi,
270	.set_priority	= icp_native_set_cpu_priority,
271	.teardown_cpu	= icp_native_teardown_cpu,
272	.flush_ipi	= icp_native_flush_ipi,
273#ifdef CONFIG_SMP
274	.ipi_action	= icp_native_ipi_action,
275	.cause_ipi	= icp_native_cause_ipi,
276#endif
277};
278
279int __init icp_native_init(void)
280{
281	struct device_node *np;
282	u32 indx = 0;
283	int found = 0;
284
285	for_each_compatible_node(np, NULL, "ibm,ppc-xicp")
286		if (icp_native_init_one_node(np, &indx) == 0)
287			found = 1;
288	if (!found) {
289		for_each_node_by_type(np,
290			"PowerPC-External-Interrupt-Presentation") {
291				if (icp_native_init_one_node(np, &indx) == 0)
292					found = 1;
293		}
294	}
295
296	if (found == 0)
297		return -ENODEV;
298
299	icp_ops = &icp_native_ops;
300
301	return 0;
302}
v4.17
  1/*
  2 * Copyright 2011 IBM Corporation.
  3 *
  4 *  This program is free software; you can redistribute it and/or
  5 *  modify it under the terms of the GNU General Public License
  6 *  as published by the Free Software Foundation; either version
  7 *  2 of the License, or (at your option) any later version.
  8 *
  9 */
 10
 11#include <linux/types.h>
 12#include <linux/kernel.h>
 13#include <linux/irq.h>
 14#include <linux/smp.h>
 15#include <linux/interrupt.h>
 16#include <linux/init.h>
 17#include <linux/cpu.h>
 18#include <linux/of.h>
 19#include <linux/spinlock.h>
 20#include <linux/module.h>
 21
 22#include <asm/prom.h>
 23#include <asm/io.h>
 24#include <asm/smp.h>
 25#include <asm/irq.h>
 26#include <asm/errno.h>
 27#include <asm/xics.h>
 28#include <asm/kvm_ppc.h>
 29#include <asm/dbell.h>
 30
 31struct icp_ipl {
 32	union {
 33		u32 word;
 34		u8 bytes[4];
 35	} xirr_poll;
 36	union {
 37		u32 word;
 38		u8 bytes[4];
 39	} xirr;
 40	u32 dummy;
 41	union {
 42		u32 word;
 43		u8 bytes[4];
 44	} qirr;
 45	u32 link_a;
 46	u32 link_b;
 47	u32 link_c;
 48};
 49
 50static struct icp_ipl __iomem *icp_native_regs[NR_CPUS];
 51
 52static inline unsigned int icp_native_get_xirr(void)
 53{
 54	int cpu = smp_processor_id();
 55	unsigned int xirr;
 56
 57	/* Handled an interrupt latched by KVM */
 58	xirr = kvmppc_get_xics_latch();
 59	if (xirr)
 60		return xirr;
 61
 62	return in_be32(&icp_native_regs[cpu]->xirr.word);
 63}
 64
 65static inline void icp_native_set_xirr(unsigned int value)
 66{
 67	int cpu = smp_processor_id();
 68
 69	out_be32(&icp_native_regs[cpu]->xirr.word, value);
 70}
 71
 72static inline void icp_native_set_cppr(u8 value)
 73{
 74	int cpu = smp_processor_id();
 75
 76	out_8(&icp_native_regs[cpu]->xirr.bytes[0], value);
 77}
 78
 79static inline void icp_native_set_qirr(int n_cpu, u8 value)
 80{
 81	out_8(&icp_native_regs[n_cpu]->qirr.bytes[0], value);
 82}
 83
 84static void icp_native_set_cpu_priority(unsigned char cppr)
 85{
 86	xics_set_base_cppr(cppr);
 87	icp_native_set_cppr(cppr);
 88	iosync();
 89}
 90
 91void icp_native_eoi(struct irq_data *d)
 92{
 93	unsigned int hw_irq = (unsigned int)irqd_to_hwirq(d);
 94
 95	iosync();
 96	icp_native_set_xirr((xics_pop_cppr() << 24) | hw_irq);
 97}
 98
 99static void icp_native_teardown_cpu(void)
100{
101	int cpu = smp_processor_id();
102
103	/* Clear any pending IPI */
104	icp_native_set_qirr(cpu, 0xff);
105}
106
107static void icp_native_flush_ipi(void)
108{
109	/* We take the ipi irq but and never return so we
110	 * need to EOI the IPI, but want to leave our priority 0
111	 *
112	 * should we check all the other interrupts too?
113	 * should we be flagging idle loop instead?
114	 * or creating some task to be scheduled?
115	 */
116
117	icp_native_set_xirr((0x00 << 24) | XICS_IPI);
118}
119
120static unsigned int icp_native_get_irq(void)
121{
122	unsigned int xirr = icp_native_get_xirr();
123	unsigned int vec = xirr & 0x00ffffff;
124	unsigned int irq;
125
126	if (vec == XICS_IRQ_SPURIOUS)
127		return 0;
128
129	irq = irq_find_mapping(xics_host, vec);
130	if (likely(irq)) {
131		xics_push_cppr(vec);
132		return irq;
133	}
134
135	/* We don't have a linux mapping, so have rtas mask it. */
136	xics_mask_unknown_vec(vec);
137
138	/* We might learn about it later, so EOI it */
139	icp_native_set_xirr(xirr);
140
141	return 0;
142}
143
144#ifdef CONFIG_SMP
145
146static void icp_native_cause_ipi(int cpu)
147{
148	kvmppc_set_host_ipi(cpu, 1);
149	icp_native_set_qirr(cpu, IPI_PRIORITY);
150}
151
152#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
153void icp_native_cause_ipi_rm(int cpu)
154{
155	/*
156	 * Currently not used to send IPIs to another CPU
157	 * on the same core. Only caller is KVM real mode.
158	 * Need the physical address of the XICS to be
159	 * previously saved in kvm_hstate in the paca.
160	 */
161	void __iomem *xics_phys;
162
163	/*
164	 * Just like the cause_ipi functions, it is required to
165	 * include a full barrier before causing the IPI.
166	 */
167	xics_phys = paca_ptrs[cpu]->kvm_hstate.xics_phys;
168	mb();
169	__raw_rm_writeb(IPI_PRIORITY, xics_phys + XICS_MFRR);
170}
171#endif
172
173/*
174 * Called when an interrupt is received on an off-line CPU to
175 * clear the interrupt, so that the CPU can go back to nap mode.
176 */
177void icp_native_flush_interrupt(void)
178{
179	unsigned int xirr = icp_native_get_xirr();
180	unsigned int vec = xirr & 0x00ffffff;
181
182	if (vec == XICS_IRQ_SPURIOUS)
183		return;
184	if (vec == XICS_IPI) {
185		/* Clear pending IPI */
186		int cpu = smp_processor_id();
187		kvmppc_set_host_ipi(cpu, 0);
188		icp_native_set_qirr(cpu, 0xff);
189	} else {
190		pr_err("XICS: hw interrupt 0x%x to offline cpu, disabling\n",
191		       vec);
192		xics_mask_unknown_vec(vec);
193	}
194	/* EOI the interrupt */
195	icp_native_set_xirr(xirr);
196}
197
198void xics_wake_cpu(int cpu)
199{
200	icp_native_set_qirr(cpu, IPI_PRIORITY);
201}
202EXPORT_SYMBOL_GPL(xics_wake_cpu);
203
204static irqreturn_t icp_native_ipi_action(int irq, void *dev_id)
205{
206	int cpu = smp_processor_id();
207
208	kvmppc_set_host_ipi(cpu, 0);
209	icp_native_set_qirr(cpu, 0xff);
210
211	return smp_ipi_demux();
212}
213
214#endif /* CONFIG_SMP */
215
216static int __init icp_native_map_one_cpu(int hw_id, unsigned long addr,
217					 unsigned long size)
218{
219	char *rname;
220	int i, cpu = -1;
221
222	/* This may look gross but it's good enough for now, we don't quite
223	 * have a hard -> linux processor id matching.
224	 */
225	for_each_possible_cpu(i) {
226		if (!cpu_present(i))
227			continue;
228		if (hw_id == get_hard_smp_processor_id(i)) {
229			cpu = i;
230			break;
231		}
232	}
233
234	/* Fail, skip that CPU. Don't print, it's normal, some XICS come up
235	 * with way more entries in there than you have CPUs
236	 */
237	if (cpu == -1)
238		return 0;
239
240	rname = kasprintf(GFP_KERNEL, "CPU %d [0x%x] Interrupt Presentation",
241			  cpu, hw_id);
242
243	if (!request_mem_region(addr, size, rname)) {
244		pr_warn("icp_native: Could not reserve ICP MMIO for CPU %d, interrupt server #0x%x\n",
245			cpu, hw_id);
 
246		return -EBUSY;
247	}
248
249	icp_native_regs[cpu] = ioremap(addr, size);
250	kvmppc_set_xics_phys(cpu, addr);
251	if (!icp_native_regs[cpu]) {
252		pr_warn("icp_native: Failed ioremap for CPU %d, interrupt server #0x%x, addr %#lx\n",
253			cpu, hw_id, addr);
 
254		release_mem_region(addr, size);
255		return -ENOMEM;
256	}
257	return 0;
258}
259
260static int __init icp_native_init_one_node(struct device_node *np,
261					   unsigned int *indx)
262{
263	unsigned int ilen;
264	const __be32 *ireg;
265	int i;
266	int reg_tuple_size;
267	int num_servers = 0;
268
269	/* This code does the theorically broken assumption that the interrupt
270	 * server numbers are the same as the hard CPU numbers.
271	 * This happens to be the case so far but we are playing with fire...
272	 * should be fixed one of these days. -BenH.
273	 */
274	ireg = of_get_property(np, "ibm,interrupt-server-ranges", &ilen);
275
276	/* Do that ever happen ? we'll know soon enough... but even good'old
277	 * f80 does have that property ..
278	 */
279	WARN_ON((ireg == NULL) || (ilen != 2*sizeof(u32)));
280
281	if (ireg) {
282		*indx = of_read_number(ireg, 1);
283		if (ilen >= 2*sizeof(u32))
284			num_servers = of_read_number(ireg + 1, 1);
285	}
286
287	ireg = of_get_property(np, "reg", &ilen);
288	if (!ireg) {
289		pr_err("icp_native: Can't find interrupt reg property");
290		return -1;
291	}
292
293	reg_tuple_size = (of_n_addr_cells(np) + of_n_size_cells(np)) * 4;
294	if (((ilen % reg_tuple_size) != 0)
295	    || (num_servers && (num_servers != (ilen / reg_tuple_size)))) {
296		pr_err("icp_native: ICP reg len (%d) != num servers (%d)",
297		       ilen / reg_tuple_size, num_servers);
298		return -1;
299	}
300
301	for (i = 0; i < (ilen / reg_tuple_size); i++) {
302		struct resource r;
303		int err;
304
305		err = of_address_to_resource(np, i, &r);
306		if (err) {
307			pr_err("icp_native: Could not translate ICP MMIO"
308			       " for interrupt server 0x%x (%d)\n", *indx, err);
309			return -1;
310		}
311
312		if (icp_native_map_one_cpu(*indx, r.start, resource_size(&r)))
313			return -1;
314
315		(*indx)++;
316	}
317	return 0;
318}
319
320static const struct icp_ops icp_native_ops = {
321	.get_irq	= icp_native_get_irq,
322	.eoi		= icp_native_eoi,
323	.set_priority	= icp_native_set_cpu_priority,
324	.teardown_cpu	= icp_native_teardown_cpu,
325	.flush_ipi	= icp_native_flush_ipi,
326#ifdef CONFIG_SMP
327	.ipi_action	= icp_native_ipi_action,
328	.cause_ipi	= icp_native_cause_ipi,
329#endif
330};
331
332int __init icp_native_init(void)
333{
334	struct device_node *np;
335	u32 indx = 0;
336	int found = 0;
337
338	for_each_compatible_node(np, NULL, "ibm,ppc-xicp")
339		if (icp_native_init_one_node(np, &indx) == 0)
340			found = 1;
341	if (!found) {
342		for_each_node_by_type(np,
343			"PowerPC-External-Interrupt-Presentation") {
344				if (icp_native_init_one_node(np, &indx) == 0)
345					found = 1;
346		}
347	}
348
349	if (found == 0)
350		return -ENODEV;
351
352	icp_ops = &icp_native_ops;
353
354	return 0;
355}