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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: io.h,v 1.2 2000/02/02 16:35:57 ralf Exp $
  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) 2000 Ralf Baechle
  8.  * Copyright (C) 2000 Silicon Graphics, Inc.
  9.  */
  10. #ifndef _ASM_SN_IO_H
  11. #define _ASM_SN_IO_H
  12. #include <linux/config.h>
  13. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  14. #include <asm/sn/sn1/addrs.h>
  15. #endif
  16. /* Because we only have PCI I/O ports.  */
  17. #define IIO_ITTE_BASE 0x400160 /* base of translation table entries */
  18. #define IIO_ITTE(bigwin) (IIO_ITTE_BASE + 8*(bigwin))
  19. #define IIO_ITTE_OFFSET_BITS 5 /* size of offset field */
  20. #define IIO_ITTE_OFFSET_MASK ((1<<IIO_ITTE_OFFSET_BITS)-1)
  21. #define IIO_ITTE_OFFSET_SHIFT 0
  22. #define IIO_ITTE_WIDGET_BITS 4 /* size of widget field */
  23. #define IIO_ITTE_WIDGET_MASK ((1<<IIO_ITTE_WIDGET_BITS)-1)
  24. #define IIO_ITTE_WIDGET_SHIFT 8
  25. #define IIO_ITTE_IOSP 1 /* I/O Space bit */
  26. #define IIO_ITTE_IOSP_MASK 1
  27. #define IIO_ITTE_IOSP_SHIFT 12
  28. #define HUB_PIO_MAP_TO_MEM 0
  29. #define HUB_PIO_MAP_TO_IO 1
  30. #define IIO_ITTE_INVALID_WIDGET 3 /* an invalid widget  */
  31. #define IIO_ITTE_PUT(nasid, bigwin, io_or_mem, widget, addr) 
  32. REMOTE_HUB_S((nasid), IIO_ITTE(bigwin), 
  33. (((((addr) >> BWIN_SIZE_BITS) & 
  34.    IIO_ITTE_OFFSET_MASK) << IIO_ITTE_OFFSET_SHIFT) | 
  35. (io_or_mem << IIO_ITTE_IOSP_SHIFT) | 
  36. (((widget) & IIO_ITTE_WIDGET_MASK) << IIO_ITTE_WIDGET_SHIFT)))
  37. #define IIO_ITTE_DISABLE(nasid, bigwin) 
  38. IIO_ITTE_PUT((nasid), HUB_PIO_MAP_TO_MEM, 
  39.      (bigwin), IIO_ITTE_INVALID_WIDGET, 0)
  40. #define IIO_ITTE_GET(nasid, bigwin) REMOTE_HUB_ADDR((nasid), IIO_ITTE(bigwin))
  41. /*
  42.  * Macro which takes the widget number, and returns the 
  43.  * IO PRB address of that widget.
  44.  * value _x is expected to be a widget number in the range 
  45.  * 0, 8 - 0xF
  46.  */
  47. #define IIO_IOPRB(_x) (IIO_IOPRB_0 + ( ( (_x) < HUB_WIDGET_ID_MIN ? 
  48. (_x) : 
  49. (_x) - (HUB_WIDGET_ID_MIN-1)) << 3) )
  50. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  51. #include <asm/sn/sn1/hubio.h>
  52. #endif
  53. #endif /* _ASM_SN_IO_H */