Blame view

drivers/ata/pata_at91.c 13.3 KB
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
1
2
3
4
5
  /*
   * PATA driver for AT91SAM9260 Static Memory Controller
   * with CompactFlash interface in True IDE mode
   *
   * Copyright (C) 2009 Matyukevich Sergey
0144261fa   Igor Plyatov   pata_at91: SMC se...
6
   *               2011 Igor Plyatov
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
   *
   * Based on:
   *      * generic platform driver by Paul Mundt: drivers/ata/pata_platform.c
   *      * pata_at32 driver by Kristoffer Nyborg Gregertsen
   *      * at91_ide driver by Stanislaw Gruszka
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2
   * as published by the Free Software Foundation.
   *
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
21
  #include <linux/blkdev.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
22
  #include <linux/gfp.h>
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
23
24
25
26
  #include <scsi/scsi_host.h>
  #include <linux/ata.h>
  #include <linux/clk.h>
  #include <linux/libata.h>
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
27
28
  #include <linux/mfd/syscon.h>
  #include <linux/mfd/syscon/atmel-smc.h>
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
29
30
  #include <linux/platform_device.h>
  #include <linux/ata_platform.h>
bcd2360c1   Jean-Christophe PLAGNIOL-VILLARD   arm: at91: move p...
31
  #include <linux/platform_data/atmel.h>
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
32
  #include <linux/regmap.h>
288e6eaa0   Bjorn Helgaas   gpio: Include lin...
33
  #include <linux/gpio.h>
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
34

0144261fa   Igor Plyatov   pata_at91: SMC se...
35
36
  #define DRV_NAME		"pata_at91"
  #define DRV_VERSION		"0.3"
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
37

0144261fa   Igor Plyatov   pata_at91: SMC se...
38
39
40
41
42
43
  #define CF_IDE_OFFSET		0x00c00000
  #define CF_ALT_IDE_OFFSET	0x00e00000
  #define CF_IDE_RES_SIZE		0x08
  #define CS_PULSE_MAXIMUM	319
  #define ER_SMC_CALC		1
  #define ER_SMC_RECALC		2
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
44
45
46
47
  
  struct at91_ide_info {
  	unsigned long mode;
  	unsigned int cs;
7d084d96f   Sergey Matyukevich   libata: Updates a...
48
  	struct clk *mck;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
49
50
51
  	void __iomem *ide_addr;
  	void __iomem *alt_addr;
  };
0144261fa   Igor Plyatov   pata_at91: SMC se...
52
53
54
55
56
57
  /**
   * struct smc_range - range of valid values for SMC register.
   */
  struct smc_range {
  	int min;
  	int max;
792d37af3   Igor Plyatov   ata: pata_at91.c ...
58
  };
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
59

5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
60
61
62
63
64
65
66
67
  struct regmap *smc;
  
  struct at91sam9_smc_generic_fields {
  	struct regmap_field *setup;
  	struct regmap_field *pulse;
  	struct regmap_field *cycle;
  	struct regmap_field *mode;
  } fields;
0144261fa   Igor Plyatov   pata_at91: SMC se...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  /**
   * adjust_smc_value - adjust value for one of SMC registers.
   * @value: adjusted value
   * @range: array of SMC ranges with valid values
   * @size: SMC ranges array size
   *
   * This returns the difference between input and output value or negative
   * in case of invalid input value.
   * If negative returned, then output value = maximal possible from ranges.
   */
  static int adjust_smc_value(int *value, struct smc_range *range, int size)
  {
  	int maximum = (range + size - 1)->max;
  	int remainder;
  
  	do {
  		if (*value < range->min) {
  			remainder = range->min - *value;
  			*value = range->min; /* nearest valid value */
  			return remainder;
  		} else if ((range->min <= *value) && (*value <= range->max))
  			return 0;
  
  		range++;
  	} while (--size);
  	*value = maximum;
  
  	return -1; /* invalid value */
  }
  
  /**
   * calc_smc_vals - calculate SMC register values
   * @dev: ATA device
   * @setup: SMC_SETUP register value
   * @pulse: SMC_PULSE register value
   * @cycle: SMC_CYCLE register value
   *
   * This returns negative in case of invalid values for SMC registers:
   * -ER_SMC_RECALC - recalculation required for SMC values,
   * -ER_SMC_CALC - calculation failed (invalid input values).
   *
   * SMC use special coding scheme, see "Coding and Range of Timing
   * Parameters" table from AT91SAM9 datasheets.
   *
   *	SMC_SETUP = 128*setup[5] + setup[4:0]
   *	SMC_PULSE = 256*pulse[6] + pulse[5:0]
   *	SMC_CYCLE = 256*cycle[8:7] + cycle[6:0]
   */
  static int calc_smc_vals(struct device *dev,
  		int *setup, int *pulse, int *cycle, int *cs_pulse)
  {
  	int ret_val;
  	int err = 0;
  	struct smc_range range_setup[] = {	/* SMC_SETUP valid values */
  		{.min = 0,	.max = 31},	/* first  range */
  		{.min = 128,	.max = 159}	/* second range */
  	};
  	struct smc_range range_pulse[] = {	/* SMC_PULSE valid values */
  		{.min = 0,	.max = 63},	/* first  range */
  		{.min = 256,	.max = 319}	/* second range */
  	};
  	struct smc_range range_cycle[] = {	/* SMC_CYCLE valid values */
  		{.min = 0,	.max = 127},	/* first  range */
  		{.min = 256,	.max = 383},	/* second range */
  		{.min = 512,	.max = 639},	/* third  range */
  		{.min = 768,	.max = 895}	/* fourth range */
  	};
  
  	ret_val = adjust_smc_value(setup, range_setup, ARRAY_SIZE(range_setup));
  	if (ret_val < 0)
  		dev_warn(dev, "maximal SMC Setup value
  ");
  	else
  		*cycle += ret_val;
  
  	ret_val = adjust_smc_value(pulse, range_pulse, ARRAY_SIZE(range_pulse));
  	if (ret_val < 0)
  		dev_warn(dev, "maximal SMC Pulse value
  ");
  	else
  		*cycle += ret_val;
  
  	ret_val = adjust_smc_value(cycle, range_cycle, ARRAY_SIZE(range_cycle));
  	if (ret_val < 0)
  		dev_warn(dev, "maximal SMC Cycle value
  ");
  
  	*cs_pulse = *cycle;
  	if (*cs_pulse > CS_PULSE_MAXIMUM) {
  		dev_err(dev, "unable to calculate valid SMC settings
  ");
  		return -ER_SMC_CALC;
  	}
  
  	ret_val = adjust_smc_value(cs_pulse, range_pulse,
  					ARRAY_SIZE(range_pulse));
  	if (ret_val < 0) {
  		dev_warn(dev, "maximal SMC CS Pulse value
  ");
  	} else if (ret_val != 0) {
  		*cycle = *cs_pulse;
  		dev_warn(dev, "SMC Cycle extended
  ");
  		err = -ER_SMC_RECALC;
  	}
  
  	return err;
  }
  
  /**
   * to_smc_format - convert values into SMC format
   * @setup: SETUP value of SMC Setup Register
   * @pulse: PULSE value of SMC Pulse Register
   * @cycle: CYCLE value of SMC Cycle Register
   * @cs_pulse: NCS_PULSE value of SMC Pulse Register
   */
  static void to_smc_format(int *setup, int *pulse, int *cycle, int *cs_pulse)
  {
  	*setup = (*setup & 0x1f) | ((*setup & 0x80) >> 2);
  	*pulse = (*pulse & 0x3f) | ((*pulse & 0x100) >> 2);
  	*cycle = (*cycle & 0x7f) | ((*cycle & 0x300) >> 1);
  	*cs_pulse = (*cs_pulse & 0x3f) | ((*cs_pulse & 0x100) >> 2);
  }
7d084d96f   Sergey Matyukevich   libata: Updates a...
191
  static unsigned long calc_mck_cycles(unsigned long ns, unsigned long mck_hz)
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
192
193
  {
  	unsigned long mul;
7d084d96f   Sergey Matyukevich   libata: Updates a...
194
195
196
197
198
199
  	/*
  	* cycles = x [nsec] * f [Hz] / 10^9 [ns in sec] =
  	*     x * (f / 1_000_000_000) =
  	*     x * ((f * 65536) / 1_000_000_000) / 65536 =
  	*     x * (((f / 10_000) * 65536) / 100_000) / 65536 =
  	*/
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
200

7d084d96f   Sergey Matyukevich   libata: Updates a...
201
202
  	mul = (mck_hz / 10000) << 16;
  	mul /= 100000;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
203

7d084d96f   Sergey Matyukevich   libata: Updates a...
204
  	return (ns * mul + 65536) >> 16;    /* rounding */
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
205
  }
0144261fa   Igor Plyatov   pata_at91: SMC se...
206
207
208
209
210
211
212
213
214
215
  /**
   * set_smc_timing - SMC timings setup.
   * @dev: device
   * @info: AT91 IDE info
   * @ata: ATA timings
   *
   * Its assumed that write timings are same as read timings,
   * cs_setup = 0 and cs_pulse = cycle.
   */
  static void set_smc_timing(struct device *dev, struct ata_device *adev,
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
216
217
  		struct at91_ide_info *info, const struct ata_timing *ata)
  {
0144261fa   Igor Plyatov   pata_at91: SMC se...
218
219
220
221
222
223
  	int ret = 0;
  	int use_iordy;
  	unsigned int t6z;         /* data tristate time in ns */
  	unsigned int cycle;       /* SMC Cycle width in MCK ticks */
  	unsigned int setup;       /* SMC Setup width in MCK ticks */
  	unsigned int pulse;       /* CFIOR and CFIOW pulse width in MCK ticks */
0144261fa   Igor Plyatov   pata_at91: SMC se...
224
225
226
227
228
  	unsigned int cs_pulse;    /* CS4 or CS5 pulse width in MCK ticks*/
  	unsigned int tdf_cycles;  /* SMC TDF MCK ticks */
  	unsigned long mck_hz;     /* MCK frequency in Hz */
  
  	t6z = (ata->mode < XFER_PIO_5) ? 30 : 20;
7d084d96f   Sergey Matyukevich   libata: Updates a...
229
  	mck_hz = clk_get_rate(info->mck);
0144261fa   Igor Plyatov   pata_at91: SMC se...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  	cycle = calc_mck_cycles(ata->cyc8b, mck_hz);
  	setup = calc_mck_cycles(ata->setup, mck_hz);
  	pulse = calc_mck_cycles(ata->act8b, mck_hz);
  	tdf_cycles = calc_mck_cycles(t6z, mck_hz);
  
  	do {
  		ret = calc_smc_vals(dev, &setup, &pulse, &cycle, &cs_pulse);
  	} while (ret == -ER_SMC_RECALC);
  
  	if (ret == -ER_SMC_CALC)
  		dev_err(dev, "Interface may not operate correctly
  ");
  
  	dev_dbg(dev, "SMC Setup=%u, Pulse=%u, Cycle=%u, CS Pulse=%u
  ",
  		setup, pulse, cycle, cs_pulse);
  	to_smc_format(&setup, &pulse, &cycle, &cs_pulse);
  	/* disable or enable waiting for IORDY signal */
  	use_iordy = ata_pio_need_iordy(adev);
  	if (use_iordy)
  		info->mode |= AT91_SMC_EXNWMODE_READY;
  
  	if (tdf_cycles > 15) {
  		tdf_cycles = 15;
  		dev_warn(dev, "maximal SMC TDF Cycles value
  ");
9719b8f5b   Igor Plyatov   ata: pata_at91.c ...
256
  	}
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
257

0144261fa   Igor Plyatov   pata_at91: SMC se...
258
259
  	dev_dbg(dev, "Use IORDY=%u, TDF Cycles=%u
  ", use_iordy, tdf_cycles);
88dcde98a   Jean-Christophe PLAGNIOL-VILLARD   pata/at91: use ne...
260

5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
  	regmap_fields_write(fields.setup, info->cs,
  			    AT91SAM9_SMC_NRDSETUP(setup) |
  			    AT91SAM9_SMC_NWESETUP(setup) |
  			    AT91SAM9_SMC_NCS_NRDSETUP(0) |
  			    AT91SAM9_SMC_NCS_WRSETUP(0));
  	regmap_fields_write(fields.pulse, info->cs,
  			    AT91SAM9_SMC_NRDPULSE(pulse) |
  			    AT91SAM9_SMC_NWEPULSE(pulse) |
  			    AT91SAM9_SMC_NCS_NRDPULSE(cs_pulse) |
  			    AT91SAM9_SMC_NCS_WRPULSE(cs_pulse));
  	regmap_fields_write(fields.cycle, info->cs,
  			    AT91SAM9_SMC_NRDCYCLE(cycle) |
  			    AT91SAM9_SMC_NWECYCLE(cycle));
  	regmap_fields_write(fields.mode, info->cs, info->mode |
  			    AT91_SMC_TDF_(tdf_cycles));
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
276
277
278
279
280
281
282
283
284
285
286
  }
  
  static void pata_at91_set_piomode(struct ata_port *ap, struct ata_device *adev)
  {
  	struct at91_ide_info *info = ap->host->private_data;
  	struct ata_timing timing;
  	int ret;
  
  	/* Compute ATA timing and set it to SMC */
  	ret = ata_timing_compute(adev, adev->pio_mode, &timing, 1000, 0);
  	if (ret) {
429e3861f   Jeff Garzik   [libata] pata_at9...
287
288
289
  		dev_warn(ap->dev, "Failed to compute ATA timing %d, "
  			 "set PIO_0 timing
  ", ret);
0144261fa   Igor Plyatov   pata_at91: SMC se...
290
  		timing = *ata_timing_find_mode(XFER_PIO_0);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
291
  	}
0144261fa   Igor Plyatov   pata_at91: SMC se...
292
  	set_smc_timing(ap->dev, adev, info, &timing);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
293
294
295
296
297
298
299
  }
  
  static unsigned int pata_at91_data_xfer_noirq(struct ata_device *dev,
  		unsigned char *buf, unsigned int buflen, int rw)
  {
  	struct at91_ide_info *info = dev->link->ap->host->private_data;
  	unsigned int consumed;
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
300
  	unsigned int mode;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
301
  	unsigned long flags;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
302
303
  
  	local_irq_save(flags);
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
304
  	regmap_fields_read(fields.mode, info->cs, &mode);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
305
306
  
  	/* set 16bit mode before writing data */
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
307
308
  	regmap_fields_write(fields.mode, info->cs, (mode & ~AT91_SMC_DBW) |
  			    AT91_SMC_DBW_16);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
309
310
311
312
  
  	consumed = ata_sff_data_xfer(dev, buf, buflen, rw);
  
  	/* restore 8bit mode after data is written */
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
313
314
  	regmap_fields_write(fields.mode, info->cs, (mode & ~AT91_SMC_DBW) |
  			    AT91_SMC_DBW_8);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
  
  	local_irq_restore(flags);
  	return consumed;
  }
  
  static struct scsi_host_template pata_at91_sht = {
  	ATA_PIO_SHT(DRV_NAME),
  };
  
  static struct ata_port_operations pata_at91_port_ops = {
  	.inherits	= &ata_sff_port_ops,
  
  	.sff_data_xfer	= pata_at91_data_xfer_noirq,
  	.set_piomode	= pata_at91_set_piomode,
  	.cable_detect	= ata_cable_40wire,
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
330
  };
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
  static int at91sam9_smc_fields_init(struct device *dev)
  {
  	struct reg_field field = REG_FIELD(0, 0, 31);
  
  	field.id_size = 8;
  	field.id_offset = AT91SAM9_SMC_GENERIC_BLK_SZ;
  
  	field.reg = AT91SAM9_SMC_SETUP(AT91SAM9_SMC_GENERIC);
  	fields.setup = devm_regmap_field_alloc(dev, smc, field);
  	if (IS_ERR(fields.setup))
  		return PTR_ERR(fields.setup);
  
  	field.reg = AT91SAM9_SMC_PULSE(AT91SAM9_SMC_GENERIC);
  	fields.pulse = devm_regmap_field_alloc(dev, smc, field);
  	if (IS_ERR(fields.pulse))
  		return PTR_ERR(fields.pulse);
  
  	field.reg = AT91SAM9_SMC_CYCLE(AT91SAM9_SMC_GENERIC);
  	fields.cycle = devm_regmap_field_alloc(dev, smc, field);
  	if (IS_ERR(fields.cycle))
  		return PTR_ERR(fields.cycle);
  
  	field.reg = AT91SAM9_SMC_MODE(AT91SAM9_SMC_GENERIC);
  	fields.mode = devm_regmap_field_alloc(dev, smc, field);
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
355

70a19b7e4   Harman Kalra   pata_at91: Use PT...
356
  	return PTR_ERR_OR_ZERO(fields.mode);
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
357
  }
0ec249146   Greg Kroah-Hartman   Drivers: ata: rem...
358
  static int pata_at91_probe(struct platform_device *pdev)
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
359
  {
61b8c345a   Jingoo Han   ata: use dev_get_...
360
  	struct at91_cf_data *board = dev_get_platdata(&pdev->dev);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
361
362
363
364
365
  	struct device *dev = &pdev->dev;
  	struct at91_ide_info *info;
  	struct resource *mem_res;
  	struct ata_host *host;
  	struct ata_port *ap;
7d084d96f   Sergey Matyukevich   libata: Updates a...
366

918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
  	int irq_flags = 0;
  	int irq = 0;
  	int ret;
  
  	/*  get platform resources: IO/CTL memories and irq/rst pins */
  
  	if (pdev->num_resources != 1) {
  		dev_err(&pdev->dev, "invalid number of resources
  ");
  		return -EINVAL;
  	}
  
  	mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  
  	if (!mem_res) {
  		dev_err(dev, "failed to get mem resource
  ");
  		return -EINVAL;
  	}
  
  	irq = board->irq_pin;
5a90f8d3b   Alexandre Belloni   ata: at91: use sy...
388
389
390
391
392
393
394
  	smc = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "atmel,smc");
  	if (IS_ERR(smc))
  		return PTR_ERR(smc);
  
  	ret = at91sam9_smc_fields_init(dev);
  	if (ret < 0)
  		return ret;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
395
396
397
398
399
400
401
402
403
404
405
  	/* init ata host */
  
  	host = ata_host_alloc(dev, 1);
  
  	if (!host)
  		return -ENOMEM;
  
  	ap = host->ports[0];
  	ap->ops = &pata_at91_port_ops;
  	ap->flags |= ATA_FLAG_SLAVE_POSS;
  	ap->pio_mask = ATA_PIO4;
477c87e90   Jean-Christophe PLAGNIOL-VILLARD   ARM: at91/pata: u...
406
  	if (!gpio_is_valid(irq)) {
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
407
408
409
  		ap->flags |= ATA_FLAG_PIO_POLLING;
  		ata_port_desc(ap, "no IRQ, using PIO polling");
  	}
df9eba8c9   Tejun Heo   pata_at91: fix re...
410
  	info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
411
412
413
414
415
416
  
  	if (!info) {
  		dev_err(dev, "failed to allocate memory for private data
  ");
  		return -ENOMEM;
  	}
7d084d96f   Sergey Matyukevich   libata: Updates a...
417
418
419
420
421
422
423
  	info->mck = clk_get(NULL, "mck");
  
  	if (IS_ERR(info->mck)) {
  		dev_err(dev, "failed to get access to mck clock
  ");
  		return -ENODEV;
  	}
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
424
425
426
427
428
429
430
431
432
433
434
435
  	info->cs    = board->chipselect;
  	info->mode  = AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
  		AT91_SMC_EXNWMODE_READY | AT91_SMC_BAT_SELECT |
  		AT91_SMC_DBW_8 | AT91_SMC_TDF_(0);
  
  	info->ide_addr = devm_ioremap(dev,
  			mem_res->start + CF_IDE_OFFSET, CF_IDE_RES_SIZE);
  
  	if (!info->ide_addr) {
  		dev_err(dev, "failed to map IO base
  ");
  		ret = -ENOMEM;
df9eba8c9   Tejun Heo   pata_at91: fix re...
436
  		goto err_put;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
437
438
439
440
441
442
443
444
445
  	}
  
  	info->alt_addr = devm_ioremap(dev,
  			mem_res->start + CF_ALT_IDE_OFFSET, CF_IDE_RES_SIZE);
  
  	if (!info->alt_addr) {
  		dev_err(dev, "failed to map CTL base
  ");
  		ret = -ENOMEM;
df9eba8c9   Tejun Heo   pata_at91: fix re...
446
  		goto err_put;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
447
448
449
450
451
452
453
454
455
456
457
458
459
  	}
  
  	ap->ioaddr.cmd_addr = info->ide_addr;
  	ap->ioaddr.ctl_addr = info->alt_addr + 0x06;
  	ap->ioaddr.altstatus_addr = ap->ioaddr.ctl_addr;
  
  	ata_sff_std_ports(&ap->ioaddr);
  
  	ata_port_desc(ap, "mmio cmd 0x%llx ctl 0x%llx",
  			(unsigned long long)mem_res->start + CF_IDE_OFFSET,
  			(unsigned long long)mem_res->start + CF_ALT_IDE_OFFSET);
  
  	host->private_data = info;
27aa64b9d   Bartlomiej Zolnierkiewicz   pata_at91: fix at...
460
461
462
463
464
  	ret = ata_host_activate(host, gpio_is_valid(irq) ? gpio_to_irq(irq) : 0,
  				gpio_is_valid(irq) ? ata_sff_interrupt : NULL,
  				irq_flags, &pata_at91_sht);
  	if (ret)
  		goto err_put;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
465

27aa64b9d   Bartlomiej Zolnierkiewicz   pata_at91: fix at...
466
  	return 0;
8e3bfdb95   Sergei Shtylyov   pata_at91: call c...
467

df9eba8c9   Tejun Heo   pata_at91: fix re...
468
  err_put:
7d084d96f   Sergey Matyukevich   libata: Updates a...
469
  	clk_put(info->mck);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
470
471
  	return ret;
  }
0ec249146   Greg Kroah-Hartman   Drivers: ata: rem...
472
  static int pata_at91_remove(struct platform_device *pdev)
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
473
  {
d89995db5   Jingoo Han   ata: use platform...
474
  	struct ata_host *host = platform_get_drvdata(pdev);
1e1f421a8   Julia Lawall   drivers/ata: Move...
475
  	struct at91_ide_info *info;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
476
477
478
  
  	if (!host)
  		return 0;
1e1f421a8   Julia Lawall   drivers/ata: Move...
479
  	info = host->private_data;
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
480
481
482
483
484
  
  	ata_host_detach(host);
  
  	if (!info)
  		return 0;
7d084d96f   Sergey Matyukevich   libata: Updates a...
485
  	clk_put(info->mck);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
486

918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
487
488
489
490
491
  	return 0;
  }
  
  static struct platform_driver pata_at91_driver = {
  	.probe		= pata_at91_probe,
0ec249146   Greg Kroah-Hartman   Drivers: ata: rem...
492
  	.remove		= pata_at91_remove,
0144261fa   Igor Plyatov   pata_at91: SMC se...
493
  	.driver		= {
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
494
  		.name		= DRV_NAME,
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
495
496
  	},
  };
99c8ea3e5   Axel Lin   SATA/PATA: conver...
497
  module_platform_driver(pata_at91_driver);
918d7b7c3   Sergey Matyukevich   [libata] PATA dri...
498
499
500
501
502
  
  MODULE_LICENSE("GPL");
  MODULE_DESCRIPTION("Driver for CF in True IDE mode on AT91SAM9260 SoC");
  MODULE_AUTHOR("Matyukevich Sergey");
  MODULE_VERSION(DRV_VERSION);