2 * Support Hypertransport IRQ
4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
5 * Moved from arch/x86/kernel/apic/io_apic.c.
6 * Jiang Liu <jiang.liu@linux.intel.com>
7 * Add support of hierarchical irqdomain
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/interrupt.h>
15 #include <linux/init.h>
16 #include <linux/device.h>
17 #include <linux/pci.h>
18 #include <linux/htirq.h>
19 #include <linux/irq.h>
21 #include <asm/irqdomain.h>
22 #include <asm/hw_irq.h>
24 #include <asm/hypertransport.h>
26 static struct irq_domain
*htirq_domain
;
29 * Hypertransport interrupt support
32 ht_set_affinity(struct irq_data
*data
, const struct cpumask
*mask
, bool force
)
34 struct irq_data
*parent
= data
->parent_data
;
37 ret
= parent
->chip
->irq_set_affinity(parent
, mask
, force
);
39 struct ht_irq_msg msg
;
40 struct irq_cfg
*cfg
= irqd_cfg(data
);
42 fetch_ht_irq_msg(data
->irq
, &msg
);
43 msg
.address_lo
&= ~(HT_IRQ_LOW_VECTOR_MASK
|
44 HT_IRQ_LOW_DEST_ID_MASK
);
45 msg
.address_lo
|= HT_IRQ_LOW_VECTOR(cfg
->vector
) |
46 HT_IRQ_LOW_DEST_ID(cfg
->dest_apicid
);
47 msg
.address_hi
&= ~(HT_IRQ_HIGH_DEST_ID_MASK
);
48 msg
.address_hi
|= HT_IRQ_HIGH_DEST_ID(cfg
->dest_apicid
);
49 write_ht_irq_msg(data
->irq
, &msg
);
55 static struct irq_chip ht_irq_chip
= {
57 .irq_mask
= mask_ht_irq
,
58 .irq_unmask
= unmask_ht_irq
,
59 .irq_ack
= irq_chip_ack_parent
,
60 .irq_set_affinity
= ht_set_affinity
,
61 .irq_retrigger
= irq_chip_retrigger_hierarchy
,
62 .flags
= IRQCHIP_SKIP_SET_WAKE
,
65 static int htirq_domain_alloc(struct irq_domain
*domain
, unsigned int virq
,
66 unsigned int nr_irqs
, void *arg
)
68 struct ht_irq_cfg
*ht_cfg
;
69 struct irq_alloc_info
*info
= arg
;
71 irq_hw_number_t hwirq
;
74 if (nr_irqs
> 1 || !info
)
78 hwirq
= (info
->ht_idx
& 0xFF) |
79 PCI_DEVID(dev
->bus
->number
, dev
->devfn
) << 8 |
80 (pci_domain_nr(dev
->bus
) & 0xFFFFFFFF) << 24;
81 if (irq_find_mapping(domain
, hwirq
) > 0)
84 ht_cfg
= kmalloc(sizeof(*ht_cfg
), GFP_KERNEL
);
88 ret
= irq_domain_alloc_irqs_parent(domain
, virq
, nr_irqs
, info
);
94 /* Initialize msg to a value that will never match the first write. */
95 ht_cfg
->msg
.address_lo
= 0xffffffff;
96 ht_cfg
->msg
.address_hi
= 0xffffffff;
97 ht_cfg
->dev
= info
->ht_dev
;
98 ht_cfg
->update
= info
->ht_update
;
99 ht_cfg
->pos
= info
->ht_pos
;
100 ht_cfg
->idx
= 0x10 + (info
->ht_idx
* 2);
101 irq_domain_set_info(domain
, virq
, hwirq
, &ht_irq_chip
, ht_cfg
,
102 handle_edge_irq
, ht_cfg
, "edge");
107 static void htirq_domain_free(struct irq_domain
*domain
, unsigned int virq
,
108 unsigned int nr_irqs
)
110 struct irq_data
*irq_data
= irq_domain_get_irq_data(domain
, virq
);
112 BUG_ON(nr_irqs
!= 1);
113 kfree(irq_data
->chip_data
);
114 irq_domain_free_irqs_top(domain
, virq
, nr_irqs
);
117 static void htirq_domain_activate(struct irq_domain
*domain
,
118 struct irq_data
*irq_data
)
120 struct ht_irq_msg msg
;
121 struct irq_cfg
*cfg
= irqd_cfg(irq_data
);
123 msg
.address_hi
= HT_IRQ_HIGH_DEST_ID(cfg
->dest_apicid
);
126 HT_IRQ_LOW_DEST_ID(cfg
->dest_apicid
) |
127 HT_IRQ_LOW_VECTOR(cfg
->vector
) |
128 ((apic
->irq_dest_mode
== 0) ?
129 HT_IRQ_LOW_DM_PHYSICAL
:
130 HT_IRQ_LOW_DM_LOGICAL
) |
131 HT_IRQ_LOW_RQEOI_EDGE
|
132 ((apic
->irq_delivery_mode
!= dest_LowestPrio
) ?
133 HT_IRQ_LOW_MT_FIXED
:
134 HT_IRQ_LOW_MT_ARBITRATED
) |
135 HT_IRQ_LOW_IRQ_MASKED
;
136 write_ht_irq_msg(irq_data
->irq
, &msg
);
139 static void htirq_domain_deactivate(struct irq_domain
*domain
,
140 struct irq_data
*irq_data
)
142 struct ht_irq_msg msg
;
144 memset(&msg
, 0, sizeof(msg
));
145 write_ht_irq_msg(irq_data
->irq
, &msg
);
148 static const struct irq_domain_ops htirq_domain_ops
= {
149 .alloc
= htirq_domain_alloc
,
150 .free
= htirq_domain_free
,
151 .activate
= htirq_domain_activate
,
152 .deactivate
= htirq_domain_deactivate
,
155 void __init
arch_init_htirq_domain(struct irq_domain
*parent
)
157 struct fwnode_handle
*fn
;
162 fn
= irq_domain_alloc_named_fwnode("PCI-HT");
166 htirq_domain
= irq_domain_create_tree(fn
, &htirq_domain_ops
, NULL
);
167 irq_domain_free_fwnode(fn
);
171 htirq_domain
->parent
= parent
;
175 pr_warn("Failed to initialize irqdomain for HTIRQ.\n");
178 int arch_setup_ht_irq(int idx
, int pos
, struct pci_dev
*dev
,
179 ht_irq_update_t
*update
)
181 struct irq_alloc_info info
;
186 init_irq_alloc_info(&info
, NULL
);
190 info
.ht_update
= update
;
192 return irq_domain_alloc_irqs(htirq_domain
, 1, dev_to_node(&dev
->dev
),
196 void arch_teardown_ht_irq(unsigned int irq
)
198 irq_domain_free_irqs(irq
, 1);