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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_IO_H
  2. #define __ASM_SH_IO_H
  3. /*
  4.  * Convention:
  5.  *    read{b,w,l}/write{b,w,l} are for PCI,
  6.  *    while in{b,w,l}/out{b,w,l} are for ISA
  7.  * These may (will) be platform specific function.
  8.  * In addition we have 'pausing' versions: in{b,w,l}_p/out{b,w,l}_p
  9.  * and 'string' versions: ins{b,w,l}/outs{b,w,l}
  10.  * For read{b,w,l} and write{b,w,l} there are also __raw versions, which
  11.  * do not have a memory barrier after them.
  12.  *
  13.  * In addition, we have 
  14.  *   ctrl_in{b,w,l}/ctrl_out{b,w,l} for SuperH specific I/O.
  15.  *   which are processor specific.
  16.  */
  17. /*
  18.  * We follow the Alpha convention here:
  19.  *  __inb expands to an inline function call (which either calls via the
  20.  *        mach_vec if generic, or a machine specific implementation)
  21.  *  _inb  is a real function call (note ___raw fns are _ version of __raw)
  22.  *  inb   by default expands to _inb, but the machine specific code may
  23.  *        define it to __inb if it chooses.
  24.  */
  25. #include <asm/cache.h>
  26. #include <asm/system.h>
  27. #include <linux/config.h>
  28. /*
  29.  * Depending on which platform we are running on, we need different
  30.  * I/O functions.
  31.  */
  32. #ifdef __KERNEL__
  33. #if defined(CONFIG_SH_GENERIC) || defined(CONFIG_SH_CQREEK) || defined(CONFIG_SH_UNKNOWN)
  34. /* In a generic kernel, we always go through the machine vector.  */
  35. #include <asm/machvec.h>
  36. # define __inb(p) sh_mv.mv_inb((p))
  37. # define __inw(p) sh_mv.mv_inw((p))
  38. # define __inl(p) sh_mv.mv_inl((p))
  39. # define __outb(x,p) sh_mv.mv_outb((x),(p))
  40. # define __outw(x,p) sh_mv.mv_outw((x),(p))
  41. # define __outl(x,p) sh_mv.mv_outl((x),(p))
  42. # define __inb_p(p) sh_mv.mv_inb_p((p))
  43. # define __inw_p(p) sh_mv.mv_inw_p((p))
  44. # define __inl_p(p) sh_mv.mv_inl_p((p))
  45. # define __outb_p(x,p) sh_mv.mv_outb_p((x),(p))
  46. # define __outw_p(x,p) sh_mv.mv_outw_p((x),(p))
  47. # define __outl_p(x,p) sh_mv.mv_outl_p((x),(p))
  48. #define __insb(p,b,c) sh_mv.mv_insb((p), (b), (c))
  49. #define __insw(p,b,c) sh_mv.mv_insw((p), (b), (c))
  50. #define __insl(p,b,c) sh_mv.mv_insl((p), (b), (c))
  51. #define __outsb(p,b,c) sh_mv.mv_outsb((p), (b), (c))
  52. #define __outsw(p,b,c) sh_mv.mv_outsw((p), (b), (c))
  53. #define __outsl(p,b,c) sh_mv.mv_outsl((p), (b), (c))
  54. # define __readb(a) sh_mv.mv_readb((a))
  55. # define __readw(a) sh_mv.mv_readw((a))
  56. # define __readl(a) sh_mv.mv_readl((a))
  57. # define __writeb(v,a) sh_mv.mv_writeb((v),(a))
  58. # define __writew(v,a) sh_mv.mv_writew((v),(a))
  59. # define __writel(v,a) sh_mv.mv_writel((v),(a))
  60. # define __ioremap(a,s) sh_mv.mv_ioremap((a), (s))
  61. # define __iounmap(a) sh_mv.mv_iounmap((a))
  62. # define __isa_port2addr(a) sh_mv.mv_isa_port2addr(a)
  63. # define inb __inb
  64. # define inw __inw
  65. # define inl __inl
  66. # define outb __outb
  67. # define outw __outw
  68. # define outl __outl
  69. # define inb_p __inb_p
  70. # define inw_p __inw_p
  71. # define inl_p __inl_p
  72. # define outb_p __outb_p
  73. # define outw_p __outw_p
  74. # define outl_p __outl_p
  75. # define insb __insb
  76. # define insw __insw
  77. # define insl __insl
  78. # define outsb __outsb
  79. # define outsw __outsw
  80. # define outsl __outsl
  81. # define __raw_readb __readb
  82. # define __raw_readw __readw
  83. # define __raw_readl __readl
  84. # define __raw_writeb __writeb
  85. # define __raw_writew __writew
  86. # define __raw_writel __writel
  87. #else
  88. /* Control operations through platform specific headers */
  89. # define __WANT_IO_DEF
  90. # if defined(CONFIG_SH_HP600)
  91. #  include <asm/io_hd64461.h>
  92. # elif defined(CONFIG_SH_SOLUTION_ENGINE)
  93. #  include <asm/io_se.h>
  94. # elif defined(CONFIG_SH_SH2000)
  95. #  include <asm/io_sh2000.h>
  96. # elif defined(CONFIG_SH_DMIDA) || 
  97.        defined(CONFIG_SH_STB1_HARP) || 
  98.        defined(CONFIG_SH_STB1_OVERDRIVE)
  99. #  include <asm/io_hd64465.h>
  100. # elif defined(CONFIG_SH_EC3104)
  101. #  include <asm/io_ec3104.h>
  102. # elif defined(CONFIG_SH_DREAMCAST)
  103. #  include <asm/io_dc.h>
  104. # elif defined(CONFIG_SH_CAT68701)
  105. #  include <asm/io_cat68701.h>
  106. # elif defined(CONFIG_SH_BIGSUR)
  107. #  include <asm/io_bigsur.h>
  108. # elif defined(CONFIG_SH_7751_SOLUTION_ENGINE)
  109. #  include <asm/io_7751se.h>
  110. # elif defined(CONFIG_SH_ADX)
  111. #  include <asm/io_adx.h>
  112. # elif defined(CONFIG_SH_UNKNOWN)
  113. #  include <asm/io_unknown.h>
  114. # else
  115. #  error "What system is this?"
  116. #endif
  117. #undef __WANT_IO_DEF
  118. #endif /* GENERIC */
  119. #endif /* __KERNEL__ */
  120. /* These are always function calls, in both kernel and user space */
  121. extern unsigned char _inb (unsigned long port);
  122. extern unsigned short _inw (unsigned long port);
  123. extern unsigned int _inl (unsigned long port);
  124. extern void _outb (unsigned char b, unsigned long port);
  125. extern void _outw (unsigned short w, unsigned long port);
  126. extern void _outl (unsigned int l, unsigned long port);
  127. extern unsigned char _inb_p (unsigned long port);
  128. extern unsigned short _inw_p (unsigned long port);
  129. extern unsigned int _inl_p (unsigned long port);
  130. extern void _outb_p (unsigned char b, unsigned long port);
  131. extern void _outw_p (unsigned short w, unsigned long port);
  132. extern void _outl_p (unsigned int l, unsigned long port);
  133. extern void _insb (unsigned long port, void *dst, unsigned long count);
  134. extern void _insw (unsigned long port, void *dst, unsigned long count);
  135. extern void _insl (unsigned long port, void *dst, unsigned long count);
  136. extern void _outsb (unsigned long port, const void *src, unsigned long count);
  137. extern void _outsw (unsigned long port, const void *src, unsigned long count);
  138. extern void _outsl (unsigned long port, const void *src, unsigned long count);
  139. extern unsigned char _readb(unsigned long addr);
  140. extern unsigned short _readw(unsigned long addr);
  141. extern unsigned int _readl(unsigned long addr);
  142. extern void _writeb(unsigned char b, unsigned long addr);
  143. extern void _writew(unsigned short b, unsigned long addr);
  144. extern void _writel(unsigned int b, unsigned long addr);
  145. #ifdef __KERNEL__
  146. extern unsigned char ___raw_readb(unsigned long addr);
  147. extern unsigned short ___raw_readw(unsigned long addr);
  148. extern unsigned int ___raw_readl(unsigned long addr);
  149. extern void ___raw_writeb(unsigned char b, unsigned long addr);
  150. extern void ___raw_writew(unsigned short b, unsigned long addr);
  151. extern void ___raw_writel(unsigned int b, unsigned long addr);
  152. #endif
  153. #ifdef __KERNEL__
  154. /*
  155.  * The platform header files may define some of these macros to use
  156.  * the inlined versions where appropriate.  These macros may also be
  157.  * redefined by userlevel programs.
  158.  */
  159. #ifndef inb
  160. # define inb(p) _inb(p)
  161. #endif
  162. #ifndef inw
  163. # define inw(p) _inw(p)
  164. #endif
  165. #ifndef inl
  166. # define inl(p) _inl(p)
  167. #endif
  168. #ifndef outb
  169. # define outb(b,p) _outb((b),(p))
  170. #endif
  171. #ifndef outw
  172. # define outw(w,p) _outw((w),(p))
  173. #endif
  174. #ifndef outl
  175. # define outl(l,p) _outl((l),(p))
  176. #endif
  177. #ifndef inb_p
  178. # define inb_p _inb_p
  179. #endif
  180. #ifndef inw_p
  181. # define inw_p _inw_p
  182. #endif
  183. #ifndef inl_p
  184. # define inl_p _inl_p
  185. #endif
  186. #ifndef outb_p
  187. # define outb_p _outb_p
  188. #endif
  189. #ifndef outw_p
  190. # define outw_p _outw_p
  191. #endif
  192. #ifndef outl_p
  193. # define outl_p _outl_p
  194. #endif
  195. #ifndef insb
  196. # define insb(p,d,c) _insb((p),(d),(c))
  197. #endif
  198. #ifndef insw
  199. # define insw(p,d,c) _insw((p),(d),(c))
  200. #endif
  201. #ifndef insl
  202. # define insl(p,d,c) _insl((p),(d),(c))
  203. #endif
  204. #ifndef outsb
  205. # define outsb(p,s,c) _outsb((p),(s),(c))
  206. #endif
  207. #ifndef outsw
  208. # define outsw(p,s,c) _outsw((p),(s),(c))
  209. #endif
  210. #ifndef outsl
  211. # define outsl(p,s,c) _outsl((p),(s),(c))
  212. #endif
  213. #ifdef __raw_readb
  214. # define readb(a) ({ unsigned long r_ = __raw_readb(a); mb(); r_; })
  215. #endif
  216. #ifdef __raw_readw
  217. # define readw(a) ({ unsigned long r_ = __raw_readw(a); mb(); r_; })
  218. #endif
  219. #ifdef __raw_readl
  220. # define readl(a) ({ unsigned long r_ = __raw_readl(a); mb(); r_; })
  221. #endif
  222. #ifdef __raw_writeb
  223. # define writeb(v,a) ({ __raw_writeb((v),(a)); mb(); })
  224. #endif
  225. #ifdef __raw_writew
  226. # define writew(v,a) ({ __raw_writew((v),(a)); mb(); })
  227. #endif
  228. #ifdef __raw_writel
  229. # define writel(v,a) ({ __raw_writel((v),(a)); mb(); })
  230. #endif
  231. #ifndef __raw_readb
  232. # define __raw_readb(a) ___raw_readb((unsigned long)(a))
  233. #endif
  234. #ifndef __raw_readw
  235. # define __raw_readw(a) ___raw_readw((unsigned long)(a))
  236. #endif
  237. #ifndef __raw_readl
  238. # define __raw_readl(a) ___raw_readl((unsigned long)(a))
  239. #endif
  240. #ifndef __raw_writeb
  241. # define __raw_writeb(v,a)  ___raw_writeb((v),(unsigned long)(a))
  242. #endif
  243. #ifndef __raw_writew
  244. # define __raw_writew(v,a)  ___raw_writew((v),(unsigned long)(a))
  245. #endif
  246. #ifndef __raw_writel
  247. # define __raw_writel(v,a)  ___raw_writel((v),(unsigned long)(a))
  248. #endif
  249. #ifndef readb
  250. # define readb(a) _readb((unsigned long)(a))
  251. #endif
  252. #ifndef readw
  253. # define readw(a) _readw((unsigned long)(a))
  254. #endif
  255. #ifndef readl
  256. # define readl(a) _readl((unsigned long)(a))
  257. #endif
  258. #ifndef writeb
  259. # define writeb(v,a) _writeb((v),(unsigned long)(a))
  260. #endif
  261. #ifndef writew
  262. # define writew(v,a) _writew((v),(unsigned long)(a))
  263. #endif
  264. #ifndef writel
  265. # define writel(v,a) _writel((v),(unsigned long)(a))
  266. #endif
  267. #else 
  268. /* Userspace declarations.  */
  269. extern unsigned char inb(unsigned long port);
  270. extern unsigned short inw(unsigned long port);
  271. extern unsigned int inl(unsigned long port);
  272. extern void outb(unsigned char b, unsigned long port);
  273. extern void outw(unsigned short w, unsigned long port);
  274. extern void outl(unsigned int l, unsigned long port);
  275. extern void insb(unsigned long port, void *dst, unsigned long count);
  276. extern void insw(unsigned long port, void *dst, unsigned long count);
  277. extern void insl(unsigned long port, void *dst, unsigned long count);
  278. extern void outsb(unsigned long port, const void *src, unsigned long count);
  279. extern void outsw(unsigned long port, const void *src, unsigned long count);
  280. extern void outsl(unsigned long port, const void *src, unsigned long count);
  281. extern unsigned char readb(unsigned long addr);
  282. extern unsigned short readw(unsigned long addr);
  283. extern unsigned long readl(unsigned long addr);
  284. extern void writeb(unsigned char b, unsigned long addr);
  285. extern void writew(unsigned short b, unsigned long addr);
  286. extern void writel(unsigned int b, unsigned long addr);
  287. #endif /* __KERNEL__ */
  288. #ifdef __KERNEL__
  289. /*
  290.  * If the platform has PC-like I/O, this function converts the offset into
  291.  * an address.
  292.  */
  293. static __inline__ unsigned long isa_port2addr(unsigned long offset)
  294. {
  295. return __isa_port2addr(offset);
  296. }
  297. #define isa_readb(a) readb(isa_port2addr(a))
  298. #define isa_readw(a) readw(isa_port2addr(a))
  299. #define isa_readl(a) readl(isa_port2addr(a))
  300. #define isa_writeb(b,a) writeb(b,isa_port2addr(a))
  301. #define isa_writew(w,a) writew(w,isa_port2addr(a))
  302. #define isa_writel(l,a) writel(l,isa_port2addr(a))
  303. #define isa_memset_io(a,b,c) 
  304.   memset((void *)(isa_port2addr((unsigned long)a)),(b),(c))
  305. #define isa_memcpy_fromio(a,b,c) 
  306.   memcpy((a),(void *)(isa_port2addr((unsigned long)(b))),(c))
  307. #define isa_memcpy_toio(a,b,c) 
  308.   memcpy((void *)(isa_port2addr((unsigned long)(a))),(b),(c))
  309. /* We really want to try and get these to memcpy etc */
  310. extern void memcpy_fromio(void *, unsigned long, unsigned long);
  311. extern void memcpy_toio(unsigned long, const void *, unsigned long);
  312. extern void memset_io(unsigned long, int, unsigned long);
  313. /* SuperH on-chip I/O functions */
  314. static __inline__ unsigned char ctrl_inb(unsigned long addr)
  315. {
  316. return *(volatile unsigned char*)addr;
  317. }
  318. static __inline__ unsigned short ctrl_inw(unsigned long addr)
  319. {
  320. return *(volatile unsigned short*)addr;
  321. }
  322. static __inline__ unsigned int ctrl_inl(unsigned long addr)
  323. {
  324. return *(volatile unsigned long*)addr;
  325. }
  326. static __inline__ void ctrl_outb(unsigned char b, unsigned long addr)
  327. {
  328. *(volatile unsigned char*)addr = b;
  329. }
  330. static __inline__ void ctrl_outw(unsigned short b, unsigned long addr)
  331. {
  332. *(volatile unsigned short*)addr = b;
  333. }
  334. static __inline__ void ctrl_outl(unsigned int b, unsigned long addr)
  335. {
  336.         *(volatile unsigned long*)addr = b;
  337. }
  338. #define IO_SPACE_LIMIT 0xffffffff
  339. #include <asm/addrspace.h>
  340. /*
  341.  * Change virtual addresses to physical addresses and vv.
  342.  * These are trivial on the 1:1 Linux/SuperH mapping
  343.  */
  344. static __inline__ unsigned long virt_to_phys(volatile void * address)
  345. {
  346. return PHYSADDR(address);
  347. }
  348. static __inline__ void * phys_to_virt(unsigned long address)
  349. {
  350. return (void *)P1SEGADDR(address);
  351. }
  352. #define virt_to_bus virt_to_phys
  353. #define bus_to_virt phys_to_virt
  354. #define page_to_bus page_to_phys
  355. /*
  356.  * readX/writeX() are used to access memory mapped devices. On some
  357.  * architectures the memory mapped IO stuff needs to be accessed
  358.  * differently. On the x86 architecture, we just read/write the
  359.  * memory location directly.
  360.  *
  361.  * On SH, we have the whole physical address space mapped at all times
  362.  * (as MIPS does), so "ioremap()" and "iounmap()" do not need to do
  363.  * anything.  (This isn't true for all machines but we still handle
  364.  * these cases with wired TLB entries anyway ...)
  365.  *
  366.  * We cheat a bit and always return uncachable areas until we've fixed
  367.  * the drivers to handle caching properly.  
  368.  */
  369. static __inline__ void * ioremap(unsigned long offset, unsigned long size)
  370. {
  371. return __ioremap(offset, size);
  372. }
  373. static __inline__ void iounmap(void *addr)
  374. {
  375. return __iounmap(addr);
  376. }
  377. #define ioremap_nocache(off,size) ioremap(off,size)
  378. static __inline__ int check_signature(unsigned long io_addr,
  379. const unsigned char *signature, int length)
  380. {
  381. int retval = 0;
  382. do {
  383. if (readb(io_addr) != *signature)
  384. goto out;
  385. io_addr++;
  386. signature++;
  387. length--;
  388. } while (length);
  389. retval = 1;
  390. out:
  391. return retval;
  392. }
  393. /*
  394.  * The caches on some architectures aren't dma-coherent and have need to
  395.  * handle this in software.  There are three types of operations that
  396.  * can be applied to dma buffers.
  397.  *
  398.  *  - dma_cache_wback_inv(start, size) makes caches and RAM coherent by
  399.  *    writing the content of the caches back to memory, if necessary.
  400.  *    The function also invalidates the affected part of the caches as
  401.  *    necessary before DMA transfers from outside to memory.
  402.  *  - dma_cache_inv(start, size) invalidates the affected parts of the
  403.  *    caches.  Dirty lines of the caches may be written back or simply
  404.  *    be discarded.  This operation is necessary before dma operations
  405.  *    to the memory.
  406.  *  - dma_cache_wback(start, size) writes back any dirty lines but does
  407.  *    not invalidate the cache.  This can be used before DMA reads from
  408.  *    memory,
  409.  */
  410. #define dma_cache_wback_inv(_start,_size) 
  411.     __flush_purge_region(_start,_size)
  412. #define dma_cache_inv(_start,_size) 
  413.     __flush_invalidate_region(_start,_size)
  414. #define dma_cache_wback(_start,_size) 
  415.     __flush_wback_region(_start,_size)
  416. #endif /* __KERNEL__ */
  417. #endif /* __ASM_SH_IO_H */