blob: 9f10b12703b5be861df259e1739424bb4f7e3cae [file] [log] [blame]
Jordan Crouse7249f792008-03-20 00:11:05 +00001/*
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.
Uwe Hermann3a406fe2008-03-20 01:11:28 +00009 *
Jordan Crouse7249f792008-03-20 00:11:05 +000010 * 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.
Jordan Crouse7249f792008-03-20 00:11:05 +000014 */
15
16#include <arch/io.h>
Stefan Reinauer28dff392008-08-13 08:23:06 +000017#include <pci.h>
Uwe Hermann754edf72008-08-04 21:02:07 +000018#include <libpayload.h>
Jordan Crouse7249f792008-03-20 00:11:05 +000019#include "coreinfo.h"
20
Stefan Reinauer04fb7a82015-06-29 16:08:39 -070021#if IS_ENABLED(CONFIG_MODULE_PCI)
Uwe Hermannab5b3e02008-03-31 20:30:18 +000022
Jordan Crouse7249f792008-03-20 00:11:05 +000023struct pci_devices {
Stefan Reinauer28dff392008-08-13 08:23:06 +000024 pcidev_t device;
Jordan Crouse7249f792008-03-20 00:11:05 +000025 unsigned int id;
26};
27
Stefan Reinauer10d0a812008-09-05 15:18:15 +000028#define MAX_PCI_DEVICES 64
29static struct pci_devices devices[MAX_PCI_DEVICES];
Jordan Crouse7249f792008-03-20 00:11:05 +000030static int devices_index;
31
Jordan Crouse7249f792008-03-20 00:11:05 +000032/* Number of entries to show in the list */
33#define MENU_VISIBLE 16
34
35static int menu_selected = 0;
36static int menu_first = 0;
37
38static void swap(struct pci_devices *a, struct pci_devices *b)
39{
40 struct pci_devices tmp;
41
42 tmp.device = a->device;
43 tmp.id = a->id;
44
45 a->device = b->device;
46 a->id = b->id;
47
48 b->device = tmp.device;
49 b->id = tmp.id;
50}
51
52static int partition(struct pci_devices *list, int len)
53{
54 int val = list[len / 2].device;
55 int index = 0;
56 int i;
57
58 swap(&list[len / 2], &list[len - 1]);
59
Uwe Hermann3a406fe2008-03-20 01:11:28 +000060 for (i = 0; i < len - 1; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +000061 if (list[i].device < val) {
62 swap(&list[i], &list[index]);
63 index++;
64 }
65 }
66
67 swap(&list[index], &list[len - 1]);
Uwe Hermann3a406fe2008-03-20 01:11:28 +000068
Jordan Crouse7249f792008-03-20 00:11:05 +000069 return index;
70}
71
72static void quicksort(struct pci_devices *list, int len)
73{
74 int index;
75
76 if (len <= 1)
77 return;
78
79 index = partition(list, len);
80
81 quicksort(list, index);
82 quicksort(&(list[index]), len - index);
83}
84
Uwe Hermann35845a22008-03-20 20:05:22 +000085static void show_config_space(WINDOW *win, int row, int col, int index)
Jordan Crouse7249f792008-03-20 00:11:05 +000086{
Stefan Reinauer28dff392008-08-13 08:23:06 +000087 unsigned char cspace[256];
88 pcidev_t dev;
Jordan Crouse7249f792008-03-20 00:11:05 +000089 int i, x, y;
90
Stefan Reinauer28dff392008-08-13 08:23:06 +000091 dev = devices[index].device;
Jordan Crouse7249f792008-03-20 00:11:05 +000092
Stefan Reinauer28dff392008-08-13 08:23:06 +000093 for (i = 0; i < 256; i ++)
94 cspace[i] = pci_read_config8(dev, i);
Jordan Crouse7249f792008-03-20 00:11:05 +000095
Stefan Reinauer28dff392008-08-13 08:23:06 +000096 for (y = 0; y < 16; y++) {
Uwe Hermann3a406fe2008-03-20 01:11:28 +000097 for (x = 0; x < 16; x++)
98 mvwprintw(win, row + y, col + (x * 3), "%2.2X ",
99 cspace[(y * 16) + x]);
Jordan Crouse7249f792008-03-20 00:11:05 +0000100 }
101}
102
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000103static int pci_module_redraw(WINDOW *win)
Jordan Crouse7249f792008-03-20 00:11:05 +0000104{
Stefan Reinauer28dff392008-08-13 08:23:06 +0000105 unsigned int bus, slot, func;
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000106 int i, last;
Jordan Crouse7249f792008-03-20 00:11:05 +0000107
108 print_module_title(win, "PCI Device List");
109
110 last = menu_first + MENU_VISIBLE;
111
112 if (last > devices_index)
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000113 last = devices_index;
Jordan Crouse7249f792008-03-20 00:11:05 +0000114
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000115 for (i = 0; i < MENU_VISIBLE; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000116 int item = menu_first + i;
117
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000118 /* Draw a blank space. */
Jordan Crouse7249f792008-03-20 00:11:05 +0000119 if (item >= devices_index) {
120 wattrset(win, COLOR_PAIR(2));
121 mvwprintw(win, 2 + i, 1, " ");
122 continue;
123 }
124
Stefan Reinauer28dff392008-08-13 08:23:06 +0000125 bus = PCI_BUS(devices[item].device);
126 slot = PCI_SLOT(devices[item].device);
127 func = PCI_FUNC(devices[item].device);
Jordan Crouse7249f792008-03-20 00:11:05 +0000128
129 if (item == menu_selected)
130 wattrset(win, COLOR_PAIR(3) | A_BOLD);
131 else
132 wattrset(win, COLOR_PAIR(2));
133
Uwe Hermanna0c00932008-03-27 20:46:49 +0000134 mvwprintw(win, 2 + i, 1, "%X:%2.2X.%2.2X %04X:%04X ",
Stefan Reinauer28dff392008-08-13 08:23:06 +0000135 bus, slot, func,
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000136 devices[item].id & 0xffff,
137 (devices[item].id >> 16) & 0xffff);
Jordan Crouse7249f792008-03-20 00:11:05 +0000138
139 wattrset(win, COLOR_PAIR(2));
140
141 if (i == 0) {
142 if (item != 0)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000143 mvwaddch(win, 2 + i, 19, ACS_UARROW);
Jordan Crouse7249f792008-03-20 00:11:05 +0000144 }
145 if (i == MENU_VISIBLE - 1) {
146 if ((item + 1) < devices_index)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000147 mvwaddch(win, 2 + i, 19, ACS_DARROW);
Jordan Crouse7249f792008-03-20 00:11:05 +0000148 }
149 }
150
151 wattrset(win, COLOR_PAIR(2));
152
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000153 for (i = 0; i < 16; i++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000154 mvwprintw(win, 2, 26 + (i * 3), "%2.2X ", i);
155
156 wmove(win, 3, 25);
157
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000158 for (i = 0; i < 48; i++)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000159 waddch(win, (i == 0) ? ACS_ULCORNER : ACS_HLINE);
Jordan Crouse7249f792008-03-20 00:11:05 +0000160
Stefan Reinauer28dff392008-08-13 08:23:06 +0000161 for (i = 0; i < 16; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000162 mvwprintw(win, 4 + i, 23, "%2.2X", i * 16);
163 wmove(win, 4 + i, 25);
Ulf Jordand133d9a2008-08-11 20:35:32 +0000164 waddch(win, ACS_VLINE);
Jordan Crouse7249f792008-03-20 00:11:05 +0000165 }
166
167 show_config_space(win, 4, 26, menu_selected);
168
169 return 0;
170}
171
172static void pci_scan_bus(int bus)
173{
Stefan Reinauer28dff392008-08-13 08:23:06 +0000174 int slot, func;
Jordan Crouse7249f792008-03-20 00:11:05 +0000175 unsigned int val;
176 unsigned char hdr;
177
Stefan Reinauerbc5379a2008-08-13 09:38:12 +0000178 for (slot = 0; slot < 0x20; slot++) {
Stefan Reinauer28dff392008-08-13 08:23:06 +0000179 for (func = 0; func < 8; func++) {
180 pcidev_t dev = PCI_DEV(bus, slot, func);
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000181
182 val = pci_read_config32(dev, REG_VENDOR_ID);
Jordan Crouse7249f792008-03-20 00:11:05 +0000183
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000184 /* Nobody home. */
Jordan Crouse7249f792008-03-20 00:11:05 +0000185 if (val == 0xffffffff || val == 0x00000000 ||
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300186 val == 0x0000ffff || val == 0xffff0000) {
187
188 /* If function 0 is not present, no need
189 * to test other functions. */
190 if (func == 0)
191 func = 8;
Jordan Crouse7249f792008-03-20 00:11:05 +0000192 continue;
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300193 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000194
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000195 /* FIXME: Remove this arbitrary limitation. */
Stefan Reinauer10d0a812008-09-05 15:18:15 +0000196 if (devices_index >= MAX_PCI_DEVICES)
Jordan Crouse7249f792008-03-20 00:11:05 +0000197 return;
198
Stefan Reinauer14e22772010-04-27 06:56:47 +0000199 devices[devices_index].device =
Stefan Reinauer28dff392008-08-13 08:23:06 +0000200 PCI_DEV(bus, slot, func);
Jordan Crouse7249f792008-03-20 00:11:05 +0000201
202 devices[devices_index++].id = val;
203
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000204 /* If this is a bridge, then follow it. */
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000205 hdr = pci_read_config8(dev, REG_HEADER_TYPE);
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300206
207 if ((func == 0) && !(hdr & HEADER_TYPE_MULTIFUNCTION))
208 func = 8;
209
210 hdr &= ~HEADER_TYPE_MULTIFUNCTION;
Jordan Crouse7249f792008-03-20 00:11:05 +0000211 if (hdr == HEADER_TYPE_BRIDGE ||
212 hdr == HEADER_TYPE_CARDBUS) {
213 unsigned int busses;
214
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000215 busses = pci_read_config32(dev, REG_PRIMARY_BUS);
Jordan Crouse7249f792008-03-20 00:11:05 +0000216
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000217 pci_scan_bus((busses >> 8) & 0xff);
Jordan Crouse7249f792008-03-20 00:11:05 +0000218
219 }
220 }
221 }
222
223 quicksort(devices, devices_index);
224}
225
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000226static int pci_module_handle(int key)
Jordan Crouse7249f792008-03-20 00:11:05 +0000227{
228 int ret = 0;
229
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000230 switch (key) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000231 case KEY_DOWN:
232 if (menu_selected + 1 < devices_index) {
233 menu_selected++;
234 ret = 1;
235 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000236 break;
Jordan Crouse7249f792008-03-20 00:11:05 +0000237 case KEY_UP:
238 if (menu_selected > 0) {
239 menu_selected--;
240 ret = 1;
241 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000242 break;
243 }
244
245 if (!ret)
246 return ret;
247
248 if (menu_selected < menu_first)
249 menu_first = menu_selected;
250 else if (menu_selected >= menu_first + MENU_VISIBLE) {
251 menu_first = menu_selected - (MENU_VISIBLE - 1);
252 if (menu_first < 0)
253 menu_first = 0;
254 }
255
Jordan Crouse7249f792008-03-20 00:11:05 +0000256 return ret;
257}
258
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000259static int pci_module_init(void)
Jordan Crouse7249f792008-03-20 00:11:05 +0000260{
Jordan Crouse7249f792008-03-20 00:11:05 +0000261 pci_scan_bus(0);
Jordan Crouse7249f792008-03-20 00:11:05 +0000262 return 0;
263}
264
265struct coreinfo_module pci_module = {
266 .name = "PCI",
267 .init = pci_module_init,
268 .redraw = pci_module_redraw,
269 .handle = pci_module_handle,
270};
Uwe Hermannab5b3e02008-03-31 20:30:18 +0000271
272#else
273
274struct coreinfo_module pci_module = {
275};
276
277#endif