xref: /linux/arch/alpha/kernel/sys_marvel.c (revision 59e6295fac26b8e85c1ea859cdd89fa1e47519d7)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * linux/arch/alpha/kernel/sys_marvel.c
4  *
5  * Marvel / IO7 support
6  */
7 
8 #include <linux/kernel.h>
9 #include <linux/types.h>
10 #include <linux/mm.h>
11 #include <linux/sched.h>
12 #include <linux/pci.h>
13 #include <linux/init.h>
14 #include <linux/bitops.h>
15 
16 #include <asm/ptrace.h>
17 #include <asm/dma.h>
18 #include <asm/irq.h>
19 #include <asm/mmu_context.h>
20 #include <asm/io.h>
21 #include <asm/core_marvel.h>
22 #include <asm/hwrpb.h>
23 #include <asm/tlbflush.h>
24 #include <asm/vga.h>
25 
26 #include "proto.h"
27 #include "err_impl.h"
28 #include "irq_impl.h"
29 #include "pci_impl.h"
30 #include "machvec_impl.h"
31 
32 #if NR_IRQS < MARVEL_NR_IRQS
33 # error NR_IRQS < MARVEL_NR_IRQS !!!
34 #endif
35 
36 
37 /*
38  * Interrupt handling.
39  */
40 static void
41 io7_device_interrupt(unsigned long vector)
42 {
43 	unsigned int pid;
44 	unsigned int irq;
45 
46 	/*
47 	 * Vector is 0x800 + (interrupt)
48 	 *
49 	 * where (interrupt) is:
50 	 *
51 	 *	...16|15 14|13     4|3 0
52 	 *	-----+-----+--------+---
53 	 *	  PE |  0  |   irq  | 0
54 	 *
55 	 * where (irq) is
56 	 *
57 	 *       0x0800 - 0x0ff0	 - 0x0800 + (LSI id << 4)
58 	 *	 0x1000 - 0x2ff0	 - 0x1000 + (MSI_DAT<8:0> << 4)
59 	 */
60 	pid = vector >> 16;
61 	irq = ((vector & 0xffff) - 0x800) >> 4;
62 
63 	irq += 16;				/* offset for legacy */
64 	irq &= MARVEL_IRQ_VEC_IRQ_MASK;		/* not too many bits */
65 	irq |= pid << MARVEL_IRQ_VEC_PE_SHIFT;	/* merge the pid     */
66 
67 	handle_irq(irq);
68 }
69 
70 static volatile unsigned long *
71 io7_get_irq_ctl(unsigned int irq, struct io7 **pio7)
72 {
73 	volatile unsigned long *ctl;
74 	unsigned int pid;
75 	struct io7 *io7;
76 
77 	pid = irq >> MARVEL_IRQ_VEC_PE_SHIFT;
78 
79 	if (!(io7 = marvel_find_io7(pid))) {
80 		printk(KERN_ERR
81 		       "%s for nonexistent io7 -- vec %x, pid %d\n",
82 		       __func__, irq, pid);
83 		return NULL;
84 	}
85 
86 	irq &= MARVEL_IRQ_VEC_IRQ_MASK;	/* isolate the vector    */
87 	irq -= 16;			/* subtract legacy bias  */
88 
89 	if (irq >= 0x180) {
90 		printk(KERN_ERR
91 		       "%s for invalid irq -- pid %d adjusted irq %x\n",
92 		       __func__, pid, irq);
93 		return NULL;
94 	}
95 
96 	ctl = &io7->csrs->PO7_LSI_CTL[irq & 0xff].csr; /* assume LSI */
97 	if (irq >= 0x80)	     	/* MSI */
98 		ctl = &io7->csrs->PO7_MSI_CTL[((irq - 0x80) >> 5) & 0x0f].csr;
99 
100 	if (pio7) *pio7 = io7;
101 	return ctl;
102 }
103 
104 static void
105 io7_enable_irq(struct irq_data *d)
106 {
107 	volatile unsigned long *ctl;
108 	unsigned int irq = d->irq;
109 	struct io7 *io7;
110 
111 	ctl = io7_get_irq_ctl(irq, &io7);
112 	if (!ctl || !io7) {
113 		printk(KERN_ERR "%s: get_ctl failed for irq %x\n",
114 		       __func__, irq);
115 		return;
116 	}
117 
118 	raw_spin_lock(&io7->irq_lock);
119 	*ctl |= 1UL << 24;
120 	mb();
121 	*ctl;
122 	raw_spin_unlock(&io7->irq_lock);
123 }
124 
125 static void
126 io7_disable_irq(struct irq_data *d)
127 {
128 	volatile unsigned long *ctl;
129 	unsigned int irq = d->irq;
130 	struct io7 *io7;
131 
132 	ctl = io7_get_irq_ctl(irq, &io7);
133 	if (!ctl || !io7) {
134 		printk(KERN_ERR "%s: get_ctl failed for irq %x\n",
135 		       __func__, irq);
136 		return;
137 	}
138 
139 	raw_spin_lock(&io7->irq_lock);
140 	*ctl &= ~(1UL << 24);
141 	mb();
142 	*ctl;
143 	raw_spin_unlock(&io7->irq_lock);
144 }
145 
146 static void
147 marvel_irq_noop(struct irq_data *d)
148 {
149 	return;
150 }
151 
152 static struct irq_chip marvel_legacy_irq_type = {
153 	.name		= "LEGACY",
154 	.irq_mask	= marvel_irq_noop,
155 	.irq_unmask	= marvel_irq_noop,
156 };
157 
158 static struct irq_chip io7_lsi_irq_type = {
159 	.name		= "LSI",
160 	.irq_unmask	= io7_enable_irq,
161 	.irq_mask	= io7_disable_irq,
162 	.irq_mask_ack	= io7_disable_irq,
163 };
164 
165 static struct irq_chip io7_msi_irq_type = {
166 	.name		= "MSI",
167 	.irq_unmask	= io7_enable_irq,
168 	.irq_mask	= io7_disable_irq,
169 	.irq_ack	= marvel_irq_noop,
170 };
171 
172 static void
173 io7_redirect_irq(struct io7 *io7,
174 		 volatile unsigned long *csr,
175 		 unsigned int where)
176 {
177 	unsigned long val;
178 
179 	val = *csr;
180 	val &= ~(0x1ffUL << 24);		/* clear the target pid   */
181 	val |= ((unsigned long)where << 24);	/* set the new target pid */
182 
183 	*csr = val;
184 	mb();
185 	*csr;
186 }
187 
188 static void
189 io7_redirect_one_lsi(struct io7 *io7, unsigned int which, unsigned int where)
190 {
191 	unsigned long val;
192 
193 	/*
194 	 * LSI_CTL has target PID @ 14
195 	 */
196 	val = io7->csrs->PO7_LSI_CTL[which].csr;
197 	val &= ~(0x1ffUL << 14);		/* clear the target pid */
198 	val |= ((unsigned long)where << 14);	/* set the new target pid */
199 
200 	io7->csrs->PO7_LSI_CTL[which].csr = val;
201 	mb();
202 	io7->csrs->PO7_LSI_CTL[which].csr;
203 }
204 
205 static void
206 io7_redirect_one_msi(struct io7 *io7, unsigned int which, unsigned int where)
207 {
208 	unsigned long val;
209 
210 	/*
211 	 * MSI_CTL has target PID @ 14
212 	 */
213 	val = io7->csrs->PO7_MSI_CTL[which].csr;
214 	val &= ~(0x1ffUL << 14);		/* clear the target pid */
215 	val |= ((unsigned long)where << 14);	/* set the new target pid */
216 
217 	io7->csrs->PO7_MSI_CTL[which].csr = val;
218 	mb();
219 	io7->csrs->PO7_MSI_CTL[which].csr;
220 }
221 
222 static void __init
223 init_one_io7_lsi(struct io7 *io7, unsigned int which, unsigned int where)
224 {
225 	/*
226 	 * LSI_CTL has target PID @ 14
227 	 */
228 	io7->csrs->PO7_LSI_CTL[which].csr = ((unsigned long)where << 14);
229 	mb();
230 	io7->csrs->PO7_LSI_CTL[which].csr;
231 }
232 
233 static void __init
234 init_one_io7_msi(struct io7 *io7, unsigned int which, unsigned int where)
235 {
236 	/*
237 	 * MSI_CTL has target PID @ 14
238 	 */
239 	io7->csrs->PO7_MSI_CTL[which].csr = ((unsigned long)where << 14);
240 	mb();
241 	io7->csrs->PO7_MSI_CTL[which].csr;
242 }
243 
244 static void __init
245 init_io7_irqs(struct io7 *io7,
246 	      struct irq_chip *lsi_ops,
247 	      struct irq_chip *msi_ops)
248 {
249 	long base = (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT) + 16;
250 	long i;
251 
252 	printk("Initializing interrupts for IO7 at PE %u - base %lx\n",
253 		io7->pe, base);
254 
255 	/*
256 	 * Where should interrupts from this IO7 go?
257 	 *
258 	 * They really should be sent to the local CPU to avoid having to
259 	 * traverse the mesh, but if it's not an SMP kernel, they have to
260 	 * go to the boot CPU. Send them all to the boot CPU for now,
261 	 * as each secondary starts, it can redirect it's local device
262 	 * interrupts.
263 	 */
264 	printk("  Interrupts reported to CPU at PE %u\n", boot_cpuid);
265 
266 	/* Set up the lsi irqs.  */
267 	for (i = 0; i < 128; ++i) {
268 		irq_set_chip_and_handler(base + i, lsi_ops, handle_level_irq);
269 		irq_set_status_flags(base + i, IRQ_LEVEL);
270 	}
271 
272 	/* Set up the msi irqs.  */
273 	for (i = 128; i < (128 + 512); ++i) {
274 		irq_set_chip_and_handler(base + i, msi_ops, handle_level_irq);
275 		irq_set_status_flags(base + i, IRQ_LEVEL);
276 	}
277 
278 	raw_spin_lock(&io7->irq_lock);
279 
280 	/* set up the error irqs */
281 	io7_redirect_irq(io7, &io7->csrs->HLT_CTL.csr, boot_cpuid);
282 	io7_redirect_irq(io7, &io7->csrs->HPI_CTL.csr, boot_cpuid);
283 	io7_redirect_irq(io7, &io7->csrs->CRD_CTL.csr, boot_cpuid);
284 	io7_redirect_irq(io7, &io7->csrs->STV_CTL.csr, boot_cpuid);
285 	io7_redirect_irq(io7, &io7->csrs->HEI_CTL.csr, boot_cpuid);
286 
287 	/* Disable the implemented irqs in hardware.  */
288 	for (i = 0; i < 0x60; ++i)
289 		init_one_io7_lsi(io7, i, boot_cpuid);
290 
291 	init_one_io7_lsi(io7, 0x74, boot_cpuid);
292 	init_one_io7_lsi(io7, 0x75, boot_cpuid);
293 
294 	for (i = 0; i < 16; ++i)
295 		init_one_io7_msi(io7, i, boot_cpuid);
296 
297 	raw_spin_unlock(&io7->irq_lock);
298 }
299 
300 static void __init
301 marvel_init_irq(void)
302 {
303 	int i;
304 	struct io7 *io7 = NULL;
305 
306 	/* Reserve the legacy irqs.  */
307 	for (i = 0; i < 16; ++i) {
308 		irq_set_chip_and_handler(i, &marvel_legacy_irq_type,
309 					 handle_level_irq);
310 	}
311 
312 	/* Init the io7 irqs.  */
313 	for (io7 = NULL; (io7 = marvel_next_io7(io7)) != NULL; )
314 		init_io7_irqs(io7, &io7_lsi_irq_type, &io7_msi_irq_type);
315 }
316 
317 static int
318 marvel_map_irq(const struct pci_dev *cdev, u8 slot, u8 pin)
319 {
320 	struct pci_dev *dev = (struct pci_dev *)cdev;
321 	struct pci_controller *hose = dev->sysdata;
322 	struct io7_port *io7_port = hose->sysdata;
323 	struct io7 *io7 = io7_port->io7;
324 	int msi_loc, msi_data_off;
325 	u16 msg_ctl;
326 	u16 msg_dat;
327 	u8 intline;
328 	int irq;
329 
330 	pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &intline);
331 	irq = intline;
332 
333 	msi_loc = dev->msi_cap;
334 	msg_ctl = 0;
335 	if (msi_loc)
336 		pci_read_config_word(dev, msi_loc + PCI_MSI_FLAGS, &msg_ctl);
337 
338 	if (msg_ctl & PCI_MSI_FLAGS_ENABLE) {
339  		msi_data_off = PCI_MSI_DATA_32;
340 		if (msg_ctl & PCI_MSI_FLAGS_64BIT)
341 			msi_data_off = PCI_MSI_DATA_64;
342 		pci_read_config_word(dev, msi_loc + msi_data_off, &msg_dat);
343 
344 		irq = msg_dat & 0x1ff;		/* we use msg_data<8:0> */
345 		irq += 0x80;			/* offset for lsi       */
346 
347 #if 1
348 		printk("PCI:%d:%d:%d (hose %d) is using MSI\n",
349 		       dev->bus->number,
350 		       PCI_SLOT(dev->devfn),
351 		       PCI_FUNC(dev->devfn),
352 		       hose->index);
353 		printk("  %d message(s) from 0x%04x\n",
354 		       1 << ((msg_ctl & PCI_MSI_FLAGS_QSIZE) >> 4),
355 		       msg_dat);
356 		printk("  reporting on %d IRQ(s) from %d (0x%x)\n",
357 		       1 << ((msg_ctl & PCI_MSI_FLAGS_QSIZE) >> 4),
358 		       (irq + 16) | (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT),
359 		       (irq + 16) | (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT));
360 #endif
361 
362 #if 0
363 		pci_write_config_word(dev, msi_loc + PCI_MSI_FLAGS,
364 				      msg_ctl & ~PCI_MSI_FLAGS_ENABLE);
365 		pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &intline);
366 		irq = intline;
367 
368 		printk("  forcing LSI interrupt on irq %d [0x%x]\n", irq, irq);
369 #endif
370 	}
371 
372 	irq += 16;					/* offset for legacy */
373 	irq |= io7->pe << MARVEL_IRQ_VEC_PE_SHIFT;	/* merge the pid     */
374 
375 	return irq;
376 }
377 
378 static void __init
379 marvel_init_pci(void)
380 {
381 	struct io7 *io7;
382 
383 	marvel_register_error_handlers();
384 
385 	/* Indicate that we trust the console to configure things properly */
386 	pci_set_flags(PCI_PROBE_ONLY);
387 	common_init_pci();
388 	locate_and_init_vga(NULL);
389 
390 	/* Clear any io7 errors.  */
391 	for (io7 = NULL; (io7 = marvel_next_io7(io7)) != NULL; )
392 		io7_clear_errors(io7);
393 }
394 
395 static void __init
396 marvel_init_rtc(void)
397 {
398 	init_rtc_irq(NULL);
399 }
400 
401 static void
402 marvel_smp_callin(void)
403 {
404 	int cpuid = hard_smp_processor_id();
405 	struct io7 *io7 = marvel_find_io7(cpuid);
406 	unsigned int i;
407 
408 	if (!io7)
409 		return;
410 
411 	/*
412 	 * There is a local IO7 - redirect all of its interrupts here.
413 	 */
414 	printk("Redirecting IO7 interrupts to local CPU at PE %u\n", cpuid);
415 
416 	/* Redirect the error IRQS here.  */
417 	io7_redirect_irq(io7, &io7->csrs->HLT_CTL.csr, cpuid);
418 	io7_redirect_irq(io7, &io7->csrs->HPI_CTL.csr, cpuid);
419 	io7_redirect_irq(io7, &io7->csrs->CRD_CTL.csr, cpuid);
420 	io7_redirect_irq(io7, &io7->csrs->STV_CTL.csr, cpuid);
421 	io7_redirect_irq(io7, &io7->csrs->HEI_CTL.csr, cpuid);
422 
423 	/* Redirect the implemented LSIs here.  */
424 	for (i = 0; i < 0x60; ++i)
425 		io7_redirect_one_lsi(io7, i, cpuid);
426 
427 	io7_redirect_one_lsi(io7, 0x74, cpuid);
428 	io7_redirect_one_lsi(io7, 0x75, cpuid);
429 
430 	/* Redirect the MSIs here.  */
431 	for (i = 0; i < 16; ++i)
432 		io7_redirect_one_msi(io7, i, cpuid);
433 }
434 
435 /*
436  * System Vectors
437  */
438 struct alpha_machine_vector marvel_ev7_mv __initmv = {
439 	.vector_name		= "MARVEL/EV7",
440 	DO_EV7_MMU,
441 	.rtc_port		= 0x70,
442 	.rtc_boot_cpu_only	= 1,
443 	DO_MARVEL_IO,
444 	.machine_check		= marvel_machine_check,
445 	.max_isa_dma_address	= ALPHA_MAX_ISA_DMA_ADDRESS,
446 	.min_io_address		= DEFAULT_IO_BASE,
447 	.min_mem_address	= DEFAULT_MEM_BASE,
448 	.pci_dac_offset		= IO7_DAC_OFFSET,
449 
450 	.nr_irqs		= MARVEL_NR_IRQS,
451 	.device_interrupt	= io7_device_interrupt,
452 
453 	.agp_info		= marvel_agp_info,
454 
455 	.smp_callin		= marvel_smp_callin,
456 	.init_arch		= marvel_init_arch,
457 	.init_irq		= marvel_init_irq,
458 	.init_rtc		= marvel_init_rtc,
459 	.init_pci		= marvel_init_pci,
460 	.kill_arch		= marvel_kill_arch,
461 	.pci_map_irq		= marvel_map_irq,
462 	.pci_swizzle		= common_swizzle,
463 };
464 ALIAS_MV(marvel_ev7)
465