blob: d1067d539bee2da24fb260ac64b2162ecf63d17b [file] [log] [blame]
Andi Kleen8f607742006-09-26 10:52:41 +02001#include <linux/kernel.h>
Andi Kleen0637a702006-09-26 10:52:41 +02002#include <linux/pci.h>
Andi Kleen8f607742006-09-26 10:52:41 +02003#include <asm/pci-direct.h>
4#include <asm/io.h>
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05305#include <asm/pci_x86.h>
Andi Kleen8f607742006-09-26 10:52:41 +02006
7/* Direct PCI access. This is used for PCI accesses in early boot before
8 the PCI subsystem works. */
9
Andi Kleen8f607742006-09-26 10:52:41 +020010u32 read_pci_config(u8 bus, u8 slot, u8 func, u8 offset)
11{
12 u32 v;
13 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
14 v = inl(0xcfc);
Andi Kleen8f607742006-09-26 10:52:41 +020015 return v;
16}
17
18u8 read_pci_config_byte(u8 bus, u8 slot, u8 func, u8 offset)
19{
20 u8 v;
21 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
22 v = inb(0xcfc + (offset&3));
Andi Kleen8f607742006-09-26 10:52:41 +020023 return v;
24}
25
26u16 read_pci_config_16(u8 bus, u8 slot, u8 func, u8 offset)
27{
28 u16 v;
29 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
30 v = inw(0xcfc + (offset&2));
Andi Kleen8f607742006-09-26 10:52:41 +020031 return v;
32}
33
34void write_pci_config(u8 bus, u8 slot, u8 func, u8 offset,
35 u32 val)
36{
Andi Kleen8f607742006-09-26 10:52:41 +020037 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
38 outl(val, 0xcfc);
39}
Andi Kleen0637a702006-09-26 10:52:41 +020040
Siddha, Suresh B274e1bb2006-12-07 02:14:10 +010041void write_pci_config_byte(u8 bus, u8 slot, u8 func, u8 offset, u8 val)
42{
Siddha, Suresh B274e1bb2006-12-07 02:14:10 +010043 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
Yinghai Lue7891c72008-05-22 14:35:21 -070044 outb(val, 0xcfc + (offset&3));
45}
46
47void write_pci_config_16(u8 bus, u8 slot, u8 func, u8 offset, u16 val)
48{
Yinghai Lue7891c72008-05-22 14:35:21 -070049 outl(0x80000000 | (bus<<16) | (slot<<11) | (func<<8) | offset, 0xcf8);
50 outw(val, 0xcfc + (offset&2));
Siddha, Suresh B274e1bb2006-12-07 02:14:10 +010051}
52
Andi Kleen0637a702006-09-26 10:52:41 +020053int early_pci_allowed(void)
54{
55 return (pci_probe & (PCI_PROBE_CONF1|PCI_PROBE_NOEARLY)) ==
56 PCI_PROBE_CONF1;
57}
Yinghai Lue3f2bae2008-05-22 14:35:11 -070058
59void early_dump_pci_device(u8 bus, u8 slot, u8 func)
60{
61 int i;
62 int j;
63 u32 val;
64
Bjorn Helgaas7bc9e772009-01-14 10:04:30 -070065 printk(KERN_INFO "pci 0000:%02x:%02x.%d config space:",
66 bus, slot, func);
Yinghai Lue3f2bae2008-05-22 14:35:11 -070067
68 for (i = 0; i < 256; i += 4) {
69 if (!(i & 0x0f))
Bjorn Helgaas7bc9e772009-01-14 10:04:30 -070070 printk("\n %02x:",i);
Yinghai Lue3f2bae2008-05-22 14:35:11 -070071
72 val = read_pci_config(bus, slot, func, i);
73 for (j = 0; j < 4; j++) {
74 printk(" %02x", val & 0xff);
75 val >>= 8;
76 }
77 }
78 printk("\n");
79}
80
81void early_dump_pci_devices(void)
82{
83 unsigned bus, slot, func;
84
85 if (!early_pci_allowed())
86 return;
87
88 for (bus = 0; bus < 256; bus++) {
89 for (slot = 0; slot < 32; slot++) {
90 for (func = 0; func < 8; func++) {
91 u32 class;
92 u8 type;
Bjorn Helgaas600914b2009-01-14 10:04:25 -070093
Yinghai Lue3f2bae2008-05-22 14:35:11 -070094 class = read_pci_config(bus, slot, func,
95 PCI_CLASS_REVISION);
96 if (class == 0xffffffff)
Bjorn Helgaas600914b2009-01-14 10:04:25 -070097 continue;
Yinghai Lue3f2bae2008-05-22 14:35:11 -070098
99 early_dump_pci_device(bus, slot, func);
100
Bjorn Helgaas600914b2009-01-14 10:04:25 -0700101 if (func == 0) {
102 type = read_pci_config_byte(bus, slot,
103 func,
Yinghai Lue3f2bae2008-05-22 14:35:11 -0700104 PCI_HEADER_TYPE);
Bjorn Helgaas600914b2009-01-14 10:04:25 -0700105 if (!(type & 0x80))
106 break;
107 }
Yinghai Lue3f2bae2008-05-22 14:35:11 -0700108 }
109 }
110 }
111}