Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Enoch_Modules/i386/libsaio/pci.c

1/*
2 *
3 * Copyright 2008 by Islam M. Ahmed Zaid. All rights reserved.
4 *
5 */
6
7#include "libsaio.h"
8#include "bootstruct.h"
9#include "pci.h"
10#include "pci_root.h"
11
12#ifndef DEBUG_PCI
13#define DEBUG_PCI 0
14#endif
15
16#if DEBUG_PCI
17#define DBG(x...)printf(x)
18#else
19#define DBG(x...)
20#endif
21
22pci_dt_t*root_pci_dev;
23
24
25uint8_t pci_config_read8(uint32_t pci_addr, uint8_t reg)
26{
27pci_addr |= reg & ~3;
28outl(PCI_ADDR_REG, pci_addr);
29return inb(PCI_DATA_REG + (reg & 3));
30}
31
32uint16_t pci_config_read16(uint32_t pci_addr, uint8_t reg)
33{
34pci_addr |= reg & ~3;
35outl(PCI_ADDR_REG, pci_addr);
36return inw(PCI_DATA_REG + (reg & 2));
37}
38
39uint32_t pci_config_read32(uint32_t pci_addr, uint8_t reg)
40{
41pci_addr |= reg & ~3;
42outl(PCI_ADDR_REG, pci_addr);
43return inl(PCI_DATA_REG);
44}
45
46void pci_config_write8(uint32_t pci_addr, uint8_t reg, uint8_t data)
47{
48pci_addr |= reg & ~3;
49outl(PCI_ADDR_REG, pci_addr);
50outb(PCI_DATA_REG + (reg & 3), data);
51}
52
53void pci_config_write16(uint32_t pci_addr, uint8_t reg, uint16_t data)
54{
55pci_addr |= reg & ~3;
56outl(PCI_ADDR_REG, pci_addr);
57outw(PCI_DATA_REG + (reg & 2), data);
58}
59
60void pci_config_write32(uint32_t pci_addr, uint8_t reg, uint32_t data)
61{
62pci_addr |= reg & ~3;
63outl(PCI_ADDR_REG, pci_addr);
64outl(PCI_DATA_REG, data);
65}
66
67void scan_pci_bus(pci_dt_t *start, uint8_t bus)
68{
69pci_dt_t*new;
70pci_dt_t**current = &start->children;
71uint32_tid;
72uint32_tpci_addr;
73uint8_tdev = 0;
74uint8_tfunc = 0;
75uint8_tsecondary_bus;
76uint8_theader_type;
77
78for (dev = 0; dev < 32; dev++)
79{
80for (func = 0; func < 8; func++)
81{
82pci_addr = PCIADDR(bus, dev, func);
83id = pci_config_read32(pci_addr, PCI_VENDOR_ID);
84if (!id || id == 0xfffffffful)
85{
86continue;
87}
88new = (pci_dt_t*)malloc(sizeof(pci_dt_t));
89if (!new)
90{
91continue;
92}
93bzero(new, sizeof(pci_dt_t));
94
95new->dev.addr= pci_addr;
96new->vendor_id= id & 0xffff;
97new->device_id= (id >> 16) & 0xffff;
98new->progif = pci_config_read8(pci_addr, PCI_CLASS_PROG);
99new->revision_id= pci_config_read8(pci_addr, PCI_CLASS_REVISION);
100new->subsys_id.subsys_id = pci_config_read32(pci_addr, PCI_SUBSYSTEM_VENDOR_ID);
101new->class_id= pci_config_read16(pci_addr, PCI_CLASS_DEVICE);
102//new->subclass_id= pci_config_read16(pci_addr, PCI_SUBCLASS_DEVICE);
103new->parent= start;
104
105header_type = pci_config_read8(pci_addr, PCI_HEADER_TYPE);
106switch (header_type & 0x7f)
107{
108case PCI_HEADER_TYPE_BRIDGE:
109case PCI_HEADER_TYPE_CARDBUS:
110secondary_bus = pci_config_read8(pci_addr, PCI_SECONDARY_BUS);
111if (secondary_bus != 0)
112{
113scan_pci_bus(new, secondary_bus);
114}
115break;
116default:
117break;
118}
119*current = new;
120current = &new->next;
121
122if ((func == 0) && ((header_type & 0x80) == 0))
123{
124break;
125}
126}
127}
128}
129
130void enable_pci_devs(void)
131{
132uint16_t id;
133uint32_t rcba, *fd;
134
135id = pci_config_read16(PCIADDR(0, 0x00, 0), 0x00);
136/* make sure we're on Intel chipset */
137if (id != 0x8086)
138{
139return;
140}
141rcba = pci_config_read32(PCIADDR(0, 0x1f, 0), 0xf0) & ~1; //this is LPC host
142fd = (uint32_t *)(rcba + 0x3418);
143/* set SMBus Disable (SD) to 0 */
144*fd &= ~0x8;
145/* and all devices? */
146//*fd = 0x1;
147}
148
149
150void build_pci_dt(void)
151{
152root_pci_dev = malloc(sizeof(pci_dt_t));
153
154if (!root_pci_dev)
155{
156return;
157}
158
159//gRootPCIDev = (void*)root_pci_dev;
160
161bzero(root_pci_dev, sizeof(pci_dt_t));
162enable_pci_devs();
163scan_pci_bus(root_pci_dev, 0);
164
165#if DEBUG_PCI
166dump_pci_dt(root_pci_dev->children);
167pause();
168#endif
169}
170
171static char dev_path[256];
172char *get_pci_dev_path(pci_dt_t *pci_dt)
173{
174pci_dt_t*current;
175pci_dt_t*end;
176chartmp[64];
177
178dev_path[0] = 0;
179end = root_pci_dev;
180
181int uid = getPciRootUID();
182while (end != pci_dt)
183{
184current = pci_dt;
185while (current->parent != end)
186current = current->parent;
187end = current;
188if (current->parent == root_pci_dev)
189{
190sprintf(tmp, "PciRoot(0x%x)/Pci(0x%x,0x%x)", uid,
191current->dev.bits.dev, current->dev.bits.func);
192}
193else
194{
195sprintf(tmp, "/Pci(0x%x,0x%x)",
196current->dev.bits.dev, current->dev.bits.func);
197}
198strcat(dev_path, tmp);
199}
200return dev_path;
201}
202
203void dump_pci_dt(pci_dt_t *pci_dt)
204{
205pci_dt_t*current;
206
207current = pci_dt;
208while (current)
209{
210printf("%02x:%02x.%x [%04x%02x] [%04x:%04x] (subsys [%04x:%04x]):: %s\n",
211current->dev.bits.bus, current->dev.bits.dev, current->dev.bits.func,
212current->class_id, current->vendor_id, current->device_id,
213current->subsys_id.subsys.vendor_id, current->subsys_id.subsys.device_id,
214get_pci_dev_path(current));
215dump_pci_dt(current->children);
216current = current->next;
217}
218}
219

Archive Download this file

Revision: 2238