lis3lv02d.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #ifndef __LIS3LV02D_H_
  2. #define __LIS3LV02D_H_
  3. /**
  4. * struct lis3lv02d_platform_data - lis3 chip family platform data
  5. * @click_flags: Click detection unit configuration
  6. * @click_thresh_x: Click detection unit x axis threshold
  7. * @click_thresh_y: Click detection unit y axis threshold
  8. * @click_thresh_z: Click detection unit z axis threshold
  9. * @click_time_limit: Click detection unit time parameter
  10. * @click_latency: Click detection unit latency parameter
  11. * @click_window: Click detection unit window parameter
  12. * @irq_cfg: On chip irq source and type configuration (click /
  13. * data available / wake up, open drain, polarity)
  14. * @irq_flags1: Additional irq triggering flags for irq channel 0
  15. * @irq_flags2: Additional irq triggering flags for irq channel 1
  16. * @duration1: Wake up unit 1 duration parameter
  17. * @duration2: Wake up unit 2 duration parameter
  18. * @wakeup_flags: Wake up unit 1 flags
  19. * @wakeup_thresh: Wake up unit 1 threshold value
  20. * @wakeup_flags2: Wake up unit 2 flags
  21. * @wakeup_thresh2: Wake up unit 2 threshold value
  22. * @hipass_ctrl: High pass filter control (enable / disable, cut off
  23. * frequency)
  24. * @axis_x: Sensor orientation remapping for x-axis
  25. * @axis_y: Sensor orientation remapping for y-axis
  26. * @axis_z: Sensor orientation remapping for z-axis
  27. * @driver_features: Enable bits for different features. Disabled by default
  28. * @default_rate: Default sampling rate. 0 means reset default
  29. * @setup_resources: Interrupt line setup call back function
  30. * @release_resources: Interrupt line release call back function
  31. * @st_min_limits[3]: Selftest acceptance minimum values
  32. * @st_max_limits[3]: Selftest acceptance maximum values
  33. * @irq2: Irq line 2 number
  34. *
  35. * Platform data is used to setup the sensor chip. Meaning of the different
  36. * chip features can be found from the data sheet. It is publicly available
  37. * at www.st.com web pages. Currently the platform data is used
  38. * only for the 8 bit device. The 8 bit device has two wake up / free fall
  39. * detection units and click detection unit. There are plenty of ways to
  40. * configure the chip which makes is quite hard to explain deeper meaning of
  41. * the fields here. Behaviour of the detection blocks varies heavily depending
  42. * on the configuration. For example, interrupt detection block can use high
  43. * pass filtered data which makes it react to the changes in the acceleration.
  44. * Irq_flags can be used to enable interrupt detection on the both edges.
  45. * With proper chip configuration this produces interrupt when some trigger
  46. * starts and when it goes away.
  47. */
  48. struct lis3lv02d_platform_data {
  49. /* please note: the 'click' feature is only supported for
  50. * LIS[32]02DL variants of the chip and will be ignored for
  51. * others */
  52. #define LIS3_CLICK_SINGLE_X (1 << 0)
  53. #define LIS3_CLICK_DOUBLE_X (1 << 1)
  54. #define LIS3_CLICK_SINGLE_Y (1 << 2)
  55. #define LIS3_CLICK_DOUBLE_Y (1 << 3)
  56. #define LIS3_CLICK_SINGLE_Z (1 << 4)
  57. #define LIS3_CLICK_DOUBLE_Z (1 << 5)
  58. unsigned char click_flags;
  59. unsigned char click_thresh_x;
  60. unsigned char click_thresh_y;
  61. unsigned char click_thresh_z;
  62. unsigned char click_time_limit;
  63. unsigned char click_latency;
  64. unsigned char click_window;
  65. #define LIS3_IRQ1_DISABLE (0 << 0)
  66. #define LIS3_IRQ1_FF_WU_1 (1 << 0)
  67. #define LIS3_IRQ1_FF_WU_2 (2 << 0)
  68. #define LIS3_IRQ1_FF_WU_12 (3 << 0)
  69. #define LIS3_IRQ1_DATA_READY (4 << 0)
  70. #define LIS3_IRQ1_CLICK (7 << 0)
  71. #define LIS3_IRQ1_MASK (7 << 0)
  72. #define LIS3_IRQ2_DISABLE (0 << 3)
  73. #define LIS3_IRQ2_FF_WU_1 (1 << 3)
  74. #define LIS3_IRQ2_FF_WU_2 (2 << 3)
  75. #define LIS3_IRQ2_FF_WU_12 (3 << 3)
  76. #define LIS3_IRQ2_DATA_READY (4 << 3)
  77. #define LIS3_IRQ2_CLICK (7 << 3)
  78. #define LIS3_IRQ2_MASK (7 << 3)
  79. #define LIS3_IRQ_OPEN_DRAIN (1 << 6)
  80. #define LIS3_IRQ_ACTIVE_LOW (1 << 7)
  81. unsigned char irq_cfg;
  82. unsigned char irq_flags1; /* Additional irq edge / level flags */
  83. unsigned char irq_flags2; /* Additional irq edge / level flags */
  84. unsigned char duration1;
  85. unsigned char duration2;
  86. #define LIS3_WAKEUP_X_LO (1 << 0)
  87. #define LIS3_WAKEUP_X_HI (1 << 1)
  88. #define LIS3_WAKEUP_Y_LO (1 << 2)
  89. #define LIS3_WAKEUP_Y_HI (1 << 3)
  90. #define LIS3_WAKEUP_Z_LO (1 << 4)
  91. #define LIS3_WAKEUP_Z_HI (1 << 5)
  92. unsigned char wakeup_flags;
  93. unsigned char wakeup_thresh;
  94. unsigned char wakeup_flags2;
  95. unsigned char wakeup_thresh2;
  96. #define LIS3_HIPASS_CUTFF_8HZ 0
  97. #define LIS3_HIPASS_CUTFF_4HZ 1
  98. #define LIS3_HIPASS_CUTFF_2HZ 2
  99. #define LIS3_HIPASS_CUTFF_1HZ 3
  100. #define LIS3_HIPASS1_DISABLE (1 << 2)
  101. #define LIS3_HIPASS2_DISABLE (1 << 3)
  102. unsigned char hipass_ctrl;
  103. #define LIS3_NO_MAP 0
  104. #define LIS3_DEV_X 1
  105. #define LIS3_DEV_Y 2
  106. #define LIS3_DEV_Z 3
  107. #define LIS3_INV_DEV_X -1
  108. #define LIS3_INV_DEV_Y -2
  109. #define LIS3_INV_DEV_Z -3
  110. s8 axis_x;
  111. s8 axis_y;
  112. s8 axis_z;
  113. #define LIS3_USE_BLOCK_READ 0x02
  114. u16 driver_features;
  115. int default_rate;
  116. int (*setup_resources)(void);
  117. int (*release_resources)(void);
  118. /* Limits for selftest are specified in chip data sheet */
  119. s16 st_min_limits[3]; /* min pass limit x, y, z */
  120. s16 st_max_limits[3]; /* max pass limit x, y, z */
  121. int irq2;
  122. };
  123. #endif /* __LIS3LV02D_H_ */