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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-sh/io_hd64465.h
  3.  *
  4.  * By Greg Banks <gbanks@pocketpenguins.com>
  5.  * (c) 2000 PocketPenguins Inc.
  6.  *
  7.  * Derived from io_hd64461.h, which bore the message:
  8.  * Copyright 2000 Stuart Menefy (stuart.menefy@st.com)
  9.  *
  10.  * May be copied or modified under the terms of the GNU General Public
  11.  * License.  See linux/COPYING for more information.
  12.  *
  13.  * IO functions for an HD64465 "Windows CE Intelligent Peripheral Controller".
  14.  */
  15. #ifndef _ASM_SH_IO_HD64465_H
  16. #define _ASM_SH_IO_HD64465_H
  17. #include <asm/io_generic.h>
  18. extern unsigned char hd64465_inb(unsigned long port);
  19. extern unsigned short hd64465_inw(unsigned long port);
  20. extern unsigned int hd64465_inl(unsigned long port);
  21. extern void hd64465_outb(unsigned char value, unsigned long port);
  22. extern void hd64465_outw(unsigned short value, unsigned long port);
  23. extern void hd64465_outl(unsigned int value, unsigned long port);
  24. extern unsigned char hd64465_inb_p(unsigned long port);
  25. extern void hd64465_outb_p(unsigned char value, unsigned long port);
  26. extern void hd64465_insb(unsigned long port, void *addr, unsigned long count);
  27. extern void hd64465_insw(unsigned long port, void *addr, unsigned long count);
  28. extern void hd64465_insl(unsigned long port, void *addr, unsigned long count);
  29. extern void hd64465_outsb(unsigned long port, const void *addr, unsigned long count);
  30. extern void hd64465_outsw(unsigned long port, const void *addr, unsigned long count);
  31. extern void hd64465_outsl(unsigned long port, const void *addr, unsigned long count);
  32. extern unsigned long hd64465_isa_port2addr(unsigned long offset);
  33. extern int hd64465_irq_demux(int irq);
  34. /* Provision for generic secondary demux step -- used by PCMCIA code */
  35. extern void hd64465_register_irq_demux(int irq,
  36. int (*demux)(int irq, void *dev), void *dev);
  37. extern void hd64465_unregister_irq_demux(int irq);
  38. /* Set this variable to 1 to see port traffic */
  39. extern int hd64465_io_debug;
  40. /* Map a range of ports to a range of kernel virtual memory.
  41.  */
  42. extern void hd64465_port_map(unsigned short baseport, unsigned int nports,
  43.      unsigned long addr, unsigned char shift);
  44. extern void hd64465_port_unmap(unsigned short baseport, unsigned int nports);
  45. #ifdef __WANT_IO_DEF
  46. # define __inb hd64465_inb
  47. # define __inw hd64465_inw
  48. # define __inl hd64465_inl
  49. # define __outb hd64465_outb
  50. # define __outw hd64465_outw
  51. # define __outl hd64465_outl
  52. # define __inb_p hd64465_inb_p
  53. # define __inw_p hd64465_inw
  54. # define __inl_p hd64465_inl
  55. # define __outb_p hd64465_outb_p
  56. # define __outw_p hd64465_outw
  57. # define __outl_p hd64465_outl
  58. # define __insb hd64465_insb
  59. # define __insw hd64465_insw
  60. # define __insl hd64465_insl
  61. # define __outsb hd64465_outsb
  62. # define __outsw hd64465_outsw
  63. # define __outsl hd64465_outsl
  64. # define __readb generic_readb
  65. # define __readw generic_readw
  66. # define __readl generic_readl
  67. # define __writeb generic_writeb
  68. # define __writew generic_writew
  69. # define __writel generic_writel
  70. # define __isa_port2addr hd64465_isa_port2addr
  71. # define __ioremap generic_ioremap
  72. # define __iounmap generic_iounmap
  73. #endif
  74. #endif /* _ASM_SH_IO_HD64465_H */