2005-04-16 22:20:36 +00: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/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 09:45:09 +00:00
|
|
|
struct pcmcia_device *p_dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct Scsi_Host *host;
|
|
|
|
} scsi_info_t;
|
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
static void aha152x_release_cs(struct pcmcia_device *link);
|
2005-11-14 20:23:14 +00:00
|
|
|
static void aha152x_detach(struct pcmcia_device *p_dev);
|
2006-03-31 15:26:06 +00:00
|
|
|
static int aha152x_config_cs(struct pcmcia_device *link);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
static int aha152x_probe(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
scsi_info_t *info;
|
2006-03-31 15:21:06 +00:00
|
|
|
|
2009-10-24 13:54:14 +00:00
|
|
|
dev_dbg(&link->dev, "aha152x_attach()\n");
|
2005-04-16 22:20:36 +00: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 08:49:03 +00:00
|
|
|
info = kzalloc(sizeof(*info), GFP_KERNEL);
|
2005-11-14 20:25:51 +00:00
|
|
|
if (!info) return -ENOMEM;
|
2006-03-31 15:21:06 +00:00
|
|
|
info->p_dev = link;
|
2006-03-05 09:45:09 +00:00
|
|
|
link->priv = info;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-07-30 11:13:46 +00:00
|
|
|
link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
|
2010-07-29 16:35:47 +00:00
|
|
|
link->config_regs = PRESENT_OPTION;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
return aha152x_config_cs(link);
|
2005-04-16 22:20:36 +00:00
|
|
|
} /* aha152x_attach */
|
|
|
|
|
|
|
|
/*====================================================================*/
|
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
static void aha152x_detach(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-10-24 13:54:14 +00:00
|
|
|
dev_dbg(&link->dev, "aha152x_detach\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-01 23:09:29 +00:00
|
|
|
aha152x_release_cs(link);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Unlink device structure, free bits */
|
|
|
|
kfree(link->priv);
|
|
|
|
} /* aha152x_detach */
|
|
|
|
|
|
|
|
/*====================================================================*/
|
|
|
|
|
2010-07-30 11:13:46 +00:00
|
|
|
static int aha152x_config_check(struct pcmcia_device *p_dev, void *priv_data)
|
2008-07-29 06:38:55 +00:00
|
|
|
{
|
2010-07-24 15:23:51 +00:00
|
|
|
p_dev->io_lines = 10;
|
2010-07-30 11:13:46 +00:00
|
|
|
|
2008-07-29 06:38:55 +00:00
|
|
|
/* For New Media T&J, look for a SCSI window */
|
2010-07-30 11:13:46 +00:00
|
|
|
if ((p_dev->resource[0]->end < 0x20) &&
|
|
|
|
(p_dev->resource[1]->end >= 0x20))
|
|
|
|
p_dev->resource[0]->start = p_dev->resource[1]->start;
|
|
|
|
|
|
|
|
if (p_dev->resource[0]->start >= 0xffff)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
p_dev->resource[1]->start = p_dev->resource[1]->end = 0;
|
|
|
|
p_dev->resource[0]->end = 0x20;
|
|
|
|
p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
|
|
|
|
p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
|
|
|
|
|
|
|
|
return pcmcia_request_io(p_dev);
|
2008-07-29 06:38:55 +00:00
|
|
|
}
|
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
static int aha152x_config_cs(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
scsi_info_t *info = link->priv;
|
|
|
|
struct aha152x_setup s;
|
2009-10-24 13:54:14 +00:00
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct Scsi_Host *host;
|
2008-07-29 06:38:55 +00:00
|
|
|
|
2009-10-24 13:54:14 +00:00
|
|
|
dev_dbg(&link->dev, "aha152x_config\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-10-24 13:54:14 +00:00
|
|
|
ret = pcmcia_loop_config(link, aha152x_config_check, NULL);
|
|
|
|
if (ret)
|
|
|
|
goto failed;
|
2008-07-29 06:38:55 +00:00
|
|
|
|
2010-03-07 11:21:16 +00:00
|
|
|
if (!link->irq)
|
2009-10-24 13:54:14 +00:00
|
|
|
goto failed;
|
|
|
|
|
2010-07-29 17:27:09 +00:00
|
|
|
ret = pcmcia_enable_device(link);
|
2009-10-24 13:54:14 +00:00
|
|
|
if (ret)
|
|
|
|
goto failed;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Set configuration options for the aha152x driver */
|
|
|
|
memset(&s, 0, sizeof(s));
|
|
|
|
s.conf = "PCMCIA setup";
|
2010-07-24 13:58:54 +00:00
|
|
|
s.io_port = link->resource[0]->start;
|
2010-03-07 11:21:16 +00:00
|
|
|
s.irq = link->irq;
|
2005-04-16 22:20:36 +00: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 13:54:14 +00:00
|
|
|
goto failed;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
info->host = host;
|
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-07-29 06:38:55 +00:00
|
|
|
failed:
|
2005-04-16 22:20:36 +00:00
|
|
|
aha152x_release_cs(link);
|
2006-03-31 15:26:06 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
static void aha152x_release_cs(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
scsi_info_t *info = link->priv;
|
|
|
|
|
|
|
|
aha152x_release(info->host);
|
2006-03-31 15:21:06 +00:00
|
|
|
pcmcia_disable_device(link);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
static int aha152x_resume(struct pcmcia_device *link)
|
2005-11-14 20:21:18 +00:00
|
|
|
{
|
|
|
|
scsi_info_t *info = link->priv;
|
|
|
|
|
2006-03-01 23:02:33 +00:00
|
|
|
aha152x_host_reset_host(info->host);
|
2005-11-14 20:21:18 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-06-27 23:28:19 +00: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 22:20:36 +00:00
|
|
|
static struct pcmcia_driver aha152x_cs_driver = {
|
|
|
|
.owner = THIS_MODULE,
|
2010-08-08 09:36:26 +00:00
|
|
|
.name = "aha152x_cs",
|
2006-03-31 15:26:06 +00:00
|
|
|
.probe = aha152x_probe,
|
2005-11-14 20:23:14 +00:00
|
|
|
.remove = aha152x_detach,
|
2005-06-27 23:28:19 +00:00
|
|
|
.id_table = aha152x_ids,
|
2005-11-14 20:21:18 +00:00
|
|
|
.resume = aha152x_resume,
|
2005-04-16 22:20:36 +00: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(init_aha152x_cs);
|
|
|
|
module_exit(exit_aha152x_cs);
|