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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: ns87303.h,v 1.3 2000/01/09 15:16:34 ecd Exp $
  2.  * ns87303.h: Configuration Register Description for the
  3.  *            National Semiconductor PC87303 (SuperIO).
  4.  *
  5.  * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
  6.  */
  7. #ifndef _SPARC_NS87303_H
  8. #define _SPARC_NS87303_H 1
  9. /*
  10.  * Controll Register Index Values
  11.  */
  12. #define FER 0x00
  13. #define FAR 0x01
  14. #define PTR 0x02
  15. #define FCR 0x03
  16. #define PCR 0x04
  17. #define KRR 0x05
  18. #define PMC 0x06
  19. #define TUP 0x07
  20. #define SID 0x08
  21. #define ASC 0x09
  22. #define CS0CF0 0x0a
  23. #define CS0CF1 0x0b
  24. #define CS1CF0 0x0c
  25. #define CS1CF1 0x0d
  26. /* Function Enable Register (FER) bits */
  27. #define FER_EDM 0x10 /* Encoded Drive and Motor pin information   */
  28. /* Function Address Register (FAR) bits */
  29. #define FAR_LPT_MASK 0x03
  30. #define FAR_LPTB 0x00
  31. #define FAR_LPTA 0x01
  32. #define FAR_LPTC 0x02
  33. /* Power and Test Register (PTR) bits */
  34. #define PTR_LPTB_IRQ7 0x08
  35. #define PTR_LEVEL_IRQ 0x80 /* When not ECP/EPP: Use level IRQ           */
  36. #define PTR_LPT_REG_DIR 0x80 /* When ECP/EPP: LPT CTR controlls direction */
  37. /*               of the parallel port      */
  38. /* Function Control Register (FCR) bits */
  39. #define FCR_LDE 0x10 /* Logical Drive Exchange                    */
  40. #define FCR_ZWS_ENA 0x20 /* Enable short host read/write in ECP/EPP   */
  41. /* Printer Control Register (PCR) bits */
  42. #define PCR_EPP_ENABLE 0x01
  43. #define PCR_EPP_IEEE 0x02 /* Enable EPP Version 1.9 (IEEE 1284)        */
  44. #define PCR_ECP_ENABLE 0x04
  45. #define PCR_ECP_CLK_ENA 0x08 /* If 0 ECP Clock is stopped on Power down   */
  46. #define PCR_IRQ_POLAR 0x20 /* If 0 IRQ is level high or negative pulse, */
  47. /* if 1 polarity is inverted                 */
  48. #define PCR_IRQ_ODRAIN 0x40 /* If 1, IRQ is open drain                   */
  49. /* Tape UARTs and Parallel Port Config Register (TUP) bits */
  50. #define TUP_EPP_TIMO 0x02 /* Enable EPP timeout IRQ                    */
  51. /* Advanced SuperIO Config Register (ASC) bits */
  52. #define ASC_LPT_IRQ7 0x01 /* Allways use IRQ7 for LPT                  */
  53. #define ASC_DRV2_SEL 0x02 /* Logical Drive Exchange controlled by TDR  */
  54. #define FER_RESERVED 0x00
  55. #define FAR_RESERVED 0x00
  56. #define PTR_RESERVED 0x73
  57. #define FCR_RESERVED 0xc4
  58. #define PCR_RESERVED 0x10
  59. #define KRR_RESERVED 0x00
  60. #define PMC_RESERVED 0x98
  61. #define TUP_RESERVED 0xfb
  62. #define SIP_RESERVED 0x00
  63. #define ASC_RESERVED 0x18
  64. #define CS0CF0_RESERVED 0x00
  65. #define CS0CF1_RESERVED 0x08
  66. #define CS1CF0_RESERVED 0x00
  67. #define CS1CF1_RESERVED 0x08
  68. #ifdef __KERNEL__
  69. #include <asm/system.h>
  70. #include <asm/io.h>
  71. static __inline__ int ns87303_modify(unsigned long port, unsigned int index,
  72.      unsigned char clr, unsigned char set)
  73. {
  74. static unsigned char reserved[] = {
  75. FER_RESERVED, FAR_RESERVED, PTR_RESERVED, FCR_RESERVED,
  76. PCR_RESERVED, KRR_RESERVED, PMC_RESERVED, TUP_RESERVED,
  77. SIP_RESERVED, ASC_RESERVED, CS0CF0_RESERVED, CS0CF1_RESERVED,
  78. CS1CF0_RESERVED, CS1CF1_RESERVED
  79. };
  80. unsigned long flags;
  81. unsigned char value;
  82. if (index > 0x0d)
  83. return -EINVAL;
  84. save_flags(flags); cli();
  85. outb(index, port);
  86. value = inb(port + 1);
  87. value &= ~(reserved[index] | clr);
  88. value |= set;
  89. outb(value, port + 1);
  90. outb(value, port + 1);
  91. restore_flags(flags);
  92. return 0;
  93. }
  94. #endif /* __KERNEL__ */
  95. #endif /* !(_SPARC_NS87303_H) */