diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-10-04 05:17:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:29 -0400 |
commit | 03571e11c4a6d08230657f80970f0a5cc7820471 (patch) | |
tree | 1ee056fff8d00a49f51116932bedf38ea592d038 /arch/ia64/sn | |
parent | 3b7d1921f4cdd6d6ddb7899ae7a8d413991c5cf4 (diff) |
[PATCH] msi: move the ia64 code into arch/ia64
This is just a few makefile tweaks and some file renames.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Greg KH <greg@kroah.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ia64/sn')
-rw-r--r-- | arch/ia64/sn/kernel/Makefile | 1 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/msi_sn.c | 230 |
2 files changed, 231 insertions, 0 deletions
diff --git a/arch/ia64/sn/kernel/Makefile b/arch/ia64/sn/kernel/Makefile index ab9c48c88012..2d78f34dd763 100644 --- a/arch/ia64/sn/kernel/Makefile +++ b/arch/ia64/sn/kernel/Makefile | |||
@@ -19,3 +19,4 @@ xp-y := xp_main.o xp_nofault.o | |||
19 | obj-$(CONFIG_IA64_SGI_SN_XP) += xpc.o | 19 | obj-$(CONFIG_IA64_SGI_SN_XP) += xpc.o |
20 | xpc-y := xpc_main.o xpc_channel.o xpc_partition.o | 20 | xpc-y := xpc_main.o xpc_channel.o xpc_partition.o |
21 | obj-$(CONFIG_IA64_SGI_SN_XP) += xpnet.o | 21 | obj-$(CONFIG_IA64_SGI_SN_XP) += xpnet.o |
22 | obj-$(CONFIG_PCI_MSI) += msi_sn.o | ||
diff --git a/arch/ia64/sn/kernel/msi_sn.c b/arch/ia64/sn/kernel/msi_sn.c new file mode 100644 index 000000000000..6ffd1f850d41 --- /dev/null +++ b/arch/ia64/sn/kernel/msi_sn.c | |||
@@ -0,0 +1,230 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 2006 Silicon Graphics, Inc. All Rights Reserved. | ||
7 | */ | ||
8 | |||
9 | #include <linux/types.h> | ||
10 | #include <linux/irq.h> | ||
11 | #include <linux/pci.h> | ||
12 | #include <linux/cpumask.h> | ||
13 | #include <linux/msi.h> | ||
14 | |||
15 | #include <asm/sn/addrs.h> | ||
16 | #include <asm/sn/intr.h> | ||
17 | #include <asm/sn/pcibus_provider_defs.h> | ||
18 | #include <asm/sn/pcidev.h> | ||
19 | #include <asm/sn/nodepda.h> | ||
20 | |||
21 | struct sn_msi_info { | ||
22 | u64 pci_addr; | ||
23 | struct sn_irq_info *sn_irq_info; | ||
24 | }; | ||
25 | |||
26 | static struct sn_msi_info sn_msi_info[NR_IRQS]; | ||
27 | |||
28 | static struct irq_chip sn_msi_chip; | ||
29 | |||
30 | void sn_teardown_msi_irq(unsigned int irq) | ||
31 | { | ||
32 | nasid_t nasid; | ||
33 | int widget; | ||
34 | struct pci_dev *pdev; | ||
35 | struct pcidev_info *sn_pdev; | ||
36 | struct sn_irq_info *sn_irq_info; | ||
37 | struct pcibus_bussoft *bussoft; | ||
38 | struct sn_pcibus_provider *provider; | ||
39 | |||
40 | sn_irq_info = sn_msi_info[irq].sn_irq_info; | ||
41 | if (sn_irq_info == NULL || sn_irq_info->irq_int_bit >= 0) | ||
42 | return; | ||
43 | |||
44 | sn_pdev = (struct pcidev_info *)sn_irq_info->irq_pciioinfo; | ||
45 | pdev = sn_pdev->pdi_linux_pcidev; | ||
46 | provider = SN_PCIDEV_BUSPROVIDER(pdev); | ||
47 | |||
48 | (*provider->dma_unmap)(pdev, | ||
49 | sn_msi_info[irq].pci_addr, | ||
50 | PCI_DMA_FROMDEVICE); | ||
51 | sn_msi_info[irq].pci_addr = 0; | ||
52 | |||
53 | bussoft = SN_PCIDEV_BUSSOFT(pdev); | ||
54 | nasid = NASID_GET(bussoft->bs_base); | ||
55 | widget = (nasid & 1) ? | ||
56 | TIO_SWIN_WIDGETNUM(bussoft->bs_base) : | ||
57 | SWIN_WIDGETNUM(bussoft->bs_base); | ||
58 | |||
59 | sn_intr_free(nasid, widget, sn_irq_info); | ||
60 | sn_msi_info[irq].sn_irq_info = NULL; | ||
61 | |||
62 | return; | ||
63 | } | ||
64 | |||
65 | int sn_setup_msi_irq(unsigned int irq, struct pci_dev *pdev) | ||
66 | { | ||
67 | struct msi_msg msg; | ||
68 | struct msi_desc *entry; | ||
69 | int widget; | ||
70 | int status; | ||
71 | nasid_t nasid; | ||
72 | u64 bus_addr; | ||
73 | struct sn_irq_info *sn_irq_info; | ||
74 | struct pcibus_bussoft *bussoft = SN_PCIDEV_BUSSOFT(pdev); | ||
75 | struct sn_pcibus_provider *provider = SN_PCIDEV_BUSPROVIDER(pdev); | ||
76 | |||
77 | entry = get_irq_data(irq); | ||
78 | if (!entry->msi_attrib.is_64) | ||
79 | return -EINVAL; | ||
80 | |||
81 | if (bussoft == NULL) | ||
82 | return -EINVAL; | ||
83 | |||
84 | if (provider == NULL || provider->dma_map_consistent == NULL) | ||
85 | return -EINVAL; | ||
86 | |||
87 | /* | ||
88 | * Set up the vector plumbing. Let the prom (via sn_intr_alloc) | ||
89 | * decide which cpu to direct this msi at by default. | ||
90 | */ | ||
91 | |||
92 | nasid = NASID_GET(bussoft->bs_base); | ||
93 | widget = (nasid & 1) ? | ||
94 | TIO_SWIN_WIDGETNUM(bussoft->bs_base) : | ||
95 | SWIN_WIDGETNUM(bussoft->bs_base); | ||
96 | |||
97 | sn_irq_info = kzalloc(sizeof(struct sn_irq_info), GFP_KERNEL); | ||
98 | if (! sn_irq_info) | ||
99 | return -ENOMEM; | ||
100 | |||
101 | status = sn_intr_alloc(nasid, widget, sn_irq_info, irq, -1, -1); | ||
102 | if (status) { | ||
103 | kfree(sn_irq_info); | ||
104 | return -ENOMEM; | ||
105 | } | ||
106 | |||
107 | sn_irq_info->irq_int_bit = -1; /* mark this as an MSI irq */ | ||
108 | sn_irq_fixup(pdev, sn_irq_info); | ||
109 | |||
110 | /* Prom probably should fill these in, but doesn't ... */ | ||
111 | sn_irq_info->irq_bridge_type = bussoft->bs_asic_type; | ||
112 | sn_irq_info->irq_bridge = (void *)bussoft->bs_base; | ||
113 | |||
114 | /* | ||
115 | * Map the xio address into bus space | ||
116 | */ | ||
117 | bus_addr = (*provider->dma_map_consistent)(pdev, | ||
118 | sn_irq_info->irq_xtalkaddr, | ||
119 | sizeof(sn_irq_info->irq_xtalkaddr), | ||
120 | SN_DMA_MSI|SN_DMA_ADDR_XIO); | ||
121 | if (! bus_addr) { | ||
122 | sn_intr_free(nasid, widget, sn_irq_info); | ||
123 | kfree(sn_irq_info); | ||
124 | return -ENOMEM; | ||
125 | } | ||
126 | |||
127 | sn_msi_info[irq].sn_irq_info = sn_irq_info; | ||
128 | sn_msi_info[irq].pci_addr = bus_addr; | ||
129 | |||
130 | msg.address_hi = (u32)(bus_addr >> 32); | ||
131 | msg.address_lo = (u32)(bus_addr & 0x00000000ffffffff); | ||
132 | |||
133 | /* | ||
134 | * In the SN platform, bit 16 is a "send vector" bit which | ||
135 | * must be present in order to move the vector through the system. | ||
136 | */ | ||
137 | msg.data = 0x100 + irq; | ||
138 | |||
139 | #ifdef CONFIG_SMP | ||
140 | set_irq_affinity_info(irq, sn_irq_info->irq_cpuid, 0); | ||
141 | #endif | ||
142 | |||
143 | write_msi_msg(irq, &msg); | ||
144 | set_irq_chip_and_handler(irq, &sn_msi_chip, handle_edge_irq); | ||
145 | |||
146 | return 0; | ||
147 | } | ||
148 | |||
149 | #ifdef CONFIG_SMP | ||
150 | static void sn_set_msi_irq_affinity(unsigned int irq, cpumask_t cpu_mask) | ||
151 | { | ||
152 | struct msi_msg msg; | ||
153 | int slice; | ||
154 | nasid_t nasid; | ||
155 | u64 bus_addr; | ||
156 | struct pci_dev *pdev; | ||
157 | struct pcidev_info *sn_pdev; | ||
158 | struct sn_irq_info *sn_irq_info; | ||
159 | struct sn_irq_info *new_irq_info; | ||
160 | struct sn_pcibus_provider *provider; | ||
161 | unsigned int cpu; | ||
162 | |||
163 | cpu = first_cpu(cpu_mask); | ||
164 | sn_irq_info = sn_msi_info[irq].sn_irq_info; | ||
165 | if (sn_irq_info == NULL || sn_irq_info->irq_int_bit >= 0) | ||
166 | return; | ||
167 | |||
168 | /* | ||
169 | * Release XIO resources for the old MSI PCI address | ||
170 | */ | ||
171 | |||
172 | read_msi_msg(irq, &msg); | ||
173 | sn_pdev = (struct pcidev_info *)sn_irq_info->irq_pciioinfo; | ||
174 | pdev = sn_pdev->pdi_linux_pcidev; | ||
175 | provider = SN_PCIDEV_BUSPROVIDER(pdev); | ||
176 | |||
177 | bus_addr = (u64)(msg.address_hi) << 32 | (u64)(msg.address_lo); | ||
178 | (*provider->dma_unmap)(pdev, bus_addr, PCI_DMA_FROMDEVICE); | ||
179 | sn_msi_info[irq].pci_addr = 0; | ||
180 | |||
181 | nasid = cpuid_to_nasid(cpu); | ||
182 | slice = cpuid_to_slice(cpu); | ||
183 | |||
184 | new_irq_info = sn_retarget_vector(sn_irq_info, nasid, slice); | ||
185 | sn_msi_info[irq].sn_irq_info = new_irq_info; | ||
186 | if (new_irq_info == NULL) | ||
187 | return; | ||
188 | |||
189 | /* | ||
190 | * Map the xio address into bus space | ||
191 | */ | ||
192 | |||
193 | bus_addr = (*provider->dma_map_consistent)(pdev, | ||
194 | new_irq_info->irq_xtalkaddr, | ||
195 | sizeof(new_irq_info->irq_xtalkaddr), | ||
196 | SN_DMA_MSI|SN_DMA_ADDR_XIO); | ||
197 | |||
198 | sn_msi_info[irq].pci_addr = bus_addr; | ||
199 | msg.address_hi = (u32)(bus_addr >> 32); | ||
200 | msg.address_lo = (u32)(bus_addr & 0x00000000ffffffff); | ||
201 | |||
202 | write_msi_msg(irq, &msg); | ||
203 | set_native_irq_info(irq, cpu_mask); | ||
204 | } | ||
205 | #endif /* CONFIG_SMP */ | ||
206 | |||
207 | static void sn_ack_msi_irq(unsigned int irq) | ||
208 | { | ||
209 | move_native_irq(irq); | ||
210 | ia64_eoi(); | ||
211 | } | ||
212 | |||
213 | static int sn_msi_retrigger_irq(unsigned int irq) | ||
214 | { | ||
215 | unsigned int vector = irq; | ||
216 | ia64_resend_irq(vector); | ||
217 | |||
218 | return 1; | ||
219 | } | ||
220 | |||
221 | static struct irq_chip sn_msi_chip = { | ||
222 | .name = "PCI-MSI", | ||
223 | .mask = mask_msi_irq, | ||
224 | .unmask = unmask_msi_irq, | ||
225 | .ack = sn_ack_msi_irq, | ||
226 | #ifdef CONFIG_SMP | ||
227 | .set_affinity = sn_set_msi_irq_affinity, | ||
228 | #endif | ||
229 | .retrigger = sn_msi_retrigger_irq, | ||
230 | }; | ||