Blame view

kernel/linux-rt-4.4.41/drivers/xen/xen-pciback/conf_space_quirks.h 841 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  /*
   * PCI Backend - Data structures for special overlays for broken devices.
   *
   * Ryan Wilson <hap9@epoch.ncsc.mil>
   * Chris Bookholt <hap10@epoch.ncsc.mil>
   */
  
  #ifndef __XEN_PCIBACK_CONF_SPACE_QUIRKS_H__
  #define __XEN_PCIBACK_CONF_SPACE_QUIRKS_H__
  
  #include <linux/pci.h>
  #include <linux/list.h>
  
  struct xen_pcibk_config_quirk {
  	struct list_head quirks_list;
  	struct pci_device_id devid;
  	struct pci_dev *pdev;
  };
  
  int xen_pcibk_config_quirks_add_field(struct pci_dev *dev, struct config_field
  				    *field);
  
  int xen_pcibk_config_quirks_remove_field(struct pci_dev *dev, int reg);
  
  int xen_pcibk_config_quirks_init(struct pci_dev *dev);
  
  void xen_pcibk_config_field_free(struct config_field *field);
  
  int xen_pcibk_config_quirk_release(struct pci_dev *dev);
  
  int xen_pcibk_field_is_dup(struct pci_dev *dev, unsigned int reg);
  
  #endif