brintos

brintos / linux-shallow public Read only

0
0
Text · 2.5 KiB · e6049a7 Raw
93 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# 1-wire bus master configuration4#5 6menu "1-wire Bus Masters"7 8config W1_MASTER_AMD_AXI9	tristate "AMD AXI 1-wire bus host"10	help11	  Say Y here is you want to support the AMD AXI 1-wire IP core.12	  This driver makes use of the programmable logic IP to perform13	  correctly timed 1 wire transactions without relying on GPIO timing14	  through the kernel.15 16	  This driver can also be built as a module.  If so, the module will be17	  called amd_w1_axi.18 19config W1_MASTER_MATROX20	tristate "Matrox G400 transport layer for 1-wire"21	depends on PCI22	help23	  Say Y here if you want to communicate with your 1-wire devices24	  using Matrox's G400 GPIO pins.25 26	  This support is also available as a module.  If so, the module27	  will be called matrox_w1.28 29config W1_MASTER_DS249030	tristate "DS2490 USB <-> W1 transport layer for 1-wire"31  	depends on USB32  	help33	  Say Y here if you want to have a driver for DS2490 based USB <-> W1 bridges,34	  for example DS9490*.35 36  	  This support is also available as a module.  If so, the module37	  will be called ds2490.38 39config W1_MASTER_DS248240	tristate "Maxim DS2482 I2C to 1-Wire bridge"41	depends on I2C42	help43	  If you say yes here you get support for the Maxim DS248244	  I2C to 1-Wire bridge.45 46	  This driver can also be built as a module.  If so, the module47	  will be called ds2482.48 49config W1_MASTER_MXC50	tristate "Freescale MXC 1-wire busmaster"51	depends on ARCH_MXC || COMPILE_TEST52	help53	  Say Y here to enable MXC 1-wire host54 55config W1_MASTER_GPIO56	tristate "GPIO 1-wire busmaster"57	depends on GPIOLIB || COMPILE_TEST58	help59	  Say Y here if you want to communicate with your 1-wire devices using60	  GPIO pins. This driver uses the GPIO API to control the wire.61 62	  This support is also available as a module.  If so, the module63	  will be called w1-gpio.64 65config HDQ_MASTER_OMAP66	tristate "OMAP HDQ driver"67	depends on ARCH_OMAP || COMPILE_TEST68	help69	  Say Y here if you want support for the 1-wire or HDQ Interface70	  on an OMAP processor.71 72config W1_MASTER_SGI73	tristate "SGI ASIC driver"74	help75	  Say Y here if you want support for your 1-wire devices using76	  SGI ASIC 1-Wire interface77 78	  This support is also available as a module.  If so, the module79	  will be called sgi_w1.80 81config W1_MASTER_UART82	tristate "UART 1-wire driver"83	depends on SERIAL_DEV_BUS84	help85	  Say Y here if you want to communicate with your 1-wire devices using86	  UART interface.87 88	  This support is also available as a module.  If so, the module89	  will be called w1-uart.90 91endmenu92 93