pci_hotplug.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * PCI HotPlug Core Functions
  3.  *
  4.  * Copyright (c) 1995,2001 Compaq Computer Corporation
  5.  * Copyright (c) 2001 Greg Kroah-Hartman (greg@kroah.com)
  6.  * Copyright (c) 2001 IBM Corp.
  7.  *
  8.  * All rights reserved.
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or (at
  13.  * your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful, but
  16.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  18.  * NON INFRINGEMENT.  See the GNU General Public License for more
  19.  * details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  *
  25.  * Send feedback to <greg@kroah.com>
  26.  *
  27.  */
  28. #ifndef _PCI_HOTPLUG_H
  29. #define _PCI_HOTPLUG_H
  30. /* These values come from the PCI Hotplug Spec */
  31. enum pci_bus_speed {
  32. PCI_SPEED_33MHz = 0x00,
  33. PCI_SPEED_66MHz = 0x01,
  34. PCI_SPEED_66MHz_PCIX = 0x02,
  35. PCI_SPEED_100MHz_PCIX = 0x03,
  36. PCI_SPEED_133MHz_PCIX = 0x04,
  37. PCI_SPEED_66MHz_PCIX_266 = 0x09,
  38. PCI_SPEED_100MHz_PCIX_266 = 0x0a,
  39. PCI_SPEED_133MHz_PCIX_266 = 0x0b,
  40. PCI_SPEED_66MHz_PCIX_533 = 0x11,
  41. PCI_SPEED_100MHz_PCIX_533 = 0X12,
  42. PCI_SPEED_133MHz_PCIX_533 = 0x13,
  43. PCI_SPEED_UNKNOWN = 0xff,
  44. };
  45. struct hotplug_slot;
  46. struct hotplug_slot_core;
  47. /**
  48.  * struct hotplug_slot_ops -the callbacks that the hotplug pci core can use
  49.  * @owner: The module owner of this structure
  50.  * @enable_slot: Called when the user wants to enable a specific pci slot
  51.  * @disable_slot: Called when the user wants to disable a specific pci slot
  52.  * @set_attention_status: Called to set the specific slot's attention LED to
  53.  * the specified value
  54.  * @hardware_test: Called to run a specified hardware test on the specified
  55.  * slot.
  56.  * @get_power_status: Called to get the current power status of a slot.
  57.  *  If this field is NULL, the value passed in the struct hotplug_slot_info
  58.  *  will be used when this value is requested by a user.
  59.  * @get_attention_status: Called to get the current attention status of a slot.
  60.  * If this field is NULL, the value passed in the struct hotplug_slot_info
  61.  * will be used when this value is requested by a user.
  62.  * @get_latch_status: Called to get the current latch status of a slot.
  63.  * If this field is NULL, the value passed in the struct hotplug_slot_info
  64.  * will be used when this value is requested by a user.
  65.  * @get_adapter_status: Called to get see if an adapter is present in the slot or not.
  66.  * If this field is NULL, the value passed in the struct hotplug_slot_info
  67.  * will be used when this value is requested by a user.
  68.  * @get_max_bus_speed: Called to get the max bus speed for a slot.
  69.  * If this field is NULL, the value passed in the struct hotplug_slot_info
  70.  * will be used when this value is requested by a user.
  71.  * @get_cur_bus_speed: Called to get the current bus speed for a slot.
  72.  * If this field is NULL, the value passed in the struct hotplug_slot_info
  73.  * will be used when this value is requested by a user.
  74.  *
  75.  * The table of function pointers that is passed to the hotplug pci core by a
  76.  * hotplug pci driver.  These functions are called by the hotplug pci core when
  77.  * the user wants to do something to a specific slot (query it for information,
  78.  * set an LED, enable / disable power, etc.)
  79.  */
  80. struct hotplug_slot_ops {
  81. struct module *owner;
  82. int (*enable_slot) (struct hotplug_slot *slot);
  83. int (*disable_slot) (struct hotplug_slot *slot);
  84. int (*set_attention_status) (struct hotplug_slot *slot, u8 value);
  85. int (*hardware_test) (struct hotplug_slot *slot, u32 value);
  86. int (*get_power_status) (struct hotplug_slot *slot, u8 *value);
  87. int (*get_attention_status) (struct hotplug_slot *slot, u8 *value);
  88. int (*get_latch_status) (struct hotplug_slot *slot, u8 *value);
  89. int (*get_adapter_status) (struct hotplug_slot *slot, u8 *value);
  90. int (*get_max_bus_speed) (struct hotplug_slot *slot, enum pci_bus_speed *value);
  91. int (*get_cur_bus_speed) (struct hotplug_slot *slot, enum pci_bus_speed *value);
  92. };
  93. /**
  94.  * struct hotplug_slot_info - used to notify the hotplug pci core of the state of the slot
  95.  * @power: if power is enabled or not (1/0)
  96.  * @attention_status: if the attention light is enabled or not (1/0)
  97.  * @latch_status: if the latch (if any) is open or closed (1/0)
  98.  * @adapter_present: if there is a pci board present in the slot or not (1/0)
  99.  *
  100.  * Used to notify the hotplug pci core of the status of a specific slot.
  101.  */
  102. struct hotplug_slot_info {
  103. u8 power_status;
  104. u8 attention_status;
  105. u8 latch_status;
  106. u8 adapter_status;
  107. enum pci_bus_speed max_bus_speed;
  108. enum pci_bus_speed cur_bus_speed;
  109. };
  110. /**
  111.  * struct hotplug_slot - used to register a physical slot with the hotplug pci core
  112.  * @name: the name of the slot being registered.  This string must
  113.  * be unique amoung slots registered on this system.
  114.  * @ops: pointer to the &struct hotplug_slot_ops to be used for this slot
  115.  * @info: pointer to the &struct hotplug_slot_info for the inital values for
  116.  * this slot.
  117.  * @private: used by the hotplug pci controller driver to store whatever it
  118.  * needs.
  119.  */
  120. struct hotplug_slot {
  121. char *name;
  122. struct hotplug_slot_ops *ops;
  123. struct hotplug_slot_info *info;
  124. void *private;
  125. /* Variables below this are for use only by the hotplug pci core. */
  126. struct list_head slot_list;
  127. struct hotplug_slot_core *core_priv;
  128. };
  129. extern int pci_hp_register (struct hotplug_slot *slot);
  130. extern int pci_hp_deregister (struct hotplug_slot *slot);
  131. extern int pci_hp_change_slot_info (const char *name,
  132.  struct hotplug_slot_info *info);
  133. struct pci_dev_wrapped {
  134. struct pci_dev *dev;
  135. void *data;
  136. };
  137. struct pci_bus_wrapped {
  138. struct pci_bus *bus;
  139. void *data;
  140. };
  141. struct pci_visit {
  142. int (* pre_visit_pci_bus) (struct pci_bus_wrapped *,
  143.  struct pci_dev_wrapped *);
  144. int (* post_visit_pci_bus) (struct pci_bus_wrapped *,
  145.  struct pci_dev_wrapped *);
  146. int (* pre_visit_pci_dev) (struct pci_dev_wrapped *,
  147.  struct pci_bus_wrapped *);
  148. int (* visit_pci_dev) (struct pci_dev_wrapped *,
  149.  struct pci_bus_wrapped *);
  150. int (* post_visit_pci_dev) (struct pci_dev_wrapped *,
  151.  struct pci_bus_wrapped *);
  152. };
  153. extern int pci_visit_dev (struct pci_visit *fn,
  154.  struct pci_dev_wrapped *wrapped_dev,
  155.  struct pci_bus_wrapped *wrapped_parent);
  156. extern int pci_read_config_byte_nodev (struct pci_ops *ops, u8 bus, u8 device,
  157.  u8 function, int where, u8 *val);
  158. extern int pci_read_config_word_nodev (struct pci_ops *ops, u8 bus, u8 device,
  159.  u8 function, int where, u16 *val);
  160. extern int pci_read_config_dword_nodev (struct pci_ops *ops, u8 bus, u8 device,
  161.  u8 function, int where, u32 *val);
  162. extern int pci_write_config_byte_nodev (struct pci_ops *ops, u8 bus, u8 device,
  163.  u8 function, int where, u8 val);
  164. extern int pci_write_config_word_nodev (struct pci_ops *ops, u8 bus, u8 device,
  165.  u8 function, int where, u16 val);
  166. extern int pci_write_config_dword_nodev (struct pci_ops *ops, u8 bus, u8 device,
  167.  u8 function, int where, u32 val);
  168. #endif