blob: d52662b941881cefdc2571f0d98db368d65aca7d [file] [log] [blame]
uwea3a82c92009-05-15 17:02:34 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
hailfingerbf923c32011-02-15 22:44:27 +00005 * Copyright (C) 2010, 2011 Carl-Daniel Hailfinger
uwea3a82c92009-05-15 17:02:34 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdlib.h>
23#include <string.h>
uwea3a82c92009-05-15 17:02:34 +000024#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000025#include "programmer.h"
uwea3a82c92009-05-15 17:02:34 +000026
27uint32_t io_base_addr;
28struct pci_access *pacc;
uweb3a82ef2009-05-16 21:39:19 +000029struct pci_dev *pcidev_dev = NULL;
uwea3a82c92009-05-15 17:02:34 +000030
hailfingerbf923c32011-02-15 22:44:27 +000031enum pci_bartype {
32 TYPE_MEMBAR,
33 TYPE_IOBAR,
34 TYPE_ROMBAR,
35 TYPE_UNKNOWN
36};
37
Patrick Georgif776a442017-03-28 21:34:33 +020038uintptr_t pcidev_readbar(struct pci_dev *dev, int bar)
uwea3a82c92009-05-15 17:02:34 +000039{
hailfingerbf923c32011-02-15 22:44:27 +000040 uint64_t addr;
41 uint32_t upperaddr;
42 uint8_t headertype;
43 uint16_t supported_cycles;
44 enum pci_bartype bartype = TYPE_UNKNOWN;
uwea3a82c92009-05-15 17:02:34 +000045
Patrick Georgif776a442017-03-28 21:34:33 +020046
47 headertype = pci_read_byte(dev, PCI_HEADER_TYPE) & 0x7f;
48 msg_pspew("PCI header type 0x%02x\n", headertype);
49
50 /* Don't use dev->base_addr[x] (as value for 'bar'), won't work on older libpci. */
51 addr = pci_read_long(dev, bar);
52
53 /* Sanity checks. */
54 switch (headertype) {
55 case PCI_HEADER_TYPE_NORMAL:
56 switch (bar) {
57 case PCI_BASE_ADDRESS_0:
58 case PCI_BASE_ADDRESS_1:
59 case PCI_BASE_ADDRESS_2:
60 case PCI_BASE_ADDRESS_3:
61 case PCI_BASE_ADDRESS_4:
62 case PCI_BASE_ADDRESS_5:
63 if ((addr & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO)
64 bartype = TYPE_IOBAR;
65 else
66 bartype = TYPE_MEMBAR;
67 break;
68 case PCI_ROM_ADDRESS:
69 bartype = TYPE_ROMBAR;
70 break;
71 }
72 break;
73 case PCI_HEADER_TYPE_BRIDGE:
74 switch (bar) {
75 case PCI_BASE_ADDRESS_0:
76 case PCI_BASE_ADDRESS_1:
77 if ((addr & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO)
78 bartype = TYPE_IOBAR;
79 else
80 bartype = TYPE_MEMBAR;
81 break;
82 case PCI_ROM_ADDRESS1:
83 bartype = TYPE_ROMBAR;
84 break;
85 }
86 break;
87 case PCI_HEADER_TYPE_CARDBUS:
88 break;
89 default:
90 msg_perr("Unknown PCI header type 0x%02x, BAR type cannot be determined reliably.\n",
91 headertype);
92 break;
93 }
94
95 supported_cycles = pci_read_word(dev, PCI_COMMAND);
96
97 msg_pdbg("Requested BAR is of type ");
98 switch (bartype) {
99 case TYPE_MEMBAR:
100 msg_pdbg("MEM");
101 if (!(supported_cycles & PCI_COMMAND_MEMORY)) {
102 msg_perr("MEM BAR access requested, but device has MEM space accesses disabled.\n");
103 /* TODO: Abort here? */
104 }
105 msg_pdbg(", %sbit, %sprefetchable\n",
106 ((addr & 0x6) == 0x0) ? "32" : (((addr & 0x6) == 0x4) ? "64" : "reserved"),
107 (addr & 0x8) ? "" : "not ");
108 if ((addr & 0x6) == 0x4) {
109 /* The spec says that a 64-bit register consumes
110 * two subsequent dword locations.
111 */
112 upperaddr = pci_read_long(dev, bar + 4);
113 if (upperaddr != 0x00000000) {
114 /* Fun! A real 64-bit resource. */
115 if (sizeof(uintptr_t) != sizeof(uint64_t)) {
116 msg_perr("BAR unreachable!");
117 /* TODO: Really abort here? If multiple PCI devices match,
118 * we might never tell the user about the other devices.
119 */
120 return 0;
121 }
122 addr |= (uint64_t)upperaddr << 32;
123 }
124 }
125 addr &= PCI_BASE_ADDRESS_MEM_MASK;
126 break;
127 case TYPE_IOBAR:
128 msg_pdbg("I/O\n");
129#if __FLASHROM_HAVE_OUTB__
130 if (!(supported_cycles & PCI_COMMAND_IO)) {
131 msg_perr("I/O BAR access requested, but device has I/O space accesses disabled.\n");
132 /* TODO: Abort here? */
133 }
134#else
135 msg_perr("I/O BAR access requested, but flashrom does not support I/O BAR access on this "
136 "platform (yet).\n");
137#endif
138 addr &= PCI_BASE_ADDRESS_IO_MASK;
139 break;
140 case TYPE_ROMBAR:
141 msg_pdbg("ROM\n");
142 /* Not sure if this check is needed. */
143 if (!(supported_cycles & PCI_COMMAND_MEMORY)) {
144 msg_perr("MEM BAR access requested, but device has MEM space accesses disabled.\n");
145 /* TODO: Abort here? */
146 }
147 addr &= PCI_ROM_ADDRESS_MASK;
148 break;
149 case TYPE_UNKNOWN:
150 msg_perr("BAR type unknown, please report a bug at flashrom@flashrom.org\n");
151 }
152
153 return (uintptr_t)addr;
154}
155
156uintptr_t pcidev_validate(struct pci_dev *dev, int bar,
157 const struct dev_entry *devs)
158{
159 int i;
160
uwea3a82c92009-05-15 17:02:34 +0000161 for (i = 0; devs[i].device_name != NULL; i++) {
162 if (dev->device_id != devs[i].device_id)
163 continue;
164
hailfingerbf923c32011-02-15 22:44:27 +0000165 msg_pinfo("Found \"%s %s\" (%04x:%04x, BDF %02x:%02x.%x).\n",
166 devs[i].vendor_name, devs[i].device_name,
167 dev->vendor_id, dev->device_id, dev->bus, dev->dev,
168 dev->func);
169
mkarcher6475d3f2010-02-24 00:04:40 +0000170 if (devs[i].status == NT) {
snelsone42c3802010-05-07 20:09:04 +0000171 msg_pinfo("===\nThis PCI device is UNTESTED. Please "
hailfinger5bae2332010-10-08 11:03:02 +0000172 "report the 'flashrom -p xxxx' output \n"
173 "to flashrom@flashrom.org if it works "
174 "for you. Please add the name of your\n"
175 "PCI device to the subject. Thank you for "
176 "your help!\n===\n");
uwea3a82c92009-05-15 17:02:34 +0000177 }
178
Patrick Georgif776a442017-03-28 21:34:33 +0200179 return pcidev_readbar(dev, bar);
uwea3a82c92009-05-15 17:02:34 +0000180 }
181
182 return 0;
183}
184
Patrick Georgifc8e5d92017-03-21 16:49:15 +0100185static int pcidev_shutdown(void *data)
186{
187 if (pacc == NULL) {
188 msg_perr("%s: Tried to cleanup an invalid PCI context!\n"
189 "Please report a bug at flashrom@flashrom.org\n", __func__);
190 return 1;
191 }
192 pci_cleanup(pacc);
193 return 0;
194}
195
196int pci_init_common(void)
197{
198 if (pacc != NULL) {
199 msg_perr("%s: Tried to allocate a new PCI context, but there is still an old one!\n"
200 "Please report a bug at flashrom@flashrom.org\n", __func__);
201 return 1;
202 }
203 pacc = pci_alloc(); /* Get the pci_access structure */
204 pci_init(pacc); /* Initialize the PCI library */
205 if (register_shutdown(pcidev_shutdown, NULL))
206 return 1;
207 pci_scan_bus(pacc); /* We want to get the list of devices */
208 return 0;
209}
210
Patrick Georgi588515a2017-03-23 11:41:34 +0100211uintptr_t pcidev_init(const struct dev_entry *devs, int bar)
uwea3a82c92009-05-15 17:02:34 +0000212{
213 struct pci_dev *dev;
hailfinger1ff33dc2010-07-03 11:02:10 +0000214 struct pci_filter filter;
hailfinger1ef766d2010-07-06 09:55:48 +0000215 char *pcidev_bdf;
uwea3a82c92009-05-15 17:02:34 +0000216 char *msg = NULL;
217 int found = 0;
hailfingerbf923c32011-02-15 22:44:27 +0000218 uintptr_t addr = 0, curaddr = 0;
uwea3a82c92009-05-15 17:02:34 +0000219
Patrick Georgifc8e5d92017-03-21 16:49:15 +0100220 if (pci_init_common() != 0)
221 return 0;
uwea3a82c92009-05-15 17:02:34 +0000222 pci_filter_init(pacc, &filter);
223
hailfinger0d703d42011-03-07 01:08:09 +0000224 /* Filter by bb:dd.f (if supplied by the user). */
hailfingerddeb4ac2010-07-08 10:13:37 +0000225 pcidev_bdf = extract_programmer_param("pci");
uwea3a82c92009-05-15 17:02:34 +0000226 if (pcidev_bdf != NULL) {
227 if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) {
snelsone42c3802010-05-07 20:09:04 +0000228 msg_perr("Error: %s\n", msg);
uwea3a82c92009-05-15 17:02:34 +0000229 exit(1);
230 }
231 }
hailfinger1ef766d2010-07-06 09:55:48 +0000232 free(pcidev_bdf);
uwea3a82c92009-05-15 17:02:34 +0000233
234 for (dev = pacc->devices; dev; dev = dev->next) {
235 if (pci_filter_match(&filter, dev)) {
hailfinger0d703d42011-03-07 01:08:09 +0000236 /* FIXME: We should count all matching devices, not
237 * just those with a valid BAR.
238 */
uwee2f95ef2009-09-02 23:00:46 +0000239 if ((addr = pcidev_validate(dev, bar, devs)) != 0) {
uweb3a82ef2009-05-16 21:39:19 +0000240 curaddr = addr;
241 pcidev_dev = dev;
uwea3a82c92009-05-15 17:02:34 +0000242 found++;
uweb3a82ef2009-05-16 21:39:19 +0000243 }
uwea3a82c92009-05-15 17:02:34 +0000244 }
245 }
246
247 /* Only continue if exactly one supported PCI dev has been found. */
248 if (found == 0) {
snelsone42c3802010-05-07 20:09:04 +0000249 msg_perr("Error: No supported PCI device found.\n");
uwea3a82c92009-05-15 17:02:34 +0000250 exit(1);
251 } else if (found > 1) {
snelsone42c3802010-05-07 20:09:04 +0000252 msg_perr("Error: Multiple supported PCI devices found. "
hailfinger6dbba892010-10-06 23:03:21 +0000253 "Use 'flashrom -p xxxx:pci=bb:dd.f' \n"
uwea3a82c92009-05-15 17:02:34 +0000254 "to explicitly select the card with the given BDF "
255 "(PCI bus, device, function).\n");
256 exit(1);
257 }
258
uweb3a82ef2009-05-16 21:39:19 +0000259 return curaddr;
uwea3a82c92009-05-15 17:02:34 +0000260}
261
Patrick Georgi8ae16572017-03-09 15:59:25 +0100262void print_supported_pcidevs(const struct dev_entry *devs)
uwea3a82c92009-05-15 17:02:34 +0000263{
264 int i;
265
hailfingerf79d1712010-10-06 23:48:34 +0000266 msg_pinfo("PCI devices:\n");
uwea3a82c92009-05-15 17:02:34 +0000267 for (i = 0; devs[i].vendor_name != NULL; i++) {
hailfinger495bc2e2010-10-07 22:21:45 +0000268 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
uwe8d342eb2011-07-28 08:13:25 +0000269 devs[i].device_name, devs[i].vendor_id,
270 devs[i].device_id,
271 (devs[i].status == NT) ? " (untested)" : "");
uwea3a82c92009-05-15 17:02:34 +0000272 }
273}
hailfingerf31cbdc2010-11-10 15:25:18 +0000274
275enum pci_write_type {
276 pci_write_type_byte,
277 pci_write_type_word,
278 pci_write_type_long,
279};
280
281struct undo_pci_write_data {
282 struct pci_dev dev;
283 int reg;
284 enum pci_write_type type;
285 union {
286 uint8_t bytedata;
287 uint16_t worddata;
288 uint32_t longdata;
289 };
290};
291
David Hendricks93784b42016-08-09 17:00:38 -0700292int undo_pci_write(void *p)
hailfingerf31cbdc2010-11-10 15:25:18 +0000293{
294 struct undo_pci_write_data *data = p;
295 msg_pdbg("Restoring PCI config space for %02x:%02x:%01x reg 0x%02x\n",
296 data->dev.bus, data->dev.dev, data->dev.func, data->reg);
297 switch (data->type) {
298 case pci_write_type_byte:
299 pci_write_byte(&data->dev, data->reg, data->bytedata);
300 break;
301 case pci_write_type_word:
302 pci_write_word(&data->dev, data->reg, data->worddata);
303 break;
304 case pci_write_type_long:
305 pci_write_long(&data->dev, data->reg, data->longdata);
306 break;
307 }
308 /* p was allocated in register_undo_pci_write. */
309 free(p);
dhendrix0ffc2eb2011-06-14 01:35:36 +0000310 return 0;
hailfingerf31cbdc2010-11-10 15:25:18 +0000311}
312
313#define register_undo_pci_write(a, b, c) \
314{ \
315 struct undo_pci_write_data *undo_pci_write_data; \
316 undo_pci_write_data = malloc(sizeof(struct undo_pci_write_data)); \
stefanctd611e8f2011-07-12 22:35:21 +0000317 if (!undo_pci_write_data) { \
318 msg_gerr("Out of memory!\n"); \
319 exit(1); \
320 } \
hailfingerf31cbdc2010-11-10 15:25:18 +0000321 undo_pci_write_data->dev = *a; \
322 undo_pci_write_data->reg = b; \
323 undo_pci_write_data->type = pci_write_type_##c; \
324 undo_pci_write_data->c##data = pci_read_##c(dev, reg); \
325 register_shutdown(undo_pci_write, undo_pci_write_data); \
326}
327
328#define register_undo_pci_write_byte(a, b) register_undo_pci_write(a, b, byte)
329#define register_undo_pci_write_word(a, b) register_undo_pci_write(a, b, word)
330#define register_undo_pci_write_long(a, b) register_undo_pci_write(a, b, long)
331
332int rpci_write_byte(struct pci_dev *dev, int reg, uint8_t data)
333{
334 register_undo_pci_write_byte(dev, reg);
335 return pci_write_byte(dev, reg, data);
336}
337
338int rpci_write_word(struct pci_dev *dev, int reg, uint16_t data)
339{
340 register_undo_pci_write_word(dev, reg);
341 return pci_write_word(dev, reg, data);
342}
343
344int rpci_write_long(struct pci_dev *dev, int reg, uint32_t data)
345{
346 register_undo_pci_write_long(dev, reg);
347 return pci_write_long(dev, reg, data);
348}