blob: 2448441571ed64fb5d031edf1bab5d5a995c816c [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Marek Vašut5a9d2512009-05-21 13:11:05 +01002/*
3 * drivers/ata/pata_palmld.c
4 *
5 * Driver for IDE channel in Palm LifeDrive
6 *
7 * Based on research of:
8 * Alex Osborne <ato@meshy.org>
9 *
10 * Rewrite for mainline:
11 * Marek Vasut <marek.vasut@gmail.com>
12 *
13 * Rewritten version based on pata_ixp4xx_cf.c:
14 * ixp4xx PATA/Compact Flash driver
15 * Copyright (C) 2006-07 Tower Technologies
16 * Author: Alessandro Zummo <a.zummo@towertech.it>
Marek Vašut5a9d2512009-05-21 13:11:05 +010017 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/libata.h>
22#include <linux/irq.h>
23#include <linux/platform_device.h>
24#include <linux/delay.h>
Linus Walleijf43e4b02018-11-13 14:01:02 +010025#include <linux/gpio/consumer.h>
Marek Vašut5a9d2512009-05-21 13:11:05 +010026
27#include <scsi/scsi_host.h>
28#include <mach/palmld.h>
29
30#define DRV_NAME "pata_palmld"
31
Linus Walleij614c61a2018-12-05 09:49:11 +010032struct palmld_pata {
33 struct ata_host *host;
34 struct gpio_desc *power;
35 struct gpio_desc *reset;
36};
Marek Vasut6b1e3fc2011-01-15 19:19:05 +010037
Marek Vašut5a9d2512009-05-21 13:11:05 +010038static struct scsi_host_template palmld_sht = {
39 ATA_PIO_SHT(DRV_NAME),
40};
41
42static struct ata_port_operations palmld_port_ops = {
43 .inherits = &ata_sff_port_ops,
Sebastian Andrzej Siewior23ebda22018-07-11 17:21:05 +020044 .sff_data_xfer = ata_sff_data_xfer32,
Marek Vašut5a9d2512009-05-21 13:11:05 +010045 .cable_detect = ata_cable_40wire,
46};
47
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -080048static int palmld_pata_probe(struct platform_device *pdev)
Marek Vašut5a9d2512009-05-21 13:11:05 +010049{
Linus Walleij614c61a2018-12-05 09:49:11 +010050 struct palmld_pata *lda;
Marek Vašut5a9d2512009-05-21 13:11:05 +010051 struct ata_port *ap;
52 void __iomem *mem;
Linus Walleijf43e4b02018-11-13 14:01:02 +010053 struct device *dev = &pdev->dev;
Marek Vašut5a9d2512009-05-21 13:11:05 +010054 int ret;
55
Linus Walleij614c61a2018-12-05 09:49:11 +010056 lda = devm_kzalloc(dev, sizeof(*lda), GFP_KERNEL);
57 if (!lda)
58 return -ENOMEM;
59
Marek Vašut5a9d2512009-05-21 13:11:05 +010060 /* allocate host */
Linus Walleij614c61a2018-12-05 09:49:11 +010061 lda->host = ata_host_alloc(dev, 1);
62 if (!lda->host)
Linus Walleijf43e4b02018-11-13 14:01:02 +010063 return -ENOMEM;
Marek Vašut5a9d2512009-05-21 13:11:05 +010064
65 /* remap drive's physical memory address */
Linus Walleijf43e4b02018-11-13 14:01:02 +010066 mem = devm_ioremap(dev, PALMLD_IDE_PHYS, 0x1000);
67 if (!mem)
68 return -ENOMEM;
69
70 /* request and activate power and reset GPIOs */
Linus Walleij614c61a2018-12-05 09:49:11 +010071 lda->power = devm_gpiod_get(dev, "power", GPIOD_OUT_HIGH);
72 if (IS_ERR(lda->power))
73 return PTR_ERR(lda->power);
74 lda->reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
75 if (IS_ERR(lda->reset)) {
76 gpiod_set_value(lda->power, 0);
77 return PTR_ERR(lda->reset);
Marek Vasut6b1e3fc2011-01-15 19:19:05 +010078 }
Marek Vašut5a9d2512009-05-21 13:11:05 +010079
Linus Walleijf43e4b02018-11-13 14:01:02 +010080 /* Assert reset to reset the drive */
Linus Walleij614c61a2018-12-05 09:49:11 +010081 gpiod_set_value(lda->reset, 1);
Marek Vašut5a9d2512009-05-21 13:11:05 +010082 msleep(30);
Linus Walleij614c61a2018-12-05 09:49:11 +010083 gpiod_set_value(lda->reset, 0);
Marek Vašut5a9d2512009-05-21 13:11:05 +010084 msleep(30);
85
86 /* setup the ata port */
Linus Walleij614c61a2018-12-05 09:49:11 +010087 ap = lda->host->ports[0];
Marek Vašut5a9d2512009-05-21 13:11:05 +010088 ap->ops = &palmld_port_ops;
89 ap->pio_mask = ATA_PIO4;
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +030090 ap->flags |= ATA_FLAG_PIO_POLLING;
Marek Vašut5a9d2512009-05-21 13:11:05 +010091
92 /* memory mapping voodoo */
93 ap->ioaddr.cmd_addr = mem + 0x10;
94 ap->ioaddr.altstatus_addr = mem + 0xe;
95 ap->ioaddr.ctl_addr = mem + 0xe;
96
97 /* start the port */
98 ata_sff_std_ports(&ap->ioaddr);
99
100 /* activate host */
Linus Walleij614c61a2018-12-05 09:49:11 +0100101 ret = ata_host_activate(lda->host, 0, NULL, IRQF_TRIGGER_RISING,
102 &palmld_sht);
Linus Walleijf43e4b02018-11-13 14:01:02 +0100103 /* power down on failure */
Linus Walleij614c61a2018-12-05 09:49:11 +0100104 if (ret) {
105 gpiod_set_value(lda->power, 0);
106 return ret;
107 }
108
109 platform_set_drvdata(pdev, lda);
110 return 0;
Marek Vašut5a9d2512009-05-21 13:11:05 +0100111}
112
Linus Walleij614c61a2018-12-05 09:49:11 +0100113static int palmld_pata_remove(struct platform_device *pdev)
Marek Vašut5a9d2512009-05-21 13:11:05 +0100114{
Linus Walleij614c61a2018-12-05 09:49:11 +0100115 struct palmld_pata *lda = platform_get_drvdata(pdev);
116
117 ata_platform_remove_one(pdev);
Marek Vašut5a9d2512009-05-21 13:11:05 +0100118
119 /* power down the HDD */
Linus Walleij614c61a2018-12-05 09:49:11 +0100120 gpiod_set_value(lda->power, 0);
Marek Vašut5a9d2512009-05-21 13:11:05 +0100121
122 return 0;
123}
124
125static struct platform_driver palmld_pata_platform_driver = {
126 .driver = {
127 .name = DRV_NAME,
Marek Vašut5a9d2512009-05-21 13:11:05 +0100128 },
129 .probe = palmld_pata_probe,
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800130 .remove = palmld_pata_remove,
Marek Vašut5a9d2512009-05-21 13:11:05 +0100131};
132
Axel Lin99c8ea32011-11-27 14:44:26 +0800133module_platform_driver(palmld_pata_platform_driver);
Marek Vašut5a9d2512009-05-21 13:11:05 +0100134
135MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
136MODULE_DESCRIPTION("PalmLD PATA driver");
137MODULE_LICENSE("GPL");
138MODULE_ALIAS("platform:" DRV_NAME);