blob: 2e110aefe59b71916fada46367d624a6e28ddb68 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Florian Fainelli3db691d2008-03-06 12:25:21 +01002/*
3 * A low-level PATA driver to handle a Compact Flash connected on the
4 * Mikrotik's RouterBoard 532 board.
5 *
6 * Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
7 * Copyright (C) 2008 Florian Fainelli <florian@openwrt.org>
8 *
9 * This file was based on: drivers/ata/pata_ixp4xx_cf.c
10 * Copyright (C) 2006-07 Tower Technologies
11 * Author: Alessandro Zummo <a.zummo@towertech.it>
12 *
13 * Also was based on the driver for Linux 2.4.xx published by Mikrotik for
14 * their RouterBoard 1xx and 5xx series devices. The original Mikrotik code
15 * seems not to have a license.
Florian Fainelli3db691d2008-03-06 12:25:21 +010016 */
17
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/gfp.h>
Florian Fainelli3db691d2008-03-06 12:25:21 +010019#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22
23#include <linux/io.h>
24#include <linux/interrupt.h>
25#include <linux/irq.h>
Linus Walleijcd56f352018-11-20 08:47:32 +010026#include <linux/gpio/consumer.h>
Florian Fainelli3db691d2008-03-06 12:25:21 +010027
28#include <linux/libata.h>
29#include <scsi/scsi_host.h>
30
Gabor Juhos01836172016-02-17 12:58:20 +010031#include <asm/mach-rc32434/rb.h>
32
Ralf Baechle3dd654b2008-04-28 12:41:36 +010033#define DRV_NAME "pata-rb532-cf"
Florian Fainelli3db691d2008-03-06 12:25:21 +010034#define DRV_VERSION "0.1.0"
35#define DRV_DESC "PATA driver for RouterBOARD 532 Compact Flash"
36
37#define RB500_CF_MAXPORTS 1
38#define RB500_CF_IO_DELAY 400
39
Phil Sutter9f147862008-11-28 20:48:26 +010040#define RB500_CF_REG_BASE 0x0800
41#define RB500_CF_REG_ERR 0x080D
Florian Fainelli3db691d2008-03-06 12:25:21 +010042#define RB500_CF_REG_CTRL 0x080E
Phil Sutter9f147862008-11-28 20:48:26 +010043/* 32bit buffered data register offset */
44#define RB500_CF_REG_DBUF32 0x0C00
Florian Fainelli3db691d2008-03-06 12:25:21 +010045
Ralf Baechle3dd654b2008-04-28 12:41:36 +010046struct rb532_cf_info {
Florian Fainelli3db691d2008-03-06 12:25:21 +010047 void __iomem *iobase;
Linus Walleijcd56f352018-11-20 08:47:32 +010048 struct gpio_desc *gpio_line;
Florian Fainelli3db691d2008-03-06 12:25:21 +010049 unsigned int irq;
50};
51
52/* ------------------------------------------------------------------------ */
53
Ralf Baechle3dd654b2008-04-28 12:41:36 +010054static irqreturn_t rb532_pata_irq_handler(int irq, void *dev_instance)
Florian Fainelli3db691d2008-03-06 12:25:21 +010055{
56 struct ata_host *ah = dev_instance;
Ralf Baechle3dd654b2008-04-28 12:41:36 +010057 struct rb532_cf_info *info = ah->private_data;
Florian Fainelli3db691d2008-03-06 12:25:21 +010058
Linus Walleijcd56f352018-11-20 08:47:32 +010059 if (gpiod_get_value(info->gpio_line)) {
Thomas Gleixnerdced35a2011-03-28 17:49:12 +020060 irq_set_irq_type(info->irq, IRQ_TYPE_LEVEL_LOW);
Phil Sutter6be976e2009-01-27 14:35:53 +010061 ata_sff_interrupt(info->irq, dev_instance);
Florian Fainelli3db691d2008-03-06 12:25:21 +010062 } else {
Thomas Gleixnerdced35a2011-03-28 17:49:12 +020063 irq_set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH);
Florian Fainelli3db691d2008-03-06 12:25:21 +010064 }
65
66 return IRQ_HANDLED;
67}
68
Ralf Baechle3dd654b2008-04-28 12:41:36 +010069static struct ata_port_operations rb532_pata_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +090070 .inherits = &ata_sff_port_ops,
Phil Sutter180bd142009-01-27 14:35:52 +010071 .sff_data_xfer = ata_sff_data_xfer32,
Florian Fainelli3db691d2008-03-06 12:25:21 +010072};
73
74/* ------------------------------------------------------------------------ */
75
Ralf Baechle3dd654b2008-04-28 12:41:36 +010076static struct scsi_host_template rb532_pata_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +090077 ATA_PIO_SHT(DRV_NAME),
Florian Fainelli3db691d2008-03-06 12:25:21 +010078};
79
80/* ------------------------------------------------------------------------ */
81
Ralf Baechle3dd654b2008-04-28 12:41:36 +010082static void rb532_pata_setup_ports(struct ata_host *ah)
Florian Fainelli3db691d2008-03-06 12:25:21 +010083{
Ralf Baechle3dd654b2008-04-28 12:41:36 +010084 struct rb532_cf_info *info = ah->private_data;
Florian Fainelli3db691d2008-03-06 12:25:21 +010085 struct ata_port *ap;
86
87 ap = ah->ports[0];
88
Ralf Baechle3dd654b2008-04-28 12:41:36 +010089 ap->ops = &rb532_pata_port_ops;
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +010090 ap->pio_mask = ATA_PIO4;
Florian Fainelli3db691d2008-03-06 12:25:21 +010091
Phil Sutter9f147862008-11-28 20:48:26 +010092 ap->ioaddr.cmd_addr = info->iobase + RB500_CF_REG_BASE;
Florian Fainelli3db691d2008-03-06 12:25:21 +010093 ap->ioaddr.ctl_addr = info->iobase + RB500_CF_REG_CTRL;
94 ap->ioaddr.altstatus_addr = info->iobase + RB500_CF_REG_CTRL;
95
Tejun Heo9363c382008-04-07 22:47:16 +090096 ata_sff_std_ports(&ap->ioaddr);
Florian Fainelli3db691d2008-03-06 12:25:21 +010097
Phil Sutter9f147862008-11-28 20:48:26 +010098 ap->ioaddr.data_addr = info->iobase + RB500_CF_REG_DBUF32;
99 ap->ioaddr.error_addr = info->iobase + RB500_CF_REG_ERR;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100100}
101
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800102static int rb532_pata_driver_probe(struct platform_device *pdev)
Florian Fainelli3db691d2008-03-06 12:25:21 +0100103{
Florian Fainelli9223d012009-03-13 15:41:43 +0100104 int irq;
Linus Walleijcd56f352018-11-20 08:47:32 +0100105 struct gpio_desc *gpiod;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100106 struct resource *res;
107 struct ata_host *ah;
Ralf Baechle3dd654b2008-04-28 12:41:36 +0100108 struct rb532_cf_info *info;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100109 int ret;
110
111 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
112 if (!res) {
113 dev_err(&pdev->dev, "no IOMEM resource found\n");
114 return -EINVAL;
115 }
116
117 irq = platform_get_irq(pdev, 0);
gushengxian1af11d02021-06-22 04:55:07 -0700118 if (irq < 0)
Sergey Shtylyov2d3a62f2021-03-15 14:46:53 +0300119 return irq;
Sergey Shtylyov2d3a62f2021-03-15 14:46:53 +0300120 if (!irq)
121 return -EINVAL;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100122
Linus Walleijcd56f352018-11-20 08:47:32 +0100123 gpiod = devm_gpiod_get(&pdev->dev, NULL, GPIOD_IN);
124 if (IS_ERR(gpiod)) {
Florian Fainelli3db691d2008-03-06 12:25:21 +0100125 dev_err(&pdev->dev, "no GPIO found for irq%d\n", irq);
Linus Walleijcd56f352018-11-20 08:47:32 +0100126 return PTR_ERR(gpiod);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100127 }
Linus Walleijcd56f352018-11-20 08:47:32 +0100128 gpiod_set_consumer_name(gpiod, DRV_NAME);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100129
130 /* allocate host */
131 ah = ata_host_alloc(&pdev->dev, RB500_CF_MAXPORTS);
132 if (!ah)
133 return -ENOMEM;
134
Florian Fainelli3db691d2008-03-06 12:25:21 +0100135 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
136 if (!info)
137 return -ENOMEM;
138
139 ah->private_data = info;
Linus Walleijcd56f352018-11-20 08:47:32 +0100140 info->gpio_line = gpiod;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100141 info->irq = irq;
142
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100143 info->iobase = devm_ioremap(&pdev->dev, res->start,
Julia Lawall041b5ea2009-08-06 16:05:08 -0700144 resource_size(res));
Florian Fainelli3db691d2008-03-06 12:25:21 +0100145 if (!info->iobase)
146 return -ENOMEM;
147
Ralf Baechle3dd654b2008-04-28 12:41:36 +0100148 rb532_pata_setup_ports(ah);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100149
Ralf Baechle3dd654b2008-04-28 12:41:36 +0100150 ret = ata_host_activate(ah, irq, rb532_pata_irq_handler,
151 IRQF_TRIGGER_LOW, &rb532_pata_sht);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100152 if (ret)
Linus Walleijcd56f352018-11-20 08:47:32 +0100153 return ret;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100154
155 return 0;
Florian Fainelli3db691d2008-03-06 12:25:21 +0100156}
157
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800158static int rb532_pata_driver_remove(struct platform_device *pdev)
Florian Fainelli3db691d2008-03-06 12:25:21 +0100159{
160 struct ata_host *ah = platform_get_drvdata(pdev);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100161
162 ata_host_detach(ah);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100163
164 return 0;
165}
166
Ralf Baechle3dd654b2008-04-28 12:41:36 +0100167static struct platform_driver rb532_pata_platform_driver = {
168 .probe = rb532_pata_driver_probe,
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800169 .remove = rb532_pata_driver_remove,
Florian Fainelli3db691d2008-03-06 12:25:21 +0100170 .driver = {
171 .name = DRV_NAME,
Florian Fainelli3db691d2008-03-06 12:25:21 +0100172 },
173};
174
Florian Fainelli3db691d2008-03-06 12:25:21 +0100175#define DRV_INFO DRV_DESC " version " DRV_VERSION
176
Axel Lin99c8ea32011-11-27 14:44:26 +0800177module_platform_driver(rb532_pata_platform_driver);
Florian Fainelli3db691d2008-03-06 12:25:21 +0100178
179MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>");
180MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
181MODULE_DESCRIPTION(DRV_DESC);
182MODULE_VERSION(DRV_VERSION);
183MODULE_LICENSE("GPL");
Axel Lin99c8ea32011-11-27 14:44:26 +0800184MODULE_ALIAS("platform:" DRV_NAME);