| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * Platform IDE driver | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 2007 MontaVista Software | 
 | 5 |  * | 
 | 6 |  * Maintainer: Kumar Gala <galak@kernel.crashing.org> | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute  it and/or modify it | 
 | 9 |  * under  the terms of  the GNU General  Public License as published by the | 
 | 10 |  * Free Software Foundation;  either version 2 of the  License, or (at your | 
 | 11 |  * option) any later version. | 
 | 12 |  */ | 
 | 13 |  | 
 | 14 | #include <linux/types.h> | 
 | 15 | #include <linux/init.h> | 
 | 16 | #include <linux/kernel.h> | 
 | 17 | #include <linux/ide.h> | 
 | 18 | #include <linux/ioport.h> | 
 | 19 | #include <linux/module.h> | 
| Jeff Garzik | 0a87e3e | 2008-02-01 18:02:30 -0500 | [diff] [blame] | 20 | #include <linux/ata_platform.h> | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 21 | #include <linux/platform_device.h> | 
| Thomas Gleixner | 89e9aad | 2011-08-04 01:29:51 -0700 | [diff] [blame] | 22 | #include <linux/interrupt.h> | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 23 | #include <linux/io.h> | 
 | 24 |  | 
| Greg Kroah-Hartman | fe31edc | 2012-12-21 13:21:03 -0800 | [diff] [blame] | 25 | static void plat_ide_setup_ports(struct ide_hw *hw, void __iomem *base, | 
 | 26 | 				 void __iomem *ctrl, | 
 | 27 | 				 struct pata_platform_info *pdata, int irq) | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 28 | { | 
 | 29 | 	unsigned long port = (unsigned long)base; | 
| Bartlomiej Zolnierkiewicz | baa8f3e | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 30 | 	int i; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 31 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 32 | 	hw->io_ports.data_addr = port; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 33 |  | 
 | 34 | 	port += (1 << pdata->ioport_shift); | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 35 | 	for (i = 1; i <= 7; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 36 | 	     i++, port += (1 << pdata->ioport_shift)) | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 37 | 		hw->io_ports_array[i] = port; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 38 |  | 
| Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 39 | 	hw->io_ports.ctl_addr = (unsigned long)ctrl; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 40 |  | 
| Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 41 | 	hw->irq = irq; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 42 | } | 
 | 43 |  | 
| Bartlomiej Zolnierkiewicz | 7b60fa1 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 44 | static const struct ide_port_info platform_ide_port_info = { | 
 | 45 | 	.host_flags		= IDE_HFLAG_NO_DMA, | 
| Bartlomiej Zolnierkiewicz | 29e52cf | 2009-05-17 19:12:22 +0200 | [diff] [blame] | 46 | 	.chipset		= ide_generic, | 
| Bartlomiej Zolnierkiewicz | 7b60fa1 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 47 | }; | 
 | 48 |  | 
| Greg Kroah-Hartman | fe31edc | 2012-12-21 13:21:03 -0800 | [diff] [blame] | 49 | static int plat_ide_probe(struct platform_device *pdev) | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 50 | { | 
 | 51 | 	struct resource *res_base, *res_alt, *res_irq; | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 52 | 	void __iomem *base, *alt_base; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 53 | 	struct pata_platform_info *pdata; | 
| Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 54 | 	struct ide_host *host; | 
| Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 55 | 	int ret = 0, mmio = 0; | 
| Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 56 | 	struct ide_hw hw, *hws[] = { &hw }; | 
| Bartlomiej Zolnierkiewicz | 7b60fa1 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 57 | 	struct ide_port_info d = platform_ide_port_info; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 58 |  | 
| Jingoo Han | 7b6b561 | 2013-07-30 17:16:47 +0900 | [diff] [blame] | 59 | 	pdata = dev_get_platdata(&pdev->dev); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 60 |  | 
 | 61 | 	/* get a pointer to the register memory */ | 
 | 62 | 	res_base = platform_get_resource(pdev, IORESOURCE_IO, 0); | 
 | 63 | 	res_alt = platform_get_resource(pdev, IORESOURCE_IO, 1); | 
 | 64 |  | 
 | 65 | 	if (!res_base || !res_alt) { | 
 | 66 | 		res_base = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
 | 67 | 		res_alt = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 
 | 68 | 		if (!res_base || !res_alt) { | 
 | 69 | 			ret = -ENOMEM; | 
 | 70 | 			goto out; | 
 | 71 | 		} | 
 | 72 | 		mmio = 1; | 
 | 73 | 	} | 
 | 74 |  | 
 | 75 | 	res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | 
 | 76 | 	if (!res_irq) { | 
 | 77 | 		ret = -EINVAL; | 
 | 78 | 		goto out; | 
 | 79 | 	} | 
 | 80 |  | 
 | 81 | 	if (mmio) { | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 82 | 		base = devm_ioremap(&pdev->dev, | 
| H Hartley Sweeten | 30433d8 | 2009-11-23 10:30:34 -0800 | [diff] [blame] | 83 | 			res_base->start, resource_size(res_base)); | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 84 | 		alt_base = devm_ioremap(&pdev->dev, | 
| H Hartley Sweeten | 30433d8 | 2009-11-23 10:30:34 -0800 | [diff] [blame] | 85 | 			res_alt->start, resource_size(res_alt)); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 86 | 	} else { | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 87 | 		base = devm_ioport_map(&pdev->dev, | 
| H Hartley Sweeten | 30433d8 | 2009-11-23 10:30:34 -0800 | [diff] [blame] | 88 | 			res_base->start, resource_size(res_base)); | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 89 | 		alt_base = devm_ioport_map(&pdev->dev, | 
| H Hartley Sweeten | 30433d8 | 2009-11-23 10:30:34 -0800 | [diff] [blame] | 90 | 			res_alt->start, resource_size(res_alt)); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 91 | 	} | 
 | 92 |  | 
| Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 93 | 	memset(&hw, 0, sizeof(hw)); | 
| Bartlomiej Zolnierkiewicz | 0424493 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 94 | 	plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start); | 
| Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 95 | 	hw.dev = &pdev->dev; | 
 | 96 |  | 
| Thomas Gleixner | 89e9aad | 2011-08-04 01:29:51 -0700 | [diff] [blame] | 97 | 	d.irq_flags = res_irq->flags & IRQF_TRIGGER_MASK; | 
 | 98 | 	if (res_irq->flags & IORESOURCE_IRQ_SHAREABLE) | 
 | 99 | 		d.irq_flags |= IRQF_SHARED; | 
 | 100 |  | 
| Bartlomiej Zolnierkiewicz | 761052e | 2008-07-23 19:55:54 +0200 | [diff] [blame] | 101 | 	if (mmio) | 
| Bartlomiej Zolnierkiewicz | 7b60fa1 | 2008-07-16 20:33:42 +0200 | [diff] [blame] | 102 | 		d.host_flags |= IDE_HFLAG_MMIO; | 
| Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 103 |  | 
| Bartlomiej Zolnierkiewicz | dca3983 | 2009-05-17 19:12:24 +0200 | [diff] [blame] | 104 | 	ret = ide_host_add(&d, hws, 1, &host); | 
| Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 105 | 	if (ret) | 
| Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 106 | 		goto out; | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 107 |  | 
| Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 108 | 	platform_set_drvdata(pdev, host); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 109 |  | 
 | 110 | 	return 0; | 
 | 111 |  | 
 | 112 | out: | 
 | 113 | 	return ret; | 
 | 114 | } | 
 | 115 |  | 
| Greg Kroah-Hartman | fe31edc | 2012-12-21 13:21:03 -0800 | [diff] [blame] | 116 | static int plat_ide_remove(struct platform_device *pdev) | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 117 | { | 
| Greg Kroah-Hartman | fcb5207 | 2009-04-30 14:43:31 -0700 | [diff] [blame] | 118 | 	struct ide_host *host = dev_get_drvdata(&pdev->dev); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 119 |  | 
| Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 120 | 	ide_host_remove(host); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 121 |  | 
 | 122 | 	return 0; | 
 | 123 | } | 
 | 124 |  | 
 | 125 | static struct platform_driver platform_ide_driver = { | 
 | 126 | 	.driver = { | 
 | 127 | 		.name = "pata_platform", | 
| Kay Sievers | 458622f | 2008-04-18 13:41:57 -0700 | [diff] [blame] | 128 | 		.owner = THIS_MODULE, | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 129 | 	}, | 
 | 130 | 	.probe = plat_ide_probe, | 
| Greg Kroah-Hartman | fe31edc | 2012-12-21 13:21:03 -0800 | [diff] [blame] | 131 | 	.remove = plat_ide_remove, | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 132 | }; | 
 | 133 |  | 
 | 134 | static int __init platform_ide_init(void) | 
 | 135 | { | 
 | 136 | 	return platform_driver_register(&platform_ide_driver); | 
 | 137 | } | 
 | 138 |  | 
 | 139 | static void __exit platform_ide_exit(void) | 
 | 140 | { | 
 | 141 | 	platform_driver_unregister(&platform_ide_driver); | 
 | 142 | } | 
 | 143 |  | 
 | 144 | MODULE_DESCRIPTION("Platform IDE driver"); | 
 | 145 | MODULE_LICENSE("GPL"); | 
| Kay Sievers | 458622f | 2008-04-18 13:41:57 -0700 | [diff] [blame] | 146 | MODULE_ALIAS("platform:pata_platform"); | 
| Anton Vorontsov | 8cb1f56 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 147 |  | 
 | 148 | module_init(platform_ide_init); | 
 | 149 | module_exit(platform_ide_exit); |