blob: ace0a4de3449ab14ed0b514fd108537709f86aa4 [file] [log] [blame]
Sergey Matyukevich918d7b72009-06-19 08:27:40 +04001/*
2 * PATA driver for AT91SAM9260 Static Memory Controller
3 * with CompactFlash interface in True IDE mode
4 *
5 * Copyright (C) 2009 Matyukevich Sergey
Igor Plyatov01442612011-05-12 22:15:51 +04006 * 2011 Igor Plyatov
Sergey Matyukevich918d7b72009-06-19 08:27:40 +04007 *
8 * Based on:
9 * * generic platform driver by Paul Mundt: drivers/ata/pata_platform.c
10 * * pata_at32 driver by Kristoffer Nyborg Gregertsen
11 * * at91_ide driver by Stanislaw Gruszka
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040021#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040023#include <scsi/scsi_host.h>
24#include <linux/ata.h>
25#include <linux/clk.h>
26#include <linux/libata.h>
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +010027#include <linux/mfd/syscon.h>
28#include <linux/mfd/syscon/atmel-smc.h>
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040029#include <linux/platform_device.h>
30#include <linux/ata_platform.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080031#include <linux/platform_data/atmel.h>
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +010032#include <linux/regmap.h>
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040033
Russell King60e89722011-07-26 10:56:19 +010034#include <asm/gpio.h>
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040035
Igor Plyatov01442612011-05-12 22:15:51 +040036#define DRV_NAME "pata_at91"
37#define DRV_VERSION "0.3"
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040038
Igor Plyatov01442612011-05-12 22:15:51 +040039#define CF_IDE_OFFSET 0x00c00000
40#define CF_ALT_IDE_OFFSET 0x00e00000
41#define CF_IDE_RES_SIZE 0x08
42#define CS_PULSE_MAXIMUM 319
43#define ER_SMC_CALC 1
44#define ER_SMC_RECALC 2
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040045
46struct at91_ide_info {
47 unsigned long mode;
48 unsigned int cs;
Sergey Matyukevich7d084d92009-07-16 22:38:55 +040049 struct clk *mck;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040050 void __iomem *ide_addr;
51 void __iomem *alt_addr;
52};
53
Igor Plyatov01442612011-05-12 22:15:51 +040054/**
55 * struct smc_range - range of valid values for SMC register.
56 */
57struct smc_range {
58 int min;
59 int max;
Igor Plyatov792d37a2011-03-28 16:56:14 +040060};
Sergey Matyukevich918d7b72009-06-19 08:27:40 +040061
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +010062struct regmap *smc;
63
64struct at91sam9_smc_generic_fields {
65 struct regmap_field *setup;
66 struct regmap_field *pulse;
67 struct regmap_field *cycle;
68 struct regmap_field *mode;
69} fields;
70
Igor Plyatov01442612011-05-12 22:15:51 +040071/**
72 * adjust_smc_value - adjust value for one of SMC registers.
73 * @value: adjusted value
74 * @range: array of SMC ranges with valid values
75 * @size: SMC ranges array size
76 *
77 * This returns the difference between input and output value or negative
78 * in case of invalid input value.
79 * If negative returned, then output value = maximal possible from ranges.
80 */
81static int adjust_smc_value(int *value, struct smc_range *range, int size)
82{
83 int maximum = (range + size - 1)->max;
84 int remainder;
85
86 do {
87 if (*value < range->min) {
88 remainder = range->min - *value;
89 *value = range->min; /* nearest valid value */
90 return remainder;
91 } else if ((range->min <= *value) && (*value <= range->max))
92 return 0;
93
94 range++;
95 } while (--size);
96 *value = maximum;
97
98 return -1; /* invalid value */
99}
100
101/**
102 * calc_smc_vals - calculate SMC register values
103 * @dev: ATA device
104 * @setup: SMC_SETUP register value
105 * @pulse: SMC_PULSE register value
106 * @cycle: SMC_CYCLE register value
107 *
108 * This returns negative in case of invalid values for SMC registers:
109 * -ER_SMC_RECALC - recalculation required for SMC values,
110 * -ER_SMC_CALC - calculation failed (invalid input values).
111 *
112 * SMC use special coding scheme, see "Coding and Range of Timing
113 * Parameters" table from AT91SAM9 datasheets.
114 *
115 * SMC_SETUP = 128*setup[5] + setup[4:0]
116 * SMC_PULSE = 256*pulse[6] + pulse[5:0]
117 * SMC_CYCLE = 256*cycle[8:7] + cycle[6:0]
118 */
119static int calc_smc_vals(struct device *dev,
120 int *setup, int *pulse, int *cycle, int *cs_pulse)
121{
122 int ret_val;
123 int err = 0;
124 struct smc_range range_setup[] = { /* SMC_SETUP valid values */
125 {.min = 0, .max = 31}, /* first range */
126 {.min = 128, .max = 159} /* second range */
127 };
128 struct smc_range range_pulse[] = { /* SMC_PULSE valid values */
129 {.min = 0, .max = 63}, /* first range */
130 {.min = 256, .max = 319} /* second range */
131 };
132 struct smc_range range_cycle[] = { /* SMC_CYCLE valid values */
133 {.min = 0, .max = 127}, /* first range */
134 {.min = 256, .max = 383}, /* second range */
135 {.min = 512, .max = 639}, /* third range */
136 {.min = 768, .max = 895} /* fourth range */
137 };
138
139 ret_val = adjust_smc_value(setup, range_setup, ARRAY_SIZE(range_setup));
140 if (ret_val < 0)
141 dev_warn(dev, "maximal SMC Setup value\n");
142 else
143 *cycle += ret_val;
144
145 ret_val = adjust_smc_value(pulse, range_pulse, ARRAY_SIZE(range_pulse));
146 if (ret_val < 0)
147 dev_warn(dev, "maximal SMC Pulse value\n");
148 else
149 *cycle += ret_val;
150
151 ret_val = adjust_smc_value(cycle, range_cycle, ARRAY_SIZE(range_cycle));
152 if (ret_val < 0)
153 dev_warn(dev, "maximal SMC Cycle value\n");
154
155 *cs_pulse = *cycle;
156 if (*cs_pulse > CS_PULSE_MAXIMUM) {
157 dev_err(dev, "unable to calculate valid SMC settings\n");
158 return -ER_SMC_CALC;
159 }
160
161 ret_val = adjust_smc_value(cs_pulse, range_pulse,
162 ARRAY_SIZE(range_pulse));
163 if (ret_val < 0) {
164 dev_warn(dev, "maximal SMC CS Pulse value\n");
165 } else if (ret_val != 0) {
166 *cycle = *cs_pulse;
167 dev_warn(dev, "SMC Cycle extended\n");
168 err = -ER_SMC_RECALC;
169 }
170
171 return err;
172}
173
174/**
175 * to_smc_format - convert values into SMC format
176 * @setup: SETUP value of SMC Setup Register
177 * @pulse: PULSE value of SMC Pulse Register
178 * @cycle: CYCLE value of SMC Cycle Register
179 * @cs_pulse: NCS_PULSE value of SMC Pulse Register
180 */
181static void to_smc_format(int *setup, int *pulse, int *cycle, int *cs_pulse)
182{
183 *setup = (*setup & 0x1f) | ((*setup & 0x80) >> 2);
184 *pulse = (*pulse & 0x3f) | ((*pulse & 0x100) >> 2);
185 *cycle = (*cycle & 0x7f) | ((*cycle & 0x300) >> 1);
186 *cs_pulse = (*cs_pulse & 0x3f) | ((*cs_pulse & 0x100) >> 2);
187}
188
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400189static unsigned long calc_mck_cycles(unsigned long ns, unsigned long mck_hz)
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400190{
191 unsigned long mul;
192
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400193 /*
194 * cycles = x [nsec] * f [Hz] / 10^9 [ns in sec] =
195 * x * (f / 1_000_000_000) =
196 * x * ((f * 65536) / 1_000_000_000) / 65536 =
197 * x * (((f / 10_000) * 65536) / 100_000) / 65536 =
198 */
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400199
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400200 mul = (mck_hz / 10000) << 16;
201 mul /= 100000;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400202
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400203 return (ns * mul + 65536) >> 16; /* rounding */
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400204}
205
Igor Plyatov01442612011-05-12 22:15:51 +0400206/**
207 * set_smc_timing - SMC timings setup.
208 * @dev: device
209 * @info: AT91 IDE info
210 * @ata: ATA timings
211 *
212 * Its assumed that write timings are same as read timings,
213 * cs_setup = 0 and cs_pulse = cycle.
214 */
215static void set_smc_timing(struct device *dev, struct ata_device *adev,
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400216 struct at91_ide_info *info, const struct ata_timing *ata)
217{
Igor Plyatov01442612011-05-12 22:15:51 +0400218 int ret = 0;
219 int use_iordy;
220 unsigned int t6z; /* data tristate time in ns */
221 unsigned int cycle; /* SMC Cycle width in MCK ticks */
222 unsigned int setup; /* SMC Setup width in MCK ticks */
223 unsigned int pulse; /* CFIOR and CFIOW pulse width in MCK ticks */
Igor Plyatov01442612011-05-12 22:15:51 +0400224 unsigned int cs_pulse; /* CS4 or CS5 pulse width in MCK ticks*/
225 unsigned int tdf_cycles; /* SMC TDF MCK ticks */
226 unsigned long mck_hz; /* MCK frequency in Hz */
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400227
Igor Plyatov01442612011-05-12 22:15:51 +0400228 t6z = (ata->mode < XFER_PIO_5) ? 30 : 20;
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400229 mck_hz = clk_get_rate(info->mck);
Igor Plyatov01442612011-05-12 22:15:51 +0400230 cycle = calc_mck_cycles(ata->cyc8b, mck_hz);
231 setup = calc_mck_cycles(ata->setup, mck_hz);
232 pulse = calc_mck_cycles(ata->act8b, mck_hz);
233 tdf_cycles = calc_mck_cycles(t6z, mck_hz);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400234
Igor Plyatov01442612011-05-12 22:15:51 +0400235 do {
236 ret = calc_smc_vals(dev, &setup, &pulse, &cycle, &cs_pulse);
237 } while (ret == -ER_SMC_RECALC);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400238
Igor Plyatov01442612011-05-12 22:15:51 +0400239 if (ret == -ER_SMC_CALC)
240 dev_err(dev, "Interface may not operate correctly\n");
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400241
Igor Plyatov01442612011-05-12 22:15:51 +0400242 dev_dbg(dev, "SMC Setup=%u, Pulse=%u, Cycle=%u, CS Pulse=%u\n",
243 setup, pulse, cycle, cs_pulse);
244 to_smc_format(&setup, &pulse, &cycle, &cs_pulse);
245 /* disable or enable waiting for IORDY signal */
246 use_iordy = ata_pio_need_iordy(adev);
247 if (use_iordy)
248 info->mode |= AT91_SMC_EXNWMODE_READY;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400249
Igor Plyatov01442612011-05-12 22:15:51 +0400250 if (tdf_cycles > 15) {
251 tdf_cycles = 15;
252 dev_warn(dev, "maximal SMC TDF Cycles value\n");
Igor Plyatov9719b8f2011-03-28 16:56:15 +0400253 }
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400254
Igor Plyatov01442612011-05-12 22:15:51 +0400255 dev_dbg(dev, "Use IORDY=%u, TDF Cycles=%u\n", use_iordy, tdf_cycles);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400256
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100257 regmap_fields_write(fields.setup, info->cs,
258 AT91SAM9_SMC_NRDSETUP(setup) |
259 AT91SAM9_SMC_NWESETUP(setup) |
260 AT91SAM9_SMC_NCS_NRDSETUP(0) |
261 AT91SAM9_SMC_NCS_WRSETUP(0));
262 regmap_fields_write(fields.pulse, info->cs,
263 AT91SAM9_SMC_NRDPULSE(pulse) |
264 AT91SAM9_SMC_NWEPULSE(pulse) |
265 AT91SAM9_SMC_NCS_NRDPULSE(cs_pulse) |
266 AT91SAM9_SMC_NCS_WRPULSE(cs_pulse));
267 regmap_fields_write(fields.cycle, info->cs,
268 AT91SAM9_SMC_NRDCYCLE(cycle) |
269 AT91SAM9_SMC_NWECYCLE(cycle));
270 regmap_fields_write(fields.mode, info->cs, info->mode |
271 AT91_SMC_TDF_(tdf_cycles));
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400272}
273
274static void pata_at91_set_piomode(struct ata_port *ap, struct ata_device *adev)
275{
276 struct at91_ide_info *info = ap->host->private_data;
277 struct ata_timing timing;
278 int ret;
279
280 /* Compute ATA timing and set it to SMC */
281 ret = ata_timing_compute(adev, adev->pio_mode, &timing, 1000, 0);
282 if (ret) {
Jeff Garzik429e3862010-02-04 01:09:54 -0500283 dev_warn(ap->dev, "Failed to compute ATA timing %d, "
284 "set PIO_0 timing\n", ret);
Igor Plyatov01442612011-05-12 22:15:51 +0400285 timing = *ata_timing_find_mode(XFER_PIO_0);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400286 }
Igor Plyatov01442612011-05-12 22:15:51 +0400287 set_smc_timing(ap->dev, adev, info, &timing);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400288}
289
290static unsigned int pata_at91_data_xfer_noirq(struct ata_device *dev,
291 unsigned char *buf, unsigned int buflen, int rw)
292{
293 struct at91_ide_info *info = dev->link->ap->host->private_data;
294 unsigned int consumed;
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100295 unsigned int mode;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400296 unsigned long flags;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400297
298 local_irq_save(flags);
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100299 regmap_fields_read(fields.mode, info->cs, &mode);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400300
301 /* set 16bit mode before writing data */
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100302 regmap_fields_write(fields.mode, info->cs, (mode & ~AT91_SMC_DBW) |
303 AT91_SMC_DBW_16);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400304
305 consumed = ata_sff_data_xfer(dev, buf, buflen, rw);
306
307 /* restore 8bit mode after data is written */
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100308 regmap_fields_write(fields.mode, info->cs, (mode & ~AT91_SMC_DBW) |
309 AT91_SMC_DBW_8);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400310
311 local_irq_restore(flags);
312 return consumed;
313}
314
315static struct scsi_host_template pata_at91_sht = {
316 ATA_PIO_SHT(DRV_NAME),
317};
318
319static struct ata_port_operations pata_at91_port_ops = {
320 .inherits = &ata_sff_port_ops,
321
322 .sff_data_xfer = pata_at91_data_xfer_noirq,
323 .set_piomode = pata_at91_set_piomode,
324 .cable_detect = ata_cable_40wire,
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400325};
326
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100327static int at91sam9_smc_fields_init(struct device *dev)
328{
329 struct reg_field field = REG_FIELD(0, 0, 31);
330
331 field.id_size = 8;
332 field.id_offset = AT91SAM9_SMC_GENERIC_BLK_SZ;
333
334 field.reg = AT91SAM9_SMC_SETUP(AT91SAM9_SMC_GENERIC);
335 fields.setup = devm_regmap_field_alloc(dev, smc, field);
336 if (IS_ERR(fields.setup))
337 return PTR_ERR(fields.setup);
338
339 field.reg = AT91SAM9_SMC_PULSE(AT91SAM9_SMC_GENERIC);
340 fields.pulse = devm_regmap_field_alloc(dev, smc, field);
341 if (IS_ERR(fields.pulse))
342 return PTR_ERR(fields.pulse);
343
344 field.reg = AT91SAM9_SMC_CYCLE(AT91SAM9_SMC_GENERIC);
345 fields.cycle = devm_regmap_field_alloc(dev, smc, field);
346 if (IS_ERR(fields.cycle))
347 return PTR_ERR(fields.cycle);
348
349 field.reg = AT91SAM9_SMC_MODE(AT91SAM9_SMC_GENERIC);
350 fields.mode = devm_regmap_field_alloc(dev, smc, field);
351 if (IS_ERR(fields.mode))
352 return PTR_ERR(fields.mode);
353
354 return 0;
355}
356
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800357static int pata_at91_probe(struct platform_device *pdev)
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400358{
Jingoo Han61b8c342013-07-30 17:16:05 +0900359 struct at91_cf_data *board = dev_get_platdata(&pdev->dev);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400360 struct device *dev = &pdev->dev;
361 struct at91_ide_info *info;
362 struct resource *mem_res;
363 struct ata_host *host;
364 struct ata_port *ap;
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400365
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400366 int irq_flags = 0;
367 int irq = 0;
368 int ret;
369
370 /* get platform resources: IO/CTL memories and irq/rst pins */
371
372 if (pdev->num_resources != 1) {
373 dev_err(&pdev->dev, "invalid number of resources\n");
374 return -EINVAL;
375 }
376
377 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
378
379 if (!mem_res) {
380 dev_err(dev, "failed to get mem resource\n");
381 return -EINVAL;
382 }
383
384 irq = board->irq_pin;
385
Alexandre Belloni5a90f8d2015-03-16 12:37:58 +0100386 smc = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "atmel,smc");
387 if (IS_ERR(smc))
388 return PTR_ERR(smc);
389
390 ret = at91sam9_smc_fields_init(dev);
391 if (ret < 0)
392 return ret;
393
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400394 /* init ata host */
395
396 host = ata_host_alloc(dev, 1);
397
398 if (!host)
399 return -ENOMEM;
400
401 ap = host->ports[0];
402 ap->ops = &pata_at91_port_ops;
403 ap->flags |= ATA_FLAG_SLAVE_POSS;
404 ap->pio_mask = ATA_PIO4;
405
Jean-Christophe PLAGNIOL-VILLARD477c87e2011-09-19 15:29:53 +0800406 if (!gpio_is_valid(irq)) {
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400407 ap->flags |= ATA_FLAG_PIO_POLLING;
408 ata_port_desc(ap, "no IRQ, using PIO polling");
409 }
410
Tejun Heodf9eba82009-08-07 11:15:20 +0900411 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400412
413 if (!info) {
414 dev_err(dev, "failed to allocate memory for private data\n");
415 return -ENOMEM;
416 }
417
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400418 info->mck = clk_get(NULL, "mck");
419
420 if (IS_ERR(info->mck)) {
421 dev_err(dev, "failed to get access to mck clock\n");
422 return -ENODEV;
423 }
424
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400425 info->cs = board->chipselect;
426 info->mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
427 AT91_SMC_EXNWMODE_READY | AT91_SMC_BAT_SELECT |
428 AT91_SMC_DBW_8 | AT91_SMC_TDF_(0);
429
430 info->ide_addr = devm_ioremap(dev,
431 mem_res->start + CF_IDE_OFFSET, CF_IDE_RES_SIZE);
432
433 if (!info->ide_addr) {
434 dev_err(dev, "failed to map IO base\n");
435 ret = -ENOMEM;
Tejun Heodf9eba82009-08-07 11:15:20 +0900436 goto err_put;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400437 }
438
439 info->alt_addr = devm_ioremap(dev,
440 mem_res->start + CF_ALT_IDE_OFFSET, CF_IDE_RES_SIZE);
441
442 if (!info->alt_addr) {
443 dev_err(dev, "failed to map CTL base\n");
444 ret = -ENOMEM;
Tejun Heodf9eba82009-08-07 11:15:20 +0900445 goto err_put;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400446 }
447
448 ap->ioaddr.cmd_addr = info->ide_addr;
449 ap->ioaddr.ctl_addr = info->alt_addr + 0x06;
450 ap->ioaddr.altstatus_addr = ap->ioaddr.ctl_addr;
451
452 ata_sff_std_ports(&ap->ioaddr);
453
454 ata_port_desc(ap, "mmio cmd 0x%llx ctl 0x%llx",
455 (unsigned long long)mem_res->start + CF_IDE_OFFSET,
456 (unsigned long long)mem_res->start + CF_ALT_IDE_OFFSET);
457
458 host->private_data = info;
459
Bartlomiej Zolnierkiewicz27aa64b2014-03-31 19:51:14 +0200460 ret = ata_host_activate(host, gpio_is_valid(irq) ? gpio_to_irq(irq) : 0,
461 gpio_is_valid(irq) ? ata_sff_interrupt : NULL,
462 irq_flags, &pata_at91_sht);
463 if (ret)
464 goto err_put;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400465
Bartlomiej Zolnierkiewicz27aa64b2014-03-31 19:51:14 +0200466 return 0;
Sergei Shtylyov8e3bfdb2011-10-10 19:09:17 +0400467
Tejun Heodf9eba82009-08-07 11:15:20 +0900468err_put:
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400469 clk_put(info->mck);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400470 return ret;
471}
472
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800473static int pata_at91_remove(struct platform_device *pdev)
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400474{
Jingoo Hand89995d2013-05-23 19:41:21 +0900475 struct ata_host *host = platform_get_drvdata(pdev);
Julia Lawall1e1f4212009-07-11 09:49:48 +0200476 struct at91_ide_info *info;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400477
478 if (!host)
479 return 0;
Julia Lawall1e1f4212009-07-11 09:49:48 +0200480 info = host->private_data;
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400481
482 ata_host_detach(host);
483
484 if (!info)
485 return 0;
486
Sergey Matyukevich7d084d92009-07-16 22:38:55 +0400487 clk_put(info->mck);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400488
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400489 return 0;
490}
491
492static struct platform_driver pata_at91_driver = {
493 .probe = pata_at91_probe,
Greg Kroah-Hartman0ec24912012-12-21 13:19:58 -0800494 .remove = pata_at91_remove,
Igor Plyatov01442612011-05-12 22:15:51 +0400495 .driver = {
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400496 .name = DRV_NAME,
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400497 },
498};
499
Axel Lin99c8ea32011-11-27 14:44:26 +0800500module_platform_driver(pata_at91_driver);
Sergey Matyukevich918d7b72009-06-19 08:27:40 +0400501
502MODULE_LICENSE("GPL");
503MODULE_DESCRIPTION("Driver for CF in True IDE mode on AT91SAM9260 SoC");
504MODULE_AUTHOR("Matyukevich Sergey");
505MODULE_VERSION(DRV_VERSION);
506