2005-04-17 02:20:36 +04:00
/*
* Copyright ( c ) 1996 - 2002 Russell King .
*/
# include <linux/module.h>
# include <linux/slab.h>
# include <linux/blkdev.h>
# include <linux/errno.h>
# include <linux/ide.h>
# include <linux/init.h>
# include <asm/ecard.h>
2008-10-26 08:40:26 +03:00
static const struct ide_port_info rapide_port_info = {
2008-07-16 22:33:42 +04:00
. host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA ,
2009-05-17 21:12:22 +04:00
. chipset = ide_generic ,
2008-07-16 22:33:42 +04:00
} ;
2009-05-17 21:12:25 +04:00
static void rapide_setup_ports ( struct ide_hw * hw , void __iomem * base ,
2008-01-26 22:13:05 +03:00
void __iomem * ctrl , unsigned int sz , int irq )
2005-04-17 02:20:36 +04:00
{
unsigned long port = ( unsigned long ) base ;
2007-10-20 02:32:31 +04:00
int i ;
2005-04-17 02:20:36 +04:00
2008-04-27 17:38:32 +04:00
for ( i = 0 ; i < = 7 ; i + + ) {
hw - > io_ports_array [ i ] = port ;
2005-04-17 02:20:36 +04:00
port + = sz ;
}
2008-04-27 17:38:32 +04:00
hw - > io_ports . ctl_addr = ( unsigned long ) ctrl ;
2008-01-26 22:13:05 +03:00
hw - > irq = irq ;
2005-04-17 02:20:36 +04:00
}
static int __devinit
rapide_probe ( struct expansion_card * ec , const struct ecard_id * id )
{
void __iomem * base ;
2008-07-23 21:55:57 +04:00
struct ide_host * host ;
2005-04-17 02:20:36 +04:00
int ret ;
2009-05-17 21:12:25 +04:00
struct ide_hw hw , * hws [ ] = { & hw } ;
2005-04-17 02:20:36 +04:00
ret = ecard_request_resources ( ec ) ;
if ( ret )
goto out ;
2007-05-10 21:40:51 +04:00
base = ecardm_iomap ( ec , ECARD_RES_MEMC , 0 , 0 ) ;
2005-04-17 02:20:36 +04:00
if ( ! base ) {
ret = - ENOMEM ;
goto release ;
}
2008-07-16 22:33:44 +04:00
memset ( & hw , 0 , sizeof ( hw ) ) ;
rapide_setup_ports ( & hw , base , base + 0x818 , 1 < < 6 , ec - > irq ) ;
hw . dev = & ec - > dev ;
2008-01-26 22:13:05 +03:00
2009-05-17 21:12:24 +04:00
ret = ide_host_add ( & rapide_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 ( ret )
2008-07-16 22:33:44 +04:00
goto release ;
2007-10-20 02:32:31 +04:00
2008-07-23 21:55:57 +04:00
ecard_set_drvdata ( ec , host ) ;
2008-07-16 22:33:44 +04:00
goto out ;
2005-04-17 02:20:36 +04:00
release :
ecard_release_resources ( ec ) ;
out :
return ret ;
}
static void __devexit rapide_remove ( struct expansion_card * ec )
{
2008-07-23 21:55:57 +04:00
struct ide_host * host = ecard_get_drvdata ( ec ) ;
2005-04-17 02:20:36 +04:00
ecard_set_drvdata ( ec , NULL ) ;
2008-07-23 21:55:57 +04:00
ide_host_remove ( host ) ;
2008-02-02 01:09:33 +03:00
2005-04-17 02:20:36 +04:00
ecard_release_resources ( ec ) ;
}
static struct ecard_id rapide_ids [ ] = {
{ MANU_YELLOWSTONE , PROD_YELLOWSTONE_RAPIDE32 } ,
{ 0xffff , 0xffff }
} ;
static struct ecard_driver rapide_driver = {
. probe = rapide_probe ,
. remove = __devexit_p ( rapide_remove ) ,
. id_table = rapide_ids ,
. drv = {
. name = " rapide " ,
} ,
} ;
static int __init rapide_init ( void )
{
return ecard_register_driver ( & rapide_driver ) ;
}
2008-07-25 00:53:27 +04:00
static void __exit rapide_exit ( void )
{
2008-10-26 08:40:26 +03:00
ecard_remove_driver ( & rapide_driver ) ;
2008-07-25 00:53:27 +04:00
}
2005-04-17 02:20:36 +04:00
MODULE_LICENSE ( " GPL " ) ;
MODULE_DESCRIPTION ( " Yellowstone RAPIDE driver " ) ;
module_init ( rapide_init ) ;
2008-07-25 00:53:27 +04:00
module_exit ( rapide_exit ) ;