Files
u-boot/drivers/w1/Kconfig
Tom Rini b284c34725 arm: imx: Remove the rest of i.MX31 support
With the removal of the last i.MX31 platform we can remove the rest of
the underlying architecture code as well.

Fixes: f247354708 ("arm: Remove mx31pdk board")
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Peng Fan <peng.fan@nxp.com>
2025-07-10 08:02:11 -03:00

37 lines
730 B
Plaintext

#
# W1 subsystem configuration
#
menu "1-Wire support"
config W1
bool "Enable 1-wire controllers support"
depends on DM
help
Support for the Dallas 1-Wire bus.
if W1
config W1_GPIO
bool "Enable 1-wire GPIO bitbanging"
depends on DM_GPIO
help
Emulate a 1-wire bus using a GPIO.
config W1_MXC
bool "Enable 1-wire controller on i.MX processors"
depends on ARCH_MX5
help
Support the one wire controller found in some members of the NXP
i.MX SoC family.
There are currently two silicon variants:
V1: i.MX21, i.MX27, i.MX31, i.MX51
V2: i.MX25, i.MX35, i.MX50, i.MX53
Newer i.MX SoCs such as the i.MX6 do not have one wire controllers.
The driver supports both silicon variants.
endif
endmenu