blob: 019f8d05a46bb43e38d758d5a7f1c9f2b96167dd [file] [log] [blame]
Jordan Crouse7249f792008-03-20 00:11:05 +00001/*
Jordan Crouse7249f792008-03-20 00:11:05 +00002 *
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
Uwe Hermann3a406fe2008-03-20 01:11:28 +00008 *
Jordan Crouse7249f792008-03-20 00:11:05 +00009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Jordan Crouse7249f792008-03-20 00:11:05 +000013 */
14
15#include <arch/io.h>
Stefan Reinauer28dff392008-08-13 08:23:06 +000016#include <pci.h>
Uwe Hermann754edf72008-08-04 21:02:07 +000017#include <libpayload.h>
Jordan Crouse7249f792008-03-20 00:11:05 +000018#include "coreinfo.h"
19
Julius Wernereab2a292019-03-05 16:55:15 -080020#if CONFIG(MODULE_PCI)
Uwe Hermannab5b3e02008-03-31 20:30:18 +000021
Jordan Crouse7249f792008-03-20 00:11:05 +000022struct pci_devices {
Stefan Reinauer28dff392008-08-13 08:23:06 +000023 pcidev_t device;
Jordan Crouse7249f792008-03-20 00:11:05 +000024 unsigned int id;
25};
26
Stefan Reinauer10d0a812008-09-05 15:18:15 +000027#define MAX_PCI_DEVICES 64
28static struct pci_devices devices[MAX_PCI_DEVICES];
Jordan Crouse7249f792008-03-20 00:11:05 +000029static int devices_index;
30
Jordan Crouse7249f792008-03-20 00:11:05 +000031/* Number of entries to show in the list */
32#define MENU_VISIBLE 16
33
34static int menu_selected = 0;
35static int menu_first = 0;
36
37static void swap(struct pci_devices *a, struct pci_devices *b)
38{
39 struct pci_devices tmp;
40
41 tmp.device = a->device;
42 tmp.id = a->id;
43
44 a->device = b->device;
45 a->id = b->id;
46
47 b->device = tmp.device;
48 b->id = tmp.id;
49}
50
51static int partition(struct pci_devices *list, int len)
52{
Jacob Garbera711e9c2019-06-28 10:58:56 -060053 pcidev_t val = list[len / 2].device;
Jordan Crouse7249f792008-03-20 00:11:05 +000054 int index = 0;
55 int i;
56
57 swap(&list[len / 2], &list[len - 1]);
58
Uwe Hermann3a406fe2008-03-20 01:11:28 +000059 for (i = 0; i < len - 1; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +000060 if (list[i].device < val) {
61 swap(&list[i], &list[index]);
62 index++;
63 }
64 }
65
66 swap(&list[index], &list[len - 1]);
Uwe Hermann3a406fe2008-03-20 01:11:28 +000067
Jordan Crouse7249f792008-03-20 00:11:05 +000068 return index;
69}
70
71static void quicksort(struct pci_devices *list, int len)
72{
73 int index;
74
75 if (len <= 1)
76 return;
77
78 index = partition(list, len);
79
80 quicksort(list, index);
81 quicksort(&(list[index]), len - index);
82}
83
Uwe Hermann35845a22008-03-20 20:05:22 +000084static void show_config_space(WINDOW *win, int row, int col, int index)
Jordan Crouse7249f792008-03-20 00:11:05 +000085{
Stefan Reinauer28dff392008-08-13 08:23:06 +000086 unsigned char cspace[256];
87 pcidev_t dev;
Jordan Crouse7249f792008-03-20 00:11:05 +000088 int i, x, y;
89
Stefan Reinauer28dff392008-08-13 08:23:06 +000090 dev = devices[index].device;
Jordan Crouse7249f792008-03-20 00:11:05 +000091
Stefan Reinauer28dff392008-08-13 08:23:06 +000092 for (i = 0; i < 256; i ++)
93 cspace[i] = pci_read_config8(dev, i);
Jordan Crouse7249f792008-03-20 00:11:05 +000094
Stefan Reinauer28dff392008-08-13 08:23:06 +000095 for (y = 0; y < 16; y++) {
Uwe Hermann3a406fe2008-03-20 01:11:28 +000096 for (x = 0; x < 16; x++)
97 mvwprintw(win, row + y, col + (x * 3), "%2.2X ",
98 cspace[(y * 16) + x]);
Jordan Crouse7249f792008-03-20 00:11:05 +000099 }
100}
101
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000102static int pci_module_redraw(WINDOW *win)
Jordan Crouse7249f792008-03-20 00:11:05 +0000103{
Stefan Reinauer28dff392008-08-13 08:23:06 +0000104 unsigned int bus, slot, func;
Jacob Garberdce10f82019-04-06 16:10:36 -0600105 int i;
Jordan Crouse7249f792008-03-20 00:11:05 +0000106
107 print_module_title(win, "PCI Device List");
108
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000109 for (i = 0; i < MENU_VISIBLE; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000110 int item = menu_first + i;
111
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000112 /* Draw a blank space. */
Jordan Crouse7249f792008-03-20 00:11:05 +0000113 if (item >= devices_index) {
114 wattrset(win, COLOR_PAIR(2));
115 mvwprintw(win, 2 + i, 1, " ");
116 continue;
117 }
118
Stefan Reinauer28dff392008-08-13 08:23:06 +0000119 bus = PCI_BUS(devices[item].device);
120 slot = PCI_SLOT(devices[item].device);
121 func = PCI_FUNC(devices[item].device);
Jordan Crouse7249f792008-03-20 00:11:05 +0000122
123 if (item == menu_selected)
124 wattrset(win, COLOR_PAIR(3) | A_BOLD);
125 else
126 wattrset(win, COLOR_PAIR(2));
127
Uwe Hermanna0c00932008-03-27 20:46:49 +0000128 mvwprintw(win, 2 + i, 1, "%X:%2.2X.%2.2X %04X:%04X ",
Stefan Reinauer28dff392008-08-13 08:23:06 +0000129 bus, slot, func,
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000130 devices[item].id & 0xffff,
131 (devices[item].id >> 16) & 0xffff);
Jordan Crouse7249f792008-03-20 00:11:05 +0000132
133 wattrset(win, COLOR_PAIR(2));
134
135 if (i == 0) {
136 if (item != 0)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000137 mvwaddch(win, 2 + i, 19, ACS_UARROW);
Jordan Crouse7249f792008-03-20 00:11:05 +0000138 }
139 if (i == MENU_VISIBLE - 1) {
140 if ((item + 1) < devices_index)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000141 mvwaddch(win, 2 + i, 19, ACS_DARROW);
Jordan Crouse7249f792008-03-20 00:11:05 +0000142 }
143 }
144
145 wattrset(win, COLOR_PAIR(2));
146
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000147 for (i = 0; i < 16; i++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000148 mvwprintw(win, 2, 26 + (i * 3), "%2.2X ", i);
149
150 wmove(win, 3, 25);
151
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000152 for (i = 0; i < 48; i++)
Ulf Jordand133d9a2008-08-11 20:35:32 +0000153 waddch(win, (i == 0) ? ACS_ULCORNER : ACS_HLINE);
Jordan Crouse7249f792008-03-20 00:11:05 +0000154
Stefan Reinauer28dff392008-08-13 08:23:06 +0000155 for (i = 0; i < 16; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000156 mvwprintw(win, 4 + i, 23, "%2.2X", i * 16);
157 wmove(win, 4 + i, 25);
Ulf Jordand133d9a2008-08-11 20:35:32 +0000158 waddch(win, ACS_VLINE);
Jordan Crouse7249f792008-03-20 00:11:05 +0000159 }
160
161 show_config_space(win, 4, 26, menu_selected);
162
163 return 0;
164}
165
166static void pci_scan_bus(int bus)
167{
Stefan Reinauer28dff392008-08-13 08:23:06 +0000168 int slot, func;
Jordan Crouse7249f792008-03-20 00:11:05 +0000169 unsigned int val;
170 unsigned char hdr;
171
Stefan Reinauerbc5379a2008-08-13 09:38:12 +0000172 for (slot = 0; slot < 0x20; slot++) {
Stefan Reinauer28dff392008-08-13 08:23:06 +0000173 for (func = 0; func < 8; func++) {
174 pcidev_t dev = PCI_DEV(bus, slot, func);
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000175
176 val = pci_read_config32(dev, REG_VENDOR_ID);
Jordan Crouse7249f792008-03-20 00:11:05 +0000177
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000178 /* Nobody home. */
Jordan Crouse7249f792008-03-20 00:11:05 +0000179 if (val == 0xffffffff || val == 0x00000000 ||
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300180 val == 0x0000ffff || val == 0xffff0000) {
181
182 /* If function 0 is not present, no need
183 * to test other functions. */
184 if (func == 0)
185 func = 8;
Jordan Crouse7249f792008-03-20 00:11:05 +0000186 continue;
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300187 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000188
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000189 /* FIXME: Remove this arbitrary limitation. */
Stefan Reinauer10d0a812008-09-05 15:18:15 +0000190 if (devices_index >= MAX_PCI_DEVICES)
Jordan Crouse7249f792008-03-20 00:11:05 +0000191 return;
192
Stefan Reinauer14e22772010-04-27 06:56:47 +0000193 devices[devices_index].device =
Stefan Reinauer28dff392008-08-13 08:23:06 +0000194 PCI_DEV(bus, slot, func);
Jordan Crouse7249f792008-03-20 00:11:05 +0000195
196 devices[devices_index++].id = val;
197
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000198 /* If this is a bridge, then follow it. */
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000199 hdr = pci_read_config8(dev, REG_HEADER_TYPE);
Kyösti Mälkki1dc5ce32018-06-09 08:25:03 +0300200
201 if ((func == 0) && !(hdr & HEADER_TYPE_MULTIFUNCTION))
202 func = 8;
203
204 hdr &= ~HEADER_TYPE_MULTIFUNCTION;
Jordan Crouse7249f792008-03-20 00:11:05 +0000205 if (hdr == HEADER_TYPE_BRIDGE ||
206 hdr == HEADER_TYPE_CARDBUS) {
207 unsigned int busses;
208
Stefan Reinauer88ad6b02008-08-07 19:09:17 +0000209 busses = pci_read_config32(dev, REG_PRIMARY_BUS);
Jordan Crouse7249f792008-03-20 00:11:05 +0000210
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000211 pci_scan_bus((busses >> 8) & 0xff);
Jordan Crouse7249f792008-03-20 00:11:05 +0000212
213 }
214 }
215 }
216
217 quicksort(devices, devices_index);
218}
219
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000220static int pci_module_handle(int key)
Jordan Crouse7249f792008-03-20 00:11:05 +0000221{
222 int ret = 0;
223
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000224 switch (key) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000225 case KEY_DOWN:
226 if (menu_selected + 1 < devices_index) {
227 menu_selected++;
228 ret = 1;
229 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000230 break;
Jordan Crouse7249f792008-03-20 00:11:05 +0000231 case KEY_UP:
232 if (menu_selected > 0) {
233 menu_selected--;
234 ret = 1;
235 }
Jordan Crouse7249f792008-03-20 00:11:05 +0000236 break;
237 }
238
239 if (!ret)
240 return ret;
241
242 if (menu_selected < menu_first)
243 menu_first = menu_selected;
244 else if (menu_selected >= menu_first + MENU_VISIBLE) {
245 menu_first = menu_selected - (MENU_VISIBLE - 1);
246 if (menu_first < 0)
247 menu_first = 0;
248 }
249
Jordan Crouse7249f792008-03-20 00:11:05 +0000250 return ret;
251}
252
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000253static int pci_module_init(void)
Jordan Crouse7249f792008-03-20 00:11:05 +0000254{
Jordan Crouse7249f792008-03-20 00:11:05 +0000255 pci_scan_bus(0);
Jordan Crouse7249f792008-03-20 00:11:05 +0000256 return 0;
257}
258
259struct coreinfo_module pci_module = {
260 .name = "PCI",
261 .init = pci_module_init,
262 .redraw = pci_module_redraw,
263 .handle = pci_module_handle,
264};
Uwe Hermannab5b3e02008-03-31 20:30:18 +0000265
266#else
267
268struct coreinfo_module pci_module = {
269};
270
271#endif