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(struct fwnode_handle *fwnode, const char *id,
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(struct fwnode_handle *fwnode, const char *id,
268 const struct typec_altmode_desc *desc = data;
277 * Check has the identifier already been "consumed". If it
278 * has, no need to do any extra connection identification.
286 * Accessory Mode muxes & muxes which explicitly specify
287 * the required identifier can avoid SVID matching.
289 match = fwnode_property_present(fwnode, "accessory") ||
290 fwnode_property_present(fwnode, id);
296 /* Alternate Mode muxes */
297 nval = fwnode_property_count_u16(fwnode, "svid");
301 val = kcalloc(nval, sizeof(*val), GFP_KERNEL);
303 return ERR_PTR(-ENOMEM);
305 ret = fwnode_property_read_u16_array(fwnode, "svid", val, nval);
311 for (i = 0; i < nval; i++) {
312 match = val[i] == desc->svid;
322 dev = class_find_device(&typec_mux_class, NULL, fwnode,
325 return dev ? to_typec_mux_dev(dev) : ERR_PTR(-EPROBE_DEFER);
329 * fwnode_typec_mux_get - Find USB Type-C Multiplexer
330 * @fwnode: The caller device node
331 * @desc: Alt Mode description
333 * Finds a mux linked to the caller. This function is primarily meant for the
334 * Type-C drivers. Returns a reference to the mux on success, NULL if no
335 * matching connection was found, or ERR_PTR(-EPROBE_DEFER) when a connection
336 * was found but the mux has not been enumerated yet.
338 struct typec_mux *fwnode_typec_mux_get(struct fwnode_handle *fwnode,
339 const struct typec_altmode_desc *desc)
341 struct typec_mux_dev *mux_devs[TYPEC_MUX_MAX_DEVS];
342 struct typec_mux *mux;
347 mux = kzalloc(sizeof(*mux), GFP_KERNEL);
349 return ERR_PTR(-ENOMEM);
351 count = fwnode_connection_find_matches(fwnode, "mode-switch",
352 (void *)desc, typec_mux_match,
354 ARRAY_SIZE(mux_devs));
360 for (i = 0; i < count; i++) {
361 if (IS_ERR(mux_devs[i])) {
362 err = PTR_ERR(mux_devs[i]);
367 for (i = 0; i < count; i++) {
368 WARN_ON(!try_module_get(mux_devs[i]->dev.parent->driver->owner));
369 mux->mux_devs[i] = mux_devs[i];
372 mux->num_mux_devs = count;
377 for (i = 0; i < count; i++) {
378 if (!IS_ERR(mux_devs[i]))
379 put_device(&mux_devs[i]->dev);
386 EXPORT_SYMBOL_GPL(fwnode_typec_mux_get);
389 * typec_mux_put - Release handle to a Multiplexer
390 * @mux: USB Type-C Connector Multiplexer/DeMultiplexer
392 * Decrements reference count for @mux.
394 void typec_mux_put(struct typec_mux *mux)
396 struct typec_mux_dev *mux_dev;
399 if (IS_ERR_OR_NULL(mux))
402 for (i = 0; i < mux->num_mux_devs; i++) {
403 mux_dev = mux->mux_devs[i];
404 module_put(mux_dev->dev.parent->driver->owner);
405 put_device(&mux_dev->dev);
409 EXPORT_SYMBOL_GPL(typec_mux_put);
411 int typec_mux_set(struct typec_mux *mux, struct typec_mux_state *state)
413 struct typec_mux_dev *mux_dev;
417 if (IS_ERR_OR_NULL(mux))
420 for (i = 0; i < mux->num_mux_devs; i++) {
421 mux_dev = mux->mux_devs[i];
423 ret = mux_dev->set(mux_dev, state);
430 EXPORT_SYMBOL_GPL(typec_mux_set);
432 static void typec_mux_release(struct device *dev)
434 kfree(to_typec_mux_dev(dev));
437 const struct device_type typec_mux_dev_type = {
438 .name = "mode_switch",
439 .release = typec_mux_release,
443 * typec_mux_register - Register Multiplexer routing USB Type-C pins
444 * @parent: Parent device
445 * @desc: Multiplexer description
447 * USB Type-C connectors can be used for alternate modes of operation besides
448 * USB when Accessory/Alternate Modes are supported. With some of those modes,
449 * the pins on the connector need to be reconfigured. This function registers
450 * multiplexer switches routing the pins on the connector.
452 struct typec_mux_dev *
453 typec_mux_register(struct device *parent, const struct typec_mux_desc *desc)
455 struct typec_mux_dev *mux_dev;
458 if (!desc || !desc->set)
459 return ERR_PTR(-EINVAL);
461 mux_dev = kzalloc(sizeof(*mux_dev), GFP_KERNEL);
463 return ERR_PTR(-ENOMEM);
465 mux_dev->set = desc->set;
467 device_initialize(&mux_dev->dev);
468 mux_dev->dev.parent = parent;
469 mux_dev->dev.fwnode = desc->fwnode;
470 mux_dev->dev.class = &typec_mux_class;
471 mux_dev->dev.type = &typec_mux_dev_type;
472 mux_dev->dev.driver_data = desc->drvdata;
473 ret = dev_set_name(&mux_dev->dev, "%s-mux", desc->name ? desc->name : dev_name(parent));
475 put_device(&mux_dev->dev);
479 ret = device_add(&mux_dev->dev);
481 dev_err(parent, "failed to register mux (%d)\n", ret);
482 put_device(&mux_dev->dev);
488 EXPORT_SYMBOL_GPL(typec_mux_register);
491 * typec_mux_unregister - Unregister Multiplexer Switch
492 * @mux_dev: USB Type-C Connector Multiplexer/DeMultiplexer
494 * Unregister mux that was registered with typec_mux_register().
496 void typec_mux_unregister(struct typec_mux_dev *mux_dev)
498 if (!IS_ERR_OR_NULL(mux_dev))
499 device_unregister(&mux_dev->dev);
501 EXPORT_SYMBOL_GPL(typec_mux_unregister);
503 void typec_mux_set_drvdata(struct typec_mux_dev *mux_dev, void *data)
505 dev_set_drvdata(&mux_dev->dev, data);
507 EXPORT_SYMBOL_GPL(typec_mux_set_drvdata);
509 void *typec_mux_get_drvdata(struct typec_mux_dev *mux_dev)
511 return dev_get_drvdata(&mux_dev->dev);
513 EXPORT_SYMBOL_GPL(typec_mux_get_drvdata);
515 struct class typec_mux_class = {
517 .owner = THIS_MODULE,