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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-ebsa110/io.h
  3.  *
  4.  *  Copyright (C) 1997,1998 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  * Modifications:
  11.  *  06-Dec-1997 RMK Created.
  12.  */
  13. #ifndef __ASM_ARM_ARCH_IO_H
  14. #define __ASM_ARM_ARCH_IO_H
  15. #define IO_SPACE_LIMIT 0xffff
  16. /*
  17.  * Generic virtual read/write
  18.  */
  19. #define __arch_getw(a) (*(volatile unsigned short *)(a))
  20. #define __arch_putw(v,a) (*(volatile unsigned short *)(a) = (v))
  21. u8 __inb8(unsigned int port);
  22. void __outb8(u8  val, unsigned int port);
  23. u8 __inb16(unsigned int port);
  24. void __outb16(u8  val, unsigned int port);
  25. u16 __inw(unsigned int port);
  26. void __outw(u16 val, unsigned int port);
  27. u32 __inl(unsigned int port);
  28. void __outl(u32 val, unsigned int port);
  29. u8  __readb(void *addr);
  30. u16 __readw(void *addr);
  31. u32 __readl(void *addr);
  32. void __writeb(u8  val, void *addr);
  33. void __writew(u16 val, void *addr);
  34. void __writel(u32 val, void *addr);
  35. /*
  36.  * Argh, someone forgot the IOCS16 line.  We therefore have to handle
  37.  * the byte stearing by selecting the correct byte IO functions here.
  38.  */
  39. #ifdef ISA_SIXTEEN_BIT_PERIPHERAL
  40. #define inb(p) __inb16(p)
  41. #define outb(v,p) __outb16(v,p)
  42. #else
  43. #define inb(p) __inb8(p)
  44. #define outb(v,p) __outb8(v,p)
  45. #endif
  46. #define inw(p) __inw(p)
  47. #define outw(v,p) __outw(v,p)
  48. #define inl(p) __inl(p)
  49. #define outl(v,p) __outl(v,p)
  50. #define readb(b) __readb(b)
  51. #define readw(b) __readw(b)
  52. #define readl(b) __readl(b)
  53. #define writeb(v,b) __writeb(v,b)
  54. #define writew(v,b) __writew(v,b)
  55. #define writel(v,b) __writel(v,b)
  56. #define __arch_ioremap(off,sz,c) ((void *)(off))
  57. #define __arch_iounmap(virt) do { } while (0)
  58. extern void insb(unsigned int port, void *buf, int sz);
  59. extern void insw(unsigned int port, void *buf, int sz);
  60. extern void insl(unsigned int port, void *buf, int sz);
  61. extern void outsb(unsigned int port, const void *buf, int sz);
  62. extern void outsw(unsigned int port, const void *buf, int sz);
  63. extern void outsl(unsigned int port, const void *buf, int sz);
  64. #endif