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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: auxio.h,v 1.3 2001/06/05 08:16:34 davem Exp $
  2.  * auxio.h:  Definitions and code for the Auxiliary I/O register.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #ifndef _SPARC64_AUXIO_H
  7. #define _SPARC64_AUXIO_H
  8. #include <asm/system.h>
  9. #include <asm/io.h>
  10. /* FIXME: All of this should be checked for sun4u. It has /sbus/auxio, but
  11.    I don't know whether it is the same and don't have a floppy */
  12. extern unsigned long auxio_register;
  13. /* This register is an unsigned char in IO space.  It does two things.
  14.  * First, it is used to control the front panel LED light on machines
  15.  * that have it (good for testing entry points to trap handlers and irq's)
  16.  * Secondly, it controls various floppy drive parameters.
  17.  */
  18. #define AUXIO_ORMEIN      0xf0    /* All writes must set these bits. */
  19. #define AUXIO_ORMEIN4M    0xc0    /* sun4m - All writes must set these bits. */
  20. #define AUXIO_FLPY_DENS   0x20    /* Floppy density, high if set. Read only. */
  21. #define AUXIO_FLPY_DCHG   0x10    /* A disk change occurred.  Read only. */
  22. #define AUXIO_EDGE_ON     0x10    /* sun4m - On means Jumper block is in. */
  23. #define AUXIO_FLPY_DSEL   0x08    /* Drive select/start-motor. Write only. */
  24. #define AUXIO_LINK_TEST   0x08    /* sun4m - On means TPE Carrier detect. */
  25. /* Set the following to one, then zero, after doing a pseudo DMA transfer. */
  26. #define AUXIO_FLPY_TCNT   0x04    /* Floppy terminal count. Write only. */
  27. /* Set the following to zero to eject the floppy. */
  28. #define AUXIO_FLPY_EJCT   0x02    /* Eject floppy disk.  Write only. */
  29. #define AUXIO_LED         0x01    /* On if set, off if unset. Read/Write */
  30. #define AUXREG   (auxio_register)
  31. /* These are available on sun4c */
  32. #define TURN_ON_LED   
  33. do { if (AUXREG) 
  34. sbus_writeb(sbus_readb(AUXREG) | 
  35.     (AUXIO_ORMEIN | AUXIO_LED), AUXREG); 
  36. } while(0)
  37. #define TURN_OFF_LED  
  38. do { if (AUXREG) 
  39. sbus_writeb((sbus_readb(AUXREG) | 
  40.      AUXIO_ORMEIN) & (~AUXIO_LED), 
  41.     AUXREG); 
  42. } while(0)
  43. #define FLIP_LED
  44. do { if (AUXREG)  
  45. sbus_writeb((sbus_readb(AUXREG) | 
  46.      AUXIO_ORMEIN) ^ AUXIO_LEN, 
  47.     AUXREG); 
  48. } while(0)
  49. #define FLPY_MOTORON
  50. do { if (AUXREG) 
  51. sbus_writeb(sbus_readb(AUXREG) | 
  52.     (AUXIO_ORMEIN | AUXIO_FLPY_DSEL), 
  53.     AUXREG); 
  54. } while(0)
  55. #define FLPY_MOTOROFF
  56. do { if (AUXREG) 
  57. sbus_writeb((sbus_readb(AUXREG) | 
  58.      AUXIO_ORMEIN) & (~AUXIO_FLPY_DSEL), 
  59.     AUXREG); 
  60. } while(0)
  61. #define FLPY_TCNTON
  62. do { if (AUXREG) 
  63. sbus_writeb((sbus_readb(AUXREG) | 
  64.      AUXIO_ORMEIN) | AUXIO_FLPY_TCNT, 
  65.     AUXREG); 
  66. } while(0)
  67. #define FLPY_TCNTOFF
  68. do { if (AUXREG) 
  69. sbus_writeb((sbus_readb(AUXREG) | 
  70.      AUXIO_ORMEIN) & (~AUXIO_FLPY_TCNT), 
  71.     AUXREG); 
  72. } while(0)
  73. #ifndef __ASSEMBLY__
  74. extern __inline__ void set_auxio(unsigned char bits_on, unsigned char bits_off)
  75. {
  76. unsigned char regval;
  77. unsigned long flags;
  78. save_flags(flags); cli();
  79. if(AUXREG) {
  80. unsigned char newval;
  81. regval = sbus_readb(AUXREG);
  82. newval  = regval | bits_on;
  83. newval &= ~bits_off;
  84. newval |= AUXIO_ORMEIN4M;
  85. sbus_writeb(newval, AUXREG);
  86. }
  87. restore_flags(flags);
  88. }
  89. #endif /* !(__ASSEMBLY__) */
  90. /* AUXIO2 (Power Off Control) */
  91. extern __volatile__ unsigned char * auxio_power_register;
  92. #define AUXIO_POWER_DETECT_FAILURE 32
  93. #define AUXIO_POWER_CLEAR_FAILURE 2
  94. #define AUXIO_POWER_OFF 1
  95. #endif /* !(_SPARC_AUXIO_H) */