irq-fpga.c 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* ASB2364 FPGA interrupt multiplexing
 *
 * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public Licence
 * as published by the Free Software Foundation; either version
 * 2 of the Licence, or (at your option) any later version.
 */

#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/irq.h>
#include <unit/fpga-regs.h>

/*
 * FPGA PIC operations
 */
20
static void asb2364_fpga_mask(struct irq_data *d)
21
{
22
	ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0001;
23 24 25
	SyncExBus();
}

26
static void asb2364_fpga_ack(struct irq_data *d)
27
{
28
	ASB2364_FPGA_REG_IRQ(d->irq - NR_CPU_IRQS) = 0x0001;
29 30 31
	SyncExBus();
}

32
static void asb2364_fpga_mask_ack(struct irq_data *d)
33
{
34
	ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0001;
35
	SyncExBus();
36
	ASB2364_FPGA_REG_IRQ(d->irq - NR_CPU_IRQS) = 0x0001;
37 38 39
	SyncExBus();
}

40
static void asb2364_fpga_unmask(struct irq_data *d)
41
{
42
	ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0000;
43 44 45 46 47
	SyncExBus();
}

static struct irq_chip asb2364_fpga_pic = {
	.name		= "fpga",
48 49 50 51
	.irq_ack	= asb2364_fpga_ack,
	.irq_mask	= asb2364_fpga_mask,
	.irq_mask_ack	= asb2364_fpga_mask_ack,
	.irq_unmask	= asb2364_fpga_unmask,
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
};

/*
 * FPGA PIC interrupt handler
 */
static irqreturn_t fpga_interrupt(int irq, void *_mask)
{
	if ((ASB2364_FPGA_REG_IRQ_LAN  & 0x0001) != 0x0001)
		generic_handle_irq(FPGA_LAN_IRQ);
	if ((ASB2364_FPGA_REG_IRQ_UART & 0x0001) != 0x0001)
		generic_handle_irq(FPGA_UART_IRQ);
	if ((ASB2364_FPGA_REG_IRQ_I2C  & 0x0001) != 0x0001)
		generic_handle_irq(FPGA_I2C_IRQ);
	if ((ASB2364_FPGA_REG_IRQ_USB  & 0x0001) != 0x0001)
		generic_handle_irq(FPGA_USB_IRQ);
	if ((ASB2364_FPGA_REG_IRQ_FPGA & 0x0001) != 0x0001)
		generic_handle_irq(FPGA_FPGA_IRQ);

	return IRQ_HANDLED;
}

/*
 * Define an interrupt action for each FPGA PIC output
 */
static struct irqaction fpga_irq[]  = {
	[0] = {
		.handler	= fpga_interrupt,
79
		.flags		= IRQF_SHARED,
80 81 82 83 84 85 86 87 88 89 90
		.name		= "fpga",
	},
};

/*
 * Initialise the FPGA's PIC
 */
void __init irq_fpga_init(void)
{
	int irq;

91 92 93 94 95 96 97 98 99 100 101
	ASB2364_FPGA_REG_MASK_LAN  = 0x0001;
	SyncExBus();
	ASB2364_FPGA_REG_MASK_UART = 0x0001;
	SyncExBus();
	ASB2364_FPGA_REG_MASK_I2C  = 0x0001;
	SyncExBus();
	ASB2364_FPGA_REG_MASK_USB  = 0x0001;
	SyncExBus();
	ASB2364_FPGA_REG_MASK_FPGA = 0x0001;
	SyncExBus();

102
	for (irq = NR_CPU_IRQS; irq < NR_IRQS; irq++)
103 104
		irq_set_chip_and_handler(irq, &asb2364_fpga_pic,
					 handle_level_irq);
105 106 107 108

	/* the FPGA drives the XIRQ1 input on the CPU PIC */
	setup_irq(XIRQ1, &fpga_irq[0]);
}