mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-28 05:34:13 -05:00
The Infineon TLV493D is a Low-Power 3D Magnetic Sensor. The Sensor applications includes joysticks, control elements (white goods, multifunction knops), or electric meters (anti tampering) and any other application that requires accurate angular measurements at low power consumptions. The Sensor is configured over I2C, and as part of Sensor measurement data it provides 3-Axis magnetic fields and temperature core measurement. The driver supports raw value read and buffered input via external trigger to allow streaming values with the same sensing timestamp. While the sensor has an interrupt pin multiplexed with an I2C SCL pin. But for bus configurations interrupt(INT) is not recommended, unless timing constraints between I2C data transfers and interrupt pulses are monitored and aligned. The Sensor's I2C register map and mode information is described in product User Manual [1]. Datasheet: https://www.infineon.com/assets/row/public/documents/24/49/infineon-tlv493d-a1b6-datasheet-en.pdf Link: https://www.mouser.com/pdfDocs/Infineon-TLV493D-A1B6_3DMagnetic-UserManual-v01_03-EN.pdf [1] Signed-off-by: Dixit Parmar <dixitparmar19@gmail.com> Reviewed-by: Andy Shevchenko <andy@kernel.org> Link: https://patch.msgid.link/20250906-tlv493d-sensor-v6_16-rc5-v6-2-b1a62d968353@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for industrial I/O Magnetometer sensor drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_AF8133J) += af8133j.o
|
|
obj-$(CONFIG_AK8974) += ak8974.o
|
|
obj-$(CONFIG_AK8975) += ak8975.o
|
|
obj-$(CONFIG_ALS31300) += als31300.o
|
|
obj-$(CONFIG_BMC150_MAGN) += bmc150_magn.o
|
|
obj-$(CONFIG_BMC150_MAGN_I2C) += bmc150_magn_i2c.o
|
|
obj-$(CONFIG_BMC150_MAGN_SPI) += bmc150_magn_spi.o
|
|
|
|
obj-$(CONFIG_MAG3110) += mag3110.o
|
|
obj-$(CONFIG_HID_SENSOR_MAGNETOMETER_3D) += hid-sensor-magn-3d.o
|
|
obj-$(CONFIG_MMC35240) += mmc35240.o
|
|
|
|
obj-$(CONFIG_IIO_ST_MAGN_3AXIS) += st_magn.o
|
|
st_magn-y := st_magn_core.o
|
|
st_magn-$(CONFIG_IIO_BUFFER) += st_magn_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_ST_MAGN_I2C_3AXIS) += st_magn_i2c.o
|
|
obj-$(CONFIG_IIO_ST_MAGN_SPI_3AXIS) += st_magn_spi.o
|
|
|
|
obj-$(CONFIG_INFINEON_TLV493D) += tlv493d.o
|
|
|
|
obj-$(CONFIG_SENSORS_HMC5843) += hmc5843_core.o
|
|
obj-$(CONFIG_SENSORS_HMC5843_I2C) += hmc5843_i2c.o
|
|
obj-$(CONFIG_SENSORS_HMC5843_SPI) += hmc5843_spi.o
|
|
|
|
obj-$(CONFIG_SENSORS_RM3100) += rm3100-core.o
|
|
obj-$(CONFIG_SENSORS_RM3100_I2C) += rm3100-i2c.o
|
|
obj-$(CONFIG_SENSORS_RM3100_SPI) += rm3100-spi.o
|
|
|
|
obj-$(CONFIG_SI7210) += si7210.o
|
|
|
|
obj-$(CONFIG_TI_TMAG5273) += tmag5273.o
|
|
|
|
obj-$(CONFIG_YAMAHA_YAS530) += yamaha-yas530.o
|