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

Linux/Unix编程

开发平台:

Unix_Linux

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