tegra_i2c.c revision 1.9 1 1.9 jmcneill /* $NetBSD: tegra_i2c.c,v 1.9 2015/12/13 17:39:19 jmcneill Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2015 Jared D. McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 jmcneill * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 jmcneill * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 jmcneill * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 jmcneill * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 1.1 jmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 1.1 jmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 1.1 jmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 1.1 jmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 jmcneill * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 jmcneill * SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill #include <sys/cdefs.h>
30 1.9 jmcneill __KERNEL_RCSID(0, "$NetBSD: tegra_i2c.c,v 1.9 2015/12/13 17:39:19 jmcneill Exp $");
31 1.1 jmcneill
32 1.1 jmcneill #include <sys/param.h>
33 1.1 jmcneill #include <sys/bus.h>
34 1.1 jmcneill #include <sys/device.h>
35 1.1 jmcneill #include <sys/intr.h>
36 1.1 jmcneill #include <sys/systm.h>
37 1.1 jmcneill #include <sys/kernel.h>
38 1.1 jmcneill
39 1.1 jmcneill #include <dev/i2c/i2cvar.h>
40 1.1 jmcneill
41 1.1 jmcneill #include <arm/nvidia/tegra_reg.h>
42 1.1 jmcneill #include <arm/nvidia/tegra_i2creg.h>
43 1.1 jmcneill #include <arm/nvidia/tegra_var.h>
44 1.1 jmcneill
45 1.9 jmcneill #include <dev/fdt/fdtvar.h>
46 1.9 jmcneill
47 1.9 jmcneill /* XXX */
48 1.9 jmcneill static int
49 1.9 jmcneill tegra_i2c_addr2port(bus_addr_t addr)
50 1.9 jmcneill {
51 1.9 jmcneill switch (addr) {
52 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C1_OFFSET:
53 1.9 jmcneill return 0;
54 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C2_OFFSET:
55 1.9 jmcneill return 1;
56 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C3_OFFSET:
57 1.9 jmcneill return 2;
58 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C4_OFFSET:
59 1.9 jmcneill return 3;
60 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C5_OFFSET:
61 1.9 jmcneill return 4;
62 1.9 jmcneill case TEGRA_APB_BASE + TEGRA_I2C6_OFFSET:
63 1.9 jmcneill return 5;
64 1.9 jmcneill default:
65 1.9 jmcneill return -1;
66 1.9 jmcneill }
67 1.9 jmcneill }
68 1.9 jmcneill
69 1.1 jmcneill static int tegra_i2c_match(device_t, cfdata_t, void *);
70 1.1 jmcneill static void tegra_i2c_attach(device_t, device_t, void *);
71 1.1 jmcneill
72 1.9 jmcneill static i2c_tag_t tegra_i2c_get_tag(device_t);
73 1.9 jmcneill
74 1.9 jmcneill struct fdtbus_i2c_controller_func tegra_i2c_funcs = {
75 1.9 jmcneill .get_tag = tegra_i2c_get_tag
76 1.9 jmcneill };
77 1.9 jmcneill
78 1.1 jmcneill struct tegra_i2c_softc {
79 1.1 jmcneill device_t sc_dev;
80 1.1 jmcneill bus_space_tag_t sc_bst;
81 1.1 jmcneill bus_space_handle_t sc_bsh;
82 1.1 jmcneill void * sc_ih;
83 1.2 jmcneill u_int sc_port;
84 1.1 jmcneill
85 1.1 jmcneill struct i2c_controller sc_ic;
86 1.1 jmcneill kmutex_t sc_lock;
87 1.1 jmcneill kcondvar_t sc_cv;
88 1.1 jmcneill device_t sc_i2cdev;
89 1.1 jmcneill };
90 1.1 jmcneill
91 1.1 jmcneill static void tegra_i2c_init(struct tegra_i2c_softc *);
92 1.1 jmcneill static int tegra_i2c_intr(void *);
93 1.1 jmcneill
94 1.1 jmcneill static int tegra_i2c_acquire_bus(void *, int);
95 1.1 jmcneill static void tegra_i2c_release_bus(void *, int);
96 1.1 jmcneill static int tegra_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *,
97 1.1 jmcneill size_t, void *, size_t, int);
98 1.1 jmcneill
99 1.1 jmcneill static int tegra_i2c_wait(struct tegra_i2c_softc *, int);
100 1.1 jmcneill static int tegra_i2c_write(struct tegra_i2c_softc *, i2c_addr_t,
101 1.6 jmcneill const uint8_t *, size_t, int, bool);
102 1.1 jmcneill static int tegra_i2c_read(struct tegra_i2c_softc *, i2c_addr_t, uint8_t *,
103 1.1 jmcneill size_t, int);
104 1.1 jmcneill
105 1.1 jmcneill CFATTACH_DECL_NEW(tegra_i2c, sizeof(struct tegra_i2c_softc),
106 1.1 jmcneill tegra_i2c_match, tegra_i2c_attach, NULL, NULL);
107 1.1 jmcneill
108 1.1 jmcneill #define I2C_WRITE(sc, reg, val) \
109 1.1 jmcneill bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
110 1.1 jmcneill #define I2C_READ(sc, reg) \
111 1.1 jmcneill bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
112 1.1 jmcneill #define I2C_SET_CLEAR(sc, reg, setval, clrval) \
113 1.1 jmcneill tegra_reg_set_clear((sc)->sc_bst, (sc)->sc_bsh, (reg), (setval), (clrval))
114 1.1 jmcneill
115 1.1 jmcneill static int
116 1.1 jmcneill tegra_i2c_match(device_t parent, cfdata_t cf, void *aux)
117 1.1 jmcneill {
118 1.9 jmcneill const char * const compatible[] = { "nvidia,tegra124-i2c", NULL };
119 1.9 jmcneill struct fdt_attach_args * const faa = aux;
120 1.1 jmcneill
121 1.9 jmcneill return of_match_compatible(faa->faa_phandle, compatible);
122 1.1 jmcneill }
123 1.1 jmcneill
124 1.1 jmcneill static void
125 1.1 jmcneill tegra_i2c_attach(device_t parent, device_t self, void *aux)
126 1.1 jmcneill {
127 1.1 jmcneill struct tegra_i2c_softc * const sc = device_private(self);
128 1.9 jmcneill struct fdt_attach_args * const faa = aux;
129 1.1 jmcneill struct i2cbus_attach_args iba;
130 1.9 jmcneill prop_dictionary_t devs;
131 1.9 jmcneill char intrstr[128];
132 1.9 jmcneill bus_addr_t addr;
133 1.9 jmcneill bus_size_t size;
134 1.9 jmcneill u_int address_cells;
135 1.9 jmcneill int len, error;
136 1.9 jmcneill
137 1.9 jmcneill if (fdtbus_get_reg(faa->faa_phandle, 0, &addr, &size) != 0) {
138 1.9 jmcneill aprint_error(": couldn't get registers\n");
139 1.9 jmcneill return;
140 1.9 jmcneill }
141 1.1 jmcneill
142 1.1 jmcneill sc->sc_dev = self;
143 1.9 jmcneill sc->sc_bst = faa->faa_bst;
144 1.9 jmcneill error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh);
145 1.9 jmcneill if (error) {
146 1.9 jmcneill aprint_error(": couldn't map %#llx: %d", (uint64_t)addr, error);
147 1.9 jmcneill return;
148 1.9 jmcneill }
149 1.9 jmcneill sc->sc_port = tegra_i2c_addr2port(addr);
150 1.1 jmcneill mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_VM);
151 1.1 jmcneill cv_init(&sc->sc_cv, device_xname(self));
152 1.1 jmcneill
153 1.1 jmcneill aprint_naive("\n");
154 1.9 jmcneill aprint_normal(": I2C%d\n", sc->sc_port + 1);
155 1.1 jmcneill
156 1.9 jmcneill if (!fdtbus_intr_str(faa->faa_phandle, 0, intrstr, sizeof(intrstr))) {
157 1.9 jmcneill aprint_error_dev(self, "failed to decode interrupt\n");
158 1.9 jmcneill return;
159 1.9 jmcneill }
160 1.9 jmcneill
161 1.9 jmcneill sc->sc_ih = fdtbus_intr_establish(faa->faa_phandle, 0, IPL_VM,
162 1.9 jmcneill FDT_INTR_MPSAFE, tegra_i2c_intr, sc);
163 1.1 jmcneill if (sc->sc_ih == NULL) {
164 1.9 jmcneill aprint_error_dev(self, "couldn't establish interrupt on %s\n",
165 1.9 jmcneill intrstr);
166 1.1 jmcneill return;
167 1.1 jmcneill }
168 1.9 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr);
169 1.1 jmcneill
170 1.8 jmcneill /*
171 1.8 jmcneill * Recommended setting for standard mode is to use an I2C source div
172 1.8 jmcneill * of 20 (Tegra K1 Technical Reference Manual, Table 137)
173 1.8 jmcneill */
174 1.9 jmcneill tegra_car_periph_i2c_enable(sc->sc_port, 20400000);
175 1.1 jmcneill
176 1.1 jmcneill tegra_i2c_init(sc);
177 1.1 jmcneill
178 1.1 jmcneill sc->sc_ic.ic_cookie = sc;
179 1.1 jmcneill sc->sc_ic.ic_acquire_bus = tegra_i2c_acquire_bus;
180 1.1 jmcneill sc->sc_ic.ic_release_bus = tegra_i2c_release_bus;
181 1.1 jmcneill sc->sc_ic.ic_exec = tegra_i2c_exec;
182 1.1 jmcneill
183 1.9 jmcneill fdtbus_register_i2c_controller(self, faa->faa_phandle,
184 1.9 jmcneill &tegra_i2c_funcs);
185 1.9 jmcneill
186 1.9 jmcneill devs = prop_dictionary_create();
187 1.9 jmcneill len = OF_getprop(faa->faa_phandle, "#address-cells",
188 1.9 jmcneill &address_cells, sizeof(address_cells));
189 1.9 jmcneill if (len == sizeof(address_cells)) {
190 1.9 jmcneill address_cells = be32toh(address_cells);
191 1.9 jmcneill } else {
192 1.9 jmcneill address_cells = 1;
193 1.9 jmcneill }
194 1.9 jmcneill of_enter_i2c_devs(devs, faa->faa_phandle, address_cells * 4, 0);
195 1.9 jmcneill
196 1.1 jmcneill iba.iba_tag = &sc->sc_ic;
197 1.9 jmcneill iba.iba_child_devices = prop_dictionary_get(devs, "i2c-child-devices");
198 1.9 jmcneill if (iba.iba_child_devices != NULL) {
199 1.9 jmcneill prop_object_retain(iba.iba_child_devices);
200 1.9 jmcneill } else {
201 1.9 jmcneill iba.iba_child_devices = prop_array_create();
202 1.9 jmcneill }
203 1.9 jmcneill prop_object_release(devs);
204 1.9 jmcneill
205 1.1 jmcneill sc->sc_i2cdev = config_found_ia(self, "i2cbus", &iba, iicbus_print);
206 1.1 jmcneill }
207 1.1 jmcneill
208 1.9 jmcneill static i2c_tag_t
209 1.9 jmcneill tegra_i2c_get_tag(device_t dev)
210 1.9 jmcneill {
211 1.9 jmcneill struct tegra_i2c_softc * const sc = device_private(dev);
212 1.9 jmcneill
213 1.9 jmcneill return &sc->sc_ic;
214 1.9 jmcneill }
215 1.9 jmcneill
216 1.1 jmcneill static void
217 1.1 jmcneill tegra_i2c_init(struct tegra_i2c_softc *sc)
218 1.1 jmcneill {
219 1.4 jmcneill int retry = 10000;
220 1.4 jmcneill
221 1.1 jmcneill I2C_WRITE(sc, I2C_CLK_DIVISOR_REG,
222 1.1 jmcneill __SHIFTIN(0x19, I2C_CLK_DIVISOR_STD_FAST_MODE) |
223 1.1 jmcneill __SHIFTIN(0x1, I2C_CLK_DIVISOR_HSMODE));
224 1.1 jmcneill
225 1.1 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_MASK_REG, 0);
226 1.2 jmcneill I2C_WRITE(sc, I2C_CNFG_REG,
227 1.2 jmcneill I2C_CNFG_NEW_MASTER_FSM | I2C_CNFG_PACKET_MODE_EN);
228 1.1 jmcneill I2C_SET_CLEAR(sc, I2C_SL_CNFG_REG, I2C_SL_CNFG_NEWSL, 0);
229 1.4 jmcneill I2C_WRITE(sc, I2C_FIFO_CONTROL_REG,
230 1.4 jmcneill __SHIFTIN(7, I2C_FIFO_CONTROL_TX_FIFO_TRIG) |
231 1.4 jmcneill __SHIFTIN(0, I2C_FIFO_CONTROL_RX_FIFO_TRIG));
232 1.4 jmcneill
233 1.3 jmcneill I2C_WRITE(sc, I2C_BUS_CONFIG_LOAD_REG,
234 1.3 jmcneill I2C_BUS_CONFIG_LOAD_MSTR_CONFIG_LOAD);
235 1.4 jmcneill while (--retry > 0) {
236 1.4 jmcneill if (I2C_READ(sc, I2C_BUS_CONFIG_LOAD_REG) == 0)
237 1.4 jmcneill break;
238 1.4 jmcneill delay(10);
239 1.4 jmcneill }
240 1.4 jmcneill if (retry == 0) {
241 1.4 jmcneill device_printf(sc->sc_dev, "config load timeout\n");
242 1.4 jmcneill }
243 1.1 jmcneill }
244 1.1 jmcneill
245 1.1 jmcneill static int
246 1.1 jmcneill tegra_i2c_intr(void *priv)
247 1.1 jmcneill {
248 1.1 jmcneill struct tegra_i2c_softc * const sc = priv;
249 1.1 jmcneill
250 1.1 jmcneill const uint32_t istatus = I2C_READ(sc, I2C_INTERRUPT_STATUS_REG);
251 1.1 jmcneill if (istatus == 0)
252 1.1 jmcneill return 0;
253 1.1 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_STATUS_REG, istatus);
254 1.1 jmcneill
255 1.1 jmcneill mutex_enter(&sc->sc_lock);
256 1.1 jmcneill cv_broadcast(&sc->sc_cv);
257 1.1 jmcneill mutex_exit(&sc->sc_lock);
258 1.1 jmcneill
259 1.1 jmcneill return 1;
260 1.1 jmcneill }
261 1.1 jmcneill
262 1.1 jmcneill static int
263 1.1 jmcneill tegra_i2c_acquire_bus(void *priv, int flags)
264 1.1 jmcneill {
265 1.1 jmcneill struct tegra_i2c_softc * const sc = priv;
266 1.1 jmcneill
267 1.1 jmcneill mutex_enter(&sc->sc_lock);
268 1.1 jmcneill
269 1.1 jmcneill return 0;
270 1.1 jmcneill }
271 1.1 jmcneill
272 1.1 jmcneill static void
273 1.1 jmcneill tegra_i2c_release_bus(void *priv, int flags)
274 1.1 jmcneill {
275 1.1 jmcneill struct tegra_i2c_softc * const sc = priv;
276 1.1 jmcneill
277 1.1 jmcneill mutex_exit(&sc->sc_lock);
278 1.1 jmcneill }
279 1.1 jmcneill
280 1.1 jmcneill static int
281 1.1 jmcneill tegra_i2c_exec(void *priv, i2c_op_t op, i2c_addr_t addr, const void *cmdbuf,
282 1.1 jmcneill size_t cmdlen, void *buf, size_t buflen, int flags)
283 1.1 jmcneill {
284 1.1 jmcneill struct tegra_i2c_softc * const sc = priv;
285 1.1 jmcneill int retry, error;
286 1.1 jmcneill
287 1.1 jmcneill #if notyet
288 1.1 jmcneill if (cold)
289 1.1 jmcneill #endif
290 1.1 jmcneill flags |= I2C_F_POLL;
291 1.1 jmcneill
292 1.1 jmcneill KASSERT(mutex_owned(&sc->sc_lock));
293 1.1 jmcneill
294 1.1 jmcneill if ((flags & I2C_F_POLL) == 0) {
295 1.1 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_MASK_REG,
296 1.1 jmcneill I2C_INTERRUPT_MASK_NOACK | I2C_INTERRUPT_MASK_ARB_LOST |
297 1.1 jmcneill I2C_INTERRUPT_MASK_TIMEOUT |
298 1.1 jmcneill I2C_INTERRUPT_MASK_ALL_PACKETS_XFER_COMPLETE);
299 1.1 jmcneill }
300 1.1 jmcneill
301 1.1 jmcneill const uint32_t flush_mask =
302 1.1 jmcneill I2C_FIFO_CONTROL_TX_FIFO_FLUSH | I2C_FIFO_CONTROL_RX_FIFO_FLUSH;
303 1.1 jmcneill
304 1.1 jmcneill I2C_SET_CLEAR(sc, I2C_FIFO_CONTROL_REG, flush_mask, 0);
305 1.1 jmcneill for (retry = 10000; retry > 0; retry--) {
306 1.1 jmcneill const uint32_t v = I2C_READ(sc, I2C_FIFO_CONTROL_REG);
307 1.1 jmcneill if ((v & flush_mask) == 0)
308 1.1 jmcneill break;
309 1.1 jmcneill delay(1);
310 1.1 jmcneill }
311 1.1 jmcneill if (retry == 0) {
312 1.1 jmcneill device_printf(sc->sc_dev, "timeout flushing FIFO\n");
313 1.1 jmcneill return EIO;
314 1.1 jmcneill }
315 1.1 jmcneill
316 1.1 jmcneill if (cmdlen > 0) {
317 1.7 jmcneill error = tegra_i2c_write(sc, addr, cmdbuf, cmdlen, flags,
318 1.7 jmcneill I2C_OP_READ_P(op) ? true : false);
319 1.1 jmcneill if (error) {
320 1.1 jmcneill goto done;
321 1.1 jmcneill }
322 1.1 jmcneill }
323 1.1 jmcneill
324 1.1 jmcneill if (I2C_OP_READ_P(op)) {
325 1.1 jmcneill error = tegra_i2c_read(sc, addr, buf, buflen, flags);
326 1.1 jmcneill } else {
327 1.6 jmcneill error = tegra_i2c_write(sc, addr, buf, buflen, flags, false);
328 1.1 jmcneill }
329 1.1 jmcneill
330 1.1 jmcneill done:
331 1.1 jmcneill if ((flags & I2C_F_POLL) == 0) {
332 1.1 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_MASK_REG, 0);
333 1.1 jmcneill }
334 1.3 jmcneill
335 1.3 jmcneill if (error) {
336 1.3 jmcneill tegra_i2c_init(sc);
337 1.3 jmcneill }
338 1.3 jmcneill
339 1.1 jmcneill return error;
340 1.1 jmcneill }
341 1.1 jmcneill
342 1.1 jmcneill static int
343 1.1 jmcneill tegra_i2c_wait(struct tegra_i2c_softc *sc, int flags)
344 1.1 jmcneill {
345 1.2 jmcneill int error, retry;
346 1.2 jmcneill uint32_t stat = 0;
347 1.2 jmcneill
348 1.2 jmcneill retry = (flags & I2C_F_POLL) ? 100000 : 100;
349 1.2 jmcneill
350 1.2 jmcneill while (--retry > 0) {
351 1.1 jmcneill if ((flags & I2C_F_POLL) == 0) {
352 1.1 jmcneill error = cv_timedwait_sig(&sc->sc_cv, &sc->sc_lock,
353 1.2 jmcneill max(mstohz(10), 1));
354 1.1 jmcneill if (error) {
355 1.1 jmcneill return error;
356 1.1 jmcneill }
357 1.1 jmcneill }
358 1.2 jmcneill stat = I2C_READ(sc, I2C_INTERRUPT_STATUS_REG);
359 1.2 jmcneill if (stat & I2C_INTERRUPT_STATUS_PACKET_XFER_COMPLETE) {
360 1.1 jmcneill break;
361 1.1 jmcneill }
362 1.1 jmcneill if (flags & I2C_F_POLL) {
363 1.2 jmcneill delay(10);
364 1.1 jmcneill }
365 1.1 jmcneill }
366 1.2 jmcneill if (retry == 0) {
367 1.2 jmcneill stat = I2C_READ(sc, I2C_INTERRUPT_STATUS_REG);
368 1.2 jmcneill device_printf(sc->sc_dev, "timed out, status = %#x\n", stat);
369 1.2 jmcneill return ETIMEDOUT;
370 1.2 jmcneill }
371 1.1 jmcneill
372 1.2 jmcneill const uint32_t err_mask =
373 1.2 jmcneill I2C_INTERRUPT_STATUS_NOACK |
374 1.2 jmcneill I2C_INTERRUPT_STATUS_ARB_LOST |
375 1.2 jmcneill I2C_INTERRUPT_MASK_TIMEOUT;
376 1.1 jmcneill
377 1.2 jmcneill if (stat & err_mask) {
378 1.2 jmcneill device_printf(sc->sc_dev, "error, status = %#x\n", stat);
379 1.1 jmcneill return EIO;
380 1.2 jmcneill }
381 1.1 jmcneill
382 1.1 jmcneill return 0;
383 1.1 jmcneill }
384 1.1 jmcneill
385 1.1 jmcneill static int
386 1.1 jmcneill tegra_i2c_write(struct tegra_i2c_softc *sc, i2c_addr_t addr, const uint8_t *buf,
387 1.6 jmcneill size_t buflen, int flags, bool repeat_start)
388 1.1 jmcneill {
389 1.2 jmcneill const uint8_t *p = buf;
390 1.2 jmcneill size_t n, resid = buflen;
391 1.2 jmcneill uint32_t data;
392 1.2 jmcneill int retry;
393 1.1 jmcneill
394 1.2 jmcneill const uint32_t istatus = I2C_READ(sc, I2C_INTERRUPT_STATUS_REG);
395 1.2 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_STATUS_REG, istatus);
396 1.1 jmcneill
397 1.2 jmcneill /* Generic Header 0 */
398 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
399 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PROTHDRSZ_REQ,
400 1.2 jmcneill I2C_IOPACKET_WORD0_PROTHDRSZ) |
401 1.2 jmcneill __SHIFTIN(sc->sc_port, I2C_IOPACKET_WORD0_CONTROLLERID) |
402 1.2 jmcneill __SHIFTIN(1, I2C_IOPACKET_WORD0_PKTID) |
403 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PROTOCOL_I2C,
404 1.2 jmcneill I2C_IOPACKET_WORD0_PROTOCOL) |
405 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PKTTYPE_REQ,
406 1.2 jmcneill I2C_IOPACKET_WORD0_PKTTYPE));
407 1.2 jmcneill /* Generic Header 1 */
408 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
409 1.2 jmcneill __SHIFTIN(buflen - 1, I2C_IOPACKET_WORD1_PAYLOADSIZE));
410 1.2 jmcneill /* I2C Master Transmit Packet Header */
411 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
412 1.2 jmcneill I2C_IOPACKET_XMITHDR_IE |
413 1.6 jmcneill (repeat_start ? I2C_IOPACKET_XMITHDR_REPEAT_STARTSTOP : 0) |
414 1.2 jmcneill __SHIFTIN((addr << 1), I2C_IOPACKET_XMITHDR_SLAVE_ADDR));
415 1.2 jmcneill
416 1.2 jmcneill /* Transmit data */
417 1.2 jmcneill while (resid > 0) {
418 1.2 jmcneill retry = 10000;
419 1.2 jmcneill while (--retry > 0) {
420 1.2 jmcneill const uint32_t fs = I2C_READ(sc, I2C_FIFO_STATUS_REG);
421 1.2 jmcneill const u_int cnt =
422 1.2 jmcneill __SHIFTOUT(fs, I2C_FIFO_STATUS_TX_FIFO_EMPTY_CNT);
423 1.2 jmcneill if (cnt > 0)
424 1.2 jmcneill break;
425 1.2 jmcneill delay(10);
426 1.2 jmcneill }
427 1.2 jmcneill if (retry == 0) {
428 1.2 jmcneill device_printf(sc->sc_dev, "TX FIFO timeout\n");
429 1.2 jmcneill return ETIMEDOUT;
430 1.2 jmcneill }
431 1.1 jmcneill
432 1.2 jmcneill for (n = 0, data = 0; n < min(resid, 4); n++) {
433 1.2 jmcneill data |= (uint32_t)p[n] << (n * 8);
434 1.2 jmcneill }
435 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG, data);
436 1.2 jmcneill resid -= min(resid, 4);
437 1.2 jmcneill p += min(resid, 4);
438 1.2 jmcneill }
439 1.1 jmcneill
440 1.1 jmcneill return tegra_i2c_wait(sc, flags);
441 1.1 jmcneill }
442 1.1 jmcneill
443 1.1 jmcneill static int
444 1.1 jmcneill tegra_i2c_read(struct tegra_i2c_softc *sc, i2c_addr_t addr, uint8_t *buf,
445 1.1 jmcneill size_t buflen, int flags)
446 1.1 jmcneill {
447 1.2 jmcneill uint8_t *p = buf;
448 1.2 jmcneill size_t n, resid = buflen;
449 1.2 jmcneill uint32_t data;
450 1.3 jmcneill int retry;
451 1.2 jmcneill
452 1.2 jmcneill const uint32_t istatus = I2C_READ(sc, I2C_INTERRUPT_STATUS_REG);
453 1.2 jmcneill I2C_WRITE(sc, I2C_INTERRUPT_STATUS_REG, istatus);
454 1.1 jmcneill
455 1.2 jmcneill /* Generic Header 0 */
456 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
457 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PROTHDRSZ_REQ,
458 1.2 jmcneill I2C_IOPACKET_WORD0_PROTHDRSZ) |
459 1.2 jmcneill __SHIFTIN(sc->sc_port, I2C_IOPACKET_WORD0_CONTROLLERID) |
460 1.2 jmcneill __SHIFTIN(1, I2C_IOPACKET_WORD0_PKTID) |
461 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PROTOCOL_I2C,
462 1.2 jmcneill I2C_IOPACKET_WORD0_PROTOCOL) |
463 1.2 jmcneill __SHIFTIN(I2C_IOPACKET_WORD0_PKTTYPE_REQ,
464 1.2 jmcneill I2C_IOPACKET_WORD0_PKTTYPE));
465 1.2 jmcneill /* Generic Header 1 */
466 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
467 1.2 jmcneill __SHIFTIN(buflen - 1, I2C_IOPACKET_WORD1_PAYLOADSIZE));
468 1.2 jmcneill /* I2C Master Transmit Packet Header */
469 1.2 jmcneill I2C_WRITE(sc, I2C_TX_PACKET_FIFO_REG,
470 1.2 jmcneill I2C_IOPACKET_XMITHDR_IE | I2C_IOPACKET_XMITHDR_READ |
471 1.2 jmcneill __SHIFTIN((addr << 1) | 1, I2C_IOPACKET_XMITHDR_SLAVE_ADDR));
472 1.1 jmcneill
473 1.2 jmcneill while (resid > 0) {
474 1.2 jmcneill retry = 10000;
475 1.2 jmcneill while (--retry > 0) {
476 1.2 jmcneill const uint32_t fs = I2C_READ(sc, I2C_FIFO_STATUS_REG);
477 1.2 jmcneill const u_int cnt =
478 1.2 jmcneill __SHIFTOUT(fs, I2C_FIFO_STATUS_RX_FIFO_FULL_CNT);
479 1.2 jmcneill if (cnt > 0)
480 1.2 jmcneill break;
481 1.2 jmcneill delay(10);
482 1.2 jmcneill }
483 1.2 jmcneill if (retry == 0) {
484 1.2 jmcneill device_printf(sc->sc_dev, "RX FIFO timeout\n");
485 1.2 jmcneill return ETIMEDOUT;
486 1.2 jmcneill }
487 1.1 jmcneill
488 1.2 jmcneill data = I2C_READ(sc, I2C_RX_FIFO_REG);
489 1.2 jmcneill for (n = 0; n < min(resid, 4); n++) {
490 1.2 jmcneill p[n] = (data >> (n * 8)) & 0xff;
491 1.2 jmcneill }
492 1.2 jmcneill resid -= min(resid, 4);
493 1.2 jmcneill p += min(resid, 4);
494 1.1 jmcneill }
495 1.1 jmcneill
496 1.3 jmcneill return tegra_i2c_wait(sc, flags);
497 1.1 jmcneill }
498 1.5 jmcneill
499 1.5 jmcneill void
500 1.5 jmcneill tegra_i2c_dvc_write(uint8_t addr, uint32_t data, size_t datalen)
501 1.5 jmcneill {
502 1.5 jmcneill bus_space_tag_t bst = &armv7_generic_bs_tag;
503 1.5 jmcneill bus_space_handle_t bsh;
504 1.5 jmcneill
505 1.5 jmcneill bus_space_subregion(bst, tegra_apb_bsh, TEGRA_I2C5_OFFSET,
506 1.5 jmcneill TEGRA_I2C5_SIZE, &bsh);
507 1.5 jmcneill
508 1.5 jmcneill bus_space_write_4(bst, bsh, I2C_CMD_ADDR0_REG, addr << 1);
509 1.5 jmcneill bus_space_write_4(bst, bsh, I2C_CMD_DATA1_REG, data);
510 1.5 jmcneill bus_space_write_4(bst, bsh, I2C_CNFG_REG,
511 1.5 jmcneill __SHIFTIN(datalen - 1, I2C_CNFG_LENGTH) |
512 1.5 jmcneill I2C_CNFG_NEW_MASTER_FSM |
513 1.5 jmcneill I2C_CNFG_SEND);
514 1.5 jmcneill }
515