brintos

brintos / linux-shallow public Read only

0
0
Text · 1.9 KiB · 5f79399 Raw
65 lines · plain
1max6697 properties2 3Required properties:4- compatible:5	Should be one of6		maxim,max65817		maxim,max66028		maxim,max66229		maxim,max663610		maxim,max668911		maxim,max669312		maxim,max669413		maxim,max669714		maxim,max669815		maxim,max669916- reg: I2C address17 18Optional properties:19 20- smbus-timeout-disable21	Set to disable SMBus timeout. If not specified, SMBus timeout will be22	enabled.23- extended-range-enable24	Only valid for MAX6581. Set to enable extended temperature range.25	Extended temperature will be disabled if not specified.26- beta-compensation-enable27	Only valid for MAX6693 and MX6694. Set to enable beta compensation on28	remote temperature channel 1.29	Beta compensation will be disabled if not specified.30- alert-mask31	Alert bit mask. Alert disabled for bits set.32	Select bit 0 for local temperature, bit 1..7 for remote temperatures.33	If not specified, alert will be enabled for all channels.34- over-temperature-mask35	Over-temperature bit mask. Over-temperature reporting disabled for36	bits set.37	Select bit 0 for local temperature, bit 1..7 for remote temperatures.38	If not specified, over-temperature reporting will be enabled for all39	channels.40- resistance-cancellation41	Boolean for all chips other than MAX6581. Set to enable resistance42	cancellation on remote temperature channel 1.43	For MAX6581, resistance cancellation enabled for all channels if44	specified as boolean, otherwise as per bit mask specified.45	Only supported for remote temperatures (bit 1..7).46	If not specified, resistance cancellation will be disabled for all47	channels.48- transistor-ideality49	For MAX6581 only. Two values; first is bit mask, second is ideality50	select value as per MAX6581 data sheet. Select bit 1..7 for remote51	channels.52	Transistor ideality will be initialized to default (1.008) if not53	specified.54 55Example:56 57temp-sensor@1a {58	compatible = "maxim,max6697";59	reg = <0x1a>;60	smbus-timeout-disable;61	resistance-cancellation;62	alert-mask = <0x72>;63	over-temperature-mask = <0x7f>;64};65