1 // SPDX-License-Identifier: GPL-2.0+
3 * Driver for one wire controller in some i.MX Socs
5 * There are currently two silicon variants:
6 * V1: i.MX21, i.MX27, i.MX31, i.MX51
7 * V2: i.MX25, i.MX35, i.MX50, i.MX53
8 * Newer i.MX SoCs such as the i.MX6 do not have one wire controllers.
10 * The V1 controller only supports single bit operations.
11 * The V2 controller is backwards compatible on the register level but adds
12 * byte size operations and a "search ROM accelerator mode"
14 * This driver does not currently support the search ROM accelerator
16 * Copyright (c) 2018 Flowbird
17 * Martin Fuzzey <martin.fuzzey@flowbird.group>
20 #include <asm/arch/clock.h>
28 #define MXC_W1_CONTROL_RPP BIT(7)
29 #define MXC_W1_CONTROL_PST BIT(6)
30 #define MXC_W1_CONTROL_WR(x) BIT(5 - (x))
31 #define MXC_W1_CONTROL_RDST BIT(3)
36 /* Registers below on V2 silicon only */
40 #define MXC_W1_INTERRUPT_TBE BIT(2)
41 #define MXC_W1_INTERRUPT_TSRE BIT(3)
42 #define MXC_W1_INTERRUPT_RBF BIT(4)
43 #define MXC_W1_INTERRUPT_RSRF BIT(5)
49 struct mxc_w1_regs *regs;
53 * this is the low level routine to read/write a bit on the One Wire
54 * interface on the hardware. It does write 0 if parameter bit is set
55 * to 0, otherwise a write 1/read.
57 static u8 mxc_w1_touch_bit(struct mxc_w1_pdata *pdata, u8 bit)
59 u16 *ctrl_addr = &pdata->regs->control;
60 u16 mask = MXC_W1_CONTROL_WR(bit);
61 unsigned int timeout_cnt = 400; /* Takes max. 120us according to
65 writew(mask, ctrl_addr);
67 while (timeout_cnt--) {
68 if (!(readw(ctrl_addr) & mask))
74 return (readw(ctrl_addr) & MXC_W1_CONTROL_RDST) ? 1 : 0;
77 static u8 mxc_w1_read_byte(struct udevice *dev)
79 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
80 struct mxc_w1_regs *regs = pdata->regs;
83 if (dev_get_driver_data(dev) < 2) {
87 for (i = 0; i < 8; i++)
88 ret |= (mxc_w1_touch_bit(pdata, 1) << i);
94 writew(0xFF, ®s->tx_rx);
97 udelay(1); /* Without this bytes are sometimes duplicated... */
98 status = readw(®s->interrupt);
99 } while (!(status & MXC_W1_INTERRUPT_RBF));
101 return (u8)readw(®s->tx_rx);
104 static void mxc_w1_write_byte(struct udevice *dev, u8 byte)
106 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
107 struct mxc_w1_regs *regs = pdata->regs;
110 if (dev_get_driver_data(dev) < 2) {
113 for (i = 0; i < 8; i++)
114 mxc_w1_touch_bit(pdata, (byte >> i) & 0x1);
120 writew(byte, ®s->tx_rx);
124 status = readw(®s->interrupt);
125 } while (!(status & MXC_W1_INTERRUPT_TSRE));
128 static bool mxc_w1_reset(struct udevice *dev)
130 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
133 writew(MXC_W1_CONTROL_RPP, &pdata->regs->control);
136 reg_val = readw(&pdata->regs->control);
137 } while (reg_val & MXC_W1_CONTROL_RPP);
139 return !(reg_val & MXC_W1_CONTROL_PST);
142 static u8 mxc_w1_triplet(struct udevice *dev, bool bdir)
144 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
145 u8 id_bit = mxc_w1_touch_bit(pdata, 1);
146 u8 comp_bit = mxc_w1_touch_bit(pdata, 1);
149 if (id_bit && comp_bit)
150 return 0x03; /* error */
152 if (!id_bit && !comp_bit) {
153 /* Both bits are valid, take the direction given */
154 retval = bdir ? 0x04 : 0;
156 /* Only one bit is valid, take that direction */
158 retval = id_bit ? 0x05 : 0x02;
161 mxc_w1_touch_bit(pdata, bdir);
166 static int mxc_w1_ofdata_to_platdata(struct udevice *dev)
168 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
171 addr = devfdt_get_addr(dev);
172 if (addr == FDT_ADDR_T_NONE)
175 pdata->regs = (struct mxc_w1_regs *)addr;
180 static int mxc_w1_probe(struct udevice *dev)
182 struct mxc_w1_pdata *pdata = dev_get_platdata(dev);
183 unsigned int clkrate = mxc_get_clock(MXC_IPG_PERCLK);
186 if (clkrate < 10000000) {
187 dev_err(dev, "input clock frequency (%u Hz) too low\n",
192 clkdiv = clkrate / 1000000;
194 if (clkrate < 980000 || clkrate > 1020000) {
195 dev_err(dev, "Incorrect time base frequency %u Hz\n", clkrate);
199 writew(clkdiv - 1, &pdata->regs->time_divider);
204 static const struct w1_ops mxc_w1_ops = {
205 .read_byte = mxc_w1_read_byte,
206 .reset = mxc_w1_reset,
207 .triplet = mxc_w1_triplet,
208 .write_byte = mxc_w1_write_byte,
211 static const struct udevice_id mxc_w1_id[] = {
212 { .compatible = "fsl,imx21-owire", .data = 1 },
213 { .compatible = "fsl,imx27-owire", .data = 1 },
214 { .compatible = "fsl,imx31-owire", .data = 1 },
215 { .compatible = "fsl,imx51-owire", .data = 1 },
217 { .compatible = "fsl,imx25-owire", .data = 2 },
218 { .compatible = "fsl,imx35-owire", .data = 2 },
219 { .compatible = "fsl,imx50-owire", .data = 2 },
220 { .compatible = "fsl,imx53-owire", .data = 2 },
224 U_BOOT_DRIVER(mxc_w1_drv) = {
226 .name = "mxc_w1_drv",
227 .of_match = mxc_w1_id,
228 .ofdata_to_platdata = mxc_w1_ofdata_to_platdata,
230 .platdata_auto_alloc_size = sizeof(struct mxc_w1_pdata),
231 .probe = mxc_w1_probe,