Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 1 | /* |
| 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> |
| 23 | #include <fcntl.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <sys/stat.h> |
| 26 | #include <errno.h> |
| 27 | #include "flash.h" |
| 28 | |
| 29 | uint32_t io_base_addr; |
| 30 | struct pci_access *pacc; |
| 31 | struct pci_filter filter; |
| 32 | char *pcidev_bdf = NULL; |
Uwe Hermann | 8403ccb | 2009-05-16 21:39:19 +0000 | [diff] [blame] | 33 | struct pci_dev *pcidev_dev = NULL; |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 34 | |
| 35 | uint32_t pcidev_validate(struct pci_dev *dev, struct pcidev_status *devs) |
| 36 | { |
| 37 | int i; |
| 38 | uint32_t addr; |
| 39 | |
| 40 | for (i = 0; devs[i].device_name != NULL; i++) { |
| 41 | if (dev->device_id != devs[i].device_id) |
| 42 | continue; |
| 43 | |
Uwe Hermann | 4059598 | 2009-05-16 01:30:48 +0000 | [diff] [blame] | 44 | /* Don't use dev->base_addr[0], won't work on older libpci. */ |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 45 | addr = pci_read_long(dev, PCI_BASE_ADDRESS_0) & ~0x03; |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 46 | |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 47 | printf("Found \"%s %s\" (%04x:%04x, BDF %02x:%02x.%x).\n", |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 48 | devs[i].vendor_name, devs[i].device_name, dev->vendor_id, |
| 49 | dev->device_id, dev->bus, dev->dev, dev->func); |
| 50 | |
| 51 | if (devs[i].status == PCI_NT) { |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 52 | printf("===\nThis PCI device is UNTESTED. Please " |
| 53 | "report the 'flashrom -p xxxx' output \n" |
| 54 | "to flashrom@coreboot.org if it works " |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 55 | "for you. Thank you for your help!\n===\n"); |
| 56 | } |
| 57 | |
| 58 | return addr; |
| 59 | } |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | uint32_t pcidev_init(uint16_t vendor_id, struct pcidev_status *devs) |
| 65 | { |
| 66 | struct pci_dev *dev; |
| 67 | char *msg = NULL; |
| 68 | int found = 0; |
Uwe Hermann | 8403ccb | 2009-05-16 21:39:19 +0000 | [diff] [blame] | 69 | uint32_t addr = 0, curaddr = 0; |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 70 | |
| 71 | pacc = pci_alloc(); /* Get the pci_access structure */ |
| 72 | pci_init(pacc); /* Initialize the PCI library */ |
| 73 | pci_scan_bus(pacc); /* We want to get the list of devices */ |
| 74 | pci_filter_init(pacc, &filter); |
| 75 | |
| 76 | /* Filter by vendor and also bb:dd.f (if supplied by the user). */ |
| 77 | filter.vendor = vendor_id; |
| 78 | if (pcidev_bdf != NULL) { |
| 79 | if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) { |
| 80 | fprintf(stderr, "Error: %s\n", msg); |
| 81 | exit(1); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | for (dev = pacc->devices; dev; dev = dev->next) { |
| 86 | if (pci_filter_match(&filter, dev)) { |
Uwe Hermann | 8403ccb | 2009-05-16 21:39:19 +0000 | [diff] [blame] | 87 | if ((addr = pcidev_validate(dev, devs)) != 0) { |
| 88 | curaddr = addr; |
| 89 | pcidev_dev = dev; |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 90 | found++; |
Uwe Hermann | 8403ccb | 2009-05-16 21:39:19 +0000 | [diff] [blame] | 91 | } |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | |
| 95 | /* Only continue if exactly one supported PCI dev has been found. */ |
| 96 | if (found == 0) { |
| 97 | fprintf(stderr, "Error: No supported PCI device found.\n"); |
| 98 | exit(1); |
| 99 | } else if (found > 1) { |
| 100 | fprintf(stderr, "Error: Multiple supported PCI devices found. " |
Uwe Hermann | eaefb48 | 2009-05-17 22:57:34 +0000 | [diff] [blame] | 101 | "Use 'flashrom -p xxxx=bb:dd.f' \n" |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 102 | "to explicitly select the card with the given BDF " |
| 103 | "(PCI bus, device, function).\n"); |
| 104 | exit(1); |
| 105 | } |
| 106 | |
Uwe Hermann | 8403ccb | 2009-05-16 21:39:19 +0000 | [diff] [blame] | 107 | return curaddr; |
Uwe Hermann | 515ab3d | 2009-05-15 17:02:34 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | void print_supported_pcidevs(struct pcidev_status *devs) |
| 111 | { |
| 112 | int i; |
| 113 | |
| 114 | for (i = 0; devs[i].vendor_name != NULL; i++) { |
| 115 | printf("%s %s [%02x:%02x]%s\n", devs[i].vendor_name, |
| 116 | devs[i].device_name, devs[i].vendor_id, |
| 117 | devs[i].device_id, |
| 118 | (devs[i].status == PCI_NT) ? " (untested)" : ""); |
| 119 | } |
| 120 | } |