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