machvec.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. /*
  2. * Machine vector for IA-64.
  3. *
  4. * Copyright (C) 1999 Silicon Graphics, Inc.
  5. * Copyright (C) Srinivasa Thirumalachar <sprasad@engr.sgi.com>
  6. * Copyright (C) Vijay Chander <vijay@engr.sgi.com>
  7. * Copyright (C) 1999-2001, 2003-2004 Hewlett-Packard Co.
  8. * David Mosberger-Tang <davidm@hpl.hp.com>
  9. */
  10. #ifndef _ASM_IA64_MACHVEC_H
  11. #define _ASM_IA64_MACHVEC_H
  12. #include <linux/config.h>
  13. #include <linux/types.h>
  14. /* forward declarations: */
  15. struct device;
  16. struct pt_regs;
  17. struct scatterlist;
  18. struct page;
  19. struct mm_struct;
  20. struct pci_bus;
  21. typedef void ia64_mv_setup_t (char **);
  22. typedef void ia64_mv_cpu_init_t (void);
  23. typedef void ia64_mv_irq_init_t (void);
  24. typedef void ia64_mv_send_ipi_t (int, int, int, int);
  25. typedef void ia64_mv_timer_interrupt_t (int, void *, struct pt_regs *);
  26. typedef void ia64_mv_global_tlb_purge_t (struct mm_struct *, unsigned long, unsigned long, unsigned long);
  27. typedef void ia64_mv_tlb_migrate_finish_t (struct mm_struct *);
  28. typedef unsigned int ia64_mv_local_vector_to_irq (u8);
  29. typedef char *ia64_mv_pci_get_legacy_mem_t (struct pci_bus *);
  30. typedef int ia64_mv_pci_legacy_read_t (struct pci_bus *, u16 port, u32 *val,
  31. u8 size);
  32. typedef int ia64_mv_pci_legacy_write_t (struct pci_bus *, u16 port, u32 val,
  33. u8 size);
  34. /* DMA-mapping interface: */
  35. typedef void ia64_mv_dma_init (void);
  36. typedef void *ia64_mv_dma_alloc_coherent (struct device *, size_t, dma_addr_t *, gfp_t);
  37. typedef void ia64_mv_dma_free_coherent (struct device *, size_t, void *, dma_addr_t);
  38. typedef dma_addr_t ia64_mv_dma_map_single (struct device *, void *, size_t, int);
  39. typedef void ia64_mv_dma_unmap_single (struct device *, dma_addr_t, size_t, int);
  40. typedef int ia64_mv_dma_map_sg (struct device *, struct scatterlist *, int, int);
  41. typedef void ia64_mv_dma_unmap_sg (struct device *, struct scatterlist *, int, int);
  42. typedef void ia64_mv_dma_sync_single_for_cpu (struct device *, dma_addr_t, size_t, int);
  43. typedef void ia64_mv_dma_sync_sg_for_cpu (struct device *, struct scatterlist *, int, int);
  44. typedef void ia64_mv_dma_sync_single_for_device (struct device *, dma_addr_t, size_t, int);
  45. typedef void ia64_mv_dma_sync_sg_for_device (struct device *, struct scatterlist *, int, int);
  46. typedef int ia64_mv_dma_mapping_error (dma_addr_t dma_addr);
  47. typedef int ia64_mv_dma_supported (struct device *, u64);
  48. /*
  49. * WARNING: The legacy I/O space is _architected_. Platforms are
  50. * expected to follow this architected model (see Section 10.7 in the
  51. * IA-64 Architecture Software Developer's Manual). Unfortunately,
  52. * some broken machines do not follow that model, which is why we have
  53. * to make the inX/outX operations part of the machine vector.
  54. * Platform designers should follow the architected model whenever
  55. * possible.
  56. */
  57. typedef unsigned int ia64_mv_inb_t (unsigned long);
  58. typedef unsigned int ia64_mv_inw_t (unsigned long);
  59. typedef unsigned int ia64_mv_inl_t (unsigned long);
  60. typedef void ia64_mv_outb_t (unsigned char, unsigned long);
  61. typedef void ia64_mv_outw_t (unsigned short, unsigned long);
  62. typedef void ia64_mv_outl_t (unsigned int, unsigned long);
  63. typedef void ia64_mv_mmiowb_t (void);
  64. typedef unsigned char ia64_mv_readb_t (const volatile void __iomem *);
  65. typedef unsigned short ia64_mv_readw_t (const volatile void __iomem *);
  66. typedef unsigned int ia64_mv_readl_t (const volatile void __iomem *);
  67. typedef unsigned long ia64_mv_readq_t (const volatile void __iomem *);
  68. typedef unsigned char ia64_mv_readb_relaxed_t (const volatile void __iomem *);
  69. typedef unsigned short ia64_mv_readw_relaxed_t (const volatile void __iomem *);
  70. typedef unsigned int ia64_mv_readl_relaxed_t (const volatile void __iomem *);
  71. typedef unsigned long ia64_mv_readq_relaxed_t (const volatile void __iomem *);
  72. static inline void
  73. machvec_noop (void)
  74. {
  75. }
  76. static inline void
  77. machvec_noop_mm (struct mm_struct *mm)
  78. {
  79. }
  80. extern void machvec_setup (char **);
  81. extern void machvec_timer_interrupt (int, void *, struct pt_regs *);
  82. extern void machvec_dma_sync_single (struct device *, dma_addr_t, size_t, int);
  83. extern void machvec_dma_sync_sg (struct device *, struct scatterlist *, int, int);
  84. extern void machvec_tlb_migrate_finish (struct mm_struct *);
  85. # if defined (CONFIG_IA64_HP_SIM)
  86. # include <asm/machvec_hpsim.h>
  87. # elif defined (CONFIG_IA64_DIG)
  88. # include <asm/machvec_dig.h>
  89. # elif defined (CONFIG_IA64_HP_ZX1)
  90. # include <asm/machvec_hpzx1.h>
  91. # elif defined (CONFIG_IA64_HP_ZX1_SWIOTLB)
  92. # include <asm/machvec_hpzx1_swiotlb.h>
  93. # elif defined (CONFIG_IA64_SGI_SN2)
  94. # include <asm/machvec_sn2.h>
  95. # elif defined (CONFIG_IA64_GENERIC)
  96. # ifdef MACHVEC_PLATFORM_HEADER
  97. # include MACHVEC_PLATFORM_HEADER
  98. # else
  99. # define platform_name ia64_mv.name
  100. # define platform_setup ia64_mv.setup
  101. # define platform_cpu_init ia64_mv.cpu_init
  102. # define platform_irq_init ia64_mv.irq_init
  103. # define platform_send_ipi ia64_mv.send_ipi
  104. # define platform_timer_interrupt ia64_mv.timer_interrupt
  105. # define platform_global_tlb_purge ia64_mv.global_tlb_purge
  106. # define platform_tlb_migrate_finish ia64_mv.tlb_migrate_finish
  107. # define platform_dma_init ia64_mv.dma_init
  108. # define platform_dma_alloc_coherent ia64_mv.dma_alloc_coherent
  109. # define platform_dma_free_coherent ia64_mv.dma_free_coherent
  110. # define platform_dma_map_single ia64_mv.dma_map_single
  111. # define platform_dma_unmap_single ia64_mv.dma_unmap_single
  112. # define platform_dma_map_sg ia64_mv.dma_map_sg
  113. # define platform_dma_unmap_sg ia64_mv.dma_unmap_sg
  114. # define platform_dma_sync_single_for_cpu ia64_mv.dma_sync_single_for_cpu
  115. # define platform_dma_sync_sg_for_cpu ia64_mv.dma_sync_sg_for_cpu
  116. # define platform_dma_sync_single_for_device ia64_mv.dma_sync_single_for_device
  117. # define platform_dma_sync_sg_for_device ia64_mv.dma_sync_sg_for_device
  118. # define platform_dma_mapping_error ia64_mv.dma_mapping_error
  119. # define platform_dma_supported ia64_mv.dma_supported
  120. # define platform_local_vector_to_irq ia64_mv.local_vector_to_irq
  121. # define platform_pci_get_legacy_mem ia64_mv.pci_get_legacy_mem
  122. # define platform_pci_legacy_read ia64_mv.pci_legacy_read
  123. # define platform_pci_legacy_write ia64_mv.pci_legacy_write
  124. # define platform_inb ia64_mv.inb
  125. # define platform_inw ia64_mv.inw
  126. # define platform_inl ia64_mv.inl
  127. # define platform_outb ia64_mv.outb
  128. # define platform_outw ia64_mv.outw
  129. # define platform_outl ia64_mv.outl
  130. # define platform_mmiowb ia64_mv.mmiowb
  131. # define platform_readb ia64_mv.readb
  132. # define platform_readw ia64_mv.readw
  133. # define platform_readl ia64_mv.readl
  134. # define platform_readq ia64_mv.readq
  135. # define platform_readb_relaxed ia64_mv.readb_relaxed
  136. # define platform_readw_relaxed ia64_mv.readw_relaxed
  137. # define platform_readl_relaxed ia64_mv.readl_relaxed
  138. # define platform_readq_relaxed ia64_mv.readq_relaxed
  139. # endif
  140. /* __attribute__((__aligned__(16))) is required to make size of the
  141. * structure multiple of 16 bytes.
  142. * This will fillup the holes created because of section 3.3.1 in
  143. * Software Conventions guide.
  144. */
  145. struct ia64_machine_vector {
  146. const char *name;
  147. ia64_mv_setup_t *setup;
  148. ia64_mv_cpu_init_t *cpu_init;
  149. ia64_mv_irq_init_t *irq_init;
  150. ia64_mv_send_ipi_t *send_ipi;
  151. ia64_mv_timer_interrupt_t *timer_interrupt;
  152. ia64_mv_global_tlb_purge_t *global_tlb_purge;
  153. ia64_mv_tlb_migrate_finish_t *tlb_migrate_finish;
  154. ia64_mv_dma_init *dma_init;
  155. ia64_mv_dma_alloc_coherent *dma_alloc_coherent;
  156. ia64_mv_dma_free_coherent *dma_free_coherent;
  157. ia64_mv_dma_map_single *dma_map_single;
  158. ia64_mv_dma_unmap_single *dma_unmap_single;
  159. ia64_mv_dma_map_sg *dma_map_sg;
  160. ia64_mv_dma_unmap_sg *dma_unmap_sg;
  161. ia64_mv_dma_sync_single_for_cpu *dma_sync_single_for_cpu;
  162. ia64_mv_dma_sync_sg_for_cpu *dma_sync_sg_for_cpu;
  163. ia64_mv_dma_sync_single_for_device *dma_sync_single_for_device;
  164. ia64_mv_dma_sync_sg_for_device *dma_sync_sg_for_device;
  165. ia64_mv_dma_mapping_error *dma_mapping_error;
  166. ia64_mv_dma_supported *dma_supported;
  167. ia64_mv_local_vector_to_irq *local_vector_to_irq;
  168. ia64_mv_pci_get_legacy_mem_t *pci_get_legacy_mem;
  169. ia64_mv_pci_legacy_read_t *pci_legacy_read;
  170. ia64_mv_pci_legacy_write_t *pci_legacy_write;
  171. ia64_mv_inb_t *inb;
  172. ia64_mv_inw_t *inw;
  173. ia64_mv_inl_t *inl;
  174. ia64_mv_outb_t *outb;
  175. ia64_mv_outw_t *outw;
  176. ia64_mv_outl_t *outl;
  177. ia64_mv_mmiowb_t *mmiowb;
  178. ia64_mv_readb_t *readb;
  179. ia64_mv_readw_t *readw;
  180. ia64_mv_readl_t *readl;
  181. ia64_mv_readq_t *readq;
  182. ia64_mv_readb_relaxed_t *readb_relaxed;
  183. ia64_mv_readw_relaxed_t *readw_relaxed;
  184. ia64_mv_readl_relaxed_t *readl_relaxed;
  185. ia64_mv_readq_relaxed_t *readq_relaxed;
  186. } __attribute__((__aligned__(16))); /* align attrib? see above comment */
  187. #define MACHVEC_INIT(name) \
  188. { \
  189. #name, \
  190. platform_setup, \
  191. platform_cpu_init, \
  192. platform_irq_init, \
  193. platform_send_ipi, \
  194. platform_timer_interrupt, \
  195. platform_global_tlb_purge, \
  196. platform_tlb_migrate_finish, \
  197. platform_dma_init, \
  198. platform_dma_alloc_coherent, \
  199. platform_dma_free_coherent, \
  200. platform_dma_map_single, \
  201. platform_dma_unmap_single, \
  202. platform_dma_map_sg, \
  203. platform_dma_unmap_sg, \
  204. platform_dma_sync_single_for_cpu, \
  205. platform_dma_sync_sg_for_cpu, \
  206. platform_dma_sync_single_for_device, \
  207. platform_dma_sync_sg_for_device, \
  208. platform_dma_mapping_error, \
  209. platform_dma_supported, \
  210. platform_local_vector_to_irq, \
  211. platform_pci_get_legacy_mem, \
  212. platform_pci_legacy_read, \
  213. platform_pci_legacy_write, \
  214. platform_inb, \
  215. platform_inw, \
  216. platform_inl, \
  217. platform_outb, \
  218. platform_outw, \
  219. platform_outl, \
  220. platform_mmiowb, \
  221. platform_readb, \
  222. platform_readw, \
  223. platform_readl, \
  224. platform_readq, \
  225. platform_readb_relaxed, \
  226. platform_readw_relaxed, \
  227. platform_readl_relaxed, \
  228. platform_readq_relaxed, \
  229. }
  230. extern struct ia64_machine_vector ia64_mv;
  231. extern void machvec_init (const char *name);
  232. # else
  233. # error Unknown configuration. Update asm-ia64/machvec.h.
  234. # endif /* CONFIG_IA64_GENERIC */
  235. /*
  236. * Declare default routines which aren't declared anywhere else:
  237. */
  238. extern ia64_mv_dma_init swiotlb_init;
  239. extern ia64_mv_dma_alloc_coherent swiotlb_alloc_coherent;
  240. extern ia64_mv_dma_free_coherent swiotlb_free_coherent;
  241. extern ia64_mv_dma_map_single swiotlb_map_single;
  242. extern ia64_mv_dma_unmap_single swiotlb_unmap_single;
  243. extern ia64_mv_dma_map_sg swiotlb_map_sg;
  244. extern ia64_mv_dma_unmap_sg swiotlb_unmap_sg;
  245. extern ia64_mv_dma_sync_single_for_cpu swiotlb_sync_single_for_cpu;
  246. extern ia64_mv_dma_sync_sg_for_cpu swiotlb_sync_sg_for_cpu;
  247. extern ia64_mv_dma_sync_single_for_device swiotlb_sync_single_for_device;
  248. extern ia64_mv_dma_sync_sg_for_device swiotlb_sync_sg_for_device;
  249. extern ia64_mv_dma_mapping_error swiotlb_dma_mapping_error;
  250. extern ia64_mv_dma_supported swiotlb_dma_supported;
  251. /*
  252. * Define default versions so we can extend machvec for new platforms without having
  253. * to update the machvec files for all existing platforms.
  254. */
  255. #ifndef platform_setup
  256. # define platform_setup machvec_setup
  257. #endif
  258. #ifndef platform_cpu_init
  259. # define platform_cpu_init machvec_noop
  260. #endif
  261. #ifndef platform_irq_init
  262. # define platform_irq_init machvec_noop
  263. #endif
  264. #ifndef platform_send_ipi
  265. # define platform_send_ipi ia64_send_ipi /* default to architected version */
  266. #endif
  267. #ifndef platform_timer_interrupt
  268. # define platform_timer_interrupt machvec_timer_interrupt
  269. #endif
  270. #ifndef platform_global_tlb_purge
  271. # define platform_global_tlb_purge ia64_global_tlb_purge /* default to architected version */
  272. #endif
  273. #ifndef platform_tlb_migrate_finish
  274. # define platform_tlb_migrate_finish machvec_noop_mm
  275. #endif
  276. #ifndef platform_dma_init
  277. # define platform_dma_init swiotlb_init
  278. #endif
  279. #ifndef platform_dma_alloc_coherent
  280. # define platform_dma_alloc_coherent swiotlb_alloc_coherent
  281. #endif
  282. #ifndef platform_dma_free_coherent
  283. # define platform_dma_free_coherent swiotlb_free_coherent
  284. #endif
  285. #ifndef platform_dma_map_single
  286. # define platform_dma_map_single swiotlb_map_single
  287. #endif
  288. #ifndef platform_dma_unmap_single
  289. # define platform_dma_unmap_single swiotlb_unmap_single
  290. #endif
  291. #ifndef platform_dma_map_sg
  292. # define platform_dma_map_sg swiotlb_map_sg
  293. #endif
  294. #ifndef platform_dma_unmap_sg
  295. # define platform_dma_unmap_sg swiotlb_unmap_sg
  296. #endif
  297. #ifndef platform_dma_sync_single_for_cpu
  298. # define platform_dma_sync_single_for_cpu swiotlb_sync_single_for_cpu
  299. #endif
  300. #ifndef platform_dma_sync_sg_for_cpu
  301. # define platform_dma_sync_sg_for_cpu swiotlb_sync_sg_for_cpu
  302. #endif
  303. #ifndef platform_dma_sync_single_for_device
  304. # define platform_dma_sync_single_for_device swiotlb_sync_single_for_device
  305. #endif
  306. #ifndef platform_dma_sync_sg_for_device
  307. # define platform_dma_sync_sg_for_device swiotlb_sync_sg_for_device
  308. #endif
  309. #ifndef platform_dma_mapping_error
  310. # define platform_dma_mapping_error swiotlb_dma_mapping_error
  311. #endif
  312. #ifndef platform_dma_supported
  313. # define platform_dma_supported swiotlb_dma_supported
  314. #endif
  315. #ifndef platform_local_vector_to_irq
  316. # define platform_local_vector_to_irq __ia64_local_vector_to_irq
  317. #endif
  318. #ifndef platform_pci_get_legacy_mem
  319. # define platform_pci_get_legacy_mem ia64_pci_get_legacy_mem
  320. #endif
  321. #ifndef platform_pci_legacy_read
  322. # define platform_pci_legacy_read ia64_pci_legacy_read
  323. #endif
  324. #ifndef platform_pci_legacy_write
  325. # define platform_pci_legacy_write ia64_pci_legacy_write
  326. #endif
  327. #ifndef platform_inb
  328. # define platform_inb __ia64_inb
  329. #endif
  330. #ifndef platform_inw
  331. # define platform_inw __ia64_inw
  332. #endif
  333. #ifndef platform_inl
  334. # define platform_inl __ia64_inl
  335. #endif
  336. #ifndef platform_outb
  337. # define platform_outb __ia64_outb
  338. #endif
  339. #ifndef platform_outw
  340. # define platform_outw __ia64_outw
  341. #endif
  342. #ifndef platform_outl
  343. # define platform_outl __ia64_outl
  344. #endif
  345. #ifndef platform_mmiowb
  346. # define platform_mmiowb __ia64_mmiowb
  347. #endif
  348. #ifndef platform_readb
  349. # define platform_readb __ia64_readb
  350. #endif
  351. #ifndef platform_readw
  352. # define platform_readw __ia64_readw
  353. #endif
  354. #ifndef platform_readl
  355. # define platform_readl __ia64_readl
  356. #endif
  357. #ifndef platform_readq
  358. # define platform_readq __ia64_readq
  359. #endif
  360. #ifndef platform_readb_relaxed
  361. # define platform_readb_relaxed __ia64_readb_relaxed
  362. #endif
  363. #ifndef platform_readw_relaxed
  364. # define platform_readw_relaxed __ia64_readw_relaxed
  365. #endif
  366. #ifndef platform_readl_relaxed
  367. # define platform_readl_relaxed __ia64_readl_relaxed
  368. #endif
  369. #ifndef platform_readq_relaxed
  370. # define platform_readq_relaxed __ia64_readq_relaxed
  371. #endif
  372. #endif /* _ASM_IA64_MACHVEC_H */