2 * Copyright (c) 2013 Linaro Ltd.
3 * Copyright (c) 2013 Hisilicon Limited.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
11 #include <linux/clk.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/mmc/host.h>
14 #include <linux/mmc/dw_mmc.h>
15 #include <linux/module.h>
16 #include <linux/of_address.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/regulator/consumer.h>
22 #include "dw_mmc-pltfm.h"
25 * hi6220 sd only support io voltage 1.8v and 3v
26 * Also need config AO_SCTRL_SEL18 accordingly
28 #define AO_SCTRL_SEL18 BIT(10)
29 #define AO_SCTRL_CTRL3 0x40C
35 static void dw_mci_k3_set_ios(struct dw_mci
*host
, struct mmc_ios
*ios
)
39 ret
= clk_set_rate(host
->ciu_clk
, ios
->clock
);
41 dev_warn(host
->dev
, "failed to set rate %uHz\n", ios
->clock
);
43 host
->bus_hz
= clk_get_rate(host
->ciu_clk
);
46 static const struct dw_mci_drv_data k3_drv_data
= {
47 .set_ios
= dw_mci_k3_set_ios
,
50 static int dw_mci_hi6220_parse_dt(struct dw_mci
*host
)
54 priv
= devm_kzalloc(host
->dev
, sizeof(*priv
), GFP_KERNEL
);
58 priv
->reg
= syscon_regmap_lookup_by_phandle(host
->dev
->of_node
,
59 "hisilicon,peripheral-syscon");
60 if (IS_ERR(priv
->reg
))
67 static int dw_mci_hi6220_switch_voltage(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
69 struct dw_mci_slot
*slot
= mmc_priv(mmc
);
78 if (!priv
|| !priv
->reg
)
81 if (ios
->signal_voltage
== MMC_SIGNAL_VOLTAGE_330
) {
82 ret
= regmap_update_bits(priv
->reg
, AO_SCTRL_CTRL3
,
86 } else if (ios
->signal_voltage
== MMC_SIGNAL_VOLTAGE_180
) {
87 ret
= regmap_update_bits(priv
->reg
, AO_SCTRL_CTRL3
,
88 AO_SCTRL_SEL18
, AO_SCTRL_SEL18
);
92 dev_dbg(host
->dev
, "voltage not supported\n");
97 dev_dbg(host
->dev
, "switch voltage failed\n");
101 if (IS_ERR_OR_NULL(mmc
->supply
.vqmmc
))
104 ret
= regulator_set_voltage(mmc
->supply
.vqmmc
, min_uv
, max_uv
);
106 dev_dbg(host
->dev
, "Regulator set error %d: %d - %d\n",
107 ret
, min_uv
, max_uv
);
114 static void dw_mci_hi6220_set_ios(struct dw_mci
*host
, struct mmc_ios
*ios
)
119 clock
= (ios
->clock
<= 25000000) ? 25000000 : ios
->clock
;
121 ret
= clk_set_rate(host
->biu_clk
, clock
);
123 dev_warn(host
->dev
, "failed to set rate %uHz\n", clock
);
125 host
->bus_hz
= clk_get_rate(host
->biu_clk
);
128 static const struct dw_mci_drv_data hi6220_data
= {
129 .switch_voltage
= dw_mci_hi6220_switch_voltage
,
130 .set_ios
= dw_mci_hi6220_set_ios
,
131 .parse_dt
= dw_mci_hi6220_parse_dt
,
134 static const struct of_device_id dw_mci_k3_match
[] = {
135 { .compatible
= "hisilicon,hi4511-dw-mshc", .data
= &k3_drv_data
, },
136 { .compatible
= "hisilicon,hi6220-dw-mshc", .data
= &hi6220_data
, },
139 MODULE_DEVICE_TABLE(of
, dw_mci_k3_match
);
141 static int dw_mci_k3_probe(struct platform_device
*pdev
)
143 const struct dw_mci_drv_data
*drv_data
;
144 const struct of_device_id
*match
;
146 match
= of_match_node(dw_mci_k3_match
, pdev
->dev
.of_node
);
147 drv_data
= match
->data
;
149 return dw_mci_pltfm_register(pdev
, drv_data
);
152 #ifdef CONFIG_PM_SLEEP
153 static int dw_mci_k3_suspend(struct device
*dev
)
155 struct dw_mci
*host
= dev_get_drvdata(dev
);
158 ret
= dw_mci_suspend(host
);
160 clk_disable_unprepare(host
->ciu_clk
);
165 static int dw_mci_k3_resume(struct device
*dev
)
167 struct dw_mci
*host
= dev_get_drvdata(dev
);
170 ret
= clk_prepare_enable(host
->ciu_clk
);
172 dev_err(host
->dev
, "failed to enable ciu clock\n");
176 return dw_mci_resume(host
);
178 #endif /* CONFIG_PM_SLEEP */
180 static SIMPLE_DEV_PM_OPS(dw_mci_k3_pmops
, dw_mci_k3_suspend
, dw_mci_k3_resume
);
182 static struct platform_driver dw_mci_k3_pltfm_driver
= {
183 .probe
= dw_mci_k3_probe
,
184 .remove
= dw_mci_pltfm_remove
,
187 .of_match_table
= dw_mci_k3_match
,
188 .pm
= &dw_mci_k3_pmops
,
192 module_platform_driver(dw_mci_k3_pltfm_driver
);
194 MODULE_DESCRIPTION("K3 Specific DW-MSHC Driver Extension");
195 MODULE_LICENSE("GPL v2");
196 MODULE_ALIAS("platform:dwmmc_k3");