x1226.c revision 1.23 1 1.23 thorpej /* $NetBSD: x1226.c,v 1.23 2020/01/02 19:00:34 thorpej Exp $ */
2 1.1 shige
3 1.1 shige /*
4 1.1 shige * Copyright (c) 2003 Shigeyuki Fukushima.
5 1.1 shige * All rights reserved.
6 1.1 shige *
7 1.1 shige * Written by Shigeyuki Fukushima for the NetBSD Project.
8 1.1 shige *
9 1.1 shige * Redistribution and use in source and binary forms, with or without
10 1.1 shige * modification, are permitted provided that the following conditions
11 1.1 shige * are met:
12 1.1 shige * 1. Redistributions of source code must retain the above copyright
13 1.1 shige * notice, this list of conditions and the following disclaimer.
14 1.1 shige * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 shige * notice, this list of conditions and the following disclaimer in the
16 1.1 shige * documentation and/or other materials provided with the distribution.
17 1.1 shige * 3. All advertising materials mentioning features or use of this software
18 1.1 shige * must display the following acknowledgement:
19 1.1 shige * This product includes software developed for the NetBSD Project by
20 1.1 shige * Shigeyuki Fukushima.
21 1.1 shige * 4. The name of Shigeyuki Fukushima may not be used to endorse
22 1.1 shige * or promote products derived from this software without specific prior
23 1.1 shige * written permission.
24 1.1 shige *
25 1.1 shige * THIS SOFTWARE IS PROVIDED BY SHIGEYUKI FUKUSHIMA ``AS IS'' AND
26 1.1 shige * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 shige * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 shige * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SHIGEYUKI FUKUSHIMA
29 1.1 shige * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 shige * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 shige * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 shige * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 shige * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 shige * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 shige * POSSIBILITY OF SUCH DAMAGE.
36 1.1 shige */
37 1.1 shige
38 1.1 shige #include <sys/cdefs.h>
39 1.23 thorpej __KERNEL_RCSID(0, "$NetBSD: x1226.c,v 1.23 2020/01/02 19:00:34 thorpej Exp $");
40 1.1 shige
41 1.1 shige #include <sys/param.h>
42 1.1 shige #include <sys/systm.h>
43 1.1 shige #include <sys/device.h>
44 1.1 shige #include <sys/kernel.h>
45 1.1 shige #include <sys/fcntl.h>
46 1.1 shige #include <sys/uio.h>
47 1.1 shige #include <sys/conf.h>
48 1.1 shige #include <sys/event.h>
49 1.1 shige
50 1.1 shige #include <dev/clock_subr.h>
51 1.1 shige
52 1.1 shige #include <dev/i2c/i2cvar.h>
53 1.1 shige #include <dev/i2c/x1226reg.h>
54 1.1 shige
55 1.20 riastrad #include "ioconf.h"
56 1.20 riastrad
57 1.1 shige struct xrtc_softc {
58 1.12 xtraeme device_t sc_dev;
59 1.1 shige i2c_tag_t sc_tag;
60 1.1 shige int sc_address;
61 1.1 shige int sc_open;
62 1.1 shige struct todr_chip_handle sc_todr;
63 1.1 shige };
64 1.1 shige
65 1.12 xtraeme static void xrtc_attach(device_t, device_t, void *);
66 1.12 xtraeme static int xrtc_match(device_t, cfdata_t, void *);
67 1.1 shige
68 1.12 xtraeme CFATTACH_DECL_NEW(xrtc, sizeof(struct xrtc_softc),
69 1.1 shige xrtc_match, xrtc_attach, NULL, NULL);
70 1.1 shige
71 1.1 shige dev_type_open(xrtc_open);
72 1.1 shige dev_type_close(xrtc_close);
73 1.1 shige dev_type_read(xrtc_read);
74 1.1 shige dev_type_write(xrtc_write);
75 1.1 shige
76 1.1 shige const struct cdevsw xrtc_cdevsw = {
77 1.15 dholland .d_open = xrtc_open,
78 1.15 dholland .d_close = xrtc_close,
79 1.15 dholland .d_read = xrtc_read,
80 1.15 dholland .d_write = xrtc_write,
81 1.16 skrll .d_ioctl = noioctl,
82 1.16 skrll .d_stop = nostop,
83 1.16 skrll .d_tty = notty,
84 1.16 skrll .d_poll = nopoll,
85 1.16 skrll .d_mmap = nommap,
86 1.16 skrll .d_kqfilter = nokqfilter,
87 1.17 dholland .d_discard = nodiscard,
88 1.16 skrll .d_flag = D_OTHER
89 1.1 shige };
90 1.1 shige
91 1.1 shige static int xrtc_clock_read(struct xrtc_softc *, struct clock_ymdhms *);
92 1.23 thorpej static int xrtc_gettime_ymdhms(struct todr_chip_handle *,
93 1.23 thorpej struct clock_ymdhms *);
94 1.23 thorpej static int xrtc_settime_ymdhms(struct todr_chip_handle *,
95 1.23 thorpej struct clock_ymdhms *);
96 1.1 shige
97 1.1 shige /*
98 1.1 shige * xrtc_match()
99 1.1 shige */
100 1.1 shige static int
101 1.12 xtraeme xrtc_match(device_t parent, cfdata_t cf, void *arg)
102 1.1 shige {
103 1.1 shige struct i2c_attach_args *ia = arg;
104 1.1 shige
105 1.1 shige /* match only this RTC devices */
106 1.1 shige if (ia->ia_addr == X1226_ADDR)
107 1.21 thorpej return (I2C_MATCH_ADDRESS_ONLY);
108 1.1 shige
109 1.1 shige return (0);
110 1.1 shige }
111 1.1 shige
112 1.1 shige /*
113 1.1 shige * xrtc_attach()
114 1.1 shige */
115 1.1 shige static void
116 1.12 xtraeme xrtc_attach(device_t parent, device_t self, void *arg)
117 1.1 shige {
118 1.8 thorpej struct xrtc_softc *sc = device_private(self);
119 1.1 shige struct i2c_attach_args *ia = arg;
120 1.1 shige
121 1.1 shige aprint_naive(": Real-time Clock/NVRAM\n");
122 1.1 shige aprint_normal(": Xicor X1226 Real-time Clock/NVRAM\n");
123 1.1 shige
124 1.1 shige sc->sc_tag = ia->ia_tag;
125 1.1 shige sc->sc_address = ia->ia_addr;
126 1.12 xtraeme sc->sc_dev = self;
127 1.1 shige sc->sc_open = 0;
128 1.1 shige sc->sc_todr.cookie = sc;
129 1.23 thorpej sc->sc_todr.todr_gettime = NULL;
130 1.23 thorpej sc->sc_todr.todr_settime = NULL;
131 1.23 thorpej sc->sc_todr.todr_gettime_ymdhms = xrtc_gettime_ymdhms;
132 1.23 thorpej sc->sc_todr.todr_settime_ymdhms = xrtc_settime_ymdhms;
133 1.1 shige sc->sc_todr.todr_setwen = NULL;
134 1.1 shige
135 1.1 shige todr_attach(&sc->sc_todr);
136 1.1 shige }
137 1.1 shige
138 1.1 shige
139 1.1 shige /*ARGSUSED*/
140 1.1 shige int
141 1.7 christos xrtc_open(dev_t dev, int flag, int fmt, struct lwp *l)
142 1.1 shige {
143 1.1 shige struct xrtc_softc *sc;
144 1.1 shige
145 1.13 tsutsui if ((sc = device_lookup_private(&xrtc_cd, minor(dev))) == NULL)
146 1.1 shige return (ENXIO);
147 1.1 shige
148 1.1 shige /* XXX: Locking */
149 1.1 shige
150 1.1 shige if (sc->sc_open)
151 1.1 shige return (EBUSY);
152 1.1 shige
153 1.1 shige sc->sc_open = 1;
154 1.1 shige return (0);
155 1.1 shige }
156 1.1 shige
157 1.1 shige /*ARGSUSED*/
158 1.1 shige int
159 1.7 christos xrtc_close(dev_t dev, int flag, int fmt, struct lwp *l)
160 1.1 shige {
161 1.1 shige struct xrtc_softc *sc;
162 1.1 shige
163 1.13 tsutsui if ((sc = device_lookup_private(&xrtc_cd, minor(dev))) == NULL)
164 1.1 shige return (ENXIO);
165 1.1 shige
166 1.1 shige sc->sc_open = 0;
167 1.1 shige return (0);
168 1.1 shige }
169 1.1 shige
170 1.1 shige /*ARGSUSED*/
171 1.1 shige int
172 1.1 shige xrtc_read(dev_t dev, struct uio *uio, int flags)
173 1.1 shige {
174 1.1 shige struct xrtc_softc *sc;
175 1.1 shige u_int8_t ch, cmdbuf[2];
176 1.1 shige int addr, error;
177 1.1 shige
178 1.13 tsutsui if ((sc = device_lookup_private(&xrtc_cd, minor(dev))) == NULL)
179 1.1 shige return (ENXIO);
180 1.1 shige
181 1.1 shige if (uio->uio_offset >= X1226_NVRAM_SIZE)
182 1.1 shige return (EINVAL);
183 1.1 shige
184 1.1 shige if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
185 1.1 shige return (error);
186 1.1 shige
187 1.1 shige while (uio->uio_resid && uio->uio_offset < X1226_NVRAM_SIZE) {
188 1.1 shige addr = (int)uio->uio_offset + X1226_NVRAM_START;
189 1.18 joerg cmdbuf[0] = (addr >> 8) & 0xff;
190 1.18 joerg cmdbuf[1] = addr & 0xff;
191 1.1 shige if ((error = iic_exec(sc->sc_tag,
192 1.1 shige I2C_OP_READ_WITH_STOP,
193 1.1 shige sc->sc_address, cmdbuf, 2, &ch, 1, 0)) != 0) {
194 1.1 shige iic_release_bus(sc->sc_tag, 0);
195 1.12 xtraeme aprint_error_dev(sc->sc_dev,
196 1.12 xtraeme "xrtc_read: read failed at 0x%x\n",
197 1.11 cegger (int)uio->uio_offset);
198 1.1 shige return (error);
199 1.1 shige }
200 1.1 shige if ((error = uiomove(&ch, 1, uio)) != 0) {
201 1.1 shige iic_release_bus(sc->sc_tag, 0);
202 1.1 shige return (error);
203 1.1 shige }
204 1.1 shige }
205 1.1 shige
206 1.1 shige iic_release_bus(sc->sc_tag, 0);
207 1.1 shige
208 1.1 shige return (0);
209 1.1 shige }
210 1.1 shige
211 1.1 shige /*ARGSUSED*/
212 1.1 shige int
213 1.1 shige xrtc_write(dev_t dev, struct uio *uio, int flags)
214 1.1 shige {
215 1.1 shige struct xrtc_softc *sc;
216 1.1 shige u_int8_t cmdbuf[3];
217 1.1 shige int addr, error;
218 1.1 shige
219 1.13 tsutsui if ((sc = device_lookup_private(&xrtc_cd, minor(dev))) == NULL)
220 1.1 shige return (ENXIO);
221 1.1 shige
222 1.1 shige if (uio->uio_offset >= X1226_NVRAM_SIZE)
223 1.1 shige return (EINVAL);
224 1.1 shige
225 1.1 shige if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0)
226 1.1 shige return (error);
227 1.1 shige
228 1.1 shige while (uio->uio_resid && uio->uio_offset < X1226_NVRAM_SIZE) {
229 1.1 shige addr = (int)uio->uio_offset + X1226_NVRAM_START;
230 1.18 joerg cmdbuf[0] = (addr >> 8) & 0xff;
231 1.18 joerg cmdbuf[1] = addr & 0xff;
232 1.1 shige if ((error = uiomove(&cmdbuf[2], 1, uio)) != 0) {
233 1.1 shige break;
234 1.1 shige }
235 1.1 shige if ((error = iic_exec(sc->sc_tag,
236 1.1 shige uio->uio_resid ? I2C_OP_WRITE : I2C_OP_WRITE_WITH_STOP,
237 1.1 shige sc->sc_address, cmdbuf, 2, &cmdbuf[2], 1, 0)) != 0) {
238 1.1 shige iic_release_bus(sc->sc_tag, 0);
239 1.12 xtraeme aprint_error_dev(sc->sc_dev,
240 1.12 xtraeme "xrtc_write: write failed at 0x%x\n",
241 1.11 cegger (int)uio->uio_offset);
242 1.1 shige return (error);
243 1.1 shige }
244 1.1 shige }
245 1.1 shige
246 1.1 shige iic_release_bus(sc->sc_tag, 0);
247 1.1 shige
248 1.1 shige return (0);
249 1.1 shige }
250 1.1 shige
251 1.1 shige
252 1.1 shige static int
253 1.23 thorpej xrtc_gettime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
254 1.1 shige {
255 1.1 shige struct xrtc_softc *sc = ch->cookie;
256 1.23 thorpej struct clock_ymdhms check;
257 1.1 shige int retries;
258 1.22 thorpej int error;
259 1.1 shige
260 1.23 thorpej memset(dt, 0, sizeof(*dt));
261 1.1 shige memset(&check, 0, sizeof(check));
262 1.1 shige
263 1.1 shige retries = 5;
264 1.1 shige do {
265 1.23 thorpej if ((error = xrtc_clock_read(sc, dt)) == 0)
266 1.22 thorpej error = xrtc_clock_read(sc, &check);
267 1.22 thorpej if (error)
268 1.22 thorpej return error;
269 1.23 thorpej } while (memcmp(dt, &check, sizeof(check)) != 0 && --retries);
270 1.1 shige
271 1.1 shige return (0);
272 1.1 shige }
273 1.1 shige
274 1.1 shige static int
275 1.1 shige xrtc_clock_read(struct xrtc_softc *sc, struct clock_ymdhms *dt)
276 1.1 shige {
277 1.1 shige int i = 0;
278 1.1 shige u_int8_t bcd[X1226_REG_RTC_SIZE], cmdbuf[2];
279 1.22 thorpej int error;
280 1.1 shige
281 1.22 thorpej if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0) {
282 1.12 xtraeme aprint_error_dev(sc->sc_dev,
283 1.12 xtraeme "xrtc_clock_read: failed to acquire I2C bus\n");
284 1.22 thorpej return (error);
285 1.1 shige }
286 1.1 shige
287 1.1 shige /* Read each RTC register in order */
288 1.1 shige for (i = 0 ; i < X1226_REG_RTC_SIZE ; i++) {
289 1.1 shige int addr = i + X1226_REG_RTC_BASE;
290 1.2 shige cmdbuf[0] = (addr >> 8) & 0xff;
291 1.2 shige cmdbuf[1] = addr & 0xff;
292 1.1 shige
293 1.22 thorpej if ((error = iic_exec(sc->sc_tag,
294 1.1 shige I2C_OP_READ_WITH_STOP,
295 1.1 shige sc->sc_address, cmdbuf, 2,
296 1.22 thorpej &bcd[i], 1, 0)) != 0) {
297 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
298 1.12 xtraeme aprint_error_dev(sc->sc_dev,
299 1.12 xtraeme "xrtc_clock_read: failed to read rtc "
300 1.11 cegger "at 0x%x\n", i);
301 1.22 thorpej return (error);
302 1.1 shige }
303 1.1 shige }
304 1.1 shige
305 1.1 shige /* Done with I2C */
306 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
307 1.1 shige
308 1.1 shige /*
309 1.1 shige * Convert the X1226's register bcd values
310 1.1 shige */
311 1.19 christos dt->dt_sec = bcdtobin(bcd[X1226_REG_SC - X1226_REG_RTC_BASE]
312 1.1 shige & X1226_REG_SC_MASK);
313 1.19 christos dt->dt_min = bcdtobin(bcd[X1226_REG_MN - X1226_REG_RTC_BASE]
314 1.1 shige & X1226_REG_MN_MASK);
315 1.3 shige if (!(bcd[X1226_REG_HR - X1226_REG_RTC_BASE] & X1226_FLAG_HR_24H)) {
316 1.19 christos dt->dt_hour = bcdtobin(bcd[X1226_REG_HR - X1226_REG_RTC_BASE]
317 1.1 shige & X1226_REG_HR12_MASK);
318 1.1 shige if (bcd[X1226_REG_HR - X1226_REG_RTC_BASE] & X1226_FLAG_HR_12HPM) {
319 1.1 shige dt->dt_hour += 12;
320 1.1 shige }
321 1.1 shige } else {
322 1.19 christos dt->dt_hour = bcdtobin(bcd[X1226_REG_HR - X1226_REG_RTC_BASE]
323 1.1 shige & X1226_REG_HR24_MASK);
324 1.1 shige }
325 1.19 christos dt->dt_wday = bcdtobin(bcd[X1226_REG_DW - X1226_REG_RTC_BASE]
326 1.2 shige & X1226_REG_DT_MASK);
327 1.19 christos dt->dt_day = bcdtobin(bcd[X1226_REG_DT - X1226_REG_RTC_BASE]
328 1.1 shige & X1226_REG_DT_MASK);
329 1.19 christos dt->dt_mon = bcdtobin(bcd[X1226_REG_MO - X1226_REG_RTC_BASE]
330 1.1 shige & X1226_REG_MO_MASK);
331 1.19 christos dt->dt_year = bcdtobin(bcd[X1226_REG_YR - X1226_REG_RTC_BASE]
332 1.1 shige & X1226_REG_YR_MASK);
333 1.19 christos dt->dt_year += bcdtobin(bcd[X1226_REG_Y2K - X1226_REG_RTC_BASE]
334 1.1 shige & X1226_REG_Y2K_MASK) * 100;
335 1.1 shige
336 1.22 thorpej return (0);
337 1.1 shige }
338 1.1 shige
339 1.1 shige static int
340 1.23 thorpej xrtc_settime_ymdhms(struct todr_chip_handle *ch, struct clock_ymdhms *dt)
341 1.1 shige {
342 1.23 thorpej struct xrtc_softc *sc = ch->cookie;
343 1.1 shige int i = 0, addr;
344 1.1 shige u_int8_t bcd[X1226_REG_RTC_SIZE], cmdbuf[3];
345 1.22 thorpej int error, error2;
346 1.1 shige
347 1.1 shige /*
348 1.1 shige * Convert our time to bcd values
349 1.1 shige */
350 1.19 christos bcd[X1226_REG_SC - X1226_REG_RTC_BASE] = bintobcd(dt->dt_sec);
351 1.19 christos bcd[X1226_REG_MN - X1226_REG_RTC_BASE] = bintobcd(dt->dt_min);
352 1.19 christos bcd[X1226_REG_HR - X1226_REG_RTC_BASE] = bintobcd(dt->dt_hour)
353 1.1 shige | X1226_FLAG_HR_24H;
354 1.19 christos bcd[X1226_REG_DW - X1226_REG_RTC_BASE] = bintobcd(dt->dt_wday);
355 1.19 christos bcd[X1226_REG_DT - X1226_REG_RTC_BASE] = bintobcd(dt->dt_day);
356 1.19 christos bcd[X1226_REG_MO - X1226_REG_RTC_BASE] = bintobcd(dt->dt_mon);
357 1.19 christos bcd[X1226_REG_YR - X1226_REG_RTC_BASE] = bintobcd(dt->dt_year % 100);
358 1.19 christos bcd[X1226_REG_Y2K - X1226_REG_RTC_BASE] = bintobcd(dt->dt_year / 100);
359 1.1 shige
360 1.22 thorpej if ((error = iic_acquire_bus(sc->sc_tag, 0)) != 0) {
361 1.12 xtraeme aprint_error_dev(sc->sc_dev,
362 1.12 xtraeme "xrtc_clock_write: failed to acquire I2C bus\n");
363 1.22 thorpej return (error);
364 1.1 shige }
365 1.1 shige
366 1.1 shige /* Unlock register: Write Enable Latch */
367 1.1 shige addr = X1226_REG_SR;
368 1.2 shige cmdbuf[0] = ((addr >> 8) & 0xff);
369 1.2 shige cmdbuf[1] = (addr & 0xff);
370 1.1 shige cmdbuf[2] = X1226_FLAG_SR_WEL;
371 1.22 thorpej if ((error = iic_exec(sc->sc_tag,
372 1.1 shige I2C_OP_WRITE_WITH_STOP,
373 1.22 thorpej sc->sc_address, cmdbuf, 2, &cmdbuf[2], 1, 0)) != 0) {
374 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
375 1.12 xtraeme aprint_error_dev(sc->sc_dev, "xrtc_clock_write: "
376 1.11 cegger "failed to write-unlock status register(WEL=1)\n");
377 1.22 thorpej return (error);
378 1.1 shige }
379 1.1 shige
380 1.1 shige /* Unlock register: Register Write Enable Latch */
381 1.1 shige addr = X1226_REG_SR;
382 1.2 shige cmdbuf[0] = ((addr >> 8) & 0xff);
383 1.2 shige cmdbuf[1] = (addr & 0xff);
384 1.4 shige cmdbuf[2] = X1226_FLAG_SR_WEL | X1226_FLAG_SR_RWEL;
385 1.22 thorpej if ((error = iic_exec(sc->sc_tag,
386 1.1 shige I2C_OP_WRITE_WITH_STOP,
387 1.22 thorpej sc->sc_address, cmdbuf, 2, &cmdbuf[2], 1, 0)) != 0) {
388 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
389 1.12 xtraeme aprint_error_dev(sc->sc_dev, "xrtc_clock_write: "
390 1.11 cegger "failed to write-unlock status register(RWEL=1)\n");
391 1.22 thorpej return (error);
392 1.1 shige }
393 1.1 shige
394 1.1 shige /* Write each RTC register in reverse order */
395 1.1 shige for (i = (X1226_REG_RTC_SIZE - 1) ; i >= 0; i--) {
396 1.5 scw addr = i + X1226_REG_RTC_BASE;
397 1.2 shige cmdbuf[0] = ((addr >> 8) & 0xff);
398 1.2 shige cmdbuf[1] = (addr & 0xff);
399 1.22 thorpej if ((error = iic_exec(sc->sc_tag,
400 1.1 shige I2C_OP_WRITE_WITH_STOP,
401 1.1 shige sc->sc_address, cmdbuf, 2,
402 1.22 thorpej &bcd[i], 1, 0)) != 0) {
403 1.1 shige
404 1.22 thorpej aprint_error_dev(sc->sc_dev,
405 1.22 thorpej "xrtc_clock_write: failed to write rtc at 0x%x\n",
406 1.22 thorpej i);
407 1.1 shige
408 1.22 thorpej goto write_lock_rtc;
409 1.1 shige }
410 1.1 shige }
411 1.1 shige
412 1.22 thorpej write_lock_rtc:
413 1.1 shige /* Lock register: WEL/RWEL off */
414 1.1 shige addr = X1226_REG_SR;
415 1.2 shige cmdbuf[0] = ((addr >> 8) & 0xff);
416 1.2 shige cmdbuf[1] = (addr & 0xff);
417 1.2 shige cmdbuf[2] = 0;
418 1.22 thorpej if ((error2 = iic_exec(sc->sc_tag,
419 1.22 thorpej I2C_OP_WRITE_WITH_STOP,
420 1.22 thorpej sc->sc_address, cmdbuf, 2, &cmdbuf[2], 1, 0)) != 0) {
421 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
422 1.12 xtraeme aprint_error_dev(sc->sc_dev, "xrtc_clock_write: "
423 1.11 cegger "failed to write-lock status register\n");
424 1.22 thorpej return (error ? error : error2);
425 1.1 shige }
426 1.1 shige
427 1.22 thorpej iic_release_bus(sc->sc_tag, 0);
428 1.22 thorpej return (error);
429 1.1 shige }
430