1# 2# Accelerometer drivers 3# 4# When adding new entries keep the list in alphabetical order 5 6menu "Accelerometers" 7 8config BMA180 9 tristate "Bosch BMA180/BMA250 3-Axis Accelerometer Driver" 10 depends on I2C 11 select IIO_BUFFER 12 select IIO_TRIGGERED_BUFFER 13 help 14 Say Y here if you want to build a driver for the Bosch BMA180 or 15 BMA250 triaxial acceleration sensor. 16 17 To compile this driver as a module, choose M here: the 18 module will be called bma180. 19 20config BMA220 21 tristate "Bosch BMA220 3-Axis Accelerometer Driver" 22 depends on SPI 23 select IIO_BUFFER 24 select IIO_TRIGGERED_BUFFER 25 help 26 Say yes here to add support for the Bosch BMA220 triaxial 27 acceleration sensor. 28 29 To compile this driver as a module, choose M here: the 30 module will be called bma220_spi. 31 32config BMC150_ACCEL 33 tristate "Bosch BMC150 Accelerometer Driver" 34 select IIO_BUFFER 35 select IIO_TRIGGERED_BUFFER 36 select REGMAP 37 select BMC150_ACCEL_I2C if I2C 38 select BMC150_ACCEL_SPI if SPI 39 help 40 Say yes here to build support for the following Bosch accelerometers: 41 BMC150, BMI055, BMA250E, BMA222E, BMA255, BMA280. 42 43 This is a combo module with both accelerometer and magnetometer. 44 This driver is only implementing accelerometer part, which has 45 its own address and register map. 46 47config BMC150_ACCEL_I2C 48 tristate 49 select REGMAP_I2C 50 51config BMC150_ACCEL_SPI 52 tristate 53 select REGMAP_SPI 54 55config DMARD06 56 tristate "Domintech DMARD06 Digital Accelerometer Driver" 57 depends on OF || COMPILE_TEST 58 depends on I2C 59 help 60 Say yes here to build support for the Domintech low-g tri-axial 61 digital accelerometers: DMARD05, DMARD06, DMARD07. 62 63 To compile this driver as a module, choose M here: the 64 module will be called dmard06. 65 66config DMARD09 67 tristate "Domintech DMARD09 3-axis Accelerometer Driver" 68 depends on I2C 69 help 70 Say yes here to get support for the Domintech DMARD09 3-axis 71 accelerometer. 72 73 Choosing M will build the driver as a module. If so, the module 74 will be called dmard09. 75 76config HID_SENSOR_ACCEL_3D 77 depends on HID_SENSOR_HUB 78 select IIO_BUFFER 79 select IIO_TRIGGERED_BUFFER 80 select HID_SENSOR_IIO_COMMON 81 select HID_SENSOR_IIO_TRIGGER 82 tristate "HID Accelerometers 3D" 83 help 84 Say yes here to build support for the HID SENSOR 85 accelerometers 3D. 86 87 To compile this driver as a module, choose M here: the 88 module will be called hid-sensor-accel-3d. 89 90config IIO_ST_ACCEL_3AXIS 91 tristate "STMicroelectronics accelerometers 3-Axis Driver" 92 depends on (I2C || SPI_MASTER) && SYSFS 93 select IIO_ST_SENSORS_CORE 94 select IIO_ST_ACCEL_I2C_3AXIS if (I2C) 95 select IIO_ST_ACCEL_SPI_3AXIS if (SPI_MASTER) 96 select IIO_TRIGGERED_BUFFER if (IIO_BUFFER) 97 help 98 Say yes here to build support for STMicroelectronics accelerometers: 99 LSM303DLH, LSM303DLHC, LIS3DH, LSM330D, LSM330DL, LSM330DLC, 100 LIS331DLH, LSM303DL, LSM303DLM, LSM330, LIS2DH12, H3LIS331DL. 101 102 This driver can also be built as a module. If so, these modules 103 will be created: 104 - st_accel (core functions for the driver [it is mandatory]); 105 - st_accel_i2c (necessary for the I2C devices [optional*]); 106 - st_accel_spi (necessary for the SPI devices [optional*]); 107 108 (*) one of these is necessary to do something. 109 110config IIO_ST_ACCEL_I2C_3AXIS 111 tristate 112 depends on IIO_ST_ACCEL_3AXIS 113 depends on IIO_ST_SENSORS_I2C 114 115config IIO_ST_ACCEL_SPI_3AXIS 116 tristate 117 depends on IIO_ST_ACCEL_3AXIS 118 depends on IIO_ST_SENSORS_SPI 119 120config KXSD9 121 tristate "Kionix KXSD9 Accelerometer Driver" 122 help 123 Say yes here to build support for the Kionix KXSD9 accelerometer. 124 Currently this only supports the device via an SPI interface. 125 126 To compile this driver as a module, choose M here: the module 127 will be called kxsd9. 128 129config KXSD9_SPI 130 tristate "Kionix KXSD9 SPI transport" 131 depends on KXSD9 132 depends on SPI 133 default KXSD9 134 select REGMAP_SPI 135 help 136 Say yes here to enable the Kionix KXSD9 accelerometer 137 SPI transport channel. 138 139config KXCJK1013 140 tristate "Kionix 3-Axis Accelerometer Driver" 141 depends on I2C 142 select IIO_BUFFER 143 select IIO_TRIGGERED_BUFFER 144 help 145 Say Y here if you want to build a driver for the Kionix KXCJK-1013 146 triaxial acceleration sensor. This driver also supports KXCJ9-1008 147 and KXTJ2-1009. 148 149 To compile this driver as a module, choose M here: the module will 150 be called kxcjk-1013. 151 152config MMA7455 153 tristate 154 select IIO_BUFFER 155 select IIO_TRIGGERED_BUFFER 156 157config MMA7455_I2C 158 tristate "Freescale MMA7455L/MMA7456L Accelerometer I2C Driver" 159 depends on I2C 160 select MMA7455 161 select REGMAP_I2C 162 help 163 Say yes here to build support for the Freescale MMA7455L and 164 MMA7456L 3-axis accelerometer. 165 166 To compile this driver as a module, choose M here: the module 167 will be called mma7455_i2c. 168 169config MMA7455_SPI 170 tristate "Freescale MMA7455L/MMA7456L Accelerometer SPI Driver" 171 depends on SPI_MASTER 172 select MMA7455 173 select REGMAP_SPI 174 help 175 Say yes here to build support for the Freescale MMA7455L and 176 MMA7456L 3-axis accelerometer. 177 178 To compile this driver as a module, choose M here: the module 179 will be called mma7455_spi. 180 181config MMA7660 182 tristate "Freescale MMA7660FC 3-Axis Accelerometer Driver" 183 depends on I2C 184 help 185 Say yes here to get support for the Freescale MMA7660FC 3-Axis 186 accelerometer. 187 188 Choosing M will build the driver as a module. If so, the module 189 will be called mma7660. 190 191config MMA8452 192 tristate "Freescale / NXP MMA8452Q and similar Accelerometers Driver" 193 depends on I2C 194 select IIO_BUFFER 195 select IIO_TRIGGERED_BUFFER 196 help 197 Say yes here to build support for the following Freescale / NXP 3-axis 198 accelerometers: MMA8451Q, MMA8452Q, MMA8453Q, MMA8652FC, MMA8653FC, 199 FXLS8471Q. 200 201 To compile this driver as a module, choose M here: the module 202 will be called mma8452. 203 204config MMA9551_CORE 205 tristate 206 207config MMA9551 208 tristate "Freescale MMA9551L Intelligent Motion-Sensing Platform Driver" 209 depends on I2C 210 select MMA9551_CORE 211 212 help 213 Say yes here to build support for the Freescale MMA9551L 214 Intelligent Motion-Sensing Platform Driver. 215 216 To compile this driver as a module, choose M here: the module 217 will be called mma9551. 218 219config MMA9553 220 tristate "Freescale MMA9553L Intelligent Pedometer Platform Driver" 221 depends on I2C 222 select MMA9551_CORE 223 help 224 Say yes here to build support for the Freescale MMA9553L 225 Intelligent Pedometer Platform Driver. 226 227 To compile this driver as a module, choose M here: the module 228 will be called mma9553. 229 230config MXC4005 231 tristate "Memsic MXC4005XC 3-Axis Accelerometer Driver" 232 depends on I2C 233 select IIO_BUFFER 234 select IIO_TRIGGERED_BUFFER 235 select REGMAP_I2C 236 help 237 Say yes here to build support for the Memsic MXC4005XC 3-axis 238 accelerometer. 239 240 To compile this driver as a module, choose M. The module will be 241 called mxc4005. 242 243config MXC6255 244 tristate "Memsic MXC6255 Orientation Sensing Accelerometer Driver" 245 depends on I2C 246 select REGMAP_I2C 247 help 248 Say yes here to build support for the Memsic MXC6255 Orientation 249 Sensing Accelerometer Driver. 250 251 To compile this driver as a module, choose M here: the module will be 252 called mxc6255. 253 254config STK8312 255 tristate "Sensortek STK8312 3-Axis Accelerometer Driver" 256 depends on I2C 257 select IIO_BUFFER 258 select IIO_TRIGGERED_BUFFER 259 help 260 Say yes here to get support for the Sensortek STK8312 3-axis 261 accelerometer. 262 263 Choosing M will build the driver as a module. If so, the module 264 will be called stk8312. 265 266config STK8BA50 267 tristate "Sensortek STK8BA50 3-Axis Accelerometer Driver" 268 depends on I2C 269 select IIO_BUFFER 270 select IIO_TRIGGERED_BUFFER 271 help 272 Say yes here to get support for the Sensortek STK8BA50 3-axis 273 accelerometer. 274 275 Choosing M will build the driver as a module. If so, the module 276 will be called stk8ba50. 277 278endmenu 279