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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <linux/config.h>
  2. #include <linux/types.h>
  3. #include <asm/io.h>
  4. /*
  5.  * Copy data from IO memory space to "real" memory space.
  6.  * This needs to be optimized.
  7.  */
  8. void
  9. __ia64_memcpy_fromio (void * to, unsigned long from, long count)
  10. {
  11. while (count) {
  12. count--;
  13. *(char *) to = readb(from);
  14. ((char *) to)++;
  15. from++;
  16. }
  17. }
  18. /*
  19.  * Copy data from "real" memory space to IO memory space.
  20.  * This needs to be optimized.
  21.  */
  22. void
  23. __ia64_memcpy_toio (unsigned long to, void * from, long count)
  24. {
  25. while (count) {
  26. count--;
  27. writeb(*(char *) from, to);
  28. ((char *) from)++;
  29. to++;
  30. }
  31. }
  32. /*
  33.  * "memset" on IO memory space.
  34.  * This needs to be optimized.
  35.  */
  36. void
  37. __ia64_memset_c_io (unsigned long dst, unsigned long c, long count)
  38. {
  39. unsigned char ch = (char)(c & 0xff);
  40. while (count) {
  41. count--;
  42. writeb(ch, dst);
  43. dst++;
  44. }
  45. }
  46. #ifdef CONFIG_IA64_GENERIC
  47. unsigned int
  48. ia64_inb (unsigned long port)
  49. {
  50. return __ia64_inb(port);
  51. }
  52. unsigned int
  53. ia64_inw (unsigned long port)
  54. {
  55. return __ia64_inw(port);
  56. }
  57. unsigned int
  58. ia64_inl (unsigned long port)
  59. {
  60. return __ia64_inl(port);
  61. }
  62. void
  63. ia64_outb (unsigned char val, unsigned long port)
  64. {
  65. __ia64_outb(val, port);
  66. }
  67. void
  68. ia64_outw (unsigned short val, unsigned long port)
  69. {
  70. __ia64_outw(val, port);
  71. }
  72. void
  73. ia64_outl (unsigned int val, unsigned long port)
  74. {
  75. __ia64_outl(val, port);
  76. }
  77. /* define aliases: */
  78. asm (".global __ia64_inb, __ia64_inw, __ia64_inl");
  79. asm ("__ia64_inb = ia64_inb");
  80. asm ("__ia64_inw = ia64_inw");
  81. asm ("__ia64_inl = ia64_inl");
  82. asm (".global __ia64_outb, __ia64_outw, __ia64_outl");
  83. asm ("__ia64_outb = ia64_outb");
  84. asm ("__ia64_outw = ia64_outw");
  85. asm ("__ia64_outl = ia64_outl");
  86. #endif /* CONFIG_IA64_GENERIC */