2 * Samsung SoC USB 1.1/2.0 PHY driver
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * Author: Kamil Debski <k.debski@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/clk.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/module.h>
16 #include <linux/of_address.h>
17 #include <linux/phy/phy.h>
18 #include <linux/platform_device.h>
19 #include <linux/spinlock.h>
20 #include "phy-samsung-usb2.h"
22 static int samsung_usb2_phy_power_on(struct phy
*phy
)
24 struct samsung_usb2_phy_instance
*inst
= phy_get_drvdata(phy
);
25 struct samsung_usb2_phy_driver
*drv
= inst
->drv
;
28 dev_dbg(drv
->dev
, "Request to power_on \"%s\" usb phy\n",
30 ret
= clk_prepare_enable(drv
->clk
);
33 ret
= clk_prepare_enable(drv
->ref_clk
);
35 goto err_instance_clk
;
36 if (inst
->cfg
->power_on
) {
37 spin_lock(&drv
->lock
);
38 ret
= inst
->cfg
->power_on(inst
);
39 spin_unlock(&drv
->lock
);
47 clk_disable_unprepare(drv
->ref_clk
);
49 clk_disable_unprepare(drv
->clk
);
54 static int samsung_usb2_phy_power_off(struct phy
*phy
)
56 struct samsung_usb2_phy_instance
*inst
= phy_get_drvdata(phy
);
57 struct samsung_usb2_phy_driver
*drv
= inst
->drv
;
60 dev_dbg(drv
->dev
, "Request to power_off \"%s\" usb phy\n",
62 if (inst
->cfg
->power_off
) {
63 spin_lock(&drv
->lock
);
64 ret
= inst
->cfg
->power_off(inst
);
65 spin_unlock(&drv
->lock
);
69 clk_disable_unprepare(drv
->ref_clk
);
70 clk_disable_unprepare(drv
->clk
);
74 static const struct phy_ops samsung_usb2_phy_ops
= {
75 .power_on
= samsung_usb2_phy_power_on
,
76 .power_off
= samsung_usb2_phy_power_off
,
80 static struct phy
*samsung_usb2_phy_xlate(struct device
*dev
,
81 struct of_phandle_args
*args
)
83 struct samsung_usb2_phy_driver
*drv
;
85 drv
= dev_get_drvdata(dev
);
87 return ERR_PTR(-EINVAL
);
89 if (WARN_ON(args
->args
[0] >= drv
->cfg
->num_phys
))
90 return ERR_PTR(-ENODEV
);
92 return drv
->instances
[args
->args
[0]].phy
;
95 static const struct of_device_id samsung_usb2_phy_of_match
[] = {
96 #ifdef CONFIG_PHY_EXYNOS4X12_USB2
98 .compatible
= "samsung,exynos3250-usb2-phy",
99 .data
= &exynos3250_usb2_phy_config
,
102 #ifdef CONFIG_PHY_EXYNOS4210_USB2
104 .compatible
= "samsung,exynos4210-usb2-phy",
105 .data
= &exynos4210_usb2_phy_config
,
108 #ifdef CONFIG_PHY_EXYNOS4X12_USB2
110 .compatible
= "samsung,exynos4x12-usb2-phy",
111 .data
= &exynos4x12_usb2_phy_config
,
114 #ifdef CONFIG_PHY_EXYNOS5250_USB2
116 .compatible
= "samsung,exynos5250-usb2-phy",
117 .data
= &exynos5250_usb2_phy_config
,
120 #ifdef CONFIG_PHY_S5PV210_USB2
122 .compatible
= "samsung,s5pv210-usb2-phy",
123 .data
= &s5pv210_usb2_phy_config
,
128 MODULE_DEVICE_TABLE(of
, samsung_usb2_phy_of_match
);
130 static int samsung_usb2_phy_probe(struct platform_device
*pdev
)
132 const struct of_device_id
*match
;
133 const struct samsung_usb2_phy_config
*cfg
;
134 struct device
*dev
= &pdev
->dev
;
135 struct phy_provider
*phy_provider
;
136 struct resource
*mem
;
137 struct samsung_usb2_phy_driver
*drv
;
140 if (!pdev
->dev
.of_node
) {
141 dev_err(dev
, "This driver is required to be instantiated from device tree\n");
145 match
= of_match_node(samsung_usb2_phy_of_match
, pdev
->dev
.of_node
);
147 dev_err(dev
, "of_match_node() failed\n");
152 drv
= devm_kzalloc(dev
, sizeof(struct samsung_usb2_phy_driver
) +
153 cfg
->num_phys
* sizeof(struct samsung_usb2_phy_instance
),
158 dev_set_drvdata(dev
, drv
);
159 spin_lock_init(&drv
->lock
);
164 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
165 drv
->reg_phy
= devm_ioremap_resource(dev
, mem
);
166 if (IS_ERR(drv
->reg_phy
)) {
167 dev_err(dev
, "Failed to map register memory (phy)\n");
168 return PTR_ERR(drv
->reg_phy
);
171 drv
->reg_pmu
= syscon_regmap_lookup_by_phandle(pdev
->dev
.of_node
,
172 "samsung,pmureg-phandle");
173 if (IS_ERR(drv
->reg_pmu
)) {
174 dev_err(dev
, "Failed to map PMU registers (via syscon)\n");
175 return PTR_ERR(drv
->reg_pmu
);
178 if (drv
->cfg
->has_mode_switch
) {
179 drv
->reg_sys
= syscon_regmap_lookup_by_phandle(
180 pdev
->dev
.of_node
, "samsung,sysreg-phandle");
181 if (IS_ERR(drv
->reg_sys
)) {
182 dev_err(dev
, "Failed to map system registers (via syscon)\n");
183 return PTR_ERR(drv
->reg_sys
);
187 drv
->clk
= devm_clk_get(dev
, "phy");
188 if (IS_ERR(drv
->clk
)) {
189 dev_err(dev
, "Failed to get clock of phy controller\n");
190 return PTR_ERR(drv
->clk
);
193 drv
->ref_clk
= devm_clk_get(dev
, "ref");
194 if (IS_ERR(drv
->ref_clk
)) {
195 dev_err(dev
, "Failed to get reference clock for the phy controller\n");
196 return PTR_ERR(drv
->ref_clk
);
199 drv
->ref_rate
= clk_get_rate(drv
->ref_clk
);
200 if (drv
->cfg
->rate_to_clk
) {
201 ret
= drv
->cfg
->rate_to_clk(drv
->ref_rate
, &drv
->ref_reg_val
);
206 for (i
= 0; i
< drv
->cfg
->num_phys
; i
++) {
207 char *label
= drv
->cfg
->phys
[i
].label
;
208 struct samsung_usb2_phy_instance
*p
= &drv
->instances
[i
];
210 dev_dbg(dev
, "Creating phy \"%s\"\n", label
);
211 p
->phy
= devm_phy_create(dev
, NULL
, &samsung_usb2_phy_ops
);
212 if (IS_ERR(p
->phy
)) {
213 dev_err(drv
->dev
, "Failed to create usb2_phy \"%s\"\n",
215 return PTR_ERR(p
->phy
);
218 p
->cfg
= &drv
->cfg
->phys
[i
];
220 phy_set_bus_width(p
->phy
, 8);
221 phy_set_drvdata(p
->phy
, p
);
224 phy_provider
= devm_of_phy_provider_register(dev
,
225 samsung_usb2_phy_xlate
);
226 if (IS_ERR(phy_provider
)) {
227 dev_err(drv
->dev
, "Failed to register phy provider\n");
228 return PTR_ERR(phy_provider
);
234 static struct platform_driver samsung_usb2_phy_driver
= {
235 .probe
= samsung_usb2_phy_probe
,
237 .of_match_table
= samsung_usb2_phy_of_match
,
238 .name
= "samsung-usb2-phy",
242 module_platform_driver(samsung_usb2_phy_driver
);
243 MODULE_DESCRIPTION("Samsung S5P/EXYNOS SoC USB PHY driver");
244 MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
245 MODULE_LICENSE("GPL v2");
246 MODULE_ALIAS("platform:samsung-usb2-phy");