Blame view

drivers/iio/magnetometer/Kconfig 2.22 KB
bc1d57ba0   srinivas pandruvada   iio: hid-sensors:...
1
2
3
  #
  # Magnetometer sensors
  #
3edc84e60   Lars-Peter Clausen   iio: Add a commen...
4
  # When adding new entries keep the list in alphabetical order
bc1d57ba0   srinivas pandruvada   iio: hid-sensors:...
5
  menu "Magnetometer sensors"
2fc72cd83   Jonathan Cameron   iio:magnetometer:...
6
7
8
9
10
11
  config AK8975
  	tristate "Asahi Kasei AK8975 3-Axis Magnetometer"
  	depends on I2C
  	depends on GPIOLIB
  	help
  	  Say yes here to build support for Asahi Kasei AK8975 3-Axis
6027c077f   Srinivas Pandruvada   iio: ak8975 : Add...
12
13
  	  Magnetometer. This driver can also support AK8963, if i2c
  	  device name is identified as ak8963.
2fc72cd83   Jonathan Cameron   iio:magnetometer:...
14
15
16
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called ak8975.
d14c0f10e   Srinivas Pandruvada   iio: AK09911 : 3 ...
17
18
19
20
21
22
23
24
25
  config AK09911
  	tristate "Asahi Kasei AK09911 3-axis Compass"
  	depends on I2C
  	help
  	  Say yes here to build support for Asahi Kasei AK09911 3-Axis
  	  Magnetometer.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called ak09911.
39631b5f9   Peter Meerwald   iio: Add Freescal...
26
27
28
  config MAG3110
  	tristate "Freescale MAG3110 3-Axis Magnetometer"
  	depends on I2C
50619cb17   Peter Meerwald   iio: Fix mag3110 ...
29
30
  	select IIO_BUFFER
  	select IIO_TRIGGERED_BUFFER
39631b5f9   Peter Meerwald   iio: Add Freescal...
31
32
33
34
35
36
  	help
  	  Say yes here to build support for the Freescale MAG3110 3-Axis
  	  magnetometer.
  
  	  To compile this driver as a module, choose M here: the module
  	  will be called mag3110.
bc1d57ba0   srinivas pandruvada   iio: hid-sensors:...
37
38
39
40
41
  config HID_SENSOR_MAGNETOMETER_3D
  	depends on HID_SENSOR_HUB
  	select IIO_BUFFER
  	select IIO_TRIGGERED_BUFFER
  	select HID_SENSOR_IIO_COMMON
9541cc39a   Alexander Holler   iio: hid-sensors:...
42
  	select HID_SENSOR_IIO_TRIGGER
bc1d57ba0   srinivas pandruvada   iio: hid-sensors:...
43
44
45
46
  	tristate "HID Magenetometer 3D"
  	help
  	  Say yes here to build support for the HID SENSOR
  	  Magnetometer 3D.
872e79add   Denis Ciocca   iio:magnetometer:...
47
48
49
50
51
52
53
  config IIO_ST_MAGN_3AXIS
  	tristate "STMicroelectronics magnetometers 3-Axis Driver"
  	depends on (I2C || SPI_MASTER) && SYSFS
  	select IIO_ST_SENSORS_CORE
  	select IIO_ST_MAGN_I2C_3AXIS if (I2C)
  	select IIO_ST_MAGN_SPI_3AXIS if (SPI_MASTER)
  	select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
872e79add   Denis Ciocca   iio:magnetometer:...
54
55
56
  	help
  	  Say yes here to build support for STMicroelectronics magnetometers:
  	  LSM303DLHC, LSM303DLM, LIS3MDL.
341673f14   Peter Meerwald   iio: reword help ...
57
58
  	  This driver can also be built as a module. If so, these modules
  	  will be created:
872e79add   Denis Ciocca   iio:magnetometer:...
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  	  - st_magn (core functions for the driver [it is mandatory]);
  	  - st_magn_i2c (necessary for the I2C devices [optional*]);
  	  - st_magn_spi (necessary for the SPI devices [optional*]);
  
  	  (*) one of these is necessary to do something.
  
  config IIO_ST_MAGN_I2C_3AXIS
  	tristate
  	depends on IIO_ST_MAGN_3AXIS
  	depends on IIO_ST_SENSORS_I2C
  
  config IIO_ST_MAGN_SPI_3AXIS
  	tristate
  	depends on IIO_ST_MAGN_3AXIS
  	depends on IIO_ST_SENSORS_SPI
bc1d57ba0   srinivas pandruvada   iio: hid-sensors:...
74
  endmenu