blob: 00582d3a46a4f69f30034af44f004c1237655830 [file] [log] [blame]
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +01001/*
2 * AHCI SATA platform library
3 *
4 * Copyright 2004-2005 Red Hat, Inc.
5 * Jeff Garzik <jgarzik@pobox.com>
6 * Copyright 2010 MontaVista Software, LLC.
7 * Anton Vorontsov <avorontsov@ru.mvista.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
12 * any later version.
13 */
14
15#include <linux/clk.h>
16#include <linux/kernel.h>
17#include <linux/gfp.h>
18#include <linux/module.h>
19#include <linux/pm.h>
20#include <linux/interrupt.h>
21#include <linux/device.h>
22#include <linux/platform_device.h>
23#include <linux/libata.h>
24#include <linux/ahci_platform.h>
25#include <linux/phy/phy.h>
26#include <linux/pm_runtime.h>
27#include "ahci.h"
28
29static void ahci_host_stop(struct ata_host *host);
30
31struct ata_port_operations ahci_platform_ops = {
32 .inherits = &ahci_ops,
33 .host_stop = ahci_host_stop,
34};
35EXPORT_SYMBOL_GPL(ahci_platform_ops);
36
37static struct scsi_host_template ahci_platform_sht = {
38 AHCI_SHT("ahci_platform"),
39};
40
41/**
42 * ahci_platform_enable_clks - Enable platform clocks
43 * @hpriv: host private area to store config values
44 *
45 * This function enables all the clks found in hpriv->clks, starting at
46 * index 0. If any clk fails to enable it disables all the clks already
47 * enabled in reverse order, and then returns an error.
48 *
49 * RETURNS:
50 * 0 on success otherwise a negative error code
51 */
52int ahci_platform_enable_clks(struct ahci_host_priv *hpriv)
53{
54 int c, rc;
55
56 for (c = 0; c < AHCI_MAX_CLKS && hpriv->clks[c]; c++) {
57 rc = clk_prepare_enable(hpriv->clks[c]);
58 if (rc)
59 goto disable_unprepare_clk;
60 }
61 return 0;
62
63disable_unprepare_clk:
64 while (--c >= 0)
65 clk_disable_unprepare(hpriv->clks[c]);
66 return rc;
67}
68EXPORT_SYMBOL_GPL(ahci_platform_enable_clks);
69
70/**
71 * ahci_platform_disable_clks - Disable platform clocks
72 * @hpriv: host private area to store config values
73 *
74 * This function disables all the clks found in hpriv->clks, in reverse
75 * order of ahci_platform_enable_clks (starting at the end of the array).
76 */
77void ahci_platform_disable_clks(struct ahci_host_priv *hpriv)
78{
79 int c;
80
81 for (c = AHCI_MAX_CLKS - 1; c >= 0; c--)
82 if (hpriv->clks[c])
83 clk_disable_unprepare(hpriv->clks[c]);
84}
85EXPORT_SYMBOL_GPL(ahci_platform_disable_clks);
86
87/**
88 * ahci_platform_enable_resources - Enable platform resources
89 * @hpriv: host private area to store config values
90 *
91 * This function enables all ahci_platform managed resources in the
92 * following order:
93 * 1) Regulator
94 * 2) Clocks (through ahci_platform_enable_clks)
95 * 3) Phy
96 *
97 * If resource enabling fails at any point the previous enabled resources
98 * are disabled in reverse order.
99 *
100 * RETURNS:
101 * 0 on success otherwise a negative error code
102 */
103int ahci_platform_enable_resources(struct ahci_host_priv *hpriv)
104{
105 int rc;
106
107 if (hpriv->target_pwr) {
108 rc = regulator_enable(hpriv->target_pwr);
109 if (rc)
110 return rc;
111 }
112
113 rc = ahci_platform_enable_clks(hpriv);
114 if (rc)
115 goto disable_regulator;
116
117 if (hpriv->phy) {
118 rc = phy_init(hpriv->phy);
119 if (rc)
120 goto disable_clks;
121
122 rc = phy_power_on(hpriv->phy);
123 if (rc) {
124 phy_exit(hpriv->phy);
125 goto disable_clks;
126 }
127 }
128
129 return 0;
130
131disable_clks:
132 ahci_platform_disable_clks(hpriv);
133
134disable_regulator:
135 if (hpriv->target_pwr)
136 regulator_disable(hpriv->target_pwr);
137 return rc;
138}
139EXPORT_SYMBOL_GPL(ahci_platform_enable_resources);
140
141/**
142 * ahci_platform_disable_resources - Disable platform resources
143 * @hpriv: host private area to store config values
144 *
145 * This function disables all ahci_platform managed resources in the
146 * following order:
147 * 1) Phy
148 * 2) Clocks (through ahci_platform_disable_clks)
149 * 3) Regulator
150 */
151void ahci_platform_disable_resources(struct ahci_host_priv *hpriv)
152{
153 if (hpriv->phy) {
154 phy_power_off(hpriv->phy);
155 phy_exit(hpriv->phy);
156 }
157
158 ahci_platform_disable_clks(hpriv);
159
160 if (hpriv->target_pwr)
161 regulator_disable(hpriv->target_pwr);
162}
163EXPORT_SYMBOL_GPL(ahci_platform_disable_resources);
164
165static void ahci_platform_put_resources(struct device *dev, void *res)
166{
167 struct ahci_host_priv *hpriv = res;
168 int c;
169
170 if (hpriv->got_runtime_pm) {
171 pm_runtime_put_sync(dev);
172 pm_runtime_disable(dev);
173 }
174
175 for (c = 0; c < AHCI_MAX_CLKS && hpriv->clks[c]; c++)
176 clk_put(hpriv->clks[c]);
177}
178
179/**
180 * ahci_platform_get_resources - Get platform resources
181 * @pdev: platform device to get resources for
182 *
183 * This function allocates an ahci_host_priv struct, and gets the following
184 * resources, storing a reference to them inside the returned struct:
185 *
186 * 1) mmio registers (IORESOURCE_MEM 0, mandatory)
187 * 2) regulator for controlling the targets power (optional)
188 * 3) 0 - AHCI_MAX_CLKS clocks, as specified in the devs devicetree node,
189 * or for non devicetree enabled platforms a single clock
190 * 4) phy (optional)
191 *
192 * RETURNS:
193 * The allocated ahci_host_priv on success, otherwise an ERR_PTR value
194 */
195struct ahci_host_priv *ahci_platform_get_resources(struct platform_device *pdev)
196{
197 struct device *dev = &pdev->dev;
198 struct ahci_host_priv *hpriv;
199 struct clk *clk;
200 int i, rc = -ENOMEM;
201
202 if (!devres_open_group(dev, NULL, GFP_KERNEL))
203 return ERR_PTR(-ENOMEM);
204
205 hpriv = devres_alloc(ahci_platform_put_resources, sizeof(*hpriv),
206 GFP_KERNEL);
207 if (!hpriv)
208 goto err_out;
209
210 devres_add(dev, hpriv);
211
212 hpriv->mmio = devm_ioremap_resource(dev,
213 platform_get_resource(pdev, IORESOURCE_MEM, 0));
214 if (IS_ERR(hpriv->mmio)) {
215 dev_err(dev, "no mmio space\n");
216 rc = PTR_ERR(hpriv->mmio);
217 goto err_out;
218 }
219
220 hpriv->target_pwr = devm_regulator_get_optional(dev, "target");
221 if (IS_ERR(hpriv->target_pwr)) {
222 rc = PTR_ERR(hpriv->target_pwr);
223 if (rc == -EPROBE_DEFER)
224 goto err_out;
225 hpriv->target_pwr = NULL;
226 }
227
228 for (i = 0; i < AHCI_MAX_CLKS; i++) {
229 /*
230 * For now we must use clk_get(dev, NULL) for the first clock,
231 * because some platforms (da850, spear13xx) are not yet
232 * converted to use devicetree for clocks. For new platforms
233 * this is equivalent to of_clk_get(dev->of_node, 0).
234 */
235 if (i == 0)
236 clk = clk_get(dev, NULL);
237 else
238 clk = of_clk_get(dev->of_node, i);
239
240 if (IS_ERR(clk)) {
241 rc = PTR_ERR(clk);
242 if (rc == -EPROBE_DEFER)
243 goto err_out;
244 break;
245 }
246 hpriv->clks[i] = clk;
247 }
248
249 hpriv->phy = devm_phy_get(dev, "sata-phy");
250 if (IS_ERR(hpriv->phy)) {
251 rc = PTR_ERR(hpriv->phy);
252 switch (rc) {
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100253 case -ENOSYS:
Mikko Perttunenacbd5732014-06-17 15:07:55 +0300254 /* No PHY support. Check if PHY is required. */
255 if (of_find_property(dev->of_node, "phys", NULL)) {
256 dev_err(dev, "couldn't get sata-phy: ENOSYS\n");
257 goto err_out;
258 }
259 case -ENODEV:
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100260 /* continue normally */
261 hpriv->phy = NULL;
262 break;
263
264 case -EPROBE_DEFER:
265 goto err_out;
266
267 default:
268 dev_err(dev, "couldn't get sata-phy\n");
269 goto err_out;
270 }
271 }
272
273 pm_runtime_enable(dev);
274 pm_runtime_get_sync(dev);
275 hpriv->got_runtime_pm = true;
276
277 devres_remove_group(dev, NULL);
278 return hpriv;
279
280err_out:
281 devres_release_group(dev, NULL);
282 return ERR_PTR(rc);
283}
284EXPORT_SYMBOL_GPL(ahci_platform_get_resources);
285
286/**
287 * ahci_platform_init_host - Bring up an ahci-platform host
288 * @pdev: platform device pointer for the host
289 * @hpriv: ahci-host private data for the host
290 * @pi_template: template for the ata_port_info to use
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100291 *
292 * This function does all the usual steps needed to bring up an
293 * ahci-platform host, note any necessary resources (ie clks, phy, etc.)
294 * must be initialized / enabled before calling this.
295 *
296 * RETURNS:
297 * 0 on success otherwise a negative error code
298 */
299int ahci_platform_init_host(struct platform_device *pdev,
300 struct ahci_host_priv *hpriv,
Antoine Ténart725c7b52014-07-30 20:13:56 +0200301 const struct ata_port_info *pi_template)
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100302{
303 struct device *dev = &pdev->dev;
304 struct ata_port_info pi = *pi_template;
305 const struct ata_port_info *ppi[] = { &pi, NULL };
306 struct ata_host *host;
307 int i, irq, n_ports, rc;
308
309 irq = platform_get_irq(pdev, 0);
310 if (irq <= 0) {
311 dev_err(dev, "no irq\n");
312 return -EINVAL;
313 }
314
315 /* prepare host */
Antoine Ténart725c7b52014-07-30 20:13:56 +0200316 pi.private_data = (void *)hpriv->flags;
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100317
Antoine Ténart725c7b52014-07-30 20:13:56 +0200318 ahci_save_initial_config(dev, hpriv);
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100319
320 if (hpriv->cap & HOST_CAP_NCQ)
321 pi.flags |= ATA_FLAG_NCQ;
322
323 if (hpriv->cap & HOST_CAP_PMP)
324 pi.flags |= ATA_FLAG_PMP;
325
326 ahci_set_em_messages(hpriv, &pi);
327
328 /* CAP.NP sometimes indicate the index of the last enabled
329 * port, at other times, that of the last possible port, so
330 * determining the maximum port number requires looking at
331 * both CAP.NP and port_map.
332 */
333 n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));
334
335 host = ata_host_alloc_pinfo(dev, ppi, n_ports);
336 if (!host)
337 return -ENOMEM;
338
339 host->private_data = hpriv;
340
341 if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
342 host->flags |= ATA_HOST_PARALLEL_SCAN;
343 else
344 dev_info(dev, "SSS flag set, parallel bus scan disabled\n");
345
346 if (pi.flags & ATA_FLAG_EM)
347 ahci_reset_em(host);
348
349 for (i = 0; i < host->n_ports; i++) {
350 struct ata_port *ap = host->ports[i];
351
352 ata_port_desc(ap, "mmio %pR",
353 platform_get_resource(pdev, IORESOURCE_MEM, 0));
354 ata_port_desc(ap, "port 0x%x", 0x100 + ap->port_no * 0x80);
355
356 /* set enclosure management message type */
357 if (ap->flags & ATA_FLAG_EM)
358 ap->em_message_type = hpriv->em_msg_type;
359
360 /* disabled/not-implemented port */
361 if (!(hpriv->port_map & (1 << i)))
362 ap->ops = &ata_dummy_port_ops;
363 }
364
Suravee Suthikulpanitcc7a9e22014-06-12 12:40:23 -0500365 if (hpriv->cap & HOST_CAP_64) {
366 rc = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(64));
367 if (rc) {
368 rc = dma_coerce_mask_and_coherent(dev,
369 DMA_BIT_MASK(32));
370 if (rc) {
371 dev_err(dev, "Failed to enable 64-bit DMA.\n");
372 return rc;
373 }
374 dev_warn(dev, "Enable 32-bit DMA instead of 64-bit.\n");
375 }
376 }
377
Bartlomiej Zolnierkiewiczfd990552014-03-25 19:51:39 +0100378 rc = ahci_reset_controller(host);
379 if (rc)
380 return rc;
381
382 ahci_init_controller(host);
383 ahci_print_info(host, "platform");
384
385 return ata_host_activate(host, irq, ahci_interrupt, IRQF_SHARED,
386 &ahci_platform_sht);
387}
388EXPORT_SYMBOL_GPL(ahci_platform_init_host);
389
390static void ahci_host_stop(struct ata_host *host)
391{
392 struct device *dev = host->dev;
393 struct ahci_platform_data *pdata = dev_get_platdata(dev);
394 struct ahci_host_priv *hpriv = host->private_data;
395
396 if (pdata && pdata->exit)
397 pdata->exit(dev);
398
399 ahci_platform_disable_resources(hpriv);
400}
401
402#ifdef CONFIG_PM_SLEEP
403/**
404 * ahci_platform_suspend_host - Suspend an ahci-platform host
405 * @dev: device pointer for the host
406 *
407 * This function does all the usual steps needed to suspend an
408 * ahci-platform host, note any necessary resources (ie clks, phy, etc.)
409 * must be disabled after calling this.
410 *
411 * RETURNS:
412 * 0 on success otherwise a negative error code
413 */
414int ahci_platform_suspend_host(struct device *dev)
415{
416 struct ata_host *host = dev_get_drvdata(dev);
417 struct ahci_host_priv *hpriv = host->private_data;
418 void __iomem *mmio = hpriv->mmio;
419 u32 ctl;
420
421 if (hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
422 dev_err(dev, "firmware update required for suspend/resume\n");
423 return -EIO;
424 }
425
426 /*
427 * AHCI spec rev1.1 section 8.3.3:
428 * Software must disable interrupts prior to requesting a
429 * transition of the HBA to D3 state.
430 */
431 ctl = readl(mmio + HOST_CTL);
432 ctl &= ~HOST_IRQ_EN;
433 writel(ctl, mmio + HOST_CTL);
434 readl(mmio + HOST_CTL); /* flush */
435
436 return ata_host_suspend(host, PMSG_SUSPEND);
437}
438EXPORT_SYMBOL_GPL(ahci_platform_suspend_host);
439
440/**
441 * ahci_platform_resume_host - Resume an ahci-platform host
442 * @dev: device pointer for the host
443 *
444 * This function does all the usual steps needed to resume an ahci-platform
445 * host, note any necessary resources (ie clks, phy, etc.) must be
446 * initialized / enabled before calling this.
447 *
448 * RETURNS:
449 * 0 on success otherwise a negative error code
450 */
451int ahci_platform_resume_host(struct device *dev)
452{
453 struct ata_host *host = dev_get_drvdata(dev);
454 int rc;
455
456 if (dev->power.power_state.event == PM_EVENT_SUSPEND) {
457 rc = ahci_reset_controller(host);
458 if (rc)
459 return rc;
460
461 ahci_init_controller(host);
462 }
463
464 ata_host_resume(host);
465
466 return 0;
467}
468EXPORT_SYMBOL_GPL(ahci_platform_resume_host);
469
470/**
471 * ahci_platform_suspend - Suspend an ahci-platform device
472 * @dev: the platform device to suspend
473 *
474 * This function suspends the host associated with the device, followed by
475 * disabling all the resources of the device.
476 *
477 * RETURNS:
478 * 0 on success otherwise a negative error code
479 */
480int ahci_platform_suspend(struct device *dev)
481{
482 struct ahci_platform_data *pdata = dev_get_platdata(dev);
483 struct ata_host *host = dev_get_drvdata(dev);
484 struct ahci_host_priv *hpriv = host->private_data;
485 int rc;
486
487 rc = ahci_platform_suspend_host(dev);
488 if (rc)
489 return rc;
490
491 if (pdata && pdata->suspend) {
492 rc = pdata->suspend(dev);
493 if (rc)
494 goto resume_host;
495 }
496
497 ahci_platform_disable_resources(hpriv);
498
499 return 0;
500
501resume_host:
502 ahci_platform_resume_host(dev);
503 return rc;
504}
505EXPORT_SYMBOL_GPL(ahci_platform_suspend);
506
507/**
508 * ahci_platform_resume - Resume an ahci-platform device
509 * @dev: the platform device to resume
510 *
511 * This function enables all the resources of the device followed by
512 * resuming the host associated with the device.
513 *
514 * RETURNS:
515 * 0 on success otherwise a negative error code
516 */
517int ahci_platform_resume(struct device *dev)
518{
519 struct ahci_platform_data *pdata = dev_get_platdata(dev);
520 struct ata_host *host = dev_get_drvdata(dev);
521 struct ahci_host_priv *hpriv = host->private_data;
522 int rc;
523
524 rc = ahci_platform_enable_resources(hpriv);
525 if (rc)
526 return rc;
527
528 if (pdata && pdata->resume) {
529 rc = pdata->resume(dev);
530 if (rc)
531 goto disable_resources;
532 }
533
534 rc = ahci_platform_resume_host(dev);
535 if (rc)
536 goto disable_resources;
537
538 /* We resumed so update PM runtime state */
539 pm_runtime_disable(dev);
540 pm_runtime_set_active(dev);
541 pm_runtime_enable(dev);
542
543 return 0;
544
545disable_resources:
546 ahci_platform_disable_resources(hpriv);
547
548 return rc;
549}
550EXPORT_SYMBOL_GPL(ahci_platform_resume);
551#endif
552
553MODULE_DESCRIPTION("AHCI SATA platform library");
554MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
555MODULE_LICENSE("GPL");