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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: etraxgpio.h,v 1.8 2002/06/17 15:53:07 johana Exp $ */
  2. /*
  3.  * The following devices are accessable using this driver using
  4.  * GPIO_MAJOR (120) and a couple of minor numbers:
  5.  * /dev/gpioa  minor 0, 8 bit GPIO, each bit can change direction
  6.  * /dev/gpiob  minor 1, 8 bit GPIO, each bit can change direction
  7.  * /dev/leds   minor 2, Access to leds depending on kernelconfig
  8.  * /dev/gpiog  minor 3
  9.          g0dir, g8_15dir, g16_23dir, g24 dir configurable in R_GEN_CONFIG
  10.          g1-g7 and g25-g31 is both input and outputs but on different pins
  11.          Also note that some bits change pins depending on what interfaces 
  12.          are enabled.
  13.  */
  14. #ifndef _ASM_ETRAXGPIO_H
  15. #define _ASM_ETRAXGPIO_H
  16. /* etraxgpio _IOC_TYPE, bits 8 to 15 in ioctl cmd */
  17. #define ETRAXGPIO_IOCTYPE 43
  18. #define GPIO_MINOR_A 0
  19. #define GPIO_MINOR_B 1
  20. #define GPIO_MINOR_LEDS 2
  21. #define GPIO_MINOR_G 3
  22. #define GPIO_MINOR_LAST 3
  23. /* supported ioctl _IOC_NR's */
  24. #define IO_READBITS  0x1  /* read and return current port bits (obsolete) */
  25. #define IO_SETBITS   0x2  /* set the bits marked by 1 in the argument */
  26. #define IO_CLRBITS   0x3  /* clear the bits marked by 1 in the argument */
  27. /* the alarm is waited for by select() */
  28. #define IO_HIGHALARM 0x4  /* set alarm on high for bits marked by 1 */
  29. #define IO_LOWALARM  0x5  /* set alarm on low for bits marked by 1 */
  30. #define IO_CLRALARM  0x6  /* clear alarm for bits marked by 1 */
  31. /* LED ioctl */
  32. #define IO_LEDACTIVE_SET 0x7 /* set active led
  33.                               * 0=off, 1=green, 2=red, 3=yellow */
  34. /* GPIO direction ioctl's */
  35. #define IO_READDIR    0x8  /* Read direction 0=input 1=output  (obsolete) */
  36. #define IO_SETINPUT   0x9  /* Set direction for bits set, 0=unchanged 1=input, 
  37.                               returns mask with current inputs (obsolete) */
  38. #define IO_SETOUTPUT  0xA  /* Set direction for bits set, 0=unchanged 1=output,
  39.                               returns mask with current outputs (obsolete)*/
  40. /* LED ioctl extended */
  41. #define IO_LED_SETBIT 0xB
  42. #define IO_LED_CLRBIT 0xC
  43. /* SHUTDOWN ioctl */
  44. #define IO_SHUTDOWN   0xD
  45. #define IO_GET_PWR_BT 0xE
  46. /* Bit toggling in driver settings */
  47. /* bit set in low byte0 is CLK mask (0x00FF), 
  48.    bit set in byte1 is DATA mask    (0xFF00) 
  49.    msb, data_mask[7:0] , clk_mask[7:0]
  50.  */
  51. #define IO_CFG_WRITE_MODE 0xF 
  52. #define IO_CFG_WRITE_MODE_VALUE(msb, data_mask, clk_mask) 
  53.   ( (((msb)&1) << 16) | (((data_mask) &0xFF) << 8) | ((clk_mask) & 0xFF) )
  54. /* The following 4 ioctl's take a pointer as argument and handles
  55.  * 32 bit ports (port G) properly.
  56.  * These replaces IO_READBITS,IO_SETINPUT AND IO_SETOUTPUT
  57.  */
  58. #define IO_READ_INBITS   0x10 /* *arg is result of reading the input pins */
  59. #define IO_READ_OUTBITS  0x11 /* *arg is result of reading the output shadow */
  60. #define IO_SETGET_INPUT  0x12 /* bits set in *arg is set to input,
  61.                                * *arg updated with current input pins.
  62.                                */
  63. #define IO_SETGET_OUTPUT 0x13 /* bits set in *arg is set to output,
  64.                                * *arg updated with current output pins.
  65.                                */
  66. #endif