blob: 9a2ab6751a23c504177fbac78cc7e95cdb21a1ae [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Heikki Krogerus289fcff2015-05-13 15:26:42 +03002/**
3 * ulpi.c - USB ULPI PHY bus
4 *
5 * Copyright (C) 2015 Intel Corporation
6 *
7 * Author: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Heikki Krogerus289fcff2015-05-13 15:26:42 +03008 */
9
10#include <linux/ulpi/interface.h>
11#include <linux/ulpi/driver.h>
12#include <linux/ulpi/regs.h>
13#include <linux/module.h>
14#include <linux/slab.h>
15#include <linux/acpi.h>
Stephen Boydef6a7bc2016-12-28 14:56:49 -080016#include <linux/of.h>
17#include <linux/of_device.h>
18#include <linux/clk/clk-conf.h>
Heikki Krogerus289fcff2015-05-13 15:26:42 +030019
20/* -------------------------------------------------------------------------- */
21
22int ulpi_read(struct ulpi *ulpi, u8 addr)
23{
Tal Shorere6f74842016-08-16 19:04:50 +030024 return ulpi->ops->read(ulpi->dev.parent, addr);
Heikki Krogerus289fcff2015-05-13 15:26:42 +030025}
26EXPORT_SYMBOL_GPL(ulpi_read);
27
28int ulpi_write(struct ulpi *ulpi, u8 addr, u8 val)
29{
Tal Shorere6f74842016-08-16 19:04:50 +030030 return ulpi->ops->write(ulpi->dev.parent, addr, val);
Heikki Krogerus289fcff2015-05-13 15:26:42 +030031}
32EXPORT_SYMBOL_GPL(ulpi_write);
33
34/* -------------------------------------------------------------------------- */
35
36static int ulpi_match(struct device *dev, struct device_driver *driver)
37{
38 struct ulpi_driver *drv = to_ulpi_driver(driver);
39 struct ulpi *ulpi = to_ulpi_dev(dev);
40 const struct ulpi_device_id *id;
41
Stephen Boydef6a7bc2016-12-28 14:56:49 -080042 /* Some ULPI devices don't have a vendor id so rely on OF match */
43 if (ulpi->id.vendor == 0)
44 return of_driver_match_device(dev, driver);
45
Heikki Krogerus289fcff2015-05-13 15:26:42 +030046 for (id = drv->id_table; id->vendor; id++)
47 if (id->vendor == ulpi->id.vendor &&
48 id->product == ulpi->id.product)
49 return 1;
50
51 return 0;
52}
53
54static int ulpi_uevent(struct device *dev, struct kobj_uevent_env *env)
55{
56 struct ulpi *ulpi = to_ulpi_dev(dev);
Stephen Boydef6a7bc2016-12-28 14:56:49 -080057 int ret;
58
59 ret = of_device_uevent_modalias(dev, env);
60 if (ret != -ENODEV)
61 return ret;
Heikki Krogerus289fcff2015-05-13 15:26:42 +030062
63 if (add_uevent_var(env, "MODALIAS=ulpi:v%04xp%04x",
64 ulpi->id.vendor, ulpi->id.product))
65 return -ENOMEM;
66 return 0;
67}
68
69static int ulpi_probe(struct device *dev)
70{
71 struct ulpi_driver *drv = to_ulpi_driver(dev->driver);
Stephen Boydef6a7bc2016-12-28 14:56:49 -080072 int ret;
73
74 ret = of_clk_set_defaults(dev->of_node, false);
75 if (ret < 0)
76 return ret;
Heikki Krogerus289fcff2015-05-13 15:26:42 +030077
78 return drv->probe(to_ulpi_dev(dev));
79}
80
81static int ulpi_remove(struct device *dev)
82{
83 struct ulpi_driver *drv = to_ulpi_driver(dev->driver);
84
85 if (drv->remove)
86 drv->remove(to_ulpi_dev(dev));
87
88 return 0;
89}
90
91static struct bus_type ulpi_bus = {
92 .name = "ulpi",
93 .match = ulpi_match,
94 .uevent = ulpi_uevent,
95 .probe = ulpi_probe,
96 .remove = ulpi_remove,
97};
98
99/* -------------------------------------------------------------------------- */
100
101static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
102 char *buf)
103{
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800104 int len;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300105 struct ulpi *ulpi = to_ulpi_dev(dev);
106
Rob Herring0634c292017-03-22 09:16:27 -0500107 len = of_device_modalias(dev, buf, PAGE_SIZE);
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800108 if (len != -ENODEV)
109 return len;
110
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300111 return sprintf(buf, "ulpi:v%04xp%04x\n",
112 ulpi->id.vendor, ulpi->id.product);
113}
114static DEVICE_ATTR_RO(modalias);
115
116static struct attribute *ulpi_dev_attrs[] = {
117 &dev_attr_modalias.attr,
118 NULL
119};
120
121static struct attribute_group ulpi_dev_attr_group = {
122 .attrs = ulpi_dev_attrs,
123};
124
125static const struct attribute_group *ulpi_dev_attr_groups[] = {
126 &ulpi_dev_attr_group,
127 NULL
128};
129
130static void ulpi_dev_release(struct device *dev)
131{
132 kfree(to_ulpi_dev(dev));
133}
134
Bhumika Goyal53ec7f22017-08-19 13:52:26 +0530135static const struct device_type ulpi_dev_type = {
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300136 .name = "ulpi_device",
137 .groups = ulpi_dev_attr_groups,
138 .release = ulpi_dev_release,
139};
140
141/* -------------------------------------------------------------------------- */
142
143/**
144 * ulpi_register_driver - register a driver with the ULPI bus
145 * @drv: driver being registered
146 *
147 * Registers a driver with the ULPI bus.
148 */
Stephen Boyd1ebe88d2016-06-25 22:38:21 -0700149int __ulpi_register_driver(struct ulpi_driver *drv, struct module *module)
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300150{
151 if (!drv->probe)
152 return -EINVAL;
153
Stephen Boyd1ebe88d2016-06-25 22:38:21 -0700154 drv->driver.owner = module;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300155 drv->driver.bus = &ulpi_bus;
156
157 return driver_register(&drv->driver);
158}
Stephen Boyd1ebe88d2016-06-25 22:38:21 -0700159EXPORT_SYMBOL_GPL(__ulpi_register_driver);
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300160
161/**
162 * ulpi_unregister_driver - unregister a driver with the ULPI bus
163 * @drv: driver to unregister
164 *
165 * Unregisters a driver with the ULPI bus.
166 */
167void ulpi_unregister_driver(struct ulpi_driver *drv)
168{
169 driver_unregister(&drv->driver);
170}
171EXPORT_SYMBOL_GPL(ulpi_unregister_driver);
172
173/* -------------------------------------------------------------------------- */
174
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800175static int ulpi_of_register(struct ulpi *ulpi)
176{
177 struct device_node *np = NULL, *child;
178 struct device *parent;
179
180 /* Find a ulpi bus underneath the parent or the grandparent */
181 parent = ulpi->dev.parent;
182 if (parent->of_node)
Johan Hovold33c309e2017-11-11 16:31:18 +0100183 np = of_get_child_by_name(parent->of_node, "ulpi");
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800184 else if (parent->parent && parent->parent->of_node)
Johan Hovold33c309e2017-11-11 16:31:18 +0100185 np = of_get_child_by_name(parent->parent->of_node, "ulpi");
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800186 if (!np)
187 return 0;
188
189 child = of_get_next_available_child(np, NULL);
190 of_node_put(np);
191 if (!child)
192 return -EINVAL;
193
194 ulpi->dev.of_node = child;
195
196 return 0;
197}
198
199static int ulpi_read_id(struct ulpi *ulpi)
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300200{
201 int ret;
202
203 /* Test the interface */
204 ret = ulpi_write(ulpi, ULPI_SCRATCH, 0xaa);
205 if (ret < 0)
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800206 goto err;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300207
208 ret = ulpi_read(ulpi, ULPI_SCRATCH);
209 if (ret < 0)
210 return ret;
211
212 if (ret != 0xaa)
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800213 goto err;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300214
215 ulpi->id.vendor = ulpi_read(ulpi, ULPI_VENDOR_ID_LOW);
216 ulpi->id.vendor |= ulpi_read(ulpi, ULPI_VENDOR_ID_HIGH) << 8;
217
218 ulpi->id.product = ulpi_read(ulpi, ULPI_PRODUCT_ID_LOW);
219 ulpi->id.product |= ulpi_read(ulpi, ULPI_PRODUCT_ID_HIGH) << 8;
220
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800221 /* Some ULPI devices don't have a vendor id so rely on OF match */
222 if (ulpi->id.vendor == 0)
223 goto err;
224
225 request_module("ulpi:v%04xp%04x", ulpi->id.vendor, ulpi->id.product);
226 return 0;
227err:
228 of_device_request_module(&ulpi->dev);
229 return 0;
230}
231
232static int ulpi_register(struct device *dev, struct ulpi *ulpi)
233{
234 int ret;
235
236 ulpi->dev.parent = dev; /* needed early for ops */
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300237 ulpi->dev.bus = &ulpi_bus;
238 ulpi->dev.type = &ulpi_dev_type;
239 dev_set_name(&ulpi->dev, "%s.ulpi", dev_name(dev));
240
241 ACPI_COMPANION_SET(&ulpi->dev, ACPI_COMPANION(dev));
242
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800243 ret = ulpi_of_register(ulpi);
244 if (ret)
245 return ret;
246
247 ret = ulpi_read_id(ulpi);
248 if (ret)
249 return ret;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300250
251 ret = device_register(&ulpi->dev);
252 if (ret)
253 return ret;
254
255 dev_dbg(&ulpi->dev, "registered ULPI PHY: vendor %04x, product %04x\n",
256 ulpi->id.vendor, ulpi->id.product);
257
258 return 0;
259}
260
261/**
262 * ulpi_register_interface - instantiate new ULPI device
263 * @dev: USB controller's device interface
264 * @ops: ULPI register access
265 *
266 * Allocates and registers a ULPI device and an interface for it. Called from
267 * the USB controller that provides the ULPI interface.
268 */
Tal Shorerb9454f92016-08-16 19:04:52 +0300269struct ulpi *ulpi_register_interface(struct device *dev,
270 const struct ulpi_ops *ops)
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300271{
272 struct ulpi *ulpi;
273 int ret;
274
275 ulpi = kzalloc(sizeof(*ulpi), GFP_KERNEL);
276 if (!ulpi)
277 return ERR_PTR(-ENOMEM);
278
279 ulpi->ops = ops;
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300280
281 ret = ulpi_register(dev, ulpi);
282 if (ret) {
283 kfree(ulpi);
284 return ERR_PTR(ret);
285 }
286
287 return ulpi;
288}
289EXPORT_SYMBOL_GPL(ulpi_register_interface);
290
291/**
292 * ulpi_unregister_interface - unregister ULPI interface
293 * @intrf: struct ulpi_interface
294 *
295 * Unregisters a ULPI device and it's interface that was created with
296 * ulpi_create_interface().
297 */
298void ulpi_unregister_interface(struct ulpi *ulpi)
299{
Stephen Boydef6a7bc2016-12-28 14:56:49 -0800300 of_node_put(ulpi->dev.of_node);
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300301 device_unregister(&ulpi->dev);
302}
303EXPORT_SYMBOL_GPL(ulpi_unregister_interface);
304
305/* -------------------------------------------------------------------------- */
306
307static int __init ulpi_init(void)
308{
309 return bus_register(&ulpi_bus);
310}
Lu Baolu4696b882015-06-04 20:44:14 +0800311subsys_initcall(ulpi_init);
Heikki Krogerus289fcff2015-05-13 15:26:42 +0300312
313static void __exit ulpi_exit(void)
314{
315 bus_unregister(&ulpi_bus);
316}
317module_exit(ulpi_exit);
318
319MODULE_AUTHOR("Intel Corporation");
320MODULE_LICENSE("GPL v2");
321MODULE_DESCRIPTION("USB ULPI PHY bus");