blob: 580ebae3b4eeffe88220ef32c0f9d35d4598b922 [file] [log] [blame]
Uwe Hermann515ab3d2009-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>
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; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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 this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdlib.h>
22#include <string.h>
Uwe Hermann515ab3d2009-05-15 17:02:34 +000023#include <sys/types.h>
Uwe Hermann515ab3d2009-05-15 17:02:34 +000024#include "flash.h"
25
26uint32_t io_base_addr;
27struct pci_access *pacc;
28struct pci_filter filter;
Uwe Hermann8403ccb2009-05-16 21:39:19 +000029struct pci_dev *pcidev_dev = NULL;
Uwe Hermann515ab3d2009-05-15 17:02:34 +000030
31uint32_t pcidev_validate(struct pci_dev *dev, struct pcidev_status *devs)
32{
33 int i;
34 uint32_t addr;
35
36 for (i = 0; devs[i].device_name != NULL; i++) {
37 if (dev->device_id != devs[i].device_id)
38 continue;
39
Uwe Hermann40595982009-05-16 01:30:48 +000040 /* Don't use dev->base_addr[0], won't work on older libpci. */
Uwe Hermanneaefb482009-05-17 22:57:34 +000041 addr = pci_read_long(dev, PCI_BASE_ADDRESS_0) & ~0x03;
Uwe Hermann515ab3d2009-05-15 17:02:34 +000042
Uwe Hermanneaefb482009-05-17 22:57:34 +000043 printf("Found \"%s %s\" (%04x:%04x, BDF %02x:%02x.%x).\n",
Uwe Hermann515ab3d2009-05-15 17:02:34 +000044 devs[i].vendor_name, devs[i].device_name, dev->vendor_id,
45 dev->device_id, dev->bus, dev->dev, dev->func);
46
47 if (devs[i].status == PCI_NT) {
Uwe Hermanneaefb482009-05-17 22:57:34 +000048 printf("===\nThis PCI device is UNTESTED. Please "
49 "report the 'flashrom -p xxxx' output \n"
Stefan Reinauer22ea8cd2009-07-30 13:32:26 +000050 "to flashrom@flashrom.org if it works "
Uwe Hermann515ab3d2009-05-15 17:02:34 +000051 "for you. Thank you for your help!\n===\n");
52 }
53
54 return addr;
55 }
56
57 return 0;
58}
59
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +000060uint32_t pcidev_init(uint16_t vendor_id, struct pcidev_status *devs, char *pcidev_bdf)
Uwe Hermann515ab3d2009-05-15 17:02:34 +000061{
62 struct pci_dev *dev;
63 char *msg = NULL;
64 int found = 0;
Uwe Hermann8403ccb2009-05-16 21:39:19 +000065 uint32_t addr = 0, curaddr = 0;
Uwe Hermann515ab3d2009-05-15 17:02:34 +000066
67 pacc = pci_alloc(); /* Get the pci_access structure */
68 pci_init(pacc); /* Initialize the PCI library */
69 pci_scan_bus(pacc); /* We want to get the list of devices */
70 pci_filter_init(pacc, &filter);
71
72 /* Filter by vendor and also bb:dd.f (if supplied by the user). */
73 filter.vendor = vendor_id;
74 if (pcidev_bdf != NULL) {
75 if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) {
76 fprintf(stderr, "Error: %s\n", msg);
77 exit(1);
78 }
79 }
80
81 for (dev = pacc->devices; dev; dev = dev->next) {
82 if (pci_filter_match(&filter, dev)) {
Uwe Hermann8403ccb2009-05-16 21:39:19 +000083 if ((addr = pcidev_validate(dev, devs)) != 0) {
84 curaddr = addr;
85 pcidev_dev = dev;
Uwe Hermann515ab3d2009-05-15 17:02:34 +000086 found++;
Uwe Hermann8403ccb2009-05-16 21:39:19 +000087 }
Uwe Hermann515ab3d2009-05-15 17:02:34 +000088 }
89 }
90
91 /* Only continue if exactly one supported PCI dev has been found. */
92 if (found == 0) {
93 fprintf(stderr, "Error: No supported PCI device found.\n");
94 exit(1);
95 } else if (found > 1) {
96 fprintf(stderr, "Error: Multiple supported PCI devices found. "
Uwe Hermanneaefb482009-05-17 22:57:34 +000097 "Use 'flashrom -p xxxx=bb:dd.f' \n"
Uwe Hermann515ab3d2009-05-15 17:02:34 +000098 "to explicitly select the card with the given BDF "
99 "(PCI bus, device, function).\n");
100 exit(1);
101 }
102
Uwe Hermann8403ccb2009-05-16 21:39:19 +0000103 return curaddr;
Uwe Hermann515ab3d2009-05-15 17:02:34 +0000104}
105
106void print_supported_pcidevs(struct pcidev_status *devs)
107{
108 int i;
109
110 for (i = 0; devs[i].vendor_name != NULL; i++) {
111 printf("%s %s [%02x:%02x]%s\n", devs[i].vendor_name,
112 devs[i].device_name, devs[i].vendor_id,
113 devs[i].device_id,
114 (devs[i].status == PCI_NT) ? " (untested)" : "");
115 }
116}