1 // SPDX-License-Identifier: GPL-2.0
3 * USB Type-C Multiplexer/DeMultiplexer Switch support
5 * Copyright (C) 2018 Intel Corporation
10 #include <linux/device.h>
11 #include <linux/list.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/property.h>
15 #include <linux/slab.h>
20 #define TYPEC_MUX_MAX_DEVS 3
23 struct typec_switch_dev *sw_devs[TYPEC_MUX_MAX_DEVS];
24 unsigned int num_sw_devs;
27 static int switch_fwnode_match(struct device *dev, const void *fwnode)
29 if (!is_typec_switch_dev(dev))
32 return device_match_fwnode(dev, fwnode);
35 static void *typec_switch_match(const struct fwnode_handle *fwnode,
36 const char *id, void *data)
41 * Device graph (OF graph) does not give any means to identify the
42 * device type or the device class of the remote port parent that @fwnode
43 * represents, so in order to identify the type or the class of @fwnode
44 * an additional device property is needed. With typec switches the
45 * property is named "orientation-switch" (@id). The value of the device
46 * property is ignored.
48 if (id && !fwnode_property_present(fwnode, id))
52 * At this point we are sure that @fwnode is a typec switch in all
53 * cases. If the switch hasn't yet been registered for some reason, the
54 * function "defers probe" for now.
56 dev = class_find_device(&typec_mux_class, NULL, fwnode,
59 return dev ? to_typec_switch_dev(dev) : ERR_PTR(-EPROBE_DEFER);
63 * fwnode_typec_switch_get - Find USB Type-C orientation switch
64 * @fwnode: The caller device node
66 * Finds a switch linked with @dev. Returns a reference to the switch on
67 * success, NULL if no matching connection was found, or
68 * ERR_PTR(-EPROBE_DEFER) when a connection was found but the switch
69 * has not been enumerated yet.
71 struct typec_switch *fwnode_typec_switch_get(struct fwnode_handle *fwnode)
73 struct typec_switch_dev *sw_devs[TYPEC_MUX_MAX_DEVS];
74 struct typec_switch *sw;
79 sw = kzalloc(sizeof(*sw), GFP_KERNEL);
81 return ERR_PTR(-ENOMEM);
83 count = fwnode_connection_find_matches(fwnode, "orientation-switch", NULL,
92 for (i = 0; i < count; i++) {
93 if (IS_ERR(sw_devs[i])) {
94 err = PTR_ERR(sw_devs[i]);
99 for (i = 0; i < count; i++) {
100 WARN_ON(!try_module_get(sw_devs[i]->dev.parent->driver->owner));
101 sw->sw_devs[i] = sw_devs[i];
104 sw->num_sw_devs = count;
109 for (i = 0; i < count; i++) {
110 if (!IS_ERR(sw_devs[i]))
111 put_device(&sw_devs[i]->dev);
118 EXPORT_SYMBOL_GPL(fwnode_typec_switch_get);
121 * typec_switch_put - Release USB Type-C orientation switch
122 * @sw: USB Type-C orientation switch
124 * Decrement reference count for @sw.
126 void typec_switch_put(struct typec_switch *sw)
128 struct typec_switch_dev *sw_dev;
131 if (IS_ERR_OR_NULL(sw))
134 for (i = 0; i < sw->num_sw_devs; i++) {
135 sw_dev = sw->sw_devs[i];
137 module_put(sw_dev->dev.parent->driver->owner);
138 put_device(&sw_dev->dev);
142 EXPORT_SYMBOL_GPL(typec_switch_put);
144 static void typec_switch_release(struct device *dev)
146 kfree(to_typec_switch_dev(dev));
149 const struct device_type typec_switch_dev_type = {
150 .name = "orientation_switch",
151 .release = typec_switch_release,
155 * typec_switch_register - Register USB Type-C orientation switch
156 * @parent: Parent device
157 * @desc: Orientation switch description
159 * This function registers a switch that can be used for routing the correct
160 * data pairs depending on the cable plug orientation from the USB Type-C
161 * connector to the USB controllers. USB Type-C plugs can be inserted
162 * right-side-up or upside-down.
164 struct typec_switch_dev *
165 typec_switch_register(struct device *parent,
166 const struct typec_switch_desc *desc)
168 struct typec_switch_dev *sw_dev;
171 if (!desc || !desc->set)
172 return ERR_PTR(-EINVAL);
174 sw_dev = kzalloc(sizeof(*sw_dev), GFP_KERNEL);
176 return ERR_PTR(-ENOMEM);
178 sw_dev->set = desc->set;
180 device_initialize(&sw_dev->dev);
181 sw_dev->dev.parent = parent;
182 sw_dev->dev.fwnode = desc->fwnode;
183 sw_dev->dev.class = &typec_mux_class;
184 sw_dev->dev.type = &typec_switch_dev_type;
185 sw_dev->dev.driver_data = desc->drvdata;
186 ret = dev_set_name(&sw_dev->dev, "%s-switch", desc->name ? desc->name : dev_name(parent));
188 put_device(&sw_dev->dev);
192 ret = device_add(&sw_dev->dev);
194 dev_err(parent, "failed to register switch (%d)\n", ret);
195 put_device(&sw_dev->dev);
201 EXPORT_SYMBOL_GPL(typec_switch_register);
203 int typec_switch_set(struct typec_switch *sw,
204 enum typec_orientation orientation)
206 struct typec_switch_dev *sw_dev;
210 if (IS_ERR_OR_NULL(sw))
213 for (i = 0; i < sw->num_sw_devs; i++) {
214 sw_dev = sw->sw_devs[i];
216 ret = sw_dev->set(sw_dev, orientation);
223 EXPORT_SYMBOL_GPL(typec_switch_set);
226 * typec_switch_unregister - Unregister USB Type-C orientation switch
227 * @sw_dev: USB Type-C orientation switch
229 * Unregister switch that was registered with typec_switch_register().
231 void typec_switch_unregister(struct typec_switch_dev *sw_dev)
233 if (!IS_ERR_OR_NULL(sw_dev))
234 device_unregister(&sw_dev->dev);
236 EXPORT_SYMBOL_GPL(typec_switch_unregister);
238 void typec_switch_set_drvdata(struct typec_switch_dev *sw_dev, void *data)
240 dev_set_drvdata(&sw_dev->dev, data);
242 EXPORT_SYMBOL_GPL(typec_switch_set_drvdata);
244 void *typec_switch_get_drvdata(struct typec_switch_dev *sw_dev)
246 return dev_get_drvdata(&sw_dev->dev);
248 EXPORT_SYMBOL_GPL(typec_switch_get_drvdata);
250 /* ------------------------------------------------------------------------- */
253 struct typec_mux_dev *mux_devs[TYPEC_MUX_MAX_DEVS];
254 unsigned int num_mux_devs;
257 static int mux_fwnode_match(struct device *dev, const void *fwnode)
259 if (!is_typec_mux_dev(dev))
262 return device_match_fwnode(dev, fwnode);
265 static void *typec_mux_match(const struct fwnode_handle *fwnode,
266 const char *id, void *data)
271 * Device graph (OF graph) does not give any means to identify the
272 * device type or the device class of the remote port parent that @fwnode
273 * represents, so in order to identify the type or the class of @fwnode
274 * an additional device property is needed. With typec muxes the
275 * property is named "mode-switch" (@id). The value of the device
276 * property is ignored.
278 if (id && !fwnode_property_present(fwnode, id))
281 dev = class_find_device(&typec_mux_class, NULL, fwnode,
284 return dev ? to_typec_mux_dev(dev) : ERR_PTR(-EPROBE_DEFER);
288 * fwnode_typec_mux_get - Find USB Type-C Multiplexer
289 * @fwnode: The caller device node
291 * Finds a mux linked to the caller. This function is primarily meant for the
292 * Type-C drivers. Returns a reference to the mux on success, NULL if no
293 * matching connection was found, or ERR_PTR(-EPROBE_DEFER) when a connection
294 * was found but the mux has not been enumerated yet.
296 struct typec_mux *fwnode_typec_mux_get(struct fwnode_handle *fwnode)
298 struct typec_mux_dev *mux_devs[TYPEC_MUX_MAX_DEVS];
299 struct typec_mux *mux;
304 mux = kzalloc(sizeof(*mux), GFP_KERNEL);
306 return ERR_PTR(-ENOMEM);
308 count = fwnode_connection_find_matches(fwnode, "mode-switch",
309 NULL, typec_mux_match,
311 ARRAY_SIZE(mux_devs));
317 for (i = 0; i < count; i++) {
318 if (IS_ERR(mux_devs[i])) {
319 err = PTR_ERR(mux_devs[i]);
324 for (i = 0; i < count; i++) {
325 WARN_ON(!try_module_get(mux_devs[i]->dev.parent->driver->owner));
326 mux->mux_devs[i] = mux_devs[i];
329 mux->num_mux_devs = count;
334 for (i = 0; i < count; i++) {
335 if (!IS_ERR(mux_devs[i]))
336 put_device(&mux_devs[i]->dev);
343 EXPORT_SYMBOL_GPL(fwnode_typec_mux_get);
346 * typec_mux_put - Release handle to a Multiplexer
347 * @mux: USB Type-C Connector Multiplexer/DeMultiplexer
349 * Decrements reference count for @mux.
351 void typec_mux_put(struct typec_mux *mux)
353 struct typec_mux_dev *mux_dev;
356 if (IS_ERR_OR_NULL(mux))
359 for (i = 0; i < mux->num_mux_devs; i++) {
360 mux_dev = mux->mux_devs[i];
361 module_put(mux_dev->dev.parent->driver->owner);
362 put_device(&mux_dev->dev);
366 EXPORT_SYMBOL_GPL(typec_mux_put);
368 int typec_mux_set(struct typec_mux *mux, struct typec_mux_state *state)
370 struct typec_mux_dev *mux_dev;
374 if (IS_ERR_OR_NULL(mux))
377 for (i = 0; i < mux->num_mux_devs; i++) {
378 mux_dev = mux->mux_devs[i];
380 ret = mux_dev->set(mux_dev, state);
387 EXPORT_SYMBOL_GPL(typec_mux_set);
389 static void typec_mux_release(struct device *dev)
391 kfree(to_typec_mux_dev(dev));
394 const struct device_type typec_mux_dev_type = {
395 .name = "mode_switch",
396 .release = typec_mux_release,
400 * typec_mux_register - Register Multiplexer routing USB Type-C pins
401 * @parent: Parent device
402 * @desc: Multiplexer description
404 * USB Type-C connectors can be used for alternate modes of operation besides
405 * USB when Accessory/Alternate Modes are supported. With some of those modes,
406 * the pins on the connector need to be reconfigured. This function registers
407 * multiplexer switches routing the pins on the connector.
409 struct typec_mux_dev *
410 typec_mux_register(struct device *parent, const struct typec_mux_desc *desc)
412 struct typec_mux_dev *mux_dev;
415 if (!desc || !desc->set)
416 return ERR_PTR(-EINVAL);
418 mux_dev = kzalloc(sizeof(*mux_dev), GFP_KERNEL);
420 return ERR_PTR(-ENOMEM);
422 mux_dev->set = desc->set;
424 device_initialize(&mux_dev->dev);
425 mux_dev->dev.parent = parent;
426 mux_dev->dev.fwnode = desc->fwnode;
427 mux_dev->dev.class = &typec_mux_class;
428 mux_dev->dev.type = &typec_mux_dev_type;
429 mux_dev->dev.driver_data = desc->drvdata;
430 ret = dev_set_name(&mux_dev->dev, "%s-mux", desc->name ? desc->name : dev_name(parent));
432 put_device(&mux_dev->dev);
436 ret = device_add(&mux_dev->dev);
438 dev_err(parent, "failed to register mux (%d)\n", ret);
439 put_device(&mux_dev->dev);
445 EXPORT_SYMBOL_GPL(typec_mux_register);
448 * typec_mux_unregister - Unregister Multiplexer Switch
449 * @mux_dev: USB Type-C Connector Multiplexer/DeMultiplexer
451 * Unregister mux that was registered with typec_mux_register().
453 void typec_mux_unregister(struct typec_mux_dev *mux_dev)
455 if (!IS_ERR_OR_NULL(mux_dev))
456 device_unregister(&mux_dev->dev);
458 EXPORT_SYMBOL_GPL(typec_mux_unregister);
460 void typec_mux_set_drvdata(struct typec_mux_dev *mux_dev, void *data)
462 dev_set_drvdata(&mux_dev->dev, data);
464 EXPORT_SYMBOL_GPL(typec_mux_set_drvdata);
466 void *typec_mux_get_drvdata(struct typec_mux_dev *mux_dev)
468 return dev_get_drvdata(&mux_dev->dev);
470 EXPORT_SYMBOL_GPL(typec_mux_get_drvdata);
472 struct class typec_mux_class = {