[IA64] - SGI SN hwperf enhancements -
[linux-block.git] / arch / ia64 / sn / pci / pcibr / pcibr_provider.c
CommitLineData
1da177e4
LT
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) 2001-2004 Silicon Graphics, Inc. All rights reserved.
7 */
8
1da177e4 9#include <linux/interrupt.h>
c13cf371 10#include <linux/types.h>
1da177e4 11#include <linux/pci.h>
c13cf371 12#include <asm/sn/addrs.h>
1da177e4 13#include <asm/sn/geo.h>
c13cf371 14#include <asm/sn/pcibr_provider.h>
9b08ebd1
MM
15#include <asm/sn/pcibus_provider_defs.h>
16#include <asm/sn/pcidev.h>
c13cf371
PB
17#include <asm/sn/sn_sal.h>
18#include "xtalk/xwidgetdev.h"
19#include "xtalk/hubdev.h"
1da177e4 20
6f354b01
PB
21int
22sal_pcibr_slot_enable(struct pcibus_info *soft, int device, void *resp)
23{
24 struct ia64_sal_retval ret_stuff;
25 uint64_t busnum;
26
27 ret_stuff.status = 0;
28 ret_stuff.v0 = 0;
29
30 busnum = soft->pbi_buscommon.bs_persist_busnum;
31 SAL_CALL_NOLOCK(ret_stuff, (u64) SN_SAL_IOIF_SLOT_ENABLE, (u64) busnum,
32 (u64) device, (u64) resp, 0, 0, 0, 0);
33
34 return (int)ret_stuff.v0;
35}
36
37int
38sal_pcibr_slot_disable(struct pcibus_info *soft, int device, int action,
39 void *resp)
40{
41 struct ia64_sal_retval ret_stuff;
42 uint64_t busnum;
43
44 ret_stuff.status = 0;
45 ret_stuff.v0 = 0;
46
47 busnum = soft->pbi_buscommon.bs_persist_busnum;
48 SAL_CALL_NOLOCK(ret_stuff, (u64) SN_SAL_IOIF_SLOT_DISABLE,
49 (u64) busnum, (u64) device, (u64) action,
50 (u64) resp, 0, 0, 0);
51
52 return (int)ret_stuff.v0;
53}
54
1da177e4
LT
55static int sal_pcibr_error_interrupt(struct pcibus_info *soft)
56{
57 struct ia64_sal_retval ret_stuff;
58 uint64_t busnum;
59 int segment;
60 ret_stuff.status = 0;
61 ret_stuff.v0 = 0;
62
674c6479 63 segment = soft->pbi_buscommon.bs_persist_segment;
1da177e4
LT
64 busnum = soft->pbi_buscommon.bs_persist_busnum;
65 SAL_CALL_NOLOCK(ret_stuff,
66 (u64) SN_SAL_IOIF_ERROR_INTERRUPT,
67 (u64) segment, (u64) busnum, 0, 0, 0, 0, 0);
68
69 return (int)ret_stuff.v0;
70}
71
72/*
73 * PCI Bridge Error interrupt handler. Gets invoked whenever a PCI
74 * bridge sends an error interrupt.
75 */
76static irqreturn_t
77pcibr_error_intr_handler(int irq, void *arg, struct pt_regs *regs)
78{
79 struct pcibus_info *soft = (struct pcibus_info *)arg;
80
81 if (sal_pcibr_error_interrupt(soft) < 0) {
82 panic("pcibr_error_intr_handler(): Fatal Bridge Error");
83 }
84 return IRQ_HANDLED;
85}
86
87void *
7c2a6c62 88pcibr_bus_fixup(struct pcibus_bussoft *prom_bussoft, struct pci_controller *controller)
1da177e4
LT
89{
90 int nasid, cnode, j;
91 struct hubdev_info *hubdev_info;
92 struct pcibus_info *soft;
93 struct sn_flush_device_list *sn_flush_device_list;
94
95 if (! IS_PCI_BRIDGE_ASIC(prom_bussoft->bs_asic_type)) {
96 return NULL;
97 }
98
99 /*
100 * Allocate kernel bus soft and copy from prom.
101 */
102
103 soft = kmalloc(sizeof(struct pcibus_info), GFP_KERNEL);
104 if (!soft) {
105 return NULL;
106 }
107
108 memcpy(soft, prom_bussoft, sizeof(struct pcibus_info));
109 soft->pbi_buscommon.bs_base =
110 (((u64) soft->pbi_buscommon.
111 bs_base << 4) >> 4) | __IA64_UNCACHED_OFFSET;
112
113 spin_lock_init(&soft->pbi_lock);
114
115 /*
116 * register the bridge's error interrupt handler
117 */
89963d16 118 if (request_irq(SGI_PCIASIC_ERROR, (void *)pcibr_error_intr_handler,
1da177e4
LT
119 SA_SHIRQ, "PCIBR error", (void *)(soft))) {
120 printk(KERN_WARNING
121 "pcibr cannot allocate interrupt for error handler\n");
122 }
123
124 /*
125 * Update the Bridge with the "kernel" pagesize
126 */
127 if (PAGE_SIZE < 16384) {
128 pcireg_control_bit_clr(soft, PCIBR_CTRL_PAGE_SIZE);
129 } else {
130 pcireg_control_bit_set(soft, PCIBR_CTRL_PAGE_SIZE);
131 }
132
133 nasid = NASID_GET(soft->pbi_buscommon.bs_base);
134 cnode = nasid_to_cnodeid(nasid);
135 hubdev_info = (struct hubdev_info *)(NODEPDA(cnode)->pdinfo);
136
137 if (hubdev_info->hdi_flush_nasid_list.widget_p) {
138 sn_flush_device_list = hubdev_info->hdi_flush_nasid_list.
139 widget_p[(int)soft->pbi_buscommon.bs_xid];
140 if (sn_flush_device_list) {
141 for (j = 0; j < DEV_PER_WIDGET;
142 j++, sn_flush_device_list++) {
143 if (sn_flush_device_list->sfdl_slot == -1)
144 continue;
674c6479
CN
145 if ((sn_flush_device_list->
146 sfdl_persistent_segment ==
147 soft->pbi_buscommon.bs_persist_segment) &&
148 (sn_flush_device_list->
149 sfdl_persistent_busnum ==
150 soft->pbi_buscommon.bs_persist_busnum))
1da177e4
LT
151 sn_flush_device_list->sfdl_pcibus_info =
152 soft;
153 }
154 }
155 }
156
157 /* Setup the PMU ATE map */
158 soft->pbi_int_ate_resource.lowest_free_index = 0;
159 soft->pbi_int_ate_resource.ate =
160 kmalloc(soft->pbi_int_ate_size * sizeof(uint64_t), GFP_KERNEL);
161 memset(soft->pbi_int_ate_resource.ate, 0,
162 (soft->pbi_int_ate_size * sizeof(uint64_t)));
163
7c2a6c62
CL
164 if (prom_bussoft->bs_asic_type == PCIIO_ASIC_TYPE_TIOCP)
165 /*
166 * TIO PCI Bridge with no closest node information.
167 * FIXME: Find another way to determine the closest node
168 */
169 controller->node = -1;
170 else
171 controller->node = cnode;
1da177e4
LT
172 return soft;
173}
174
175void pcibr_force_interrupt(struct sn_irq_info *sn_irq_info)
176{
177 struct pcidev_info *pcidev_info;
178 struct pcibus_info *pcibus_info;
179 int bit = sn_irq_info->irq_int_bit;
180
735e60f4
MM
181 if (! sn_irq_info->irq_bridge)
182 return;
183
1da177e4
LT
184 pcidev_info = (struct pcidev_info *)sn_irq_info->irq_pciioinfo;
185 if (pcidev_info) {
186 pcibus_info =
187 (struct pcibus_info *)pcidev_info->pdi_host_pcidev_info->
188 pdi_pcibus_info;
189 pcireg_force_intr_set(pcibus_info, bit);
190 }
191}
192
193void pcibr_change_devices_irq(struct sn_irq_info *sn_irq_info)
194{
195 struct pcidev_info *pcidev_info;
196 struct pcibus_info *pcibus_info;
197 int bit = sn_irq_info->irq_int_bit;
198 uint64_t xtalk_addr = sn_irq_info->irq_xtalkaddr;
199
200 pcidev_info = (struct pcidev_info *)sn_irq_info->irq_pciioinfo;
201 if (pcidev_info) {
202 pcibus_info =
203 (struct pcibus_info *)pcidev_info->pdi_host_pcidev_info->
204 pdi_pcibus_info;
205
206 /* Disable the device's IRQ */
207 pcireg_intr_enable_bit_clr(pcibus_info, bit);
208
209 /* Change the device's IRQ */
210 pcireg_intr_addr_addr_set(pcibus_info, bit, xtalk_addr);
211
212 /* Re-enable the device's IRQ */
213 pcireg_intr_enable_bit_set(pcibus_info, bit);
214
215 pcibr_force_interrupt(sn_irq_info);
216 }
217}
e955d825
MM
218
219/*
220 * Provider entries for PIC/CP
221 */
222
223struct sn_pcibus_provider pcibr_provider = {
224 .dma_map = pcibr_dma_map,
225 .dma_map_consistent = pcibr_dma_map_consistent,
226 .dma_unmap = pcibr_dma_unmap,
227 .bus_fixup = pcibr_bus_fixup,
735e60f4 228 .force_interrupt = pcibr_force_interrupt
e955d825
MM
229};
230
231int
232pcibr_init_provider(void)
233{
234 sn_pci_provider[PCIIO_ASIC_TYPE_PIC] = &pcibr_provider;
235 sn_pci_provider[PCIIO_ASIC_TYPE_TIOCP] = &pcibr_provider;
236
237 return 0;
238}
6f354b01
PB
239
240EXPORT_SYMBOL_GPL(sal_pcibr_slot_enable);
241EXPORT_SYMBOL_GPL(sal_pcibr_slot_disable);