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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * c 2001 PPC 64 Team, IBM Corp
  3.  *
  4.  *      This program is free software; you can redistribute it and/or
  5.  *      modify it under the terms of the GNU General Public License
  6.  *      as published by the Free Software Foundation; either version
  7.  *      2 of the License, or (at your option) any later version.
  8.  */
  9. #ifndef __PPC_KERNEL_PCI_H__
  10. #define __PPC_KERNEL_PCI_H__
  11. #include <linux/pci.h>
  12. #include <asm/pci-bridge.h>
  13. extern unsigned long isa_io_base;
  14. extern unsigned long isa_mem_base;
  15. extern unsigned long pci_dram_offset;
  16. /*******************************************************************
  17.  * Platform independant variables referenced.
  18.  *******************************************************************
  19.  * Set pci_assign_all_busses to 1 if you want the kernel to re-assign
  20.  * all PCI bus numbers.  
  21.  *******************************************************************/
  22. extern int pci_assign_all_busses;
  23. extern struct pci_controller* pci_alloc_pci_controller(char *model, enum phb_types controller_type);
  24. extern struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node);
  25. extern struct pci_controller* hose_head;
  26. extern struct pci_controller** hose_tail;
  27. /* PHB's are also in a table. */
  28. #define PCI_MAX_PHB 64
  29. extern int  global_phb_number;
  30. extern struct pci_controller *phbtab[];
  31. /*******************************************************************
  32.  * Platform functions that are brand specific implementation. 
  33.  *******************************************************************/
  34. extern unsigned long find_and_init_phbs(void);
  35. extern void   fixup_resources(struct pci_dev *dev);
  36. extern void   ppc64_pcibios_init(void);
  37. extern int    pci_set_reset(struct pci_dev*,int);
  38. extern int    device_Location(struct pci_dev*,char*);
  39. extern int    format_device_location(struct pci_dev*,char*, int );
  40. extern struct pci_dev *ppc64_isabridge_dev; /* may be NULL if no ISA bus */
  41. /*******************************************************************
  42.  * PCI device_node operations
  43.  *******************************************************************/
  44. struct device_node;
  45. typedef void *(*traverse_func)(struct device_node *me, void *data);
  46. void *traverse_pci_devices(struct device_node *start, traverse_func pre, traverse_func post, void *data);
  47. void *traverse_all_pci_devices(traverse_func pre);
  48. void pci_devs_phb_init(void);
  49. void pci_fix_bus_sysdata(void);
  50. struct device_node *fetch_dev_dn(struct pci_dev *dev);
  51. void iSeries_pcibios_init_early(void);
  52. void pSeries_pcibios_init_early(void);
  53. void pSeries_pcibios_init(void);
  54. /* Get a device_node from a pci_dev.  This code must be fast except in the case
  55.  * where the sysdata is incorrect and needs to be fixed up (hopefully just once)
  56.  */
  57. static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
  58. {
  59. struct device_node *dn = (struct device_node *)(dev->sysdata);
  60. if (dn->devfn == dev->devfn && dn->busno == dev->bus->number)
  61. return dn; /* fast path.  sysdata is good */
  62. else
  63. return fetch_dev_dn(dev);
  64. }
  65. /* Use this macro after the PCI bus walk for max performance when it
  66.  * is known that sysdata is correct.
  67.  */
  68. #define PCI_GET_DN(dev) ((struct device_node *)((dev)->sysdata))
  69. /*******************************************************************
  70.  * Platform configuration flags.. (Live in pci.c)
  71.  *******************************************************************/
  72. extern int  Pci_Large_Bus_System;      /* System has > 256 buses   */
  73. extern int  Pci_Manage_Phb_Space;      /* Manage Phb Space for IOAs*/
  74. /*******************************************************************
  75.  * Helper macros for extracting data from pci structures.  
  76.  *   PCI_GET_PHB_PTR(struct pci_dev*)    returns the Phb pointer.
  77.  *   PCI_GET_PHB_NUMBER(struct pci_dev*) returns the Phb number.
  78.  *   PCI_GET_BUS_NUMBER(struct pci_dev*) returns the bus number.
  79.  *******************************************************************/
  80. #define PCI_GET_PHB_PTR(dev)    (((struct device_node *)(dev)->sysdata)->phb)
  81. #define PCI_GET_PHB_NUMBER(dev) (((dev)->bus->number&0x00FFFF00)>>8)
  82. #define PCI_GET_BUS_NUMBER(dev) ((dev)->bus->number&0x0000FF)
  83. /*******************************************************************
  84.  * Pci Flight Recorder support.
  85.  *******************************************************************/
  86. #define PCIFR(...) fr_Log_Entry(PciFr,__VA_ARGS__);
  87. extern struct flightRecorder* PciFr;
  88. extern int    Pci_Trace_Flag;
  89. /*******************************************************************
  90.  * Debugging  Routines.
  91.  *******************************************************************/
  92. extern void dumpResources(struct resource* Resource);
  93. extern void dumpPci_Controller(struct pci_controller* phb);
  94. extern void dumpPci_Bus(struct pci_bus* Pci_Bus);
  95. extern void dumpPci_Dev(struct pci_dev* Pci_Dev);
  96. extern void dump_Phb_tree(void);
  97. extern void dump_Bus_tree(void);
  98. extern void dump_Dev_tree(void);
  99. #endif /* __PPC_KERNEL_PCI_H__ */