aboutsummaryrefslogtreecommitdiff
path: root/drivers/w1/Makefile
diff options
context:
space:
mode:
authorMartin Fuzzey <martin.fuzzey@flowbird.group>2018-10-24 10:21:18 +0200
committerStefano Babic <sbabic@denx.de>2019-01-01 14:12:18 +0100
commita2e99a71b258d67f421ed84a83c866cb45578679 (patch)
tree21e459ac7d850c4de3b4716448f7528c261b558e /drivers/w1/Makefile
parentda4918acb8585ba45b2dbadb2114e10d7557966f (diff)
downloadu-boot-a2e99a71b258d67f421ed84a83c866cb45578679.zip
u-boot-a2e99a71b258d67f421ed84a83c866cb45578679.tar.gz
u-boot-a2e99a71b258d67f421ed84a83c866cb45578679.tar.bz2
w1: Add driver for i.MX bus master controller
Two variants of controllers are supported: V1 (bitwise only) found in i.MX21, i.MX27, i.MX31, i.MX51 V2 (byte operations) found in i.MX25, i.MX35, i.MX50, i.MX53 Only tested on i.MX53 hardware but in both modes (by modifying the device tree). Signed-off-by: Martin Fuzzey <martin.fuzzey@flowbird.group>
Diffstat (limited to 'drivers/w1/Makefile')
-rw-r--r--drivers/w1/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/w1/Makefile b/drivers/w1/Makefile
index 7fd8697..9825187 100644
--- a/drivers/w1/Makefile
+++ b/drivers/w1/Makefile
@@ -1,3 +1,4 @@
obj-$(CONFIG_W1) += w1-uclass.o
obj-$(CONFIG_W1_GPIO) += w1-gpio.o
+obj-$(CONFIG_W1_MXC) += mxc_w1.o