root/include/linux/bios32.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * BIOS32, PCI BIOS functions and defines
   3  * Copyright 1994, Drew Eckhardt
   4  * 
   5  * For more information, please consult 
   6  * 
   7  * PCI BIOS Specification Revision
   8  * PCI Local Bus Specification
   9  * PCI System Design Guide
  10  *
  11  * PCI Special Interest Group
  12  * M/S HF3-15A
  13  * 5200 N.E. Elam Young Parkway
  14  * Hillsboro, Oregon 97124-6497
  15  * +1 (503) 696-2000 
  16  * +1 (800) 433-5177
  17  * 
  18  * Manuals are $25 each or $50 for all three, plus $7 shipping 
  19  * within the United States, $35 abroad.
  20  */
  21 
  22 #ifndef BIOS32_H
  23 #define BIOS32_H
  24 
  25 /*
  26  * Error values that may be returned by the PCI bios.  Use
  27  * pci_strbioserr() to convert to a printable string.
  28  */
  29 #define PCIBIOS_SUCCESSFUL              0x00
  30 #define PCIBIOS_FUNC_NOT_SUPPORTED      0x81
  31 #define PCIBIOS_BAD_VENDOR_ID           0x83
  32 #define PCIBIOS_DEVICE_NOT_FOUND        0x86
  33 #define PCIBIOS_BAD_REGISTER_NUMBER     0x87
  34 #define PCIBIOS_SET_FAILED              0x88
  35 #define PCIBIOS_BUFFER_TOO_SMALL        0x89
  36 
  37 extern int pcibios_present (void);
  38 extern unsigned long pcibios_init (unsigned long memory_start,
  39                                    unsigned long memory_end);
  40 extern unsigned long pcibios_fixup (unsigned long memory_start,
  41                                     unsigned long memory_end);
  42 extern int pcibios_find_class (unsigned int class_code, unsigned short index, 
  43                                unsigned char *bus, unsigned char *dev_fn);
  44 extern int pcibios_find_device (unsigned short vendor, unsigned short dev_id,
  45                                 unsigned short index, unsigned char *bus,
  46                                 unsigned char *dev_fn);
  47 extern int pcibios_read_config_byte (unsigned char bus, unsigned char dev_fn,
  48                                      unsigned char where, unsigned char *val);
  49 extern int pcibios_read_config_word (unsigned char bus, unsigned char dev_fn,
  50                                      unsigned char where, unsigned short *val);
  51 extern int pcibios_read_config_dword (unsigned char bus, unsigned char dev_fn,
  52                                       unsigned char where, unsigned int *val);
  53 extern int pcibios_write_config_byte (unsigned char bus, unsigned char dev_fn,
  54                                       unsigned char where, unsigned char val);
  55 extern int pcibios_write_config_word (unsigned char bus, unsigned char dev_fn,
  56                                       unsigned char where, unsigned short val);
  57 extern pcibios_write_config_dword (unsigned char bus, unsigned char dev_fn,
  58                                    unsigned char where, unsigned int val);
  59 extern char *pcibios_strerror (int error);
  60 
  61 #endif /* BIOS32_H */

/* [previous][next][first][last][top][bottom][index][help] */