ahci_platform.c 8.2 KB
Newer Older
A
Anton Vorontsov 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * AHCI SATA platform driver
 *
 * Copyright 2004-2005  Red Hat, Inc.
 *   Jeff Garzik <jgarzik@pobox.com>
 * Copyright 2010  MontaVista Software, LLC.
 *   Anton Vorontsov <avorontsov@ru.mvista.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 */

15
#include <linux/clk.h>
A
Anton Vorontsov 已提交
16
#include <linux/kernel.h>
T
Tejun Heo 已提交
17
#include <linux/gfp.h>
A
Anton Vorontsov 已提交
18
#include <linux/module.h>
19
#include <linux/pm.h>
A
Anton Vorontsov 已提交
20 21 22 23 24 25 26
#include <linux/interrupt.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/libata.h>
#include <linux/ahci_platform.h>
#include "ahci.h"

27 28
static void ahci_host_stop(struct ata_host *host);

29 30 31
enum ahci_type {
	AHCI,		/* standard platform ahci */
	IMX53_AHCI,	/* ahci on i.mx53 */
32
	STRICT_AHCI,	/* delayed DMA engine start */
33 34 35 36 37 38 39 40 41
};

static struct platform_device_id ahci_devtype[] = {
	{
		.name = "ahci",
		.driver_data = AHCI,
	}, {
		.name = "imx53-ahci",
		.driver_data = IMX53_AHCI,
42 43 44
	}, {
		.name = "strict-ahci",
		.driver_data = STRICT_AHCI,
45 46 47 48 49 50
	}, {
		/* sentinel */
	}
};
MODULE_DEVICE_TABLE(platform, ahci_devtype);

51
struct ata_port_operations ahci_platform_ops = {
52 53 54
	.inherits	= &ahci_ops,
	.host_stop	= ahci_host_stop,
};
55
EXPORT_SYMBOL_GPL(ahci_platform_ops);
56

B
Brian Norris 已提交
57
static struct ata_port_operations ahci_platform_retry_srst_ops = {
58 59 60
	.inherits	= &ahci_pmp_retry_srst_ops,
	.host_stop	= ahci_host_stop,
};
61 62 63 64 65 66 67

static const struct ata_port_info ahci_port_info[] = {
	/* by features */
	[AHCI] = {
		.flags		= AHCI_FLAG_COMMON,
		.pio_mask	= ATA_PIO4,
		.udma_mask	= ATA_UDMA6,
68
		.port_ops	= &ahci_platform_ops,
69 70 71 72 73
	},
	[IMX53_AHCI] = {
		.flags		= AHCI_FLAG_COMMON,
		.pio_mask	= ATA_PIO4,
		.udma_mask	= ATA_UDMA6,
74
		.port_ops	= &ahci_platform_retry_srst_ops,
75
	},
76 77 78 79 80
	[STRICT_AHCI] = {
		AHCI_HFLAGS	(AHCI_HFLAG_DELAY_ENGINE),
		.flags		= AHCI_FLAG_COMMON,
		.pio_mask	= ATA_PIO4,
		.udma_mask	= ATA_UDMA6,
81
		.port_ops	= &ahci_platform_ops,
82
	},
83 84
};

85 86 87 88
static struct scsi_host_template ahci_platform_sht = {
	AHCI_SHT("ahci_platform"),
};

89
static int ahci_probe(struct platform_device *pdev)
A
Anton Vorontsov 已提交
90 91
{
	struct device *dev = &pdev->dev;
92
	struct ahci_platform_data *pdata = dev_get_platdata(dev);
93
	const struct platform_device_id *id = platform_get_device_id(pdev);
94
	struct ata_port_info pi = ahci_port_info[id ? id->driver_data : 0];
A
Anton Vorontsov 已提交
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
	const struct ata_port_info *ppi[] = { &pi, NULL };
	struct ahci_host_priv *hpriv;
	struct ata_host *host;
	struct resource *mem;
	int irq;
	int n_ports;
	int i;
	int rc;

	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!mem) {
		dev_err(dev, "no mmio space\n");
		return -EINVAL;
	}

	irq = platform_get_irq(pdev, 0);
	if (irq <= 0) {
		dev_err(dev, "no irq\n");
		return -EINVAL;
	}

	if (pdata && pdata->ata_port_info)
		pi = *pdata->ata_port_info;

	hpriv = devm_kzalloc(dev, sizeof(*hpriv), GFP_KERNEL);
	if (!hpriv) {
121 122
		dev_err(dev, "can't alloc ahci_host_priv\n");
		return -ENOMEM;
A
Anton Vorontsov 已提交
123 124 125 126 127 128 129
	}

	hpriv->flags |= (unsigned long)pi.private_data;

	hpriv->mmio = devm_ioremap(dev, mem->start, resource_size(mem));
	if (!hpriv->mmio) {
		dev_err(dev, "can't map %pR\n", mem);
130 131 132
		return -ENOMEM;
	}

133 134 135 136 137 138 139 140 141 142 143
	hpriv->clk = clk_get(dev, NULL);
	if (IS_ERR(hpriv->clk)) {
		dev_err(dev, "can't get clock\n");
	} else {
		rc = clk_prepare_enable(hpriv->clk);
		if (rc) {
			dev_err(dev, "clock prepare enable failed");
			goto free_clk;
		}
	}

144 145 146 147 148 149 150 151 152
	/*
	 * Some platforms might need to prepare for mmio region access,
	 * which could be done in the following init call. So, the mmio
	 * region shouldn't be accessed before init (if provided) has
	 * returned successfully.
	 */
	if (pdata && pdata->init) {
		rc = pdata->init(dev, hpriv->mmio);
		if (rc)
153
			goto disable_unprepare_clk;
A
Anton Vorontsov 已提交
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
	}

	ahci_save_initial_config(dev, hpriv,
		pdata ? pdata->force_port_map : 0,
		pdata ? pdata->mask_port_map  : 0);

	/* prepare host */
	if (hpriv->cap & HOST_CAP_NCQ)
		pi.flags |= ATA_FLAG_NCQ;

	if (hpriv->cap & HOST_CAP_PMP)
		pi.flags |= ATA_FLAG_PMP;

	ahci_set_em_messages(hpriv, &pi);

	/* CAP.NP sometimes indicate the index of the last enabled
	 * port, at other times, that of the last possible port, so
	 * determining the maximum port number requires looking at
	 * both CAP.NP and port_map.
	 */
	n_ports = max(ahci_nr_ports(hpriv->cap), fls(hpriv->port_map));

	host = ata_host_alloc_pinfo(dev, ppi, n_ports);
	if (!host) {
		rc = -ENOMEM;
179
		goto pdata_exit;
A
Anton Vorontsov 已提交
180 181 182 183 184 185 186
	}

	host->private_data = hpriv;

	if (!(hpriv->cap & HOST_CAP_SSS) || ahci_ignore_sss)
		host->flags |= ATA_HOST_PARALLEL_SCAN;
	else
187
		dev_info(dev, "SSS flag set, parallel bus scan disabled\n");
A
Anton Vorontsov 已提交
188 189 190 191 192 193 194 195 196 197 198 199

	if (pi.flags & ATA_FLAG_EM)
		ahci_reset_em(host);

	for (i = 0; i < host->n_ports; i++) {
		struct ata_port *ap = host->ports[i];

		ata_port_desc(ap, "mmio %pR", mem);
		ata_port_desc(ap, "port 0x%x", 0x100 + ap->port_no * 0x80);

		/* set enclosure management message type */
		if (ap->flags & ATA_FLAG_EM)
200
			ap->em_message_type = hpriv->em_msg_type;
A
Anton Vorontsov 已提交
201 202 203 204 205 206 207 208

		/* disabled/not-implemented port */
		if (!(hpriv->port_map & (1 << i)))
			ap->ops = &ata_dummy_port_ops;
	}

	rc = ahci_reset_controller(host);
	if (rc)
209
		goto pdata_exit;
A
Anton Vorontsov 已提交
210 211 212 213 214

	ahci_init_controller(host);
	ahci_print_info(host, "platform");

	rc = ata_host_activate(host, irq, ahci_interrupt, IRQF_SHARED,
215
			       &ahci_platform_sht);
A
Anton Vorontsov 已提交
216
	if (rc)
217
		goto pdata_exit;
A
Anton Vorontsov 已提交
218 219

	return 0;
220
pdata_exit:
A
Anton Vorontsov 已提交
221 222
	if (pdata && pdata->exit)
		pdata->exit(dev);
223 224 225 226 227 228
disable_unprepare_clk:
	if (!IS_ERR(hpriv->clk))
		clk_disable_unprepare(hpriv->clk);
free_clk:
	if (!IS_ERR(hpriv->clk))
		clk_put(hpriv->clk);
A
Anton Vorontsov 已提交
229 230 231
	return rc;
}

232 233 234 235 236 237
static void ahci_host_stop(struct ata_host *host)
{
	struct device *dev = host->dev;
	struct ahci_platform_data *pdata = dev_get_platdata(dev);
	struct ahci_host_priv *hpriv = host->private_data;

A
Anton Vorontsov 已提交
238 239 240
	if (pdata && pdata->exit)
		pdata->exit(dev);

241 242 243 244
	if (!IS_ERR(hpriv->clk)) {
		clk_disable_unprepare(hpriv->clk);
		clk_put(hpriv->clk);
	}
A
Anton Vorontsov 已提交
245 246
}

247
#ifdef CONFIG_PM_SLEEP
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
static int ahci_suspend(struct device *dev)
{
	struct ahci_platform_data *pdata = dev_get_platdata(dev);
	struct ata_host *host = dev_get_drvdata(dev);
	struct ahci_host_priv *hpriv = host->private_data;
	void __iomem *mmio = hpriv->mmio;
	u32 ctl;
	int rc;

	if (hpriv->flags & AHCI_HFLAG_NO_SUSPEND) {
		dev_err(dev, "firmware update required for suspend/resume\n");
		return -EIO;
	}

	/*
	 * AHCI spec rev1.1 section 8.3.3:
	 * Software must disable interrupts prior to requesting a
	 * transition of the HBA to D3 state.
	 */
	ctl = readl(mmio + HOST_CTL);
	ctl &= ~HOST_IRQ_EN;
	writel(ctl, mmio + HOST_CTL);
	readl(mmio + HOST_CTL); /* flush */

	rc = ata_host_suspend(host, PMSG_SUSPEND);
	if (rc)
		return rc;

	if (pdata && pdata->suspend)
		return pdata->suspend(dev);
278 279 280 281

	if (!IS_ERR(hpriv->clk))
		clk_disable_unprepare(hpriv->clk);

282 283 284 285 286 287 288
	return 0;
}

static int ahci_resume(struct device *dev)
{
	struct ahci_platform_data *pdata = dev_get_platdata(dev);
	struct ata_host *host = dev_get_drvdata(dev);
289
	struct ahci_host_priv *hpriv = host->private_data;
290 291
	int rc;

292 293 294 295 296 297 298 299
	if (!IS_ERR(hpriv->clk)) {
		rc = clk_prepare_enable(hpriv->clk);
		if (rc) {
			dev_err(dev, "clock prepare enable failed");
			return rc;
		}
	}

300 301 302
	if (pdata && pdata->resume) {
		rc = pdata->resume(dev);
		if (rc)
303
			goto disable_unprepare_clk;
304 305 306 307 308
	}

	if (dev->power.power_state.event == PM_EVENT_SUSPEND) {
		rc = ahci_reset_controller(host);
		if (rc)
309
			goto disable_unprepare_clk;
310 311 312 313 314 315 316

		ahci_init_controller(host);
	}

	ata_host_resume(host);

	return 0;
317 318 319 320 321 322

disable_unprepare_clk:
	if (!IS_ERR(hpriv->clk))
		clk_disable_unprepare(hpriv->clk);

	return rc;
323 324 325
}
#endif

B
Brian Norris 已提交
326
static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_suspend, ahci_resume);
327

328
static const struct of_device_id ahci_of_match[] = {
329
	{ .compatible = "snps,spear-ahci", },
330
	{ .compatible = "snps,exynos5440-ahci", },
331
	{ .compatible = "ibm,476gtr-ahci", },
332 333 334 335
	{},
};
MODULE_DEVICE_TABLE(of, ahci_of_match);

A
Anton Vorontsov 已提交
336
static struct platform_driver ahci_driver = {
337
	.probe = ahci_probe,
338
	.remove = ata_platform_remove_one,
A
Anton Vorontsov 已提交
339 340 341
	.driver = {
		.name = "ahci",
		.owner = THIS_MODULE,
342
		.of_match_table = ahci_of_match,
343
		.pm = &ahci_pm_ops,
A
Anton Vorontsov 已提交
344
	},
345
	.id_table	= ahci_devtype,
A
Anton Vorontsov 已提交
346
};
347
module_platform_driver(ahci_driver);
A
Anton Vorontsov 已提交
348 349 350 351 352

MODULE_DESCRIPTION("AHCI SATA platform driver");
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:ahci");