Drop useless .gitignore files.
[coreboot.git] / payloads / coreinfo / pci_module.c
1 /*
2  * This file is part of the coreinfo project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <arch/io.h>
21 #include <libpayload.h>
22 #include "coreinfo.h"
23
24 #ifdef CONFIG_MODULE_PCI
25
26 struct pci_devices {
27         unsigned short device;
28         unsigned int id;
29 };
30
31 static struct pci_devices devices[64];
32 static int devices_index;
33
34 /* Number of entries to show in the list */
35 #define MENU_VISIBLE 16
36
37 static int menu_selected = 0;
38 static int menu_first = 0;
39
40 static void swap(struct pci_devices *a, struct pci_devices *b)
41 {
42         struct pci_devices tmp;
43
44         tmp.device = a->device;
45         tmp.id = a->id;
46
47         a->device = b->device;
48         a->id = b->id;
49
50         b->device = tmp.device;
51         b->id = tmp.id;
52 }
53
54 static int partition(struct pci_devices *list, int len)
55 {
56         int val = list[len / 2].device;
57         int index = 0;
58         int i;
59
60         swap(&list[len / 2], &list[len - 1]);
61
62         for (i = 0; i < len - 1; i++) {
63                 if (list[i].device < val) {
64                         swap(&list[i], &list[index]);
65                         index++;
66                 }
67         }
68
69         swap(&list[index], &list[len - 1]);
70
71         return index;
72 }
73
74 static void quicksort(struct pci_devices *list, int len)
75 {
76         int index;
77
78         if (len <= 1)
79                 return;
80
81         index = partition(list, len);
82
83         quicksort(list, index);
84         quicksort(&(list[index]), len - index);
85 }
86
87 static void show_config_space(WINDOW *win, int row, int col, int index)
88 {
89         unsigned char cspace[64];
90         int bus, devfn;
91         int i, x, y;
92
93         bus = (devices[index].device >> 8) & 0xff;
94         devfn = devices[index].device & 0xff;
95
96         for (i = 0; i < 64; i += 4)
97                 cspace[i] = pci_read_config32(PCI_DEV(bus, PCI_SLOT(devfn),
98                                         PCI_FUNC(devfn)), i);
99
100         for (y = 0; y < 4; y++) {
101                 for (x = 0; x < 16; x++)
102                         mvwprintw(win, row + y, col + (x * 3), "%2.2X ",
103                                   cspace[(y * 16) + x]);
104         }
105 }
106
107 static int pci_module_redraw(WINDOW *win)
108 {
109         unsigned int bus, devfn, func;
110         int i, last;
111
112         print_module_title(win, "PCI Device List");
113
114         last = menu_first + MENU_VISIBLE;
115
116         if (last > devices_index)
117                 last = devices_index;
118
119         for (i = 0; i < MENU_VISIBLE; i++) {
120                 int item = menu_first + i;
121
122                 /* Draw a blank space. */
123                 if (item >= devices_index) {
124                         wattrset(win, COLOR_PAIR(2));
125                         mvwprintw(win, 2 + i, 1, "                 ");
126                         continue;
127                 }
128
129                 bus = (devices[item].device >> 8) & 0xff;
130                 devfn = (devices[item].device & 0xff) / 8;
131                 func = (devices[item].device & 0xff) % 8;
132
133                 if (item == menu_selected)
134                         wattrset(win, COLOR_PAIR(3) | A_BOLD);
135                 else
136                         wattrset(win, COLOR_PAIR(2));
137
138                 mvwprintw(win, 2 + i, 1, "%X:%2.2X.%2.2X %04X:%04X  ",
139                           bus, devfn, func,
140                           devices[item].id & 0xffff,
141                           (devices[item].id >> 16) & 0xffff);
142
143                 wattrset(win, COLOR_PAIR(2));
144
145                 if (i == 0) {
146                         if (item != 0)
147                                 mvwprintw(win, 2 + i, 19, "\30");
148                 }
149                 if (i == MENU_VISIBLE - 1) {
150                         if ((item + 1) < devices_index)
151                                 mvwprintw(win, 2 + i, 19, "\31");
152                 }
153         }
154
155         wattrset(win, COLOR_PAIR(2));
156
157         for (i = 0; i < 16; i++)
158                 mvwprintw(win, 2, 26 + (i * 3), "%2.2X ", i);
159
160         wmove(win, 3, 25);
161
162         for (i = 0; i < 48; i++)
163                 waddch(win, (i == 0) ? '\332' : '\304');
164
165         for (i = 0; i < 4; i++) {
166                 mvwprintw(win, 4 + i, 23, "%2.2X", i * 16);
167                 wmove(win, 4 + i, 25);
168                 waddch(win, '\263');
169         }
170
171         show_config_space(win, 4, 26, menu_selected);
172
173         return 0;
174 }
175
176 static void pci_scan_bus(int bus)
177 {
178         int devfn, func;
179         unsigned int val;
180         unsigned char hdr;
181
182         for (devfn = 0; devfn < 0x100;) {
183                 for (func = 0; func < 8; func++, devfn++) {
184                         pcidev_t dev = PCI_DEV(bus, PCI_SLOT(devfn),
185                                         PCI_FUNC(devfn));
186
187                         val = pci_read_config32(dev, REG_VENDOR_ID);
188
189                         /* Nobody home. */
190                         if (val == 0xffffffff || val == 0x00000000 ||
191                             val == 0x0000ffff || val == 0xffff0000)
192                                 continue;
193
194                         /* FIXME: Remove this arbitrary limitation. */
195                         if (devices_index >= 64)
196                                 return;
197
198                         devices[devices_index].device =
199                             ((bus & 0xff) << 8) | (devfn & 0xff);
200
201                         devices[devices_index++].id = val;
202
203                         /* If this is a bridge, then follow it. */
204                         hdr = pci_read_config8(dev, REG_HEADER_TYPE);
205                         hdr &= 0x7f;
206                         if (hdr == HEADER_TYPE_BRIDGE ||
207                             hdr == HEADER_TYPE_CARDBUS) {
208                                 unsigned int busses;
209
210                                 busses = pci_read_config32(dev, REG_PRIMARY_BUS);
211
212                                 pci_scan_bus((busses >> 8) & 0xff);
213
214                         }
215                 }
216         }
217
218         quicksort(devices, devices_index);
219 }
220
221 static int pci_module_handle(int key)
222 {
223         int ret = 0;
224
225         switch (key) {
226         case KEY_DOWN:
227                 if (menu_selected + 1 < devices_index) {
228                         menu_selected++;
229                         ret = 1;
230                 }
231                 break;
232         case KEY_UP:
233                 if (menu_selected > 0) {
234                         menu_selected--;
235                         ret = 1;
236                 }
237                 break;
238         }
239
240         if (!ret)
241                 return ret;
242
243         if (menu_selected < menu_first)
244                 menu_first = menu_selected;
245         else if (menu_selected >= menu_first + MENU_VISIBLE) {
246                 menu_first = menu_selected - (MENU_VISIBLE - 1);
247                 if (menu_first < 0)
248                         menu_first = 0;
249         }
250
251         return ret;
252 }
253
254 static int pci_module_init(void)
255 {
256         pci_scan_bus(0);
257         return 0;
258 }
259
260 struct coreinfo_module pci_module = {
261         .name = "PCI",
262         .init = pci_module_init,
263         .redraw = pci_module_redraw,
264         .handle = pci_module_handle,
265 };
266
267 #else
268
269 struct coreinfo_module pci_module = {
270 };
271
272 #endif