| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*======================================================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     A driver for Adaptec AHA152X-compatible PCMCIA SCSI cards. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This driver supports the Adaptec AHA-1460, the New Media Bus | 
					
						
							|  |  |  |     Toaster, and the New Media Toast & Jam. | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     aha152x_cs.c 1.54 2000/06/12 21:27:25 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The contents of this file are subject to the Mozilla Public | 
					
						
							|  |  |  |     License Version 1.1 (the "License"); you may not use this file | 
					
						
							|  |  |  |     except in compliance with the License. You may obtain a copy of | 
					
						
							|  |  |  |     the License at http://www.mozilla.org/MPL/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Software distributed under the License is distributed on an "AS | 
					
						
							|  |  |  |     IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | 
					
						
							|  |  |  |     implied. See the License for the specific language governing | 
					
						
							|  |  |  |     rights and limitations under the License. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The initial developer of the original code is David A. Hinds | 
					
						
							|  |  |  |     <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds | 
					
						
							|  |  |  |     are Copyright (C) 1999 David A. Hinds.  All Rights Reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Alternatively, the contents of this file may be used under the | 
					
						
							|  |  |  |     terms of the GNU General Public License version 2 (the "GPL"), in which | 
					
						
							|  |  |  |     case the provisions of the GPL are applicable instead of the | 
					
						
							|  |  |  |     above.  If you wish to allow the use of your version of this file | 
					
						
							|  |  |  |     only under the terms of the GPL and not to allow others to use | 
					
						
							|  |  |  |     your version of this file under the MPL, indicate your decision | 
					
						
							|  |  |  |     by deleting the provisions above and replace them with the notice | 
					
						
							|  |  |  |     and other provisions required by the GPL.  If you do not delete | 
					
						
							|  |  |  |     the provisions above, a recipient may use your version of this | 
					
						
							|  |  |  |     file under either the MPL or the GPL. | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  | ======================================================================*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							|  |  |  | #include <linux/ioport.h>
 | 
					
						
							|  |  |  | #include <scsi/scsi.h>
 | 
					
						
							|  |  |  | #include <linux/major.h>
 | 
					
						
							|  |  |  | #include <linux/blkdev.h>
 | 
					
						
							|  |  |  | #include <scsi/scsi_ioctl.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "scsi.h"
 | 
					
						
							|  |  |  | #include <scsi/scsi_host.h>
 | 
					
						
							|  |  |  | #include "aha152x.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <pcmcia/cs.h>
 | 
					
						
							|  |  |  | #include <pcmcia/cistpl.h>
 | 
					
						
							|  |  |  | #include <pcmcia/ds.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*====================================================================*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Parameters that can be set with 'insmod' */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* SCSI bus setup options */ | 
					
						
							|  |  |  | static int host_id = 7; | 
					
						
							|  |  |  | static int reconnect = 1; | 
					
						
							|  |  |  | static int parity = 1; | 
					
						
							|  |  |  | static int synchronous = 1; | 
					
						
							|  |  |  | static int reset_delay = 100; | 
					
						
							|  |  |  | static int ext_trans = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_param(host_id, int, 0); | 
					
						
							|  |  |  | module_param(reconnect, int, 0); | 
					
						
							|  |  |  | module_param(parity, int, 0); | 
					
						
							|  |  |  | module_param(synchronous, int, 0); | 
					
						
							|  |  |  | module_param(reset_delay, int, 0); | 
					
						
							|  |  |  | module_param(ext_trans, int, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("Dual MPL/GPL"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*====================================================================*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct scsi_info_t { | 
					
						
							| 
									
										
										
										
											2006-03-05 10:45:09 +01:00
										 |  |  | 	struct pcmcia_device	*p_dev; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     struct Scsi_Host	*host; | 
					
						
							|  |  |  | } scsi_info_t; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | static void aha152x_release_cs(struct pcmcia_device *link); | 
					
						
							| 
									
										
										
										
											2005-11-14 21:23:14 +01:00
										 |  |  | static void aha152x_detach(struct pcmcia_device *p_dev); | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  | static int aha152x_config_cs(struct pcmcia_device *link); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | static struct pcmcia_device *dev_list; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  | static int aha152x_probe(struct pcmcia_device *link) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     scsi_info_t *info; | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  |     dev_dbg(&link->dev, "aha152x_attach()\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Create new SCSI device */ | 
					
						
							| 
									
										
											  
											
												some kmalloc/memset ->kzalloc (tree wide)
Transform some calls to kmalloc/memset to a single kzalloc (or kcalloc).
Here is a short excerpt of the semantic patch performing
this transformation:
@@
type T2;
expression x;
identifier f,fld;
expression E;
expression E1,E2;
expression e1,e2,e3,y;
statement S;
@@
 x =
- kmalloc
+ kzalloc
  (E1,E2)
  ...  when != \(x->fld=E;\|y=f(...,x,...);\|f(...,x,...);\|x=E;\|while(...) S\|for(e1;e2;e3) S\)
- memset((T2)x,0,E1);
@@
expression E1,E2,E3;
@@
- kzalloc(E1 * E2,E3)
+ kcalloc(E1,E2,E3)
[akpm@linux-foundation.org: get kcalloc args the right way around]
Signed-off-by: Yoann Padioleau <padator@wanadoo.fr>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Cc: Bryan Wu <bryan.wu@analog.com>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Dave Airlie <airlied@linux.ie>
Acked-by: Roland Dreier <rolandd@cisco.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Acked-by: Pierre Ossman <drzeus-list@drzeus.cx>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: "David S. Miller" <davem@davemloft.net>
Acked-by: Greg KH <greg@kroah.com>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
											
										 
											2007-07-19 01:49:03 -07:00
										 |  |  |     info = kzalloc(sizeof(*info), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2005-11-14 21:25:51 +01:00
										 |  |  |     if (!info) return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  |     info->p_dev = link; | 
					
						
							| 
									
										
										
										
											2006-03-05 10:45:09 +01:00
										 |  |  |     link->priv = info; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-24 17:23:51 +02:00
										 |  |  |     link->resource[0]->end = 0x20; | 
					
						
							|  |  |  |     link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     link->conf.Attributes = CONF_ENABLE_IRQ; | 
					
						
							|  |  |  |     link->conf.IntType = INT_MEMORY_AND_IO; | 
					
						
							|  |  |  |     link->conf.Present = PRESENT_OPTION; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  |     return aha152x_config_cs(link); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } /* aha152x_attach */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*====================================================================*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | static void aha152x_detach(struct pcmcia_device *link) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  |     dev_dbg(&link->dev, "aha152x_detach\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-02 00:09:29 +01:00
										 |  |  |     aha152x_release_cs(link); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Unlink device structure, free bits */ | 
					
						
							|  |  |  |     kfree(link->priv); | 
					
						
							|  |  |  | } /* aha152x_detach */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*====================================================================*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | static int aha152x_config_check(struct pcmcia_device *p_dev, | 
					
						
							| 
									
										
										
										
											2008-08-02 15:30:31 +02:00
										 |  |  | 				cistpl_cftable_entry_t *cfg, | 
					
						
							|  |  |  | 				cistpl_cftable_entry_t *dflt, | 
					
						
							| 
									
										
										
										
											2008-08-02 16:12:00 +02:00
										 |  |  | 				unsigned int vcc, | 
					
						
							| 
									
										
										
										
											2008-08-02 15:30:31 +02:00
										 |  |  | 				void *priv_data) | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-24 17:23:51 +02:00
										 |  |  | 	p_dev->io_lines = 10; | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 	/* For New Media T&J, look for a SCSI window */ | 
					
						
							|  |  |  | 	if (cfg->io.win[0].len >= 0x20) | 
					
						
							| 
									
										
										
										
											2010-07-24 17:23:51 +02:00
										 |  |  | 		p_dev->resource[0]->start = cfg->io.win[0].base; | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 	else if ((cfg->io.nwin > 1) && | 
					
						
							|  |  |  | 		 (cfg->io.win[1].len >= 0x20)) | 
					
						
							| 
									
										
										
										
											2010-07-24 17:23:51 +02:00
										 |  |  | 		p_dev->resource[0]->start = cfg->io.win[1].base; | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 	if ((cfg->io.nwin > 0) && | 
					
						
							| 
									
										
										
										
											2010-07-24 17:23:51 +02:00
										 |  |  | 	    (p_dev->resource[0]->start < 0xffff)) { | 
					
						
							|  |  |  | 		if (!pcmcia_request_io(p_dev)) | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 			return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  | static int aha152x_config_cs(struct pcmcia_device *link) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     scsi_info_t *info = link->priv; | 
					
						
							|  |  |  |     struct aha152x_setup s; | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     struct Scsi_Host *host; | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  |     dev_dbg(&link->dev, "aha152x_config\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  |     ret = pcmcia_loop_config(link, aha152x_config_check, NULL); | 
					
						
							|  |  |  |     if (ret) | 
					
						
							|  |  |  | 	    goto failed; | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-07 12:21:16 +01:00
										 |  |  |     if (!link->irq) | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  | 	    goto failed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = pcmcia_request_configuration(link, &link->conf); | 
					
						
							|  |  |  |     if (ret) | 
					
						
							|  |  |  | 	    goto failed; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |      | 
					
						
							|  |  |  |     /* Set configuration options for the aha152x driver */ | 
					
						
							|  |  |  |     memset(&s, 0, sizeof(s)); | 
					
						
							|  |  |  |     s.conf        = "PCMCIA setup"; | 
					
						
							| 
									
										
										
										
											2010-07-24 15:58:54 +02:00
										 |  |  |     s.io_port     = link->resource[0]->start; | 
					
						
							| 
									
										
										
										
											2010-03-07 12:21:16 +01:00
										 |  |  |     s.irq         = link->irq; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     s.scsiid      = host_id; | 
					
						
							|  |  |  |     s.reconnect   = reconnect; | 
					
						
							|  |  |  |     s.parity      = parity; | 
					
						
							|  |  |  |     s.synchronous = synchronous; | 
					
						
							|  |  |  |     s.delay       = reset_delay; | 
					
						
							|  |  |  |     if (ext_trans) | 
					
						
							|  |  |  |         s.ext_trans = ext_trans; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     host = aha152x_probe_one(&s); | 
					
						
							|  |  |  |     if (host == NULL) { | 
					
						
							|  |  |  | 	printk(KERN_INFO "aha152x_cs: no SCSI devices found\n"); | 
					
						
							| 
									
										
										
										
											2009-10-24 15:54:14 +02:00
										 |  |  | 	goto failed; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info->host = host; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-29 08:38:55 +02:00
										 |  |  | failed: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |     aha152x_release_cs(link); | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  |     return -ENODEV; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | static void aha152x_release_cs(struct pcmcia_device *link) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	scsi_info_t *info = link->priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	aha152x_release(info->host); | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | 	pcmcia_disable_device(link); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 17:21:06 +02:00
										 |  |  | static int aha152x_resume(struct pcmcia_device *link) | 
					
						
							| 
									
										
										
										
											2005-11-14 21:21:18 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	scsi_info_t *info = link->priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-02 00:02:33 +01:00
										 |  |  | 	aha152x_host_reset_host(info->host); | 
					
						
							| 
									
										
										
										
											2005-11-14 21:21:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-27 16:28:19 -07:00
										 |  |  | static struct pcmcia_device_id aha152x_ids[] = { | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_PROD_ID123("New Media", "SCSI", "Bus Toaster", 0xcdf7e4cc, 0x35f26476, 0xa8851d6e), | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_PROD_ID123("NOTEWORTHY", "SCSI", "Bus Toaster", 0xad89c6e8, 0x35f26476, 0xa8851d6e), | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_PROD_ID12("Adaptec, Inc.", "APA-1460 SCSI Host Adapter", 0x24ba9738, 0x3a3c3d20), | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Multimedia Sound/SCSI", 0x085a850b, 0x80a6535c), | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_PROD_ID12("NOTEWORTHY", "NWCOMB02 SCSI/AUDIO COMBO CARD", 0xad89c6e8, 0x5f9a615b), | 
					
						
							|  |  |  | 	PCMCIA_DEVICE_NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(pcmcia, aha152x_ids); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct pcmcia_driver aha152x_cs_driver = { | 
					
						
							|  |  |  | 	.owner		= THIS_MODULE, | 
					
						
							|  |  |  | 	.drv		= { | 
					
						
							|  |  |  | 		.name	= "aha152x_cs", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2006-03-31 17:26:06 +02:00
										 |  |  | 	.probe		= aha152x_probe, | 
					
						
							| 
									
										
										
										
											2005-11-14 21:23:14 +01:00
										 |  |  | 	.remove		= aha152x_detach, | 
					
						
							| 
									
										
										
										
											2005-06-27 16:28:19 -07:00
										 |  |  | 	.id_table       = aha152x_ids, | 
					
						
							| 
									
										
										
										
											2005-11-14 21:21:18 +01:00
										 |  |  | 	.resume		= aha152x_resume, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init init_aha152x_cs(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return pcmcia_register_driver(&aha152x_cs_driver); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit exit_aha152x_cs(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pcmcia_unregister_driver(&aha152x_cs_driver); | 
					
						
							|  |  |  | 	BUG_ON(dev_list != NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(init_aha152x_cs); | 
					
						
							|  |  |  | module_exit(exit_aha152x_cs); |