iPXE
Data Structures | Functions | Variables
pci_cmd.c File Reference

PCI commands. More...

#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <getopt.h>
#include <ipxe/pci.h>
#include <ipxe/command.h>
#include <ipxe/parseopt.h>

Go to the source code of this file.

Data Structures

struct  pciscan_options
 "pciscan" options More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
 FILE_SECBOOT (PERMITTED)
 
static int pciscan_exec (int argc, char **argv)
 "pciscan" command More...
 
 COMMAND (pciscan, pciscan_exec)
 PCI commands. More...
 

Variables

static struct option_descriptor pciscan_opts [] = {}
 "pciscan" option list More...
 
static struct command_descriptor pciscan_cmd
 "pciscan" command descriptor More...
 

Detailed Description

PCI commands.

Definition in file pci_cmd.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED  )

◆ pciscan_exec()

static int pciscan_exec ( int  argc,
char **  argv 
)
static

"pciscan" command

Parameters
argcArgument count
argvArgument list
Return values
rcReturn status code

Definition at line 59 of file pci_cmd.c.

59  {
60  struct pciscan_options opts;
61  struct named_setting setting;
62  struct pci_device pci;
63  unsigned long prev;
65  int len;
66  int rc;
67 
68  /* Parse options */
69  if ( ( rc = parse_options ( argc, argv, &pciscan_cmd, &opts ) ) != 0 )
70  goto err_parse_options;
71 
72  /* Parse setting name */
73  if ( ( rc = parse_autovivified_setting ( argv[optind],
74  &setting ) ) != 0 )
75  goto err_parse_setting;
76 
77  /* Determine starting bus:dev.fn address */
78  if ( ( len = fetchn_setting ( setting.settings, &setting.setting,
79  NULL, &setting.setting, &prev ) ) < 0 ) {
80  /* Setting not yet defined: start searching from 00:00.0 */
81  busdevfn = 0;
82  } else {
83  /* Setting is defined: start searching from next location */
84  busdevfn = ( prev + 1 );
85  if ( ! busdevfn ) {
86  rc = -ENOENT;
87  goto err_end;
88  }
89  }
90 
91  /* Find next existent PCI device */
92  if ( ( rc = pci_find_next ( &pci, &busdevfn ) ) != 0 )
93  goto err_find_next;
94 
95  /* Apply default type if necessary. Use ":uint16" rather than
96  * ":busdevfn" to allow for easy inclusion within a
97  * "${pci/${location}.x.y}" constructed setting.
98  */
99  if ( ! setting.setting.type )
100  setting.setting.type = &setting_type_uint16;
101 
102  /* Store setting */
103  if ( ( rc = storen_setting ( setting.settings, &setting.setting,
104  busdevfn ) ) != 0 ) {
105  printf ( "Could not store \"%s\": %s\n",
106  setting.setting.name, strerror ( rc ) );
107  goto err_store;
108  }
109 
110  err_store:
111  err_end:
112  err_find_next:
113  err_parse_setting:
114  err_parse_options:
115  return rc;
116 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition: vsprintf.c:465
A parsed named setting.
Definition: parseopt.h:123
int optind
Current option index.
Definition: getopt.c:52
int storen_setting(struct settings *settings, const struct setting *setting, unsigned long value)
Store numeric value of setting.
Definition: settings.c:1415
int parse_autovivified_setting(char *text, struct named_setting *setting)
Parse and autovivify setting name.
Definition: parseopt.c:337
#define ENOENT
No such file or directory.
Definition: errno.h:515
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition: parseopt.c:485
"pciscan" options
Definition: pci_cmd.c:42
const char * name
Name.
Definition: settings.h:29
uint16_t busdevfn
PCI bus:dev.fn address.
Definition: ena.h:28
int pci_find_next(struct pci_device *pci, uint32_t *busdevfn)
Find next device on PCI bus.
Definition: pci.c:323
ring len
Length.
Definition: dwmac.h:231
const struct setting_type * type
Setting type.
Definition: settings.h:37
int fetchn_setting(struct settings *settings, const struct setting *setting, struct settings **origin, struct setting *fetched, unsigned long *value)
Fetch numeric value of setting.
Definition: settings.c:1373
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:79
A PCI device.
Definition: pci.h:211
unsigned int uint32_t
Definition: stdint.h:12
A setting.
Definition: settings.h:24
static union @447 opts
"cert<xxx>" option list
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
static struct command_descriptor pciscan_cmd
"pciscan" command descriptor
Definition: pci_cmd.c:48

References busdevfn, ENOENT, fetchn_setting(), len, setting::name, NULL, optind, opts, parse_autovivified_setting(), parse_options(), pci_find_next(), pciscan_cmd, printf(), rc, storen_setting(), strerror(), and setting::type.

◆ COMMAND()

COMMAND ( pciscan  ,
pciscan_exec   
)

PCI commands.

Variable Documentation

◆ pciscan_opts

struct option_descriptor pciscan_opts[] = {}
static

"pciscan" option list

Definition at line 45 of file pci_cmd.c.

◆ pciscan_cmd

struct command_descriptor pciscan_cmd
static
Initial value:
=
"<setting>" )
"pciscan" options
Definition: pci_cmd.c:42
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition: parseopt.h:109
static struct option_descriptor pciscan_opts[]
"pciscan" option list
Definition: pci_cmd.c:45

"pciscan" command descriptor

Definition at line 48 of file pci_cmd.c.

Referenced by pciscan_exec().