2005-04-16 22:20:36 +00:00
|
|
|
/*======================================================================
|
|
|
|
|
|
|
|
A driver for PCMCIA parallel port adapters
|
|
|
|
|
|
|
|
(specifically, for the Quatech SPP-100 EPP card: other cards will
|
|
|
|
probably require driver tweaks)
|
|
|
|
|
|
|
|
parport_cs.c 1.29 2002/10/11 06:57:41
|
|
|
|
|
|
|
|
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/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/timer.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/major.h>
|
2009-04-07 14:30:57 +00:00
|
|
|
#include <linux/interrupt.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/parport.h>
|
|
|
|
#include <linux/parport_pc.h>
|
|
|
|
|
|
|
|
#include <pcmcia/cistpl.h>
|
|
|
|
#include <pcmcia/ds.h>
|
|
|
|
#include <pcmcia/cisreg.h>
|
|
|
|
#include <pcmcia/ciscode.h>
|
|
|
|
|
|
|
|
/*====================================================================*/
|
|
|
|
|
|
|
|
/* Module parameters */
|
|
|
|
|
|
|
|
MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
|
|
|
|
MODULE_DESCRIPTION("PCMCIA parallel port card driver");
|
|
|
|
MODULE_LICENSE("Dual MPL/GPL");
|
|
|
|
|
|
|
|
#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
|
|
|
|
|
|
|
|
INT_MODULE_PARM(epp_mode, 1);
|
|
|
|
|
|
|
|
|
|
|
|
/*====================================================================*/
|
|
|
|
|
|
|
|
#define FORCE_EPP_MODE 0x08
|
|
|
|
|
|
|
|
typedef struct parport_info_t {
|
2006-03-05 09:45:09 +00:00
|
|
|
struct pcmcia_device *p_dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
int ndev;
|
|
|
|
struct parport *port;
|
|
|
|
} parport_info_t;
|
|
|
|
|
2005-11-14 20:23:14 +00:00
|
|
|
static void parport_detach(struct pcmcia_device *p_dev);
|
2006-03-31 15:26:06 +00:00
|
|
|
static int parport_config(struct pcmcia_device *link);
|
2006-03-31 15:21:06 +00:00
|
|
|
static void parport_cs_release(struct pcmcia_device *);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
static int parport_probe(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
parport_info_t *info;
|
2005-11-14 20:25:51 +00:00
|
|
|
|
2009-10-24 13:55:39 +00:00
|
|
|
dev_dbg(&link->dev, "parport_attach()\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Create new parport 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-05 09:45:09 +00:00
|
|
|
link->priv = info;
|
2006-03-31 15:21:06 +00:00
|
|
|
info->p_dev = link;
|
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;
|
2005-11-14 20:25:51 +00:00
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
return parport_config(link);
|
2005-04-16 22:20:36 +00:00
|
|
|
} /* parport_attach */
|
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
static void parport_detach(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-10-24 13:55:39 +00:00
|
|
|
dev_dbg(&link->dev, "parport_detach\n");
|
2005-11-14 20:23:14 +00:00
|
|
|
|
2006-03-01 23:09:29 +00:00
|
|
|
parport_cs_release(link);
|
2005-11-14 20:23:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree(link->priv);
|
|
|
|
} /* parport_detach */
|
|
|
|
|
2010-07-30 11:13:46 +00:00
|
|
|
static int parport_config_check(struct pcmcia_device *p_dev, void *priv_data)
|
2008-07-29 06:38:55 +00:00
|
|
|
{
|
2010-07-30 11:13:46 +00:00
|
|
|
p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
|
|
|
|
p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
|
|
|
|
p_dev->resource[1]->flags &= ~IO_DATA_PATH_WIDTH;
|
|
|
|
p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_8;
|
|
|
|
|
|
|
|
return pcmcia_request_io(p_dev);
|
2008-07-29 06:38:55 +00:00
|
|
|
}
|
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
static int parport_config(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
parport_info_t *info = link->priv;
|
|
|
|
struct parport *p;
|
2009-10-24 13:55:39 +00:00
|
|
|
int ret;
|
2008-07-29 06:38:55 +00:00
|
|
|
|
2009-10-24 13:55:39 +00:00
|
|
|
dev_dbg(&link->dev, "parport_config\n");
|
2008-07-29 06:38:55 +00:00
|
|
|
|
2010-07-30 11:13:46 +00:00
|
|
|
if (epp_mode)
|
|
|
|
link->config_index |= FORCE_EPP_MODE;
|
|
|
|
|
2009-10-24 13:55:39 +00:00
|
|
|
ret = pcmcia_loop_config(link, parport_config_check, NULL);
|
|
|
|
if (ret)
|
2008-07-29 06:38:55 +00:00
|
|
|
goto failed;
|
|
|
|
|
2010-03-07 11:21:16 +00:00
|
|
|
if (!link->irq)
|
2009-10-24 13:55:39 +00:00
|
|
|
goto failed;
|
2010-07-29 17:27:09 +00:00
|
|
|
ret = pcmcia_enable_device(link);
|
2009-10-24 13:55:39 +00:00
|
|
|
if (ret)
|
|
|
|
goto failed;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-07-24 13:58:54 +00:00
|
|
|
p = parport_pc_probe_port(link->resource[0]->start,
|
|
|
|
link->resource[1]->start,
|
2010-03-07 11:21:16 +00:00
|
|
|
link->irq, PARPORT_DMA_NONE,
|
2009-04-07 14:30:57 +00:00
|
|
|
&link->dev, IRQF_SHARED);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (p == NULL) {
|
|
|
|
printk(KERN_NOTICE "parport_cs: parport_pc_probe_port() at "
|
2010-07-24 13:58:54 +00:00
|
|
|
"0x%3x, irq %u failed\n",
|
|
|
|
(unsigned int) link->resource[0]->start,
|
2010-03-07 11:21:16 +00:00
|
|
|
link->irq);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->modes |= PARPORT_MODE_PCSPP;
|
|
|
|
if (epp_mode)
|
|
|
|
p->modes |= PARPORT_MODE_TRISTATE | PARPORT_MODE_EPP;
|
|
|
|
info->ndev = 1;
|
|
|
|
info->port = p;
|
|
|
|
|
2006-03-31 15:26:06 +00:00
|
|
|
return 0;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
failed:
|
|
|
|
parport_cs_release(link);
|
2006-03-31 15:26:06 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
} /* parport_config */
|
|
|
|
|
2008-07-26 02:46:22 +00:00
|
|
|
static void parport_cs_release(struct pcmcia_device *link)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-15 08:32:39 +00:00
|
|
|
parport_info_t *info = link->priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-10-24 13:55:39 +00:00
|
|
|
dev_dbg(&link->dev, "parport_release\n");
|
2006-01-15 08:32:39 +00:00
|
|
|
|
|
|
|
if (info->ndev) {
|
|
|
|
struct parport *p = info->port;
|
|
|
|
parport_pc_unregister_port(p);
|
|
|
|
}
|
|
|
|
info->ndev = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-03-31 15:21:06 +00:00
|
|
|
pcmcia_disable_device(link);
|
2005-04-16 22:20:36 +00:00
|
|
|
} /* parport_cs_release */
|
|
|
|
|
2005-11-14 20:21:18 +00:00
|
|
|
|
2011-05-04 02:29:01 +00:00
|
|
|
static const struct pcmcia_device_id parport_ids[] = {
|
2005-06-27 23:28:29 +00:00
|
|
|
PCMCIA_DEVICE_FUNC_ID(3),
|
2006-11-29 08:54:51 +00:00
|
|
|
PCMCIA_MFC_DEVICE_PROD_ID12(1,"Elan","Serial+Parallel Port: SP230",0x3beb8cf2,0xdb9e58bc),
|
2005-06-27 23:28:29 +00:00
|
|
|
PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0003),
|
|
|
|
PCMCIA_DEVICE_NULL
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(pcmcia, parport_ids);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static struct pcmcia_driver parport_cs_driver = {
|
|
|
|
.owner = THIS_MODULE,
|
2010-08-08 09:36:26 +00:00
|
|
|
.name = "parport_cs",
|
2006-03-31 15:26:06 +00:00
|
|
|
.probe = parport_probe,
|
2005-11-14 20:23:14 +00:00
|
|
|
.remove = parport_detach,
|
2005-06-27 23:28:29 +00:00
|
|
|
.id_table = parport_ids,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init init_parport_cs(void)
|
|
|
|
{
|
|
|
|
return pcmcia_register_driver(&parport_cs_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit exit_parport_cs(void)
|
|
|
|
{
|
|
|
|
pcmcia_unregister_driver(&parport_cs_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(init_parport_cs);
|
|
|
|
module_exit(exit_parport_cs);
|