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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1992 - 1997, 2000-2002 Silicon Graphics, Inc. All rights reserved.
  8.  */
  9. #ifndef _ASM_IA64_SN_PIO_H
  10. #define _ASM_IA64_SN_PIO_H
  11. #include <linux/types.h>
  12. #include <asm/sn/sgi.h>
  13. #include <asm/sn/driver.h>
  14. /*
  15.  * pioaddr_t - The kernel virtual address that a PIO can be done upon.
  16.  *   Should probably be (volatile void*) but EVEREST would do PIO
  17.  *   to long mostly, just cast for other sizes.
  18.  */
  19. typedef volatile ulong* pioaddr_t;
  20. /*
  21.  * iopaddr_t - the physical io space relative address (e.g. VME A16S 0x0800).
  22.  * iosapce_t - specifies the io address space to be mapped/accessed.
  23.  * piomap_t - the handle returned by pio_alloc() and used with all the pio
  24.  *   access functions.
  25.  */
  26. typedef struct piomap {
  27. uint pio_bus;
  28. uint pio_adap;
  29. #ifdef LATER
  30. iospace_t pio_iospace;
  31. #endif
  32. int pio_flag;
  33. int pio_reg;
  34. char pio_name[7]; /* to identify the mapped device */
  35. struct piomap *pio_next; /* dlist to link active piomap's */
  36. struct piomap *pio_prev; /* for debug and error reporting */
  37. #ifdef LATER
  38. void (*pio_errfunc)(); /* Pointer to an error function */
  39.   /* Used only for piomaps allocated
  40.    * in user level vme driver     */
  41. #endif
  42. iopaddr_t pio_iopmask; /* valid iop address bit mask */
  43. iobush_t pio_bushandle; /* bus-level handle */
  44. } piomap_t;
  45. #define pio_type pio_iospace.ios_type
  46. #define pio_iopaddr pio_iospace.ios_iopaddr
  47. #define pio_size pio_iospace.ios_size
  48. #define pio_vaddr pio_iospace.ios_vaddr
  49. /* Macro to get/set PIO error function */
  50. #define pio_seterrf(p,f) (p)->pio_errfunc = (f)
  51. #define pio_geterrf(p) (p)->pio_errfunc
  52. /*
  53.  * pio_mapalloc() - allocates a handle that specifies a mapping from kernel
  54.  *     virtual to io space. The returned handle piomap is used
  55.  *     with the access functions to make sure that the mapping
  56.  *     to the iospace exists.
  57.  * pio_mapfree()  - frees the mapping as specified in the piomap handle.
  58.  * pio_mapaddr()  - returns the kv address that maps to piomap'ed io address.
  59.  */
  60. #ifdef LATER
  61. extern piomap_t *pio_mapalloc(uint,uint,iospace_t*,int,char*);
  62. extern void  pio_mapfree(piomap_t*);
  63. extern caddr_t  pio_mapaddr(piomap_t*,iopaddr_t);
  64. extern piomap_t *pio_ioaddr(int, iobush_t, iopaddr_t, piomap_t *);
  65. /*
  66.  * PIO access functions.
  67.  */
  68. extern int  pio_badaddr(piomap_t*,iopaddr_t,int);
  69. extern int  pio_badaddr_val(piomap_t*,iopaddr_t,int,void*);
  70. extern int  pio_wbadaddr(piomap_t*,iopaddr_t,int);
  71. extern int  pio_wbadaddr_val(piomap_t*,iopaddr_t,int,int);
  72. extern int  pio_bcopyin(piomap_t*,iopaddr_t,void *,int, int, int);
  73. extern int  pio_bcopyout(piomap_t*,iopaddr_t,void *,int, int, int);
  74. /*
  75.  * PIO RMW functions using piomap.
  76.  */
  77. extern void pio_orb_rmw(piomap_t*, iopaddr_t, unsigned char);
  78. extern void pio_orh_rmw(piomap_t*, iopaddr_t, unsigned short);
  79. extern void pio_orw_rmw(piomap_t*, iopaddr_t, unsigned long);
  80. extern void pio_andb_rmw(piomap_t*, iopaddr_t, unsigned char);
  81. extern void pio_andh_rmw(piomap_t*, iopaddr_t, unsigned short); 
  82. extern void pio_andw_rmw(piomap_t*, iopaddr_t, unsigned long); 
  83. /*
  84.  * Old RMW function interface
  85.  */
  86. extern void orb_rmw(volatile void*, unsigned int);
  87. extern void orh_rmw(volatile void*, unsigned int);
  88. extern void orw_rmw(volatile void*, unsigned int);
  89. extern void andb_rmw(volatile void*, unsigned int);
  90. extern void andh_rmw(volatile void*, unsigned int);
  91. extern void andw_rmw(volatile void*, unsigned int);
  92. #endif /* LATER */
  93. /*
  94.  * piomap_t type defines
  95.  */
  96. #define PIOMAP_NTYPES 7
  97. #define PIOMAP_A16N VME_A16NP
  98. #define PIOMAP_A16S VME_A16S
  99. #define PIOMAP_A24N VME_A24NP
  100. #define PIOMAP_A24S VME_A24S
  101. #define PIOMAP_A32N VME_A32NP
  102. #define PIOMAP_A32S VME_A32S
  103. #define PIOMAP_A64 6
  104. #define PIOMAP_EISA_IO 0
  105. #define PIOMAP_EISA_MEM 1
  106. #define PIOMAP_PCI_IO 0
  107. #define PIOMAP_PCI_MEM 1
  108. #define PIOMAP_PCI_CFG 2
  109. #define PIOMAP_PCI_ID 3
  110. /* IBUS piomap types */
  111. #define PIOMAP_FCI 0
  112. /* dang gio piomap types */
  113. #define PIOMAP_GIO32 0
  114. #define PIOMAP_GIO64 1
  115. #define ET_MEM          0
  116. #define ET_IO           1
  117. #define LAN_RAM         2
  118. #define LAN_IO          3
  119. #define PIOREG_NULL (-1)
  120. /* standard flags values for pio_map routines,
  121.  * including {xtalk,pciio}_piomap calls.
  122.  * NOTE: try to keep these in step with DMAMAP flags.
  123.  */
  124. #define PIOMAP_UNFIXED 0x0
  125. #define PIOMAP_FIXED 0x1
  126. #define PIOMAP_NOSLEEP 0x2
  127. #define PIOMAP_INPLACE 0x4
  128. #define PIOMAP_FLAGS 0x7
  129. #endif /* _ASM_IA64_SN_PIO_H */