| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/ide.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:18 +02:00
										 |  |  | #define DRV_NAME "ide-4drives"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-13 09:32:20 +10:30
										 |  |  | static bool probe_4drives; | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | module_param_named(probe, probe_4drives, bool, 0); | 
					
						
							|  |  |  | MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:42 +02:00
										 |  |  | static void ide_4drives_init_dev(ide_drive_t *drive) | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:40 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:42 +02:00
										 |  |  | 	if (drive->hwif->channel) | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:40 +02:00
										 |  |  | 		drive->select ^= 0x20; | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct ide_port_ops ide_4drives_port_ops = { | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:42 +02:00
										 |  |  | 	.init_dev		= ide_4drives_init_dev, | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct ide_port_info ide_4drives_port_info = { | 
					
						
							|  |  |  | 	.port_ops		= &ide_4drives_port_ops, | 
					
						
							| 
									
										
										
										
											2009-03-27 12:46:28 +01:00
										 |  |  | 	.host_flags		= IDE_HFLAG_SERIALIZE | IDE_HFLAG_NO_DMA | | 
					
						
							|  |  |  | 				  IDE_HFLAG_4DRIVES, | 
					
						
							| 
									
										
										
										
											2009-05-17 19:12:22 +02:00
										 |  |  | 	.chipset		= ide_4drives, | 
					
						
							| 
									
										
										
										
											2008-07-16 20:33:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | static int __init ide_4drives_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:18 +02:00
										 |  |  | 	unsigned long base = 0x1f0, ctl = 0x3f6; | 
					
						
							| 
									
										
										
										
											2009-05-17 19:12:25 +02:00
										 |  |  | 	struct ide_hw hw, *hws[] = { &hw, &hw }; | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (probe_4drives == 0) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:18 +02:00
										 |  |  | 	if (!request_region(base, 8, DRV_NAME)) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", | 
					
						
							|  |  |  | 				DRV_NAME, base, base + 7); | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!request_region(ctl, 1, DRV_NAME)) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n", | 
					
						
							|  |  |  | 				DRV_NAME, ctl); | 
					
						
							|  |  |  | 		release_region(base, 8); | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:35 +02:00
										 |  |  | 	memset(&hw, 0, sizeof(hw)); | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:18 +02:00
										 |  |  | 	ide_std_init_ports(&hw, base, ctl); | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:35 +02:00
										 |  |  | 	hw.irq = 14; | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 19:12:24 +02:00
										 |  |  | 	return ide_host_add(&ide_4drives_port_info, hws, 2, NULL); | 
					
						
							| 
									
										
										
										
											2008-04-18 00:46:34 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(ide_4drives_init); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Bartlomiej Zolnierkiewicz"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("generic IDE chipset with 4 drives/port support"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); |