cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (4345B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# Temperature sensor drivers
      4#
      5menu "Temperature sensors"
      6
      7config IQS620AT_TEMP
      8	tristate "Azoteq IQS620AT temperature sensor"
      9	depends on MFD_IQS62X || COMPILE_TEST
     10	help
     11	  Say Y here if you want to build support for the Azoteq IQS620AT
     12	  temperature sensor.
     13
     14	  To compile this driver as a module, choose M here: the module
     15	  will be called iqs620at-temp.
     16
     17config LTC2983
     18	tristate "Analog Devices Multi-Sensor Digital Temperature Measurement System"
     19	depends on SPI
     20	select REGMAP_SPI
     21	help
     22	  Say yes here to build support for the LTC2983 Multi-Sensor
     23	  high accuracy digital temperature measurement system.
     24
     25	  To compile this driver as a module, choose M here: the module
     26	  will be called ltc2983.
     27
     28config MAXIM_THERMOCOUPLE
     29	tristate "Maxim thermocouple sensors"
     30	depends on SPI
     31	select IIO_BUFFER
     32	select IIO_TRIGGERED_BUFFER
     33	help
     34	  If you say yes here you get support for the Maxim series of
     35	  thermocouple sensors connected via SPI.
     36
     37	  Supported sensors:
     38	   * MAX6675
     39	   * MAX31855
     40
     41	  This driver can also be built as a module. If so, the module will
     42	  be called maxim_thermocouple.
     43
     44config HID_SENSOR_TEMP
     45	tristate "HID Environmental temperature sensor"
     46	depends on HID_SENSOR_HUB
     47	select IIO_BUFFER
     48	select HID_SENSOR_IIO_COMMON
     49	select HID_SENSOR_IIO_TRIGGER
     50	help
     51	  Say yes here to build support for the HID SENSOR
     52	  temperature driver
     53
     54	  To compile this driver as a module, choose M here: the module
     55	  will be called hid-sensor-temperature.
     56
     57config MLX90614
     58	tristate "MLX90614 contact-less infrared sensor"
     59	depends on I2C
     60	help
     61	  If you say yes here you get support for the Melexis
     62	  MLX90614 contact-less infrared sensor connected with I2C.
     63
     64	  This driver can also be built as a module. If so, the module will
     65	  be called mlx90614.
     66
     67config MLX90632
     68	tristate "MLX90632 contact-less infrared sensor with medical accuracy"
     69	depends on I2C
     70	select REGMAP_I2C
     71	help
     72	  If you say yes here you get support for the Melexis
     73	  MLX90632 contact-less infrared sensor with medical accuracy
     74	  connected with I2C.
     75
     76	  This driver can also be built as a module. If so, the module will
     77	  be called mlx90632.
     78
     79config TMP006
     80	tristate "TMP006 infrared thermopile sensor"
     81	depends on I2C
     82	help
     83	  If you say yes here you get support for the Texas Instruments
     84	  TMP006 infrared thermopile sensor.
     85
     86	  This driver can also be built as a module. If so, the module will
     87	  be called tmp006.
     88
     89config TMP007
     90	tristate "TMP007 infrared thermopile sensor with Integrated Math Engine"
     91	depends on I2C
     92	help
     93	  If you say yes here you get support for the Texas Instruments
     94	  TMP007 infrared thermopile sensor with Integrated Math Engine.
     95
     96	  This driver can also be built as a module. If so, the module will
     97	  be called tmp007.
     98
     99config TMP117
    100	tristate "TMP117 Digital temperature sensor with integrated NV memory"
    101	depends on I2C
    102	help
    103	  If you say yes here you get support for the Texas Instruments
    104	  TMP117 Digital temperature sensor with integrated NV memory.
    105
    106	  This driver can also be built as a module. If so, the module will
    107	  be called tmp117.
    108
    109config TSYS01
    110	tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection"
    111	depends on I2C
    112	select IIO_MS_SENSORS_I2C
    113	help
    114	  If you say yes here you get support for the Measurement Specialties
    115	  TSYS01 I2C temperature sensor.
    116
    117	  This driver can also be built as a module. If so, the module will
    118	  be called tsys01.
    119
    120config TSYS02D
    121	tristate "Measurement Specialties TSYS02D temperature sensor"
    122	depends on I2C
    123	select IIO_MS_SENSORS_I2C
    124	help
    125	  If you say yes here you get support for the Measurement Specialties
    126	  TSYS02D temperature sensor.
    127
    128	  This driver can also be built as a module. If so, the module will
    129	  be called tsys02d.
    130
    131config MAX31856
    132	tristate "MAX31856 thermocouple sensor"
    133	depends on SPI
    134	help
    135	  If you say yes here you get support for MAX31856
    136	  thermocouple sensor chip connected via SPI.
    137
    138	  This driver can also be built as a module.  If so, the module
    139	  will be called max31856.
    140
    141config MAX31865
    142	tristate "MAX31865 RTD to Digital converter"
    143	depends on SPI
    144	help
    145	  If you say yes here you get support for MAX31865
    146	  thermocouple sensor chip connected via SPI.
    147
    148	  This driver can also be build as a module. If so, the module
    149	  will be called max31865.
    150
    151endmenu