2005-04-17 02:20:36 +04:00
/*======================================================================
A driver for PCMCIA IDE / ATA disk cards
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 .
2007-10-17 00:29:52 +04:00
2005-04-17 02:20:36 +04:00
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
# include <linux/module.h>
# include <linux/kernel.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/ide.h>
# include <linux/major.h>
2005-09-10 11:27:15 +04:00
# include <linux/delay.h>
2005-04-17 02:20:36 +04:00
# include <asm/io.h>
# include <pcmcia/cistpl.h>
# include <pcmcia/ds.h>
# include <pcmcia/cisreg.h>
# include <pcmcia/ciscode.h>
2008-04-27 00:25:17 +04:00
# define DRV_NAME "ide-cs"
2005-04-17 02:20:36 +04:00
/*====================================================================*/
/* Module parameters */
MODULE_AUTHOR ( " David Hinds <dahinds@users.sourceforge.net> " ) ;
MODULE_DESCRIPTION ( " PCMCIA ATA/IDE card driver " ) ;
MODULE_LICENSE ( " Dual MPL/GPL " ) ;
/*====================================================================*/
typedef struct ide_info_t {
2006-03-05 12:45:09 +03:00
struct pcmcia_device * p_dev ;
2008-07-23 21:55:57 +04:00
struct ide_host * host ;
2010-03-20 21:35:12 +03:00
int ndev ;
2005-04-17 02:20:36 +04:00
} ide_info_t ;
2006-03-31 19:21:06 +04:00
static void ide_release ( struct pcmcia_device * ) ;
2006-03-31 19:26:06 +04:00
static int ide_config ( struct pcmcia_device * ) ;
2005-04-17 02:20:36 +04:00
2005-11-14 23:23:14 +03:00
static void ide_detach ( struct pcmcia_device * p_dev ) ;
2005-04-17 02:20:36 +04:00
2006-03-31 19:26:06 +04:00
static int ide_probe ( struct pcmcia_device * link )
2005-04-17 02:20:36 +04:00
{
ide_info_t * info ;
2005-11-14 23:25:51 +03:00
2009-10-23 14:55:28 +04:00
dev_dbg ( & link - > dev , " ide_attach() \n " ) ;
2005-04-17 02:20:36 +04:00
/* Create new ide device */
2005-11-07 12:01:25 +03:00
info = kzalloc ( sizeof ( * info ) , GFP_KERNEL ) ;
2005-11-14 23:25:51 +03:00
if ( ! info )
return - ENOMEM ;
2006-03-05 12:45:09 +03:00
2006-03-31 19:21:06 +04:00
info - > p_dev = link ;
2006-03-05 12:45:09 +03:00
link - > priv = info ;
2005-04-17 02:20:36 +04:00
2010-07-30 15:13:46 +04:00
link - > config_flags | = CONF_ENABLE_IRQ | CONF_AUTO_SET_IO |
CONF_AUTO_SET_VPP | CONF_AUTO_CHECK_VCC ;
2005-11-14 23:25:51 +03:00
2006-03-31 19:26:06 +04:00
return ide_config ( link ) ;
2005-04-17 02:20:36 +04:00
} /* ide_attach */
2006-03-31 19:21:06 +04:00
static void ide_detach ( struct pcmcia_device * link )
2005-04-17 02:20:36 +04:00
{
2008-04-27 00:25:17 +04:00
ide_info_t * info = link - > priv ;
2009-10-23 14:55:28 +04:00
dev_dbg ( & link - > dev , " ide_detach(0x%p) \n " , link ) ;
2005-04-17 02:20:36 +04:00
2006-03-02 02:09:29 +03:00
ide_release ( link ) ;
2005-11-14 23:25:35 +03:00
2008-04-27 00:25:17 +04:00
kfree ( info ) ;
2005-04-17 02:20:36 +04:00
} /* ide_detach */
2008-04-27 00:25:14 +04:00
static const struct ide_port_ops idecs_port_ops = {
. quirkproc = ide_undecoded_slave ,
} ;
2008-07-16 22:33:40 +04:00
static const struct ide_port_info idecs_port_info = {
. port_ops = & idecs_port_ops ,
. host_flags = IDE_HFLAG_NO_DMA ,
2009-03-27 14:46:27 +03:00
. irq_flags = IRQF_SHARED ,
2009-05-17 21:12:22 +04:00
. chipset = ide_pci ,
2008-07-16 22:33:40 +04:00
} ;
2008-07-23 21:55:57 +04:00
static struct ide_host * idecs_register ( unsigned long io , unsigned long ctl ,
2008-04-27 00:25:17 +04:00
unsigned long irq , struct pcmcia_device * handle )
2005-04-17 02:20:36 +04:00
{
2008-07-23 21:55:57 +04:00
struct ide_host * host ;
2008-02-02 21:56:39 +03:00
ide_hwif_t * hwif ;
ide: add ide_host_add() helper
Add ide_host_add() helper which does ide_host_alloc()+ide_host_register(),
then convert ide_setup_pci_device[s](), ide_legacy_device_add() and some
host drivers to use it.
While at it:
* Fix ide_setup_pci_device[s](), ide_arm.c, gayle.c, ide-4drives.c,
macide.c, q40ide.c, cmd640.c and cs5520.c to return correct error value.
* -ENOENT -> -ENOMEM in rapide.c, ide-h8300.c, ide-generic.c, au1xxx-ide.c
and pmac.c
* -ENODEV -> -ENOMEM in palm_bk3710.c, ide_platform.c and delkin_cb.c
* -1 -> -ENOMEM in ide-pnp.c
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
2008-07-23 21:55:57 +04:00
int i , rc ;
2009-05-17 21:12:25 +04:00
struct ide_hw hw , * hws [ ] = { & hw } ;
2008-02-02 21:56:39 +03:00
2008-04-27 00:25:17 +04:00
if ( ! request_region ( io , 8 , DRV_NAME ) ) {
printk ( KERN_ERR " %s: I/O resource 0x%lX-0x%lX not free. \n " ,
DRV_NAME , io , io + 7 ) ;
return NULL ;
}
if ( ! request_region ( ctl , 1 , DRV_NAME ) ) {
printk ( KERN_ERR " %s: I/O resource 0x%lX not free. \n " ,
DRV_NAME , ctl ) ;
release_region ( io , 8 ) ;
return NULL ;
}
2005-04-17 02:20:36 +04:00
memset ( & hw , 0 , sizeof ( hw ) ) ;
2008-02-02 21:56:47 +03:00
ide_std_init_ports ( & hw , io , ctl ) ;
2005-04-17 02:20:36 +04:00
hw . irq = irq ;
2005-11-10 00:47:18 +03:00
hw . dev = & handle - > dev ;
2008-02-02 21:56:39 +03:00
2009-05-17 21:12:24 +04:00
rc = ide_host_add ( & idecs_port_info , hws , 1 , & host ) ;
ide: add ide_host_add() helper
Add ide_host_add() helper which does ide_host_alloc()+ide_host_register(),
then convert ide_setup_pci_device[s](), ide_legacy_device_add() and some
host drivers to use it.
While at it:
* Fix ide_setup_pci_device[s](), ide_arm.c, gayle.c, ide-4drives.c,
macide.c, q40ide.c, cmd640.c and cs5520.c to return correct error value.
* -ENOENT -> -ENOMEM in rapide.c, ide-h8300.c, ide-generic.c, au1xxx-ide.c
and pmac.c
* -ENODEV -> -ENOMEM in palm_bk3710.c, ide_platform.c and delkin_cb.c
* -1 -> -ENOMEM in ide-pnp.c
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
2008-07-23 21:55:57 +04:00
if ( rc )
2008-04-27 00:25:17 +04:00
goto out_release ;
2008-02-02 21:56:39 +03:00
2008-07-23 21:55:57 +04:00
hwif = host - > ports [ 0 ] ;
2008-02-02 21:56:39 +03:00
2008-04-27 00:25:17 +04:00
if ( hwif - > present )
2008-07-23 21:55:57 +04:00
return host ;
2008-04-27 00:25:17 +04:00
2008-06-15 23:00:23 +04:00
/* retry registration in case device is still spinning up */
for ( i = 0 ; i < 10 ; i + + ) {
msleep ( 100 ) ;
ide_port_scan ( hwif ) ;
if ( hwif - > present )
2008-07-23 21:55:57 +04:00
return host ;
2008-06-15 23:00:23 +04:00
}
2008-07-23 21:55:57 +04:00
return host ;
2008-06-15 23:00:23 +04:00
2008-04-27 00:25:17 +04:00
out_release :
release_region ( ctl , 1 ) ;
release_region ( io , 8 ) ;
return NULL ;
2005-04-17 02:20:36 +04:00
}
2010-07-30 15:13:46 +04:00
static int pcmcia_check_one_config ( struct pcmcia_device * pdev , void * priv_data )
2008-07-29 10:43:20 +04:00
{
2010-07-30 15:13:46 +04:00
int * is_kme = priv_data ;
2012-06-12 18:17:25 +04:00
if ( ( pdev - > resource [ 0 ] - > flags & IO_DATA_PATH_WIDTH )
! = IO_DATA_PATH_WIDTH_8 ) {
2010-07-30 15:13:46 +04:00
pdev - > resource [ 0 ] - > flags & = ~ IO_DATA_PATH_WIDTH ;
pdev - > resource [ 0 ] - > flags | = IO_DATA_PATH_WIDTH_AUTO ;
}
pdev - > resource [ 1 ] - > flags & = ~ IO_DATA_PATH_WIDTH ;
pdev - > resource [ 1 ] - > flags | = IO_DATA_PATH_WIDTH_8 ;
if ( pdev - > resource [ 1 ] - > end ) {
pdev - > resource [ 0 ] - > end = 8 ;
pdev - > resource [ 1 ] - > end = ( * is_kme ) ? 2 : 1 ;
} else {
if ( pdev - > resource [ 0 ] - > end < 16 )
2008-08-02 17:30:31 +04:00
return - ENODEV ;
2008-07-29 10:43:20 +04:00
}
2010-07-30 15:13:46 +04:00
return pcmcia_request_io ( pdev ) ;
2008-07-29 10:43:20 +04:00
}
2006-03-31 19:26:06 +04:00
static int ide_config ( struct pcmcia_device * link )
2005-04-17 02:20:36 +04:00
{
ide_info_t * info = link - > priv ;
2009-10-23 14:55:28 +04:00
int ret = 0 , is_kme = 0 ;
2006-07-13 08:04:16 +04:00
unsigned long io_base , ctl_base ;
2008-07-23 21:55:57 +04:00
struct ide_host * host ;
2005-04-17 02:20:36 +04:00
2009-10-23 14:55:28 +04:00
dev_dbg ( & link - > dev , " ide_config(0x%p) \n " , link ) ;
2005-04-17 02:20:36 +04:00
2006-10-26 05:28:53 +04:00
is_kme = ( ( link - > manf_id = = MANFID_KME ) & &
( ( link - > card_id = = PRODID_KME_KXLC005_A ) | |
( link - > card_id = = PRODID_KME_KXLC005_B ) ) ) ;
2005-04-17 02:20:36 +04:00
2010-07-30 15:13:46 +04:00
if ( pcmcia_loop_config ( link , pcmcia_check_one_config , & is_kme ) ) {
2010-07-30 11:51:52 +04:00
link - > config_flags & = ~ CONF_AUTO_CHECK_VCC ;
2010-07-30 15:13:46 +04:00
if ( pcmcia_loop_config ( link , pcmcia_check_one_config , & is_kme ) )
2008-07-29 10:43:20 +04:00
goto failed ; /* No suitable config found */
2005-04-17 02:20:36 +04:00
}
2010-07-24 17:58:54 +04:00
io_base = link - > resource [ 0 ] - > start ;
2010-07-30 15:13:46 +04:00
if ( link - > resource [ 1 ] - > end )
ctl_base = link - > resource [ 1 ] - > start ;
else
ctl_base = link - > resource [ 0 ] - > start + 0x0e ;
2005-04-17 02:20:36 +04:00
2010-03-07 14:21:16 +03:00
if ( ! link - > irq )
2009-10-23 14:55:28 +04:00
goto failed ;
2010-07-29 21:27:09 +04:00
ret = pcmcia_enable_device ( link ) ;
2009-10-23 14:55:28 +04:00
if ( ret )
goto failed ;
2005-04-17 02:20:36 +04:00
/* disable drive interrupts during IDE probe */
2006-07-13 08:04:16 +04:00
outb ( 0x02 , ctl_base ) ;
2005-04-17 02:20:36 +04:00
/* special setup for KXLC005 card */
if ( is_kme )
2006-07-13 08:04:16 +04:00
outb ( 0x81 , ctl_base + 1 ) ;
2005-04-17 02:20:36 +04:00
2010-03-07 14:21:16 +03:00
host = idecs_register ( io_base , ctl_base , link - > irq , link ) ;
2010-07-24 17:58:54 +04:00
if ( host = = NULL & & resource_size ( link - > resource [ 0 ] ) = = 0x20 ) {
2006-07-13 08:04:16 +04:00
outb ( 0x02 , ctl_base + 0x10 ) ;
2008-07-23 21:55:57 +04:00
host = idecs_register ( io_base + 0x10 , ctl_base + 0x10 ,
2010-03-07 14:21:16 +03:00
link - > irq , link ) ;
2005-04-17 02:20:36 +04:00
}
2008-07-23 21:55:57 +04:00
if ( host = = NULL )
2005-04-17 02:20:36 +04:00
goto failed ;
info - > ndev = 1 ;
2008-07-23 21:55:57 +04:00
info - > host = host ;
2010-03-20 21:35:12 +03:00
dev_info ( & link - > dev , " ide-cs: hd%c: Vpp = %d.%d \n " ,
' a ' + host - > ports [ 0 ] - > index * 2 ,
2010-07-29 17:50:55 +04:00
link - > vpp / 10 , link - > vpp % 10 ) ;
2005-04-17 02:20:36 +04:00
2006-03-31 19:26:06 +04:00
return 0 ;
2005-04-17 02:20:36 +04:00
failed :
ide_release ( link ) ;
2006-03-31 19:26:06 +04:00
return - ENODEV ;
2005-04-17 02:20:36 +04:00
} /* ide_config */
2008-07-13 21:46:36 +04:00
static void ide_release ( struct pcmcia_device * link )
2005-04-17 02:20:36 +04:00
{
ide_info_t * info = link - > priv ;
2008-07-23 21:55:57 +04:00
struct ide_host * host = info - > host ;
2007-10-17 00:29:52 +04:00
2009-10-23 14:55:28 +04:00
dev_dbg ( & link - > dev , " ide_release(0x%p) \n " , link ) ;
2005-04-17 02:20:36 +04:00
2010-01-15 12:33:08 +03:00
if ( info - > ndev ) {
ide_hwif_t * hwif = host - > ports [ 0 ] ;
unsigned long data_addr , ctl_addr ;
data_addr = hwif - > io_ports . data_addr ;
ctl_addr = hwif - > io_ports . ctl_addr ;
2008-07-23 21:55:57 +04:00
ide_host_remove ( host ) ;
2010-01-15 12:33:08 +03:00
info - > ndev = 0 ;
2008-07-23 21:55:57 +04:00
2010-01-15 12:33:08 +03:00
release_region ( ctl_addr , 1 ) ;
release_region ( data_addr , 8 ) ;
}
2005-04-17 02:20:36 +04:00
2006-03-31 19:21:06 +04:00
pcmcia_disable_device ( link ) ;
2005-04-17 02:20:36 +04:00
} /* ide_release */
2005-11-14 23:21:18 +03:00
2011-05-04 06:29:01 +04:00
static const struct pcmcia_device_id ide_ids [ ] = {
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_FUNC_ID ( 4 ) ,
2007-10-17 00:29:52 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0000 , 0x0000 ) , /* Corsair */
2006-01-05 12:56:03 +03:00
PCMCIA_DEVICE_MANF_CARD ( 0x0007 , 0x0000 ) , /* Hitachi */
2007-03-03 19:48:54 +03:00
PCMCIA_DEVICE_MANF_CARD ( 0x000a , 0x0000 ) , /* I-O Data CFA */
PCMCIA_DEVICE_MANF_CARD ( 0x001c , 0x0001 ) , /* Mitsubishi CFA */
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0032 , 0x0704 ) ,
2008-08-03 23:12:07 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0032 , 0x2904 ) ,
2007-03-03 19:48:54 +03:00
PCMCIA_DEVICE_MANF_CARD ( 0x0045 , 0x0401 ) , /* SanDisk CFA */
2008-06-20 22:53:34 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x004f , 0x0000 ) , /* Kingston */
2008-08-03 23:12:07 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0097 , 0x1620 ) , /* TI emulated */
2005-09-10 00:03:28 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0098 , 0x0000 ) , /* Toshiba */
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x00a4 , 0x002d ) ,
2005-09-10 00:03:28 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x00ce , 0x0000 ) , /* Samsung */
2007-10-17 00:29:52 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x0319 , 0x0000 ) , /* Hitachi */
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_MANF_CARD ( 0x2080 , 0x0001 ) ,
2007-03-03 19:48:54 +03:00
PCMCIA_DEVICE_MANF_CARD ( 0x4e01 , 0x0100 ) , /* Viking CFA */
PCMCIA_DEVICE_MANF_CARD ( 0x4e01 , 0x0200 ) , /* Lexar, Viking CFA */
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID123 ( " Caravelle " , " PSC-IDE " , " PSC000 " , 0x8c36137c , 0xd0693ab8 , 0x2768a9f0 ) ,
PCMCIA_DEVICE_PROD_ID123 ( " CDROM " , " IDE " , " MCD-601p " , 0x1b9179ca , 0xede88951 , 0x0d902f74 ) ,
PCMCIA_DEVICE_PROD_ID123 ( " PCMCIA " , " IDE CARD " , " F1 " , 0x281f1c5d , 0x1907960c , 0xf7fde8b9 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " ARGOSY " , " CD-ROM " , 0x78f308dc , 0x66536591 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " ARGOSY " , " PnPIDE " , 0x78f308dc , 0x0c694728 ) ,
2009-08-15 00:09:32 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " CNF " , " CD-ROM " , 0x46d7db81 , 0x66536591 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " CNF CD-M " , " CD-ROM " , 0x7d93b852 , 0x66536591 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " Creative Technology Ltd. " , " PCMCIA CD-ROM Interface Card " , 0xff8c8a45 , 0xfe8020c4 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " Digital Equipment Corporation. " , " Digital Mobile Media CD-ROM " , 0x17692a66 , 0xef1dcbde ) ,
2005-07-28 12:07:24 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " EXP " , " CD+GAME " , 0x6f58c983 , 0x63c13aaf ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " EXP " , " CD-ROM " , 0x0a5c52fd , 0x66536591 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " EXP " , " PnPIDE " , 0x0a5c52fd , 0x0c694728 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " FREECOM " , " PCCARD-IDE " , 0x5714cbf7 , 0x48e0ab8e ) ,
2006-01-05 12:56:03 +03:00
PCMCIA_DEVICE_PROD_ID12 ( " HITACHI " , " FLASH " , 0xf4f43949 , 0x9eb86aae ) ,
PCMCIA_DEVICE_PROD_ID12 ( " HITACHI " , " microdrive " , 0xf4f43949 , 0xa6d76178 ) ,
2007-10-17 00:29:52 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " Hyperstone " , " Model1 " , 0x3d5b9ef5 , 0xca6ab420 ) ,
2006-05-15 20:44:37 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " IBM " , " microdrive " , 0xb569a6e5 , 0xa6d76178 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " IBM " , " IBM17JSSFP20 " , 0xb569a6e5 , 0xf2508753 ) ,
2010-05-02 23:48:24 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " KINGSTON " , " CF CARD 1GB " , 0x2e6d1829 , 0x55d5bffb ) ,
2010-04-19 21:54:11 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " KINGSTON " , " CF CARD 4GB " , 0x2e6d1829 , 0x531e7d10 ) ,
2007-07-20 03:11:53 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " KINGSTON " , " CF8GB " , 0x2e6d1829 , 0xacbe682e ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " IO DATA " , " CBIDE2 " , 0x547e66dc , 0x8671043b ) ,
PCMCIA_DEVICE_PROD_ID12 ( " IO DATA " , " PCIDE " , 0x547e66dc , 0x5c5ab149 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " IO DATA " , " PCIDEII " , 0x547e66dc , 0xb3662674 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " LOOKMEET " , " CBIDE2 " , 0xe37be2b5 , 0x8671043b ) ,
2008-06-20 22:53:34 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " M-Systems " , " CF300 " , 0x7ed2ad87 , 0x7e9e78ee ) ,
[PATCH] PCMCIA: Add few IDs into ide-cs
Few cards informations submitted by OpenZaurus users.
Seagate 8GB microdrive:
product info: "SEAGATE", "ST1"
manfid 0x0111, 0x0000
One CF card:
product info: "SAMSUNG", "04/05/06", "", ""
manfid : 0x0000, 0x0000
Ridata 8GB Pro 150X Compact Flash Card:
product info: "SMI VENDOR", "SMI PRODUCT", ""
manfid: 0x000a, 0x0000
product info: "M-Systems", "CF500", ""
manfid: 0x000a, 0x0000
product info: "TRANSCEND", "TS4GCF120", ""
manfid: 0x000a, 0x0000
Alan sayeth: "Same update needs to go into drivers/ata/pata_pcmcia"
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Cc: Dominik Brodowski <linux@dominikbrodowski.net>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-10-03 12:14:29 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " M-Systems " , " CF500 " , 0x7ed2ad87 , 0x7a13045c ) ,
2005-09-17 13:17:56 +04:00
PCMCIA_DEVICE_PROD_ID2 ( " NinjaATA- " , 0xebe0bd79 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " PCMCIA " , " CD-ROM " , 0x281f1c5d , 0x66536591 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " PCMCIA " , " PnPIDE " , 0x281f1c5d , 0x0c694728 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " SHUTTLE TECHNOLOGY LTD. " , " PCCARD-IDE/ATAPI Adapter " , 0x4a3f0ba0 , 0x322560e1 ) ,
[PATCH] PCMCIA: Add few IDs into ide-cs
Few cards informations submitted by OpenZaurus users.
Seagate 8GB microdrive:
product info: "SEAGATE", "ST1"
manfid 0x0111, 0x0000
One CF card:
product info: "SAMSUNG", "04/05/06", "", ""
manfid : 0x0000, 0x0000
Ridata 8GB Pro 150X Compact Flash Card:
product info: "SMI VENDOR", "SMI PRODUCT", ""
manfid: 0x000a, 0x0000
product info: "M-Systems", "CF500", ""
manfid: 0x000a, 0x0000
product info: "TRANSCEND", "TS4GCF120", ""
manfid: 0x000a, 0x0000
Alan sayeth: "Same update needs to go into drivers/ata/pata_pcmcia"
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Cc: Dominik Brodowski <linux@dominikbrodowski.net>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-10-03 12:14:29 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " SEAGATE " , " ST1 " , 0x87c1b330 , 0xe1f30883 ) ,
PCMCIA_DEVICE_PROD_ID12 ( " SAMSUNG " , " 04/05/06 " , 0x43d74cb4 , 0x6a22777d ) ,
PCMCIA_DEVICE_PROD_ID12 ( " SMI VENDOR " , " SMI PRODUCT " , 0x30896c92 , 0x703cc5f6 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TOSHIBA " , " MK2001MPL " , 0xb4585a1a , 0x3489e003 ) ,
2006-01-25 17:36:32 +03:00
PCMCIA_DEVICE_PROD_ID1 ( " TRANSCEND 512M " , 0xd0909443 ) ,
2008-06-20 22:53:34 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS1GCF45 " , 0x709b1bf1 , 0xf68b6f32 ) ,
2006-10-27 02:56:00 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS1GCF80 " , 0x709b1bf1 , 0x2a54d4b1 ) ,
2007-05-06 00:03:51 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS2GCF120 " , 0x709b1bf1 , 0x969aa4f2 ) ,
[PATCH] PCMCIA: Add few IDs into ide-cs
Few cards informations submitted by OpenZaurus users.
Seagate 8GB microdrive:
product info: "SEAGATE", "ST1"
manfid 0x0111, 0x0000
One CF card:
product info: "SAMSUNG", "04/05/06", "", ""
manfid : 0x0000, 0x0000
Ridata 8GB Pro 150X Compact Flash Card:
product info: "SMI VENDOR", "SMI PRODUCT", ""
manfid: 0x000a, 0x0000
product info: "M-Systems", "CF500", ""
manfid: 0x000a, 0x0000
product info: "TRANSCEND", "TS4GCF120", ""
manfid: 0x000a, 0x0000
Alan sayeth: "Same update needs to go into drivers/ata/pata_pcmcia"
Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Cc: Dominik Brodowski <linux@dominikbrodowski.net>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-10-03 12:14:29 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS4GCF120 " , 0x709b1bf1 , 0xf54a91c8 ) ,
2010-05-02 23:48:24 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS4GCF133 " , 0x709b1bf1 , 0x7558f133 ) ,
2010-04-19 21:54:11 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " TRANSCEND " , " TS8GCF133 " , 0x709b1bf1 , 0xb2f89b47 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " WIT " , " IDE16 " , 0x244e5994 , 0x3e232852 ) ,
2006-10-31 00:28:09 +03:00
PCMCIA_DEVICE_PROD_ID12 ( " WEIDA " , " TWTTI " , 0xcc7cf69c , 0x212bb918 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_PROD_ID1 ( " STI Flash " , 0xe4a13209 ) ,
2005-09-10 00:03:28 +04:00
PCMCIA_DEVICE_PROD_ID12 ( " STI " , " Flash 5.0 " , 0xbf2df18d , 0x8cb57a0e ) ,
2005-07-28 12:07:19 +04:00
PCMCIA_MFC_DEVICE_PROD_ID12 ( 1 , " SanDisk " , " ConnectPlus " , 0x7a954bd9 , 0x74be00c6 ) ,
2008-11-06 13:44:34 +03:00
PCMCIA_DEVICE_PROD_ID2 ( " Flash Card " , 0x5a362506 ) ,
2005-06-28 03:28:28 +04:00
PCMCIA_DEVICE_NULL ,
} ;
MODULE_DEVICE_TABLE ( pcmcia , ide_ids ) ;
2005-04-17 02:20:36 +04:00
static struct pcmcia_driver ide_cs_driver = {
. owner = THIS_MODULE ,
2010-08-08 13:36:26 +04:00
. name = " ide-cs " ,
2006-03-31 19:26:06 +04:00
. probe = ide_probe ,
2005-11-14 23:23:14 +03:00
. remove = ide_detach ,
2005-06-28 03:28:28 +04:00
. id_table = ide_ids ,
2005-04-17 02:20:36 +04:00
} ;
static int __init init_ide_cs ( void )
{
return pcmcia_register_driver ( & ide_cs_driver ) ;
}
static void __exit exit_ide_cs ( void )
{
pcmcia_unregister_driver ( & ide_cs_driver ) ;
}
2005-08-01 16:16:55 +04:00
late_initcall ( init_ide_cs ) ;
2005-04-17 02:20:36 +04:00
module_exit ( exit_ide_cs ) ;