blob: 4afcaffd031c04b3e10251101a39e29f89c03fd4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * CompactPCI Hot Plug Driver PCI functions
3 *
Scott Murraybcc488a2005-05-27 16:48:52 -04004 * Copyright (C) 2002,2005 by SOMA Networks, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Send feedback to <scottm@somanetworks.com>
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/kernel.h>
28#include <linux/pci.h>
29#include <linux/proc_fs.h>
30#include "../pci.h"
31#include "pci_hotplug.h"
32#include "cpci_hotplug.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define MY_NAME "cpci_hotplug"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36extern int cpci_debug;
37
38#define dbg(format, arg...) \
39 do { \
Scott Murraybcc488a2005-05-27 16:48:52 -040040 if (cpci_debug) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 printk (KERN_DEBUG "%s: " format "\n", \
42 MY_NAME , ## arg); \
Scott Murraybcc488a2005-05-27 16:48:52 -040043 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME , ## arg)
45#define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME , ## arg)
46#define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME , ## arg)
47
48#define ROUND_UP(x, a) (((x) + (a) - 1) & ~((a) - 1))
49
50
51u8 cpci_get_attention_status(struct slot* slot)
52{
53 int hs_cap;
54 u16 hs_csr;
55
56 hs_cap = pci_bus_find_capability(slot->bus,
57 slot->devfn,
58 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -040059 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Scott Murraybcc488a2005-05-27 16:48:52 -040062 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 slot->devfn,
64 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -040065 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -040067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return hs_csr & 0x0008 ? 1 : 0;
69}
70
71int cpci_set_attention_status(struct slot* slot, int status)
72{
73 int hs_cap;
74 u16 hs_csr;
75
76 hs_cap = pci_bus_find_capability(slot->bus,
77 slot->devfn,
78 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -040079 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -040081 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 slot->devfn,
83 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -040084 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -040086 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 hs_csr |= HS_CSR_LOO;
Scott Murraybcc488a2005-05-27 16:48:52 -040088 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 hs_csr &= ~HS_CSR_LOO;
Scott Murraybcc488a2005-05-27 16:48:52 -040090 if (pci_bus_write_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 slot->devfn,
92 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -040093 hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return 1;
96}
97
98u16 cpci_get_hs_csr(struct slot* slot)
99{
100 int hs_cap;
101 u16 hs_csr;
102
103 hs_cap = pci_bus_find_capability(slot->bus,
104 slot->devfn,
105 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400106 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 0xFFFF;
Scott Murraybcc488a2005-05-27 16:48:52 -0400108 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 slot->devfn,
110 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400111 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return hs_csr;
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116int cpci_check_and_clear_ins(struct slot* slot)
117{
118 int hs_cap;
119 u16 hs_csr;
120 int ins = 0;
121
122 hs_cap = pci_bus_find_capability(slot->bus,
123 slot->devfn,
124 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400125 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400127 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 slot->devfn,
129 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400130 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400132 if (hs_csr & HS_CSR_INS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* Clear INS (by setting it) */
Scott Murraybcc488a2005-05-27 16:48:52 -0400134 if (pci_bus_write_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 slot->devfn,
136 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400137 hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 ins = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400139 else
140 ins = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 return ins;
143}
144
145int cpci_check_ext(struct slot* slot)
146{
147 int hs_cap;
148 u16 hs_csr;
149 int ext = 0;
150
151 hs_cap = pci_bus_find_capability(slot->bus,
152 slot->devfn,
153 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400154 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400156 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 slot->devfn,
158 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400159 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400161 if (hs_csr & HS_CSR_EXT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ext = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return ext;
164}
165
166int cpci_clear_ext(struct slot* slot)
167{
168 int hs_cap;
169 u16 hs_csr;
170
171 hs_cap = pci_bus_find_capability(slot->bus,
172 slot->devfn,
173 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400174 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400176 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 slot->devfn,
178 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400179 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400181 if (hs_csr & HS_CSR_EXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Clear EXT (by setting it) */
Scott Murraybcc488a2005-05-27 16:48:52 -0400183 if (pci_bus_write_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 slot->devfn,
185 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400186 hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189 return 0;
190}
191
192int cpci_led_on(struct slot* slot)
193{
194 int hs_cap;
195 u16 hs_csr;
196
197 hs_cap = pci_bus_find_capability(slot->bus,
198 slot->devfn,
199 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400200 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400202 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 slot->devfn,
204 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400205 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400207 if ((hs_csr & HS_CSR_LOO) != HS_CSR_LOO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 hs_csr |= HS_CSR_LOO;
Scott Murraybcc488a2005-05-27 16:48:52 -0400209 if (pci_bus_write_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 slot->devfn,
211 hs_cap + 2,
212 hs_csr)) {
213 err("Could not set LOO for slot %s",
214 slot->hotplug_slot->name);
215 return -ENODEV;
216 }
217 }
218 return 0;
219}
220
221int cpci_led_off(struct slot* slot)
222{
223 int hs_cap;
224 u16 hs_csr;
225
226 hs_cap = pci_bus_find_capability(slot->bus,
227 slot->devfn,
228 PCI_CAP_ID_CHSWP);
Scott Murraybcc488a2005-05-27 16:48:52 -0400229 if (!hs_cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400231 if (pci_bus_read_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 slot->devfn,
233 hs_cap + 2,
Scott Murraybcc488a2005-05-27 16:48:52 -0400234 &hs_csr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400236 if (hs_csr & HS_CSR_LOO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 hs_csr &= ~HS_CSR_LOO;
Scott Murraybcc488a2005-05-27 16:48:52 -0400238 if (pci_bus_write_config_word(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 slot->devfn,
240 hs_cap + 2,
241 hs_csr)) {
242 err("Could not clear LOO for slot %s",
243 slot->hotplug_slot->name);
244 return -ENODEV;
245 }
246 }
247 return 0;
248}
249
250
251/*
252 * Device configuration functions
253 */
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255int cpci_configure_slot(struct slot* slot)
256{
Scott Murraycc702c22006-08-22 19:55:57 -0400257 struct pci_bus *parent;
258 int fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 dbg("%s - enter", __FUNCTION__);
261
Scott Murraybcc488a2005-05-27 16:48:52 -0400262 if (slot->dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 dbg("pci_dev null, finding %02x:%02x:%x",
264 slot->bus->number, PCI_SLOT(slot->devfn), PCI_FUNC(slot->devfn));
Scott Murraybcc488a2005-05-27 16:48:52 -0400265 slot->dev = pci_get_slot(slot->bus, slot->devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
268 /* Still NULL? Well then scan for it! */
Scott Murraybcc488a2005-05-27 16:48:52 -0400269 if (slot->dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 int n;
271 dbg("pci_dev still null");
272
273 /*
274 * This will generate pci_dev structures for all functions, but
275 * we will only call this case when lookup fails.
276 */
277 n = pci_scan_slot(slot->bus, slot->devfn);
278 dbg("%s: pci_scan_slot returned %d", __FUNCTION__, n);
Scott Murraybcc488a2005-05-27 16:48:52 -0400279 slot->dev = pci_get_slot(slot->bus, slot->devfn);
280 if (slot->dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 err("Could not find PCI device for slot %02x", slot->number);
Scott Murraycc702c22006-08-22 19:55:57 -0400282 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 }
Scott Murraycc702c22006-08-22 19:55:57 -0400285 parent = slot->dev->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Scott Murraycc702c22006-08-22 19:55:57 -0400287 for (fn = 0; fn < 8; fn++) {
288 struct pci_dev *dev;
289
290 dev = pci_get_slot(parent, PCI_DEVFN(PCI_SLOT(slot->devfn), fn));
291 if (!dev)
292 continue;
293 if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) ||
294 (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) {
295 /* Find an unused bus number for the new bridge */
296 struct pci_bus *child;
297 unsigned char busnr, start = parent->secondary;
298 unsigned char end = parent->subordinate;
299
300 for (busnr = start; busnr <= end; busnr++) {
301 if (!pci_find_bus(pci_domain_nr(parent),
302 busnr))
303 break;
304 }
305 if (busnr >= end) {
306 err("No free bus for hot-added bridge\n");
307 pci_dev_put(dev);
308 continue;
309 }
310 child = pci_add_new_bus(parent, dev, busnr);
311 if (!child) {
312 err("Cannot add new bus for %s\n",
313 pci_name(dev));
314 pci_dev_put(dev);
315 continue;
316 }
317 child->subordinate = pci_do_scan_bus(child);
318 pci_bus_size_bridges(child);
319 }
320 pci_dev_put(dev);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400321 }
322
Scott Murraycc702c22006-08-22 19:55:57 -0400323 pci_bus_assign_resources(parent);
324 pci_bus_add_devices(parent);
325 pci_enable_bridges(parent);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400326
Scott Murray43b7d7c2005-05-09 17:31:50 -0400327 dbg("%s - exit", __FUNCTION__);
328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331int cpci_unconfigure_slot(struct slot* slot)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct pci_dev *dev;
335
336 dbg("%s - enter", __FUNCTION__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400337 if (!slot->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 err("No device for slot %02x\n", slot->number);
339 return -ENODEV;
340 }
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 for (i = 0; i < 8; i++) {
Scott Murraybcc488a2005-05-27 16:48:52 -0400343 dev = pci_get_slot(slot->bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 PCI_DEVFN(PCI_SLOT(slot->devfn), i));
Scott Murraybcc488a2005-05-27 16:48:52 -0400345 if (dev) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400346 pci_remove_bus_device(dev);
Scott Murray03e49d42005-06-06 15:48:04 -0400347 pci_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349 }
Scott Murray03e49d42005-06-06 15:48:04 -0400350 pci_dev_put(slot->dev);
351 slot->dev = NULL;
352
Scott Murray43b7d7c2005-05-09 17:31:50 -0400353 dbg("%s - exit", __FUNCTION__);
354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}