be92613e886b6b9d1a2d2d192d09b6089b7c731a
[coreboot.git] / payloads / libpayload / drivers / pci.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  * Copyright (C) 2008 coresystems GmbH
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30
31 #include <libpayload.h>
32 #include <pci.h>
33
34 u8 pci_read_config8(pcidev_t device, u16 reg)
35 {
36         outl(device | (reg & ~3), 0xCF8);
37         return inb(0xCFC + (reg & 3));
38 }
39
40 u16 pci_read_config16(pcidev_t device, u16 reg)
41 {
42         outl(device | (reg & ~3), 0xCF8);
43         return inw(0xCFC + (reg & 3));
44 }
45
46 u32 pci_read_config32(pcidev_t device, u16 reg)
47 {
48         outl(device | (reg & ~3), 0xCF8);
49         return inl(0xCFC + (reg & 3));
50 }
51
52 void pci_write_config8(pcidev_t device, u16 reg, u8 val)
53 {
54         outl(device | (reg & ~3), 0xCF8);
55         outb(val, 0xCFC + (reg & 3));
56 }
57
58 void pci_write_config16(pcidev_t device, u16 reg, u16 val)
59 {
60         outl(device | (reg & ~3), 0xCF8);
61         outw(val, 0xCFC + (reg & 3));
62 }
63
64 void pci_write_config32(pcidev_t device, u16 reg, u32 val)
65 {
66         outl(device | (reg & ~3), 0xCF8);
67         outl(val, 0xCFC + (reg & 3));
68 }
69
70 static int find_on_bus(int bus, unsigned short vid, unsigned short did,
71                        pcidev_t * dev)
72 {
73         int devfn;
74         u32 val;
75         unsigned char hdr;
76
77         for (devfn = 0; devfn < 0x100; devfn++) {
78                 val = pci_read_config32(PCI_DEV(bus, PCI_SLOT(devfn),
79                                         PCI_FUNC(devfn)), REG_VENDOR_ID);
80
81                 if (val == 0xffffffff || val == 0x00000000 ||
82                     val == 0x0000ffff || val == 0xffff0000)
83                         continue;
84
85                 if (val == ((did << 16) | vid)) {
86                         *dev = PCI_DEV(bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
87                         return 1;
88                 }
89
90                 hdr = pci_read_config8(PCI_DEV(bus, PCI_SLOT(devfn),
91                                         PCI_FUNC(devfn)), REG_HEADER_TYPE);
92                 hdr &= 0x7F;
93
94                 if (hdr == HEADER_TYPE_BRIDGE || hdr == HEADER_TYPE_CARDBUS) {
95                         unsigned int busses;
96                         busses = pci_read_config32(PCI_DEV(bus, PCI_SLOT(devfn),
97                                                 PCI_FUNC(devfn)), REG_PRIMARY_BUS);
98                         if (find_on_bus((busses >> 8) & 0xFF, vid, did, dev))
99                                 return 1;
100                 }
101         }
102
103         return 0;
104 }
105
106 int pci_find_device(u16 vid, u16 did, pcidev_t * dev)
107 {
108         return find_on_bus(0, vid, did, dev);
109 }
110
111 u32 pci_read_resource(pcidev_t dev, int bar)
112 {
113         return pci_read_config32(dev, 0x10 + (bar * 4));
114 }
115
116 void pci_set_bus_master(pcidev_t dev)
117 {
118         u16 val = pci_read_config16(dev, REG_COMMAND);
119         val |= REG_COMMAND_BM;
120         pci_write_config16(dev, REG_COMMAND, val);
121 }
122