]>
Commit | Line | Data |
---|---|---|
ec2d6189 | 1 | #include <pci.h> |
d6f56afa | 2 | #include <pci-bother.h> |
ec2d6189 JW |
3 | |
4 | struct pci_bother { | |
5 | int bus, dev, fn; | |
6 | unsigned short origstate; | |
c2e34447 | 7 | unsigned long origbars[6]; |
ec2d6189 JW |
8 | }; |
9 | ||
10 | static struct pci_bother bothers[MAX_BOTHERS]; | |
11 | static int nbothers = 0; | |
12 | ||
13 | int pci_bother_add(pci_dev_t *dev) | |
14 | { | |
c2e34447 JW |
15 | int i; |
16 | ||
ec2d6189 JW |
17 | if (nbothers == MAX_BOTHERS) |
18 | return -1; | |
19 | ||
20 | bothers[nbothers].bus = dev->bus; | |
21 | bothers[nbothers].dev = dev->dev; | |
22 | bothers[nbothers].fn = dev->fn; | |
23 | ||
24 | bothers[nbothers].origstate = pci_read16(dev->bus, dev->dev, dev->fn, 0x04); | |
c2e34447 JW |
25 | for (i = 0; i < 6; i++) |
26 | bothers[nbothers].origbars[i] = pci_read32(dev->bus, dev->dev, dev->fn, 0x10 + i * 4); | |
ec2d6189 JW |
27 | |
28 | nbothers++; | |
29 | ||
30 | return 0; | |
31 | } | |
32 | ||
33 | void pci_bother_all() | |
34 | { | |
c2e34447 | 35 | int i, j; |
ec2d6189 JW |
36 | |
37 | for (i = 0; i < nbothers; i++) | |
c2e34447 | 38 | { |
d6f56afa | 39 | pci_write16(bothers[i].bus, bothers[i].dev, bothers[i].fn, 0x04, 0x0); |
c2e34447 JW |
40 | for (j = 0; j < 6; j++) |
41 | pci_write32(bothers[i].bus, bothers[i].dev, bothers[i].fn, 0x10 + j * 4, 0); | |
42 | } | |
ec2d6189 JW |
43 | } |
44 | ||
45 | void pci_unbother_all() | |
46 | { | |
c2e34447 | 47 | int i, j; |
ec2d6189 JW |
48 | |
49 | for (i = 0; i < nbothers; i++) | |
c2e34447 | 50 | { |
d6f56afa | 51 | pci_write16(bothers[i].bus, bothers[i].dev, bothers[i].fn, 0x04, bothers[i].origstate); |
c2e34447 JW |
52 | for (j = 0; j < 6; j++) |
53 | pci_write32(bothers[i].bus, bothers[i].dev, bothers[i].fn, 0x10 + j * 4, bothers[i].origbars[j]); | |
54 | } | |
ec2d6189 | 55 | } |