1# 2# 1-wire slaves configuration 3# 4 5menu "1-wire Slaves" 6 7config W1_SLAVE_THERM 8 tristate "Thermal family implementation" 9 help 10 Say Y here if you want to connect 1-wire thermal sensors to your 11 wire. 12 13config W1_SLAVE_SMEM 14 tristate "Simple 64bit memory family implementation" 15 help 16 Say Y here if you want to connect 1-wire 17 simple 64bit memory rom(ds2401/ds2411/ds1990*) to your wire. 18 19config W1_SLAVE_DS2408 20 tristate "8-Channel Addressable Switch (IO Expander) 0x29 family support (DS2408)" 21 help 22 Say Y here if you want to use a 1-wire 23 DS2408 8-Channel Addressable Switch device support 24 25config W1_SLAVE_DS2408_READBACK 26 bool "Read-back values written to DS2408's output register" 27 depends on W1_SLAVE_DS2408 28 default y 29 help 30 Enabling this will cause the driver to read back the values written 31 to the chip's output register in order to detect errors. 32 33 This is slower but useful when debugging chips and/or busses. 34 35config W1_SLAVE_DS2413 36 tristate "Dual Channel Addressable Switch 0x3a family support (DS2413)" 37 help 38 Say Y here if you want to use a 1-wire 39 DS2413 Dual Channel Addressable Switch device support 40 41config W1_SLAVE_DS2423 42 tristate "Counter 1-wire device (DS2423)" 43 select CRC16 44 help 45 If you enable this you can read the counter values available 46 in the DS2423 chipset from the w1_slave file under the 47 sys file system. 48 49 Say Y here if you want to use a 1-wire 50 counter family device (DS2423). 51 52config W1_SLAVE_DS2431 53 tristate "1kb EEPROM family support (DS2431)" 54 help 55 Say Y here if you want to use a 1-wire 56 1kb EEPROM family device (DS2431) 57 58config W1_SLAVE_DS2433 59 tristate "4kb EEPROM family support (DS2433)" 60 help 61 Say Y here if you want to use a 1-wire 62 4kb EEPROM family device (DS2433). 63 64config W1_SLAVE_DS2433_CRC 65 bool "Protect DS2433 data with a CRC16" 66 depends on W1_SLAVE_DS2433 67 select CRC16 68 help 69 Say Y here to protect DS2433 data with a CRC16. 70 Each block has 30 bytes of data and a two byte CRC16. 71 Full block writes are only allowed if the CRC is valid. 72 73config W1_SLAVE_DS2760 74 tristate "Dallas 2760 battery monitor chip (HP iPAQ & others)" 75 depends on W1 76 help 77 If you enable this you will have the DS2760 battery monitor 78 chip support. 79 80 The battery monitor chip is used in many batteries/devices 81 as the one who is responsible for charging/discharging/monitoring 82 Li+ batteries. 83 84 If you are unsure, say N. 85 86config W1_SLAVE_DS2780 87 tristate "Dallas 2780 battery monitor chip" 88 depends on W1 89 help 90 If you enable this you will have the DS2780 battery monitor 91 chip support. 92 93 The battery monitor chip is used in many batteries/devices 94 as the one who is responsible for charging/discharging/monitoring 95 Li+ batteries. 96 97 If you are unsure, say N. 98 99config W1_SLAVE_DS2781 100 tristate "Dallas 2781 battery monitor chip" 101 depends on W1 102 help 103 If you enable this you will have the DS2781 battery monitor 104 chip support. 105 106 The battery monitor chip is used in many batteries/devices 107 as the one who is responsible for charging/discharging/monitoring 108 Li+ batteries. 109 110 If you are unsure, say N. 111 112config W1_SLAVE_DS28E04 113 tristate "4096-Bit Addressable 1-Wire EEPROM with PIO (DS28E04-100)" 114 depends on W1 115 select CRC16 116 help 117 If you enable this you will have the DS28E04-100 118 chip support. 119 120 Say Y here if you want to use a 1-wire 121 4kb EEPROM with PIO family device (DS28E04). 122 123 If you are unsure, say N. 124 125config W1_SLAVE_BQ27000 126 tristate "BQ27000 slave support" 127 depends on W1 128 help 129 Say Y here if you want to use a hdq 130 bq27000 slave support. 131 132endmenu 133