commit real fix to pci module of coreinfo (trivial)
[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 <pci.h>
22 #include <libpayload.h>
23 #include "coreinfo.h"
24
25 #ifdef CONFIG_MODULE_PCI
26
27 struct pci_devices {
28         pcidev_t device;
29         unsigned int id;
30 };
31
32 static struct pci_devices devices[64];
33 static int devices_index;
34
35 /* Number of entries to show in the list */
36 #define MENU_VISIBLE 16
37
38 static int menu_selected = 0;
39 static int menu_first = 0;
40
41 static void swap(struct pci_devices *a, struct pci_devices *b)
42 {
43         struct pci_devices tmp;
44
45         tmp.device = a->device;
46         tmp.id = a->id;
47
48         a->device = b->device;
49         a->id = b->id;
50
51         b->device = tmp.device;
52         b->id = tmp.id;
53 }
54
55 static int partition(struct pci_devices *list, int len)
56 {
57         int val = list[len / 2].device;
58         int index = 0;
59         int i;
60
61         swap(&list[len / 2], &list[len - 1]);
62
63         for (i = 0; i < len - 1; i++) {
64                 if (list[i].device < val) {
65                         swap(&list[i], &list[index]);
66                         index++;
67                 }
68         }
69
70         swap(&list[index], &list[len - 1]);
71
72         return index;
73 }
74
75 static void quicksort(struct pci_devices *list, int len)
76 {
77         int index;
78
79         if (len <= 1)
80                 return;
81
82         index = partition(list, len);
83
84         quicksort(list, index);
85         quicksort(&(list[index]), len - index);
86 }
87
88 static void show_config_space(WINDOW *win, int row, int col, int index)
89 {
90         unsigned char cspace[256];
91         pcidev_t dev;
92         int i, x, y;
93
94         dev = devices[index].device;
95
96         for (i = 0; i < 256; i ++)
97                 cspace[i] = pci_read_config8(dev, i);
98
99         for (y = 0; y < 16; y++) {
100                 for (x = 0; x < 16; x++)
101                         mvwprintw(win, row + y, col + (x * 3), "%2.2X ",
102                                   cspace[(y * 16) + x]);
103         }
104 }
105
106 static int pci_module_redraw(WINDOW *win)
107 {
108         unsigned int bus, slot, func;
109         int i, last;
110
111         print_module_title(win, "PCI Device List");
112
113         last = menu_first + MENU_VISIBLE;
114
115         if (last > devices_index)
116                 last = devices_index;
117
118         for (i = 0; i < MENU_VISIBLE; i++) {
119                 int item = menu_first + i;
120
121                 /* Draw a blank space. */
122                 if (item >= devices_index) {
123                         wattrset(win, COLOR_PAIR(2));
124                         mvwprintw(win, 2 + i, 1, "                 ");
125                         continue;
126                 }
127
128                 bus = PCI_BUS(devices[item].device);
129                 slot = PCI_SLOT(devices[item].device);
130                 func = PCI_FUNC(devices[item].device);
131
132                 if (item == menu_selected)
133                         wattrset(win, COLOR_PAIR(3) | A_BOLD);
134                 else
135                         wattrset(win, COLOR_PAIR(2));
136
137                 mvwprintw(win, 2 + i, 1, "%X:%2.2X.%2.2X %04X:%04X  ",
138                           bus, slot, func,
139                           devices[item].id & 0xffff,
140                           (devices[item].id >> 16) & 0xffff);
141
142                 wattrset(win, COLOR_PAIR(2));
143
144                 if (i == 0) {
145                         if (item != 0)
146                                 mvwaddch(win, 2 + i, 19, ACS_UARROW);
147                 }
148                 if (i == MENU_VISIBLE - 1) {
149                         if ((item + 1) < devices_index)
150                                 mvwaddch(win, 2 + i, 19, ACS_DARROW);
151                 }
152         }
153
154         wattrset(win, COLOR_PAIR(2));
155
156         for (i = 0; i < 16; i++)
157                 mvwprintw(win, 2, 26 + (i * 3), "%2.2X ", i);
158
159         wmove(win, 3, 25);
160
161         for (i = 0; i < 48; i++)
162                 waddch(win, (i == 0) ? ACS_ULCORNER : ACS_HLINE);
163
164         for (i = 0; i < 16; i++) {
165                 mvwprintw(win, 4 + i, 23, "%2.2X", i * 16);
166                 wmove(win, 4 + i, 25);
167                 waddch(win, ACS_VLINE);
168         }
169
170         show_config_space(win, 4, 26, menu_selected);
171
172         return 0;
173 }
174
175 static void pci_scan_bus(int bus)
176 {
177         int slot, func;
178         unsigned int val;
179         unsigned char hdr;
180
181         for (slot = 0; slot < 0x1f; slot++) {
182                 for (func = 0; func < 8; func++) {
183                         pcidev_t dev = PCI_DEV(bus, slot, func);
184
185                         val = pci_read_config32(dev, REG_VENDOR_ID);
186
187                         /* Nobody home. */
188                         if (val == 0xffffffff || val == 0x00000000 ||
189                             val == 0x0000ffff || val == 0xffff0000)
190                                 continue;
191
192                         /* FIXME: Remove this arbitrary limitation. */
193                         if (devices_index >= 64)
194                                 return;
195
196                         devices[devices_index].device = 
197                             PCI_DEV(bus, slot, func);
198
199                         devices[devices_index++].id = val;
200
201                         /* If this is a bridge, then follow it. */
202                         hdr = pci_read_config8(dev, REG_HEADER_TYPE);
203                         hdr &= 0x7f;
204                         if (hdr == HEADER_TYPE_BRIDGE ||
205                             hdr == HEADER_TYPE_CARDBUS) {
206                                 unsigned int busses;
207
208                                 busses = pci_read_config32(dev, REG_PRIMARY_BUS);
209
210                                 pci_scan_bus((busses >> 8) & 0xff);
211
212                         }
213                 }
214         }
215
216         quicksort(devices, devices_index);
217 }
218
219 static int pci_module_handle(int key)
220 {
221         int ret = 0;
222
223         switch (key) {
224         case KEY_DOWN:
225                 if (menu_selected + 1 < devices_index) {
226                         menu_selected++;
227                         ret = 1;
228                 }
229                 break;
230         case KEY_UP:
231                 if (menu_selected > 0) {
232                         menu_selected--;
233                         ret = 1;
234                 }
235                 break;
236         }
237
238         if (!ret)
239                 return ret;
240
241         if (menu_selected < menu_first)
242                 menu_first = menu_selected;
243         else if (menu_selected >= menu_first + MENU_VISIBLE) {
244                 menu_first = menu_selected - (MENU_VISIBLE - 1);
245                 if (menu_first < 0)
246                         menu_first = 0;
247         }
248
249         return ret;
250 }
251
252 static int pci_module_init(void)
253 {
254         pci_scan_bus(0);
255         return 0;
256 }
257
258 struct coreinfo_module pci_module = {
259         .name = "PCI",
260         .init = pci_module_init,
261         .redraw = pci_module_redraw,
262         .handle = pci_module_handle,
263 };
264
265 #else
266
267 struct coreinfo_module pci_module = {
268 };
269
270 #endif