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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: auxio.h,v 1.18 1997/11/07 15:01:45 jj 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 _SPARC_AUXIO_H
  7. #define _SPARC_AUXIO_H
  8. #include <asm/system.h>
  9. #include <asm/vaddrs.h>
  10. extern unsigned char *auxio_register;
  11. /* This register is an unsigned char in IO space.  It does two things.
  12.  * First, it is used to control the front panel LED light on machines
  13.  * that have it (good for testing entry points to trap handlers and irq's)
  14.  * Secondly, it controls various floppy drive parameters.
  15.  */
  16. #define AUXIO_ORMEIN      0xf0    /* All writes must set these bits. */
  17. #define AUXIO_ORMEIN4M    0xc0    /* sun4m - All writes must set these bits. */
  18. #define AUXIO_FLPY_DENS   0x20    /* Floppy density, high if set. Read only. */
  19. #define AUXIO_FLPY_DCHG   0x10    /* A disk change occurred.  Read only. */
  20. #define AUXIO_EDGE_ON     0x10    /* sun4m - On means Jumper block is in. */
  21. #define AUXIO_FLPY_DSEL   0x08    /* Drive select/start-motor. Write only. */
  22. #define AUXIO_LINK_TEST   0x08    /* sun4m - On means TPE Carrier detect. */
  23. /* Set the following to one, then zero, after doing a pseudo DMA transfer. */
  24. #define AUXIO_FLPY_TCNT   0x04    /* Floppy terminal count. Write only. */
  25. /* Set the following to zero to eject the floppy. */
  26. #define AUXIO_FLPY_EJCT   0x02    /* Eject floppy disk.  Write only. */
  27. #define AUXIO_LED         0x01    /* On if set, off if unset. Read/Write */
  28. #define AUXREG   ((volatile unsigned char *)(auxio_register))
  29. /* These are available on sun4c */
  30. #define TURN_ON_LED   if (AUXREG) *AUXREG = (*AUXREG | AUXIO_ORMEIN | AUXIO_LED)
  31. #define TURN_OFF_LED  if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) & (~AUXIO_LED))
  32. #define FLIP_LED      if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) ^ AUXIO_LED)
  33. #define FLPY_MOTORON  if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) | AUXIO_FLPY_DSEL)
  34. #define FLPY_MOTOROFF if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) & (~AUXIO_FLPY_DSEL))
  35. #define FLPY_TCNTON   if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) | AUXIO_FLPY_TCNT)
  36. #define FLPY_TCNTOFF  if (AUXREG) *AUXREG = ((*AUXREG | AUXIO_ORMEIN) & (~AUXIO_FLPY_TCNT))
  37. #ifndef __ASSEMBLY__
  38. #define set_auxio(bits_on, bits_off) 
  39. do { 
  40. unsigned char regval; 
  41. unsigned long flags; 
  42. save_flags(flags); cli(); 
  43. switch(sparc_cpu_model) { 
  44. case sun4c: 
  45. regval = *AUXREG; 
  46. *AUXREG = ((regval | bits_on) & ~bits_off) | AUXIO_ORMEIN; 
  47. break; 
  48. case sun4m: 
  49. if(!AUXREG) 
  50. break;     /* VME chassic sun4m, no auxio. */ 
  51. regval = *AUXREG; 
  52. *AUXREG = ((regval | bits_on) & ~bits_off) | AUXIO_ORMEIN4M; 
  53. break; 
  54. case sun4d: 
  55. break; 
  56. default: 
  57. panic("Can't set AUXIO register on this machine."); 
  58. }; 
  59. restore_flags(flags); 
  60. } while(0)
  61. #endif /* !(__ASSEMBLY__) */
  62. /* AUXIO2 (Power Off Control) */
  63. extern __volatile__ unsigned char * auxio_power_register;
  64. #define AUXIO_POWER_DETECT_FAILURE 32
  65. #define AUXIO_POWER_CLEAR_FAILURE 2
  66. #define AUXIO_POWER_OFF 1
  67. #endif /* !(_SPARC_AUXIO_H) */