sata: ahci-da850: add device tree match table
[linux-2.6-block.git] / drivers / ata / ahci_da850.c
CommitLineData
ae8723f8
BZ
1/*
2 * DaVinci DA850 AHCI SATA platform driver
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/pm.h>
13#include <linux/device.h>
14#include <linux/platform_device.h>
15#include <linux/libata.h>
16#include <linux/ahci_platform.h>
17#include "ahci.h"
18
018d5ef2
AM
19#define DRV_NAME "ahci_da850"
20
ae8723f8
BZ
21/* SATA PHY Control Register offset from AHCI base */
22#define SATA_P0PHYCR_REG 0x178
23
24#define SATA_PHY_MPY(x) ((x) << 0)
25#define SATA_PHY_LOS(x) ((x) << 6)
26#define SATA_PHY_RXCDR(x) ((x) << 10)
27#define SATA_PHY_RXEQ(x) ((x) << 13)
28#define SATA_PHY_TXSWING(x) ((x) << 19)
29#define SATA_PHY_ENPLL(x) ((x) << 31)
30
31/*
32 * The multiplier needed for 1.5GHz PLL output.
33 *
34 * NOTE: This is currently hardcoded to be suitable for 100MHz crystal
35 * frequency (which is used by DA850 EVM board) and may need to be changed
36 * if you would like to use this driver on some other board.
37 */
38#define DA850_SATA_CLK_MULTIPLIER 7
39
40static void da850_sata_init(struct device *dev, void __iomem *pwrdn_reg,
41 void __iomem *ahci_base)
42{
43 unsigned int val;
44
45 /* Enable SATA clock receiver */
46 val = readl(pwrdn_reg);
47 val &= ~BIT(0);
48 writel(val, pwrdn_reg);
49
50 val = SATA_PHY_MPY(DA850_SATA_CLK_MULTIPLIER + 1) | SATA_PHY_LOS(1) |
51 SATA_PHY_RXCDR(4) | SATA_PHY_RXEQ(1) | SATA_PHY_TXSWING(3) |
52 SATA_PHY_ENPLL(1);
53
54 writel(val, ahci_base + SATA_P0PHYCR_REG);
55}
56
57static const struct ata_port_info ahci_da850_port_info = {
58 .flags = AHCI_FLAG_COMMON,
59 .pio_mask = ATA_PIO4,
60 .udma_mask = ATA_UDMA6,
61 .port_ops = &ahci_platform_ops,
62};
63
018d5ef2
AM
64static struct scsi_host_template ahci_platform_sht = {
65 AHCI_SHT(DRV_NAME),
66};
67
ae8723f8
BZ
68static int ahci_da850_probe(struct platform_device *pdev)
69{
70 struct device *dev = &pdev->dev;
71 struct ahci_host_priv *hpriv;
72 struct resource *res;
73 void __iomem *pwrdn_reg;
82dbe1a6 74 struct clk *clk;
ae8723f8
BZ
75 int rc;
76
77 hpriv = ahci_platform_get_resources(pdev);
78 if (IS_ERR(hpriv))
79 return PTR_ERR(hpriv);
80
82dbe1a6
BG
81 /*
82 * Internally ahci_platform_get_resources() calls clk_get(dev, NULL)
83 * when trying to obtain the functional clock. This SATA controller
84 * uses two clocks for which we specify two connection ids. If we don't
85 * have the functional clock at this point - call clk_get() again with
86 * con_id = "fck".
87 */
88 if (!hpriv->clks[0]) {
89 clk = clk_get(dev, "fck");
90 if (IS_ERR(clk))
91 return PTR_ERR(clk);
92
93 hpriv->clks[0] = clk;
94 }
95
ae8723f8
BZ
96 rc = ahci_platform_enable_resources(hpriv);
97 if (rc)
98 return rc;
99
100 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
101 if (!res)
102 goto disable_resources;
103
104 pwrdn_reg = devm_ioremap(dev, res->start, resource_size(res));
105 if (!pwrdn_reg)
106 goto disable_resources;
107
108 da850_sata_init(dev, pwrdn_reg, hpriv->mmio);
109
018d5ef2
AM
110 rc = ahci_platform_init_host(pdev, hpriv, &ahci_da850_port_info,
111 &ahci_platform_sht);
ae8723f8
BZ
112 if (rc)
113 goto disable_resources;
114
115 return 0;
116disable_resources:
117 ahci_platform_disable_resources(hpriv);
118 return rc;
119}
120
121static SIMPLE_DEV_PM_OPS(ahci_da850_pm_ops, ahci_platform_suspend,
122 ahci_platform_resume);
123
bf4ae3f0
BG
124static const struct of_device_id ahci_da850_of_match[] = {
125 { .compatible = "ti,da850-ahci", },
126 { },
127};
128MODULE_DEVICE_TABLE(of, ahci_da850_of_match);
129
ae8723f8
BZ
130static struct platform_driver ahci_da850_driver = {
131 .probe = ahci_da850_probe,
132 .remove = ata_platform_remove_one,
133 .driver = {
018d5ef2 134 .name = DRV_NAME,
bf4ae3f0 135 .of_match_table = ahci_da850_of_match,
ae8723f8
BZ
136 .pm = &ahci_da850_pm_ops,
137 },
138};
139module_platform_driver(ahci_da850_driver);
140
141MODULE_DESCRIPTION("DaVinci DA850 AHCI SATA platform driver");
142MODULE_AUTHOR("Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>");
143MODULE_LICENSE("GPL");