xref: /freebsd/sys/dev/flash/at45d.c (revision 2e43efd0bb1e9cd780f02fa5b888f9264e66e37b)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2006 M. Warner Losh
5  * Copyright (c) 2011-2012 Ian Lepore
6  * Copyright (c) 2012 Marius Strobl <marius@FreeBSD.org>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/bio.h>
36 #include <sys/bus.h>
37 #include <sys/conf.h>
38 #include <sys/endian.h>
39 #include <sys/kernel.h>
40 #include <sys/kthread.h>
41 #include <sys/lock.h>
42 #include <sys/mbuf.h>
43 #include <sys/malloc.h>
44 #include <sys/module.h>
45 #include <sys/mutex.h>
46 #include <geom/geom_disk.h>
47 
48 #include <dev/spibus/spi.h>
49 #include "spibus_if.h"
50 
51 #include "opt_platform.h"
52 
53 #ifdef FDT
54 #include <dev/fdt/fdt_common.h>
55 #include <dev/ofw/ofw_bus_subr.h>
56 #include <dev/ofw/openfirm.h>
57 
58 static struct ofw_compat_data compat_data[] = {
59 	{ "atmel,at45",		1 },
60 	{ "atmel,dataflash",	1 },
61 	{ NULL,			0 },
62 };
63 #endif
64 
65 /* This is the information returned by the MANUFACTURER_ID command. */
66 struct at45d_mfg_info {
67 	uint32_t	jedec_id; /* Mfg ID, DevId1, DevId2, ExtLen */
68 	uint16_t	ext_id;   /* ExtId1, ExtId2 */
69 };
70 
71 /*
72  * This is an entry in our table of metadata describing the chips.  We match on
73  * both jedec id and extended id info returned by the MANUFACTURER_ID command.
74  */
75 struct at45d_flash_ident
76 {
77 	const char	*name;
78 	uint32_t	jedec;
79 	uint16_t	extid;
80 	uint16_t	extmask;
81 	uint16_t	pagecount;
82 	uint16_t	pageoffset;
83 	uint16_t	pagesize;
84 	uint16_t	pagesize2n;
85 };
86 
87 struct at45d_softc
88 {
89 	struct bio_queue_head	bio_queue;
90 	struct mtx		sc_mtx;
91 	struct disk		*disk;
92 	struct proc		*p;
93 	device_t		dev;
94 	u_int			taskstate;
95 	uint16_t		pagecount;
96 	uint16_t		pageoffset;
97 	uint16_t		pagesize;
98 	void			*dummybuf;
99 };
100 
101 #define	TSTATE_STOPPED	0
102 #define	TSTATE_STOPPING	1
103 #define	TSTATE_RUNNING	2
104 
105 #define	AT45D_LOCK(_sc)			mtx_lock(&(_sc)->sc_mtx)
106 #define	AT45D_UNLOCK(_sc)		mtx_unlock(&(_sc)->sc_mtx)
107 #define	AT45D_LOCK_INIT(_sc) \
108 	mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->dev), \
109 	    "at45d", MTX_DEF)
110 #define	AT45D_LOCK_DESTROY(_sc)		mtx_destroy(&_sc->sc_mtx);
111 #define	AT45D_ASSERT_LOCKED(_sc)	mtx_assert(&_sc->sc_mtx, MA_OWNED);
112 #define	AT45D_ASSERT_UNLOCKED(_sc)	mtx_assert(&_sc->sc_mtx, MA_NOTOWNED);
113 
114 /* bus entry points */
115 static device_attach_t at45d_attach;
116 static device_detach_t at45d_detach;
117 static device_probe_t at45d_probe;
118 
119 /* disk routines */
120 static int at45d_close(struct disk *dp);
121 static int at45d_open(struct disk *dp);
122 static int at45d_getattr(struct bio *bp);
123 static void at45d_strategy(struct bio *bp);
124 static void at45d_task(void *arg);
125 
126 /* helper routines */
127 static void at45d_delayed_attach(void *xsc);
128 static int at45d_get_mfg_info(device_t dev, struct at45d_mfg_info *resp);
129 static int at45d_get_status(device_t dev, uint8_t *status);
130 static int at45d_wait_ready(device_t dev, uint8_t *status);
131 
132 #define	PAGE_TO_BUFFER_TRANSFER		0x53
133 #define	PAGE_TO_BUFFER_COMPARE		0x60
134 #define	PROGRAM_THROUGH_BUFFER		0x82
135 #define	MANUFACTURER_ID			0x9f
136 #define	STATUS_REGISTER_READ		0xd7
137 #define	CONTINUOUS_ARRAY_READ		0xe8
138 
139 #define	STATUS_READY			(1u << 7)
140 #define	STATUS_CMPFAIL			(1u << 6)
141 #define	STATUS_PAGE2N			(1u << 0)
142 
143 /*
144  * Metadata for supported chips.
145  *
146  * The jedec id in this table includes the extended id length byte.  A match is
147  * based on both jedec id and extended id matching.  The chip's extended id (not
148  * present in most chips) is ANDed with ExtMask and the result is compared to
149  * ExtId.  If a chip only returns 1 ext id byte it will be in the upper 8 bits
150  * of ExtId in this table.
151  *
152  * A sectorsize2n != 0 is used to indicate that a device optionally supports
153  * 2^N byte pages.  If support for the latter is enabled, the sector offset
154  * has to be reduced by one.
155  */
156 static const struct at45d_flash_ident at45d_flash_devices[] = {
157 	/* Part Name    Jedec ID    ExtId   ExtMask PgCnt Offs PgSz PgSz2n */
158 	{ "AT45DB011B", 0x1f220000, 0x0000, 0x0000,   512,  9,  264,  256 },
159 	{ "AT45DB021B", 0x1f230000, 0x0000, 0x0000,  1024,  9,  264,  256 },
160 	{ "AT45DB041x", 0x1f240000, 0x0000, 0x0000,  2028,  9,  264,  256 },
161 	{ "AT45DB081B", 0x1f250000, 0x0000, 0x0000,  4096,  9,  264,  256 },
162 	{ "AT45DB161x", 0x1f260000, 0x0000, 0x0000,  4096, 10,  528,  512 },
163 	{ "AT45DB321x", 0x1f270000, 0x0000, 0x0000,  8192, 10,  528,    0 },
164 	{ "AT45DB321x", 0x1f270100, 0x0000, 0x0000,  8192, 10,  528,  512 },
165 	{ "AT45DB641E", 0x1f280001, 0x0000, 0xff00, 32768,  9,  264,  256 },
166 	{ "AT45DB642x", 0x1f280000, 0x0000, 0x0000,  8192, 11, 1056, 1024 },
167 };
168 
169 static int
170 at45d_get_status(device_t dev, uint8_t *status)
171 {
172 	uint8_t rxBuf[8], txBuf[8];
173 	struct spi_command cmd;
174 	int err;
175 
176 	memset(&cmd, 0, sizeof(cmd));
177 	memset(txBuf, 0, sizeof(txBuf));
178 	memset(rxBuf, 0, sizeof(rxBuf));
179 
180 	txBuf[0] = STATUS_REGISTER_READ;
181 	cmd.tx_cmd = txBuf;
182 	cmd.rx_cmd = rxBuf;
183 	cmd.rx_cmd_sz = cmd.tx_cmd_sz = 2;
184 	err = SPIBUS_TRANSFER(device_get_parent(dev), dev, &cmd);
185 	*status = rxBuf[1];
186 	return (err);
187 }
188 
189 static int
190 at45d_get_mfg_info(device_t dev, struct at45d_mfg_info *resp)
191 {
192 	uint8_t rxBuf[8], txBuf[8];
193 	struct spi_command cmd;
194 	int err;
195 
196 	memset(&cmd, 0, sizeof(cmd));
197 	memset(txBuf, 0, sizeof(txBuf));
198 	memset(rxBuf, 0, sizeof(rxBuf));
199 
200 	txBuf[0] = MANUFACTURER_ID;
201 	cmd.tx_cmd = &txBuf;
202 	cmd.rx_cmd = &rxBuf;
203 	cmd.tx_cmd_sz = cmd.rx_cmd_sz = 7;
204 	err = SPIBUS_TRANSFER(device_get_parent(dev), dev, &cmd);
205 	if (err)
206 		return (err);
207 
208 	resp->jedec_id = be32dec(rxBuf + 1);
209 	resp->ext_id   = be16dec(rxBuf + 5);
210 
211 	return (0);
212 }
213 
214 static int
215 at45d_wait_ready(device_t dev, uint8_t *status)
216 {
217 	struct timeval now, tout;
218 	int err;
219 
220 	getmicrouptime(&tout);
221 	tout.tv_sec += 3;
222 	do {
223 		getmicrouptime(&now);
224 		if (now.tv_sec > tout.tv_sec)
225 			err = ETIMEDOUT;
226 		else
227 			err = at45d_get_status(dev, status);
228 	} while (err == 0 && !(*status & STATUS_READY));
229 	return (err);
230 }
231 
232 static int
233 at45d_probe(device_t dev)
234 {
235 	int rv;
236 
237 #ifdef FDT
238 	if (!ofw_bus_status_okay(dev))
239 		return (ENXIO);
240 
241 	if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
242 		return (ENXIO);
243 
244 	rv = BUS_PROBE_DEFAULT;
245 #else
246 	rv = BUS_PROBE_NOWILDCARD;
247 #endif
248 
249 	device_set_desc(dev, "AT45D Flash Family");
250 	return (rv);
251 }
252 
253 static int
254 at45d_attach(device_t dev)
255 {
256 	struct at45d_softc *sc;
257 
258 	sc = device_get_softc(dev);
259 	sc->dev = dev;
260 	AT45D_LOCK_INIT(sc);
261 
262 	config_intrhook_oneshot(at45d_delayed_attach, sc);
263 	return (0);
264 }
265 
266 static int
267 at45d_detach(device_t dev)
268 {
269 	struct at45d_softc *sc;
270 	int err;
271 
272 	sc = device_get_softc(dev);
273 	err = 0;
274 
275 	AT45D_LOCK(sc);
276 	if (sc->taskstate == TSTATE_RUNNING) {
277 		sc->taskstate = TSTATE_STOPPING;
278 		wakeup(sc);
279 		while (err == 0 && sc->taskstate != TSTATE_STOPPED) {
280 			err = msleep(sc, &sc->sc_mtx, 0, "at45dt", hz * 3);
281 			if (err != 0) {
282 				sc->taskstate = TSTATE_RUNNING;
283 				device_printf(sc->dev,
284 				    "Failed to stop queue task\n");
285 			}
286 		}
287 	}
288 	AT45D_UNLOCK(sc);
289 
290 	if (err == 0 && sc->taskstate == TSTATE_STOPPED) {
291 		if (sc->disk) {
292 			disk_destroy(sc->disk);
293 			bioq_flush(&sc->bio_queue, NULL, ENXIO);
294 			free(sc->dummybuf, M_DEVBUF);
295 		}
296 		AT45D_LOCK_DESTROY(sc);
297 	}
298 	return (err);
299 }
300 
301 static void
302 at45d_delayed_attach(void *xsc)
303 {
304 	struct at45d_softc *sc;
305 	struct at45d_mfg_info mfginfo;
306 	const struct at45d_flash_ident *ident;
307 	u_int i;
308 	int sectorsize;
309 	uint32_t jedec;
310 	uint16_t pagesize;
311 	uint8_t status;
312 
313 	sc = xsc;
314 	ident = NULL;
315 	jedec = 0;
316 
317 	if (at45d_wait_ready(sc->dev, &status) != 0) {
318 		device_printf(sc->dev, "Error waiting for device-ready.\n");
319 		return;
320 	}
321 	if (at45d_get_mfg_info(sc->dev, &mfginfo) != 0) {
322 		device_printf(sc->dev, "Failed to get ID.\n");
323 		return;
324 	}
325 	for (i = 0; i < nitems(at45d_flash_devices); i++) {
326 		ident = &at45d_flash_devices[i];
327 		if (mfginfo.jedec_id == ident->jedec &&
328 		    (mfginfo.ext_id & ident->extmask) == ident->extid) {
329 			break;
330 		}
331 	}
332 	if (i == nitems(at45d_flash_devices)) {
333 		device_printf(sc->dev, "JEDEC 0x%x not in list.\n", jedec);
334 		return;
335 	}
336 
337 	sc->pagecount = ident->pagecount;
338 	sc->pageoffset = ident->pageoffset;
339 	if (ident->pagesize2n != 0 && (status & STATUS_PAGE2N)) {
340 		sc->pageoffset -= 1;
341 		pagesize = ident->pagesize2n;
342 	} else
343 		pagesize = ident->pagesize;
344 	sc->pagesize = pagesize;
345 
346 	/*
347 	 * By default we set up a disk with a sector size that matches the
348 	 * device page size.  If there is a device hint or fdt property
349 	 * requesting a different size, use that, as long as it is a multiple of
350 	 * the device page size).
351 	 */
352 	sectorsize = pagesize;
353 #ifdef FDT
354 	{
355 		pcell_t size;
356 		if (OF_getencprop(ofw_bus_get_node(sc->dev),
357 		    "freebsd,sectorsize", &size, sizeof(size)) > 0)
358 			sectorsize = size;
359 	}
360 #endif
361 	resource_int_value(device_get_name(sc->dev), device_get_unit(sc->dev),
362 	    "sectorsize", &sectorsize);
363 
364 	if ((sectorsize % pagesize) != 0) {
365 		device_printf(sc->dev, "Invalid sectorsize %d, "
366 		    "must be a multiple of %d\n", sectorsize, pagesize);
367 		return;
368 	}
369 
370 	sc->dummybuf = malloc(pagesize, M_DEVBUF, M_WAITOK | M_ZERO);
371 
372 	sc->disk = disk_alloc();
373 	sc->disk->d_open = at45d_open;
374 	sc->disk->d_close = at45d_close;
375 	sc->disk->d_strategy = at45d_strategy;
376 	sc->disk->d_getattr = at45d_getattr;
377 	sc->disk->d_name = "flash/at45d";
378 	sc->disk->d_drv1 = sc;
379 	sc->disk->d_maxsize = DFLTPHYS;
380 	sc->disk->d_sectorsize = sectorsize;
381 	sc->disk->d_mediasize = pagesize * ident->pagecount;
382 	sc->disk->d_unit = device_get_unit(sc->dev);
383 	disk_create(sc->disk, DISK_VERSION);
384 	disk_add_alias(sc->disk, "flash/spi");
385 	bioq_init(&sc->bio_queue);
386 	kproc_create(&at45d_task, sc, &sc->p, 0, 0, "task: at45d flash");
387 	sc->taskstate = TSTATE_RUNNING;
388 	device_printf(sc->dev,
389 	    "%s, %d bytes per page, %d pages; %d KBytes; disk sector size %d\n",
390 	    ident->name, pagesize, ident->pagecount,
391 	    (pagesize * ident->pagecount) / 1024, sectorsize);
392 }
393 
394 static int
395 at45d_open(struct disk *dp)
396 {
397 
398 	return (0);
399 }
400 
401 static int
402 at45d_close(struct disk *dp)
403 {
404 
405 	return (0);
406 }
407 
408 static int
409 at45d_getattr(struct bio *bp)
410 {
411 	struct at45d_softc *sc;
412 
413 	/*
414 	 * This function exists to support geom_flashmap and fdt_slicer.
415 	 */
416 
417 	if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL)
418 		return (ENXIO);
419 	if (strcmp(bp->bio_attribute, "SPI::device") != 0)
420 		return (-1);
421 	sc = bp->bio_disk->d_drv1;
422 	if (bp->bio_length != sizeof(sc->dev))
423 		return (EFAULT);
424 	bcopy(&sc->dev, bp->bio_data, sizeof(sc->dev));
425 	return (0);
426 }
427 
428 static void
429 at45d_strategy(struct bio *bp)
430 {
431 	struct at45d_softc *sc;
432 
433 	sc = (struct at45d_softc *)bp->bio_disk->d_drv1;
434 	AT45D_LOCK(sc);
435 	bioq_disksort(&sc->bio_queue, bp);
436 	wakeup(sc);
437 	AT45D_UNLOCK(sc);
438 }
439 
440 static void
441 at45d_task(void *arg)
442 {
443 	uint8_t rxBuf[8], txBuf[8];
444 	struct at45d_softc *sc;
445 	struct bio *bp;
446 	struct spi_command cmd;
447 	device_t dev, pdev;
448 	caddr_t buf;
449 	u_long len, resid;
450 	u_int addr, berr, err, offset, page;
451 	uint8_t status;
452 
453 	sc = (struct at45d_softc*)arg;
454 	dev = sc->dev;
455 	pdev = device_get_parent(dev);
456 	memset(&cmd, 0, sizeof(cmd));
457 	memset(txBuf, 0, sizeof(txBuf));
458 	memset(rxBuf, 0, sizeof(rxBuf));
459 	cmd.tx_cmd = txBuf;
460 	cmd.rx_cmd = rxBuf;
461 
462 	for (;;) {
463 		AT45D_LOCK(sc);
464 		do {
465 			if (sc->taskstate == TSTATE_STOPPING) {
466 				sc->taskstate = TSTATE_STOPPED;
467 				AT45D_UNLOCK(sc);
468 				wakeup(sc);
469 				kproc_exit(0);
470 			}
471 			bp = bioq_takefirst(&sc->bio_queue);
472 			if (bp == NULL)
473 				msleep(sc, &sc->sc_mtx, PRIBIO, "at45dq", 0);
474 		} while (bp == NULL);
475 		AT45D_UNLOCK(sc);
476 
477 		berr = 0;
478 		buf = bp->bio_data;
479 		len = resid = bp->bio_bcount;
480 		page = bp->bio_offset / sc->pagesize;
481 		offset = bp->bio_offset % sc->pagesize;
482 
483 		switch (bp->bio_cmd) {
484 		case BIO_READ:
485 			txBuf[0] = CONTINUOUS_ARRAY_READ;
486 			cmd.tx_cmd_sz = cmd.rx_cmd_sz = 8;
487 			cmd.tx_data = sc->dummybuf;
488 			cmd.rx_data = buf;
489 			break;
490 		case BIO_WRITE:
491 			cmd.tx_cmd_sz = cmd.rx_cmd_sz = 4;
492 			cmd.tx_data = buf;
493 			cmd.rx_data = sc->dummybuf;
494 			if (resid + offset > sc->pagesize)
495 				len = sc->pagesize - offset;
496 			break;
497 		default:
498 			berr = EINVAL;
499 			goto out;
500 		}
501 
502 		/*
503 		 * NB: for BIO_READ, this loop is only traversed once.
504 		 */
505 		while (resid > 0) {
506 			if (page > sc->pagecount) {
507 				berr = EINVAL;
508 				goto out;
509 			}
510 			addr = page << sc->pageoffset;
511 			if (bp->bio_cmd == BIO_WRITE) {
512 				/*
513 				 * If writing less than a full page, transfer
514 				 * the existing page to the buffer, so that our
515 				 * PROGRAM_THROUGH_BUFFER below will preserve
516 				 * the parts of the page we're not writing.
517 				 */
518 				if (len != sc->pagesize) {
519 					txBuf[0] = PAGE_TO_BUFFER_TRANSFER;
520 					txBuf[1] = ((addr >> 16) & 0xff);
521 					txBuf[2] = ((addr >> 8) & 0xff);
522 					txBuf[3] = 0;
523 					cmd.tx_data_sz = cmd.rx_data_sz = 0;
524 					err = SPIBUS_TRANSFER(pdev, dev, &cmd);
525 					if (err == 0)
526 						err = at45d_wait_ready(dev,
527 						    &status);
528 					if (err != 0) {
529 						berr = EIO;
530 						goto out;
531 					}
532 				}
533 				txBuf[0] = PROGRAM_THROUGH_BUFFER;
534 			}
535 
536 			addr += offset;
537 			txBuf[1] = ((addr >> 16) & 0xff);
538 			txBuf[2] = ((addr >> 8) & 0xff);
539 			txBuf[3] = (addr & 0xff);
540 			cmd.tx_data_sz = cmd.rx_data_sz = len;
541 			err = SPIBUS_TRANSFER(pdev, dev, &cmd);
542 			if (err == 0 && bp->bio_cmd != BIO_READ)
543 				err = at45d_wait_ready(dev, &status);
544 			if (err != 0) {
545 				berr = EIO;
546 				goto out;
547 			}
548 			if (bp->bio_cmd == BIO_WRITE) {
549 				addr = page << sc->pageoffset;
550 				txBuf[0] = PAGE_TO_BUFFER_COMPARE;
551 				txBuf[1] = ((addr >> 16) & 0xff);
552 				txBuf[2] = ((addr >> 8) & 0xff);
553 				txBuf[3] = 0;
554 				cmd.tx_data_sz = cmd.rx_data_sz = 0;
555 				err = SPIBUS_TRANSFER(pdev, dev, &cmd);
556 				if (err == 0)
557 					err = at45d_wait_ready(dev, &status);
558 				if (err != 0 || (status & STATUS_CMPFAIL)) {
559 					device_printf(dev, "comparing page "
560 					    "%d failed (status=0x%x)\n", page,
561 					    status);
562 					berr = EIO;
563 					goto out;
564 				}
565 			}
566 			page++;
567 			buf += len;
568 			offset = 0;
569 			resid -= len;
570 			if (resid > sc->pagesize)
571 				len = sc->pagesize;
572 			else
573 				len = resid;
574 			if (bp->bio_cmd == BIO_READ)
575 				cmd.rx_data = buf;
576 			else
577 				cmd.tx_data = buf;
578 		}
579  out:
580 		if (berr != 0) {
581 			bp->bio_flags |= BIO_ERROR;
582 			bp->bio_error = berr;
583 		}
584 		bp->bio_resid = resid;
585 		biodone(bp);
586 	}
587 }
588 
589 static devclass_t at45d_devclass;
590 
591 static device_method_t at45d_methods[] = {
592 	/* Device interface */
593 	DEVMETHOD(device_probe,		at45d_probe),
594 	DEVMETHOD(device_attach,	at45d_attach),
595 	DEVMETHOD(device_detach,	at45d_detach),
596 
597 	DEVMETHOD_END
598 };
599 
600 static driver_t at45d_driver = {
601 	"at45d",
602 	at45d_methods,
603 	sizeof(struct at45d_softc),
604 };
605 
606 DRIVER_MODULE(at45d, spibus, at45d_driver, at45d_devclass, NULL, NULL);
607 MODULE_DEPEND(at45d, spibus, 1, 1, 1);
608 #ifdef FDT
609 MODULE_DEPEND(at45d, fdt_slicer, 1, 1, 1);
610 SPIBUS_PNP_INFO(compat_data);
611 #endif
612 
613