Souf Oued | 982bc71 | 2009-12-05 17:56:25 +0100 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denys Vlasenko | ccd1efc | 2010-04-03 15:39:47 +0200 | [diff] [blame] | 3 | * lspci implementation for busybox |
| 4 | * |
| 5 | * Copyright (C) 2009 Malek Degachi <malek-degachi@laposte.net> |
| 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denys Vlasenko | ccd1efc | 2010-04-03 15:39:47 +0200 | [diff] [blame] | 8 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 9 | //config:config LSPCI |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 10 | //config: bool "lspci (5.7 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 11 | //config: default y |
| 12 | //config: #select PLATFORM_LINUX |
| 13 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 14 | //config: lspci is a utility for displaying information about PCI buses in the |
| 15 | //config: system and devices connected to them. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 16 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 17 | //config: This version uses sysfs (/sys/bus/pci/devices) only. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 18 | |
Denys Vlasenko | 3239ab8 | 2017-08-05 23:28:19 +0200 | [diff] [blame^] | 19 | //applet:IF_LSPCI(APPLET_NOEXEC(lspci, lspci, BB_DIR_USR_BIN, BB_SUID_DROP, lspci)) |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 20 | |
| 21 | //kbuild:lib-$(CONFIG_LSPCI) += lspci.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 22 | |
| 23 | //usage:#define lspci_trivial_usage |
| 24 | //usage: "[-mk]" |
| 25 | //usage:#define lspci_full_usage "\n\n" |
| 26 | //usage: "List all PCI devices" |
| 27 | //usage: "\n" |
Dan Fandrich | b5de0c1 | 2011-07-08 05:47:49 +0200 | [diff] [blame] | 28 | //usage: "\n -m Parsable output" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 29 | //usage: "\n -k Show driver" |
| 30 | |
Denys Vlasenko | ccd1efc | 2010-04-03 15:39:47 +0200 | [diff] [blame] | 31 | #include "libbb.h" |
Souf Oued | 982bc71 | 2009-12-05 17:56:25 +0100 | [diff] [blame] | 32 | |
| 33 | enum { |
| 34 | OPT_m = (1 << 0), |
| 35 | OPT_k = (1 << 1), |
| 36 | }; |
| 37 | |
| 38 | /* |
| 39 | * PCI_SLOT_NAME PCI_CLASS: PCI_VID:PCI_DID [PCI_SUBSYS_VID:PCI_SUBSYS_DID] [DRIVER] |
| 40 | */ |
| 41 | static int FAST_FUNC fileAction( |
| 42 | const char *fileName, |
| 43 | struct stat *statbuf UNUSED_PARAM, |
| 44 | void *userData UNUSED_PARAM, |
| 45 | int depth UNUSED_PARAM) |
| 46 | { |
| 47 | parser_t *parser; |
| 48 | char *tokens[3]; |
| 49 | char *pci_slot_name = NULL, *driver = NULL; |
| 50 | int pci_class = 0, pci_vid = 0, pci_did = 0; |
| 51 | int pci_subsys_vid = 0, pci_subsys_did = 0; |
| 52 | |
| 53 | char *uevent_filename = concat_path_file(fileName, "/uevent"); |
| 54 | parser = config_open2(uevent_filename, fopen_for_read); |
| 55 | free(uevent_filename); |
| 56 | |
| 57 | while (config_read(parser, tokens, 3, 2, "\0:=", PARSE_NORMAL)) { |
| 58 | if (strcmp(tokens[0], "DRIVER") == 0) { |
| 59 | driver = xstrdup(tokens[1]); |
| 60 | continue; |
| 61 | } |
| 62 | |
| 63 | if (strcmp(tokens[0], "PCI_CLASS") == 0) { |
| 64 | pci_class = xstrtou(tokens[1], 16)>>8; |
| 65 | continue; |
| 66 | } |
| 67 | |
| 68 | if (strcmp(tokens[0], "PCI_ID") == 0) { |
| 69 | pci_vid = xstrtou(tokens[1], 16); |
| 70 | pci_did = xstrtou(tokens[2], 16); |
| 71 | continue; |
| 72 | } |
| 73 | |
| 74 | if (strcmp(tokens[0], "PCI_SUBSYS_ID") == 0) { |
| 75 | pci_subsys_vid = xstrtou(tokens[1], 16); |
| 76 | pci_subsys_did = xstrtou(tokens[2], 16); |
| 77 | continue; |
| 78 | } |
| 79 | |
| 80 | if (strcmp(tokens[0], "PCI_SLOT_NAME") == 0) { |
| 81 | pci_slot_name = xstrdup(tokens[2]); |
| 82 | continue; |
| 83 | } |
| 84 | } |
| 85 | config_close(parser); |
| 86 | |
| 87 | |
| 88 | if (option_mask32 & OPT_m) { |
| 89 | printf("%s \"Class %04x\" \"%04x\" \"%04x\" \"%04x\" \"%04x\"", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 90 | pci_slot_name, pci_class, pci_vid, pci_did, |
| 91 | pci_subsys_vid, pci_subsys_did); |
Souf Oued | 982bc71 | 2009-12-05 17:56:25 +0100 | [diff] [blame] | 92 | } else { |
| 93 | printf("%s Class %04x: %04x:%04x", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 94 | pci_slot_name, pci_class, pci_vid, pci_did); |
Souf Oued | 982bc71 | 2009-12-05 17:56:25 +0100 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | if ((option_mask32 & OPT_k) && driver) { |
| 98 | if (option_mask32 & OPT_m) { |
| 99 | printf(" \"%s\"", driver); |
| 100 | } else { |
| 101 | printf(" %s", driver); |
| 102 | } |
| 103 | } |
| 104 | bb_putchar('\n'); |
| 105 | |
| 106 | free(driver); |
| 107 | free(pci_slot_name); |
| 108 | |
| 109 | return TRUE; |
| 110 | } |
| 111 | |
| 112 | int lspci_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 113 | int lspci_main(int argc UNUSED_PARAM, char **argv) |
| 114 | { |
| 115 | getopt32(argv, "m" /*non-compat:*/ "k" /*ignored:*/ "nv"); |
| 116 | |
| 117 | recursive_action("/sys/bus/pci/devices", |
| 118 | ACTION_RECURSE, |
| 119 | fileAction, |
| 120 | NULL, /* dirAction */ |
| 121 | NULL, /* userData */ |
| 122 | 0 /* depth */); |
| 123 | |
| 124 | return EXIT_SUCCESS; |
| 125 | } |