2 * ulpi.c - USB ULPI PHY bus
4 * Copyright (C) 2015 Intel Corporation
6 * Author: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/ulpi/interface.h>
14 #include <linux/ulpi/driver.h>
15 #include <linux/ulpi/regs.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/acpi.h>
20 #include <linux/of_device.h>
21 #include <linux/clk/clk-conf.h>
23 /* -------------------------------------------------------------------------- */
25 int ulpi_read(struct ulpi
*ulpi
, u8 addr
)
27 return ulpi
->ops
->read(ulpi
->dev
.parent
, addr
);
29 EXPORT_SYMBOL_GPL(ulpi_read
);
31 int ulpi_write(struct ulpi
*ulpi
, u8 addr
, u8 val
)
33 return ulpi
->ops
->write(ulpi
->dev
.parent
, addr
, val
);
35 EXPORT_SYMBOL_GPL(ulpi_write
);
37 /* -------------------------------------------------------------------------- */
39 static int ulpi_match(struct device
*dev
, struct device_driver
*driver
)
41 struct ulpi_driver
*drv
= to_ulpi_driver(driver
);
42 struct ulpi
*ulpi
= to_ulpi_dev(dev
);
43 const struct ulpi_device_id
*id
;
45 /* Some ULPI devices don't have a vendor id so rely on OF match */
46 if (ulpi
->id
.vendor
== 0)
47 return of_driver_match_device(dev
, driver
);
49 for (id
= drv
->id_table
; id
->vendor
; id
++)
50 if (id
->vendor
== ulpi
->id
.vendor
&&
51 id
->product
== ulpi
->id
.product
)
57 static int ulpi_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
59 struct ulpi
*ulpi
= to_ulpi_dev(dev
);
62 ret
= of_device_uevent_modalias(dev
, env
);
66 if (add_uevent_var(env
, "MODALIAS=ulpi:v%04xp%04x",
67 ulpi
->id
.vendor
, ulpi
->id
.product
))
72 static int ulpi_probe(struct device
*dev
)
74 struct ulpi_driver
*drv
= to_ulpi_driver(dev
->driver
);
77 ret
= of_clk_set_defaults(dev
->of_node
, false);
81 return drv
->probe(to_ulpi_dev(dev
));
84 static int ulpi_remove(struct device
*dev
)
86 struct ulpi_driver
*drv
= to_ulpi_driver(dev
->driver
);
89 drv
->remove(to_ulpi_dev(dev
));
94 static struct bus_type ulpi_bus
= {
97 .uevent
= ulpi_uevent
,
99 .remove
= ulpi_remove
,
102 /* -------------------------------------------------------------------------- */
104 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*attr
,
108 struct ulpi
*ulpi
= to_ulpi_dev(dev
);
110 len
= of_device_modalias(dev
, buf
, PAGE_SIZE
);
114 return sprintf(buf
, "ulpi:v%04xp%04x\n",
115 ulpi
->id
.vendor
, ulpi
->id
.product
);
117 static DEVICE_ATTR_RO(modalias
);
119 static struct attribute
*ulpi_dev_attrs
[] = {
120 &dev_attr_modalias
.attr
,
124 static struct attribute_group ulpi_dev_attr_group
= {
125 .attrs
= ulpi_dev_attrs
,
128 static const struct attribute_group
*ulpi_dev_attr_groups
[] = {
129 &ulpi_dev_attr_group
,
133 static void ulpi_dev_release(struct device
*dev
)
135 kfree(to_ulpi_dev(dev
));
138 static const struct device_type ulpi_dev_type
= {
139 .name
= "ulpi_device",
140 .groups
= ulpi_dev_attr_groups
,
141 .release
= ulpi_dev_release
,
144 /* -------------------------------------------------------------------------- */
147 * ulpi_register_driver - register a driver with the ULPI bus
148 * @drv: driver being registered
150 * Registers a driver with the ULPI bus.
152 int __ulpi_register_driver(struct ulpi_driver
*drv
, struct module
*module
)
157 drv
->driver
.owner
= module
;
158 drv
->driver
.bus
= &ulpi_bus
;
160 return driver_register(&drv
->driver
);
162 EXPORT_SYMBOL_GPL(__ulpi_register_driver
);
165 * ulpi_unregister_driver - unregister a driver with the ULPI bus
166 * @drv: driver to unregister
168 * Unregisters a driver with the ULPI bus.
170 void ulpi_unregister_driver(struct ulpi_driver
*drv
)
172 driver_unregister(&drv
->driver
);
174 EXPORT_SYMBOL_GPL(ulpi_unregister_driver
);
176 /* -------------------------------------------------------------------------- */
178 static int ulpi_of_register(struct ulpi
*ulpi
)
180 struct device_node
*np
= NULL
, *child
;
181 struct device
*parent
;
183 /* Find a ulpi bus underneath the parent or the grandparent */
184 parent
= ulpi
->dev
.parent
;
186 np
= of_find_node_by_name(parent
->of_node
, "ulpi");
187 else if (parent
->parent
&& parent
->parent
->of_node
)
188 np
= of_find_node_by_name(parent
->parent
->of_node
, "ulpi");
192 child
= of_get_next_available_child(np
, NULL
);
197 ulpi
->dev
.of_node
= child
;
202 static int ulpi_read_id(struct ulpi
*ulpi
)
206 /* Test the interface */
207 ret
= ulpi_write(ulpi
, ULPI_SCRATCH
, 0xaa);
211 ret
= ulpi_read(ulpi
, ULPI_SCRATCH
);
218 ulpi
->id
.vendor
= ulpi_read(ulpi
, ULPI_VENDOR_ID_LOW
);
219 ulpi
->id
.vendor
|= ulpi_read(ulpi
, ULPI_VENDOR_ID_HIGH
) << 8;
221 ulpi
->id
.product
= ulpi_read(ulpi
, ULPI_PRODUCT_ID_LOW
);
222 ulpi
->id
.product
|= ulpi_read(ulpi
, ULPI_PRODUCT_ID_HIGH
) << 8;
224 /* Some ULPI devices don't have a vendor id so rely on OF match */
225 if (ulpi
->id
.vendor
== 0)
228 request_module("ulpi:v%04xp%04x", ulpi
->id
.vendor
, ulpi
->id
.product
);
231 of_device_request_module(&ulpi
->dev
);
235 static int ulpi_register(struct device
*dev
, struct ulpi
*ulpi
)
239 ulpi
->dev
.parent
= dev
; /* needed early for ops */
240 ulpi
->dev
.bus
= &ulpi_bus
;
241 ulpi
->dev
.type
= &ulpi_dev_type
;
242 dev_set_name(&ulpi
->dev
, "%s.ulpi", dev_name(dev
));
244 ACPI_COMPANION_SET(&ulpi
->dev
, ACPI_COMPANION(dev
));
246 ret
= ulpi_of_register(ulpi
);
250 ret
= ulpi_read_id(ulpi
);
254 ret
= device_register(&ulpi
->dev
);
258 dev_dbg(&ulpi
->dev
, "registered ULPI PHY: vendor %04x, product %04x\n",
259 ulpi
->id
.vendor
, ulpi
->id
.product
);
265 * ulpi_register_interface - instantiate new ULPI device
266 * @dev: USB controller's device interface
267 * @ops: ULPI register access
269 * Allocates and registers a ULPI device and an interface for it. Called from
270 * the USB controller that provides the ULPI interface.
272 struct ulpi
*ulpi_register_interface(struct device
*dev
,
273 const struct ulpi_ops
*ops
)
278 ulpi
= kzalloc(sizeof(*ulpi
), GFP_KERNEL
);
280 return ERR_PTR(-ENOMEM
);
284 ret
= ulpi_register(dev
, ulpi
);
292 EXPORT_SYMBOL_GPL(ulpi_register_interface
);
295 * ulpi_unregister_interface - unregister ULPI interface
296 * @intrf: struct ulpi_interface
298 * Unregisters a ULPI device and it's interface that was created with
299 * ulpi_create_interface().
301 void ulpi_unregister_interface(struct ulpi
*ulpi
)
303 of_node_put(ulpi
->dev
.of_node
);
304 device_unregister(&ulpi
->dev
);
306 EXPORT_SYMBOL_GPL(ulpi_unregister_interface
);
308 /* -------------------------------------------------------------------------- */
310 static int __init
ulpi_init(void)
312 return bus_register(&ulpi_bus
);
314 subsys_initcall(ulpi_init
);
316 static void __exit
ulpi_exit(void)
318 bus_unregister(&ulpi_bus
);
320 module_exit(ulpi_exit
);
322 MODULE_AUTHOR("Intel Corporation");
323 MODULE_LICENSE("GPL v2");
324 MODULE_DESCRIPTION("USB ULPI PHY bus");