]> git.proxmox.com Git - grub2.git/blob - grub-core/commands/lspci.c
Import grub2_2.02+dfsg1.orig.tar.xz
[grub2.git] / grub-core / commands / lspci.c
1 /* lspci.c - List PCI devices. */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2008, 2009 Free Software Foundation, Inc.
5 *
6 * GRUB 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, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <grub/pci.h>
21 #include <grub/dl.h>
22 #include <grub/misc.h>
23 #include <grub/extcmd.h>
24 #include <grub/i18n.h>
25 #include <grub/mm.h>
26
27 GRUB_MOD_LICENSE ("GPLv3+");
28
29 struct grub_pci_classname
30 {
31 int class;
32 int subclass;
33 const char *desc;
34 };
35
36 static const struct grub_pci_classname grub_pci_classes[] =
37 {
38 { 0, 0, "" },
39 { 1, 0, "SCSI Controller" },
40 { 1, 1, "IDE Controller" },
41 { 1, 2, "Floppy Controller" },
42 { 1, 3, "IPI Controller" },
43 { 1, 4, "RAID Controller" },
44 { 1, 6, "SATA Controller" },
45 { 1, 0x80, "Mass storage Controller" },
46 { 2, 0, "Ethernet Controller" },
47 { 2, 1, "Token Ring Controller" },
48 { 2, 2, "FDDI Controller" },
49 { 2, 3, "ATM Controller" },
50 { 2, 4, "ISDN Controller" },
51 { 2, 0x80, "Network controller" },
52 { 3, 0, "VGA Controller" },
53 { 3, 1, "XGA Controller" },
54 { 3, 2, "3D Controller" },
55 { 3, 0x80, "Display Controller" },
56 { 4, 0, "Multimedia Video Device" },
57 { 4, 1, "Multimedia Audio Device" },
58 { 4, 2, "Multimedia Telephony Device" },
59 { 4, 0x80, "Multimedia device" },
60 { 5, 0, "RAM Controller" },
61 { 5, 1, "Flash Memory Controller" },
62 { 5, 0x80, "Memory Controller" },
63 { 6, 0, "Host Bridge" },
64 { 6, 1, "ISA Bridge" },
65 { 6, 2, "EISA Bride" },
66 { 6, 3, "MCA Bridge" },
67 { 6, 4, "PCI-PCI Bridge" },
68 { 6, 5, "PCMCIA Bridge" },
69 { 6, 6, "NuBus Bridge" },
70 { 6, 7, "CardBus Bridge" },
71 { 6, 8, "Raceway Bridge" },
72 { 6, 0x80, "Unknown Bridge" },
73 { 7, 0x80, "Communication controller" },
74 { 8, 0x80, "System hardware" },
75 { 9, 0, "Keyboard Controller" },
76 { 9, 1, "Digitizer" },
77 { 9, 2, "Mouse Controller" },
78 { 9, 3, "Scanner Controller" },
79 { 9, 4, "Gameport Controller" },
80 { 9, 0x80, "Unknown Input Device" },
81 { 10, 0, "Generic Docking Station" },
82 { 10, 0x80, "Unknown Docking Station" },
83 { 11, 0, "80386 Processor" },
84 { 11, 1, "80486 Processor" },
85 { 11, 2, "Pentium Processor" },
86 { 11, 0x10, "Alpha Processor" },
87 { 11, 0x20, "PowerPC Processor" },
88 { 11, 0x30, "MIPS Processor" },
89 { 11, 0x40, "Co-Processor" },
90 { 11, 0x80, "Unknown Processor" },
91 { 12, 3, "USB Controller" },
92 { 12, 0x80, "Serial Bus Controller" },
93 { 13, 0x80, "Wireless Controller" },
94 { 14, 0, "I2O" },
95 { 15, 0, "IrDA Controller" },
96 { 15, 1, "Consumer IR" },
97 { 15, 0x10, "RF-Controller" },
98 { 15, 0x80, "Satellite Communication Controller" },
99 { 16, 0, "Network Decryption" },
100 { 16, 1, "Entertainment Decryption" },
101 { 16, 0x80, "Unknown Decryption Controller" },
102 { 17, 0, "Digital IO Module" },
103 { 17, 0x80, "Unknown Data Input System" },
104 { 0, 0, 0 },
105 };
106
107 static const char *
108 grub_pci_get_class (int class, int subclass)
109 {
110 const struct grub_pci_classname *curr = grub_pci_classes;
111
112 while (curr->desc)
113 {
114 if (curr->class == class && curr->subclass == subclass)
115 return curr->desc;
116 curr++;
117 }
118
119 return 0;
120 }
121
122 static const struct grub_arg_option options[] =
123 {
124 {"iospace", 'i', 0, "show I/O spaces", 0, 0},
125 {0, 0, 0, 0, 0, 0}
126 };
127
128 static int iospace;
129
130 static int
131 grub_lspci_iter (grub_pci_device_t dev, grub_pci_id_t pciid,
132 void *data __attribute__ ((unused)))
133 {
134 grub_uint32_t class;
135 const char *sclass;
136 grub_pci_address_t addr;
137 int reg;
138
139 grub_printf ("%02x:%02x.%x %04x:%04x", grub_pci_get_bus (dev),
140 grub_pci_get_device (dev), grub_pci_get_function (dev),
141 pciid & 0xFFFF, pciid >> 16);
142 addr = grub_pci_make_address (dev, GRUB_PCI_REG_CLASS);
143 class = grub_pci_read (addr);
144
145 /* Lookup the class name, if there isn't a specific one,
146 retry with 0x80 to get the generic class name. */
147 sclass = grub_pci_get_class (class >> 24, (class >> 16) & 0xFF);
148 if (! sclass)
149 sclass = grub_pci_get_class (class >> 24, 0x80);
150 if (! sclass)
151 sclass = "";
152
153 grub_printf (" [%04x] %s", (class >> 16) & 0xffff, sclass);
154
155 grub_uint8_t pi = (class >> 8) & 0xff;
156 if (pi)
157 grub_printf (" [PI %02x]", pi);
158
159 grub_printf ("\n");
160
161 if (iospace)
162 {
163 reg = GRUB_PCI_REG_ADDRESSES;
164 while (reg < GRUB_PCI_REG_CIS_POINTER)
165 {
166 grub_uint64_t space;
167 addr = grub_pci_make_address (dev, reg);
168 space = grub_pci_read (addr);
169
170 reg += sizeof (grub_uint32_t);
171
172 if (space == 0)
173 continue;
174
175 switch (space & GRUB_PCI_ADDR_SPACE_MASK)
176 {
177 case GRUB_PCI_ADDR_SPACE_IO:
178 grub_printf ("\tIO space %d at 0x%llx\n",
179 (unsigned) ((reg - GRUB_PCI_REG_ADDRESSES)
180 / sizeof (grub_uint32_t)) - 1,
181 (unsigned long long)
182 (space & GRUB_PCI_ADDR_IO_MASK));
183 break;
184 case GRUB_PCI_ADDR_SPACE_MEMORY:
185 if ((space & GRUB_PCI_ADDR_MEM_TYPE_MASK)
186 == GRUB_PCI_ADDR_MEM_TYPE_64)
187 {
188 addr = grub_pci_make_address (dev, reg);
189 space |= ((grub_uint64_t) grub_pci_read (addr)) << 32;
190 reg += sizeof (grub_uint32_t);
191 grub_printf ("\t64-bit memory space %d at 0x%016llx [%s]\n",
192 (unsigned) ((reg - GRUB_PCI_REG_ADDRESSES)
193 / sizeof (grub_uint32_t)) - 2,
194 (unsigned long long)
195 (space & GRUB_PCI_ADDR_MEM_MASK),
196 space & GRUB_PCI_ADDR_MEM_PREFETCH
197 ? "prefetchable" : "non-prefetchable");
198
199 }
200 else
201 grub_printf ("\t32-bit memory space %d at 0x%016llx [%s]\n",
202 (unsigned) ((reg - GRUB_PCI_REG_ADDRESSES)
203 / sizeof (grub_uint32_t)) - 1,
204 (unsigned long long)
205 (space & GRUB_PCI_ADDR_MEM_MASK),
206 space & GRUB_PCI_ADDR_MEM_PREFETCH
207 ? "prefetchable" : "non-prefetchable");
208 break;
209 }
210 }
211 }
212
213
214 return 0;
215 }
216
217 static grub_err_t
218 grub_cmd_lspci (grub_extcmd_context_t ctxt,
219 int argc __attribute__ ((unused)),
220 char **args __attribute__ ((unused)))
221 {
222 iospace = ctxt->state[0].set;
223 grub_pci_iterate (grub_lspci_iter, NULL);
224 return GRUB_ERR_NONE;
225 }
226
227 static grub_extcmd_t cmd;
228
229 GRUB_MOD_INIT(lspci)
230 {
231 cmd = grub_register_extcmd ("lspci", grub_cmd_lspci, 0, "[-i]",
232 N_("List PCI devices."), options);
233 }
234
235 GRUB_MOD_FINI(lspci)
236 {
237 grub_unregister_extcmd (cmd);
238 }