Kconfig 2.5 KB
Newer Older
1 2 3
#
# Magnetometer sensors
#
4 5
# When adding new entries keep the list in alphabetical order

6 7
menu "Magnetometer sensors"

8
config AK8975
9
	tristate "Asahi Kasei AK 3-Axis Magnetometer"
10
	depends on I2C
11
	depends on GPIOLIB || COMPILE_TEST
12
	help
13 14
	  Say yes here to build support for Asahi Kasei AK8975, AK8963,
	  AK09911 or AK09912 3-Axis Magnetometer.
15 16 17 18

	  To compile this driver as a module, choose M here: the module
	  will be called ak8975.

19 20
config AK09911
	tristate "Asahi Kasei AK09911 3-axis Compass"
21
	depends on I2C
22
	depends on GPIOLIB || COMPILE_TEST
23
	select AK8975
24
	help
25
	  Deprecated: AK09911 is now supported by AK8975 driver.
26

27 28 29
config MAG3110
	tristate "Freescale MAG3110 3-Axis Magnetometer"
	depends on I2C
30 31
	select IIO_BUFFER
	select IIO_TRIGGERED_BUFFER
32 33 34 35 36 37 38
	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.

39 40 41 42 43
config HID_SENSOR_MAGNETOMETER_3D
	depends on HID_SENSOR_HUB
	select IIO_BUFFER
	select IIO_TRIGGERED_BUFFER
	select HID_SENSOR_IIO_COMMON
44
	select HID_SENSOR_IIO_TRIGGER
45 46 47 48 49
	tristate "HID Magenetometer 3D"
	help
	  Say yes here to build support for the HID SENSOR
	  Magnetometer 3D.

50 51 52 53 54 55 56 57 58 59 60
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)
	help
	  Say yes here to build support for STMicroelectronics magnetometers:
	  LSM303DLHC, LSM303DLM, LIS3MDL.

61 62
	  This driver can also be built as a module. If so, these modules
	  will be created:
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	  - 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

79 80 81 82 83 84 85 86 87 88 89 90 91 92
config BMC150_MAGN
	tristate "Bosch BMC150 Magnetometer Driver"
	depends on I2C
	select IIO_BUFFER
	select IIO_TRIGGERED_BUFFER
	help
	  Say yes here to build support for the BMC150 magnetometer.

	  Currently this only supports the device via an i2c interface.

	  This is a combo module with both accelerometer and magnetometer.
	  This driver is only implementing magnetometer part, which has
	  its own address and register map.

93
endmenu