pci.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_PARISC_PCI_H
  2. #define __ASM_PARISC_PCI_H
  3. #include <asm/scatterlist.h>
  4. #define MIN_PCI_PORT 0x000000
  5. #define MAX_PCI_PORT 0xffffff
  6. /*
  7. ** HP PCI platforms generally support multiple bus adapters.
  8. **    (workstations 1-~4, servers 2-~32)
  9. **
  10. ** Newer platforms number the busses across PCI bus adapters *sparsely*.
  11. ** E.g. 0, 8, 16, ...
  12. **
  13. ** Under a PCI bus, most HP platforms support PPBs up to two or three
  14. ** levels deep. See "Bit3" product line. 
  15. */
  16. #define PCI_MAX_BUSSES 256
  17. /* [soapbox on]
  18. ** Who the hell can develope stuff without ASSERT or VASSERT?
  19. ** No one understands all the modules across all platforms.
  20. ** For linux add another dimension - processor architectures.
  21. **
  22. ** This should be a standard/global macro used liberally
  23. ** in all code. Every respectable engineer I know in HP
  24. ** would support this argument. - grant
  25. ** [soapbox off]
  26. */
  27. #ifdef PCI_DEBUG
  28. #define ASSERT(expr) 
  29. if(!(expr)) { 
  30. printk( "n" __FILE__ ":%d: Assertion " #expr " failed!n",__LINE__); 
  31. panic(#expr); 
  32. }
  33. #else
  34. #define ASSERT(expr)
  35. #endif
  36. /*
  37. ** pci_hba_data (aka H2P_OBJECT in HP/UX)
  38. **
  39. ** This is the "common" or "base" data structure which HBA drivers
  40. ** (eg Dino or LBA) are required to place at the top of their own
  41. ** dev->sysdata structure.  I've heard this called "C inheritance" too.
  42. **
  43. ** Data needed by pcibios layer belongs here.
  44. */
  45. struct pci_hba_data {
  46. struct pci_hba_data *next; /* global chain of HBAs */
  47. char           *base_addr; /* aka Host Physical Address */
  48. struct hp_device *iodc_info; /* Info from PA bus walk */
  49. struct pci_bus *hba_bus; /* primary PCI bus below HBA */
  50. int hba_num; /* I/O port space access "key" */
  51. struct resource bus_num; /* PCI bus numbers */
  52. struct resource io_space; /* PIOP */
  53. struct resource mem_space; /* LMMIO */
  54. unsigned long   mem_space_offset;  /* VCLASS support */
  55. /* REVISIT - spinlock to protect resources? */
  56. };
  57. /*
  58. ** KLUGE: linux/pci.h include asm/pci.h BEFORE declaring struct pci_bus
  59. ** (This eliminates some of the warnings).
  60. */
  61. struct pci_bus;
  62. struct pci_dev;
  63. /*
  64. ** Most PCI devices (eg Tulip, NCR720) also export the same registers
  65. ** to both MMIO and I/O port space.  Due to poor performance of I/O Port
  66. ** access under HP PCI bus adapters, strongly reccomend use of MMIO
  67. ** address space.
  68. **
  69. ** While I'm at it more PA programming notes:
  70. **
  71. ** 1) MMIO stores (writes) are posted operations. This means the processor
  72. **    gets an "ACK" before the write actually gets to the device. A read
  73. **    to the same device (or typically the bus adapter above it) will
  74. **    force in-flight write transaction(s) out to the targeted device
  75. **    before the read can complete.
  76. **
  77. ** 2) The Programmed I/O (PIO) data may not always be strongly ordered with
  78. **    respect to DMA on all platforms. Ie PIO data can reach the processor
  79. **    before in-flight DMA reaches memory. Since most SMP PA platforms
  80. **    are I/O coherent, it generally doesn't matter...but sometimes
  81. **    it does.
  82. **
  83. ** I've helped device driver writers debug both types of problems.
  84. */
  85. struct pci_port_ops {
  86.   u8 (*inb)  (struct pci_hba_data *hba, u16 port);
  87.  u16 (*inw)  (struct pci_hba_data *hba, u16 port);
  88.  u32 (*inl)  (struct pci_hba_data *hba, u16 port);
  89. void (*outb) (struct pci_hba_data *hba, u16 port,  u8 data);
  90. void (*outw) (struct pci_hba_data *hba, u16 port, u16 data);
  91. void (*outl) (struct pci_hba_data *hba, u16 port, u32 data);
  92. };
  93. struct pci_bios_ops {
  94. void (*init)(void);
  95. void (*fixup_bus)(struct pci_bus *bus);
  96. };
  97. extern void pcibios_size_bridge(struct pci_bus *, struct pbus_set_ranges_data *);
  98. /*
  99. ** See Documentation/DMA-mapping.txt
  100. */
  101. struct pci_dma_ops {
  102. int  (*dma_supported)(struct pci_dev *dev, u64 mask);
  103. void *(*alloc_consistent)(struct pci_dev *dev, size_t size, dma_addr_t *iova);
  104. void (*free_consistent)(struct pci_dev *dev, size_t size, void *vaddr, dma_addr_t iova);
  105. dma_addr_t (*map_single)(struct pci_dev *dev, void *addr, size_t size, int direction);
  106. void (*unmap_single)(struct pci_dev *dev, dma_addr_t iova, size_t size, int direction);
  107. int  (*map_sg)(struct pci_dev *dev, struct scatterlist *sg, int nents, int direction);
  108. void (*unmap_sg)(struct pci_dev *dev, struct scatterlist *sg, int nhwents, int direction);
  109. void (*dma_sync_single)(struct pci_dev *dev, dma_addr_t iova, size_t size, int direction);
  110. void (*dma_sync_sg)(struct pci_dev *dev, struct scatterlist *sg, int nelems, int direction);
  111. };
  112. /*
  113. ** We could live without the hppa_dma_ops indirection if we didn't want
  114. ** to support 4 different dma models with one binary or they were
  115. ** all loadable modules:
  116. **     I/O MMU        consistent method           dma_sync behavior
  117. **  =============   ======================       =======================
  118. **  a) PA-7x00LC    uncachable host memory          flush/purge
  119. **  b) U2/Uturn      cachable host memory              NOP
  120. **  c) Ike/Astro     cachable host memory              NOP
  121. **  d) EPIC/SAGA     memory on EPIC/SAGA         flush/reset DMA channel
  122. **
  123. ** PA-7[13]00LC processors have a GSC bus interface and no I/O MMU.
  124. **
  125. ** Systems (eg PCX-T workstations) that don't fall into the above
  126. ** categories will need to modify the needed drivers to perform
  127. ** flush/purge and allocate "regular" cacheable pages for everything.
  128. */
  129. extern struct pci_dma_ops *hppa_dma_ops;
  130. extern struct pci_dma_ops pcxl_dma_ops;
  131. extern struct pci_dma_ops pcx_dma_ops;
  132. /*
  133. ** Oops hard if we haven't setup hppa_dma_ops by the time the first driver
  134. ** attempts to initialize.
  135. ** Since panic() is a (void)(), pci_dma_panic() is needed to satisfy
  136. ** the (int)() required by pci_dma_supported() interface.
  137. */
  138. static inline int pci_dma_panic(char *msg)
  139. {
  140. panic(msg);
  141. return -1;
  142. }
  143. #define pci_dma_supported(p, m) ( 
  144. (NULL == hppa_dma_ops) 
  145. ?  pci_dma_panic("Dynamic DMA support missing...OOPS!n(Hint: was Astro/Ike/U2/Uturn not claimed?)n") 
  146. : hppa_dma_ops->dma_supported(p,m) 
  147. )
  148. #define pci_alloc_consistent(p, s, a) hppa_dma_ops->alloc_consistent(p,s,a)
  149. #define pci_free_consistent(p, s, v, a) hppa_dma_ops->free_consistent(p,s,v,a)
  150. #define pci_map_single(p, v, s, d) hppa_dma_ops->map_single(p, v, s, d)
  151. #define pci_unmap_single(p, a, s, d) hppa_dma_ops->unmap_single(p, a, s, d)
  152. #define pci_map_sg(p, sg, n, d) hppa_dma_ops->map_sg(p, sg, n, d)
  153. #define pci_unmap_sg(p, sg, n, d) hppa_dma_ops->unmap_sg(p, sg, n, d)
  154. /* pci_unmap_{single,page} is not a nop, thus... */
  155. #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
  156. dma_addr_t ADDR_NAME;
  157. #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
  158. __u32 LEN_NAME;
  159. #define pci_unmap_addr(PTR, ADDR_NAME)
  160. ((PTR)->ADDR_NAME)
  161. #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)
  162. (((PTR)->ADDR_NAME) = (VAL))
  163. #define pci_unmap_len(PTR, LEN_NAME)
  164. ((PTR)->LEN_NAME)
  165. #define pci_unmap_len_set(PTR, LEN_NAME, VAL)
  166. (((PTR)->LEN_NAME) = (VAL))
  167. /* For U2/Astro/Ike based platforms (which are fully I/O coherent)
  168. ** dma_sync is a NOP. Let's keep the performance path short here.
  169. */
  170. #define pci_dma_sync_single(p, a, s, d) { if (hppa_dma_ops->dma_sync_single) 
  171. hppa_dma_ops->dma_sync_single(p, a, s, d); 
  172. }
  173. #define pci_dma_sync_sg(p, sg, n, d) { if (hppa_dma_ops->dma_sync_sg) 
  174. hppa_dma_ops->dma_sync_sg(p, sg, n, d); 
  175. }
  176. /*
  177. ** Stuff declared in arch/parisc/kernel/pci.c
  178. */
  179. extern struct pci_port_ops *pci_port;
  180. extern struct pci_bios_ops *pci_bios;
  181. extern int pci_post_reset_delay; /* delay after de-asserting #RESET */
  182. extern void pcibios_register_hba(struct pci_hba_data *);
  183. extern void pcibios_assign_unassigned_resources(struct pci_bus *);
  184. /*
  185. ** used by drivers/pci/pci.c:pci_do_scan_bus()
  186. **   0 == check if bridge is numbered before re-numbering.
  187. **   1 == pci_do_scan_bus() should automatically number all PCI-PCI bridges.
  188. **
  189. ** REVISIT:
  190. **   To date, only alpha sets this to one. We'll need to set this
  191. **   to zero for legacy platforms and one for PAT platforms.
  192. */
  193. #ifdef __LP64__
  194. extern int pdc_pat;  /* arch/parisc/kernel/inventory.c */
  195. #define pcibios_assign_all_busses() pdc_pat
  196. #else
  197. #define pcibios_assign_all_busses() 0
  198. #endif
  199. #define PCIBIOS_MIN_IO          0x10
  200. #define PCIBIOS_MIN_MEM         0x1000 /* NBPG - but pci/setup-res.c dies */
  201. /* Return the index of the PCI controller for device PDEV. */
  202. #define pci_controller_num(PDEV) (0)
  203. #endif /* __ASM_PARISC_PCI_H */