Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2016-2017 Linaro Ltd., Rob Herring <robh@kernel.org>
  4 *
  5 * Based on drivers/spmi/spmi.c:
  6 * Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
  7 */
  8
  9#include <linux/acpi.h>
 10#include <linux/errno.h>
 11#include <linux/idr.h>
 12#include <linux/kernel.h>
 13#include <linux/module.h>
 14#include <linux/of.h>
 15#include <linux/of_device.h>
 
 
 
 16#include <linux/serdev.h>
 17#include <linux/slab.h>
 
 18
 19static bool is_registered;
 20static DEFINE_IDA(ctrl_ida);
 21
 22static ssize_t modalias_show(struct device *dev,
 23			     struct device_attribute *attr, char *buf)
 24{
 25	int len;
 26
 27	len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
 28	if (len != -ENODEV)
 29		return len;
 30
 31	return of_device_modalias(dev, buf, PAGE_SIZE);
 32}
 33static DEVICE_ATTR_RO(modalias);
 34
 35static struct attribute *serdev_device_attrs[] = {
 36	&dev_attr_modalias.attr,
 37	NULL,
 38};
 39ATTRIBUTE_GROUPS(serdev_device);
 40
 41static int serdev_device_uevent(struct device *dev, struct kobj_uevent_env *env)
 42{
 43	int rc;
 44
 45	/* TODO: platform modalias */
 46
 47	rc = acpi_device_uevent_modalias(dev, env);
 48	if (rc != -ENODEV)
 49		return rc;
 50
 51	return of_device_uevent_modalias(dev, env);
 52}
 53
 54static void serdev_device_release(struct device *dev)
 55{
 56	struct serdev_device *serdev = to_serdev_device(dev);
 57	kfree(serdev);
 58}
 59
 60static const struct device_type serdev_device_type = {
 61	.groups		= serdev_device_groups,
 62	.uevent		= serdev_device_uevent,
 63	.release	= serdev_device_release,
 64};
 65
 66static bool is_serdev_device(const struct device *dev)
 67{
 68	return dev->type == &serdev_device_type;
 69}
 70
 71static void serdev_ctrl_release(struct device *dev)
 72{
 73	struct serdev_controller *ctrl = to_serdev_controller(dev);
 74	ida_simple_remove(&ctrl_ida, ctrl->nr);
 75	kfree(ctrl);
 76}
 77
 78static const struct device_type serdev_ctrl_type = {
 79	.release	= serdev_ctrl_release,
 80};
 81
 82static int serdev_device_match(struct device *dev, struct device_driver *drv)
 83{
 84	if (!is_serdev_device(dev))
 85		return 0;
 86
 87	/* TODO: platform matching */
 88	if (acpi_driver_match_device(dev, drv))
 89		return 1;
 90
 91	return of_driver_match_device(dev, drv);
 92}
 93
 94/**
 95 * serdev_device_add() - add a device previously constructed via serdev_device_alloc()
 96 * @serdev:	serdev_device to be added
 97 */
 98int serdev_device_add(struct serdev_device *serdev)
 99{
100	struct serdev_controller *ctrl = serdev->ctrl;
101	struct device *parent = serdev->dev.parent;
102	int err;
103
104	dev_set_name(&serdev->dev, "%s-%d", dev_name(parent), serdev->nr);
105
106	/* Only a single slave device is currently supported. */
107	if (ctrl->serdev) {
108		dev_err(&serdev->dev, "controller busy\n");
109		return -EBUSY;
110	}
111	ctrl->serdev = serdev;
112
113	err = device_add(&serdev->dev);
114	if (err < 0) {
115		dev_err(&serdev->dev, "Can't add %s, status %d\n",
116			dev_name(&serdev->dev), err);
117		goto err_clear_serdev;
118	}
119
120	dev_dbg(&serdev->dev, "device %s registered\n", dev_name(&serdev->dev));
121
122	return 0;
123
124err_clear_serdev:
125	ctrl->serdev = NULL;
126	return err;
127}
128EXPORT_SYMBOL_GPL(serdev_device_add);
129
130/**
131 * serdev_device_remove(): remove an serdev device
132 * @serdev:	serdev_device to be removed
133 */
134void serdev_device_remove(struct serdev_device *serdev)
135{
136	struct serdev_controller *ctrl = serdev->ctrl;
137
138	device_unregister(&serdev->dev);
139	ctrl->serdev = NULL;
140}
141EXPORT_SYMBOL_GPL(serdev_device_remove);
142
143int serdev_device_open(struct serdev_device *serdev)
144{
145	struct serdev_controller *ctrl = serdev->ctrl;
 
146
147	if (!ctrl || !ctrl->ops->open)
148		return -EINVAL;
149
150	return ctrl->ops->open(ctrl);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151}
152EXPORT_SYMBOL_GPL(serdev_device_open);
153
154void serdev_device_close(struct serdev_device *serdev)
155{
156	struct serdev_controller *ctrl = serdev->ctrl;
157
158	if (!ctrl || !ctrl->ops->close)
159		return;
160
 
 
161	ctrl->ops->close(ctrl);
162}
163EXPORT_SYMBOL_GPL(serdev_device_close);
164
165static void devm_serdev_device_release(struct device *dev, void *dr)
166{
167	serdev_device_close(*(struct serdev_device **)dr);
168}
169
170int devm_serdev_device_open(struct device *dev, struct serdev_device *serdev)
171{
172	struct serdev_device **dr;
173	int ret;
174
175	dr = devres_alloc(devm_serdev_device_release, sizeof(*dr), GFP_KERNEL);
176	if (!dr)
177		return -ENOMEM;
178
179	ret = serdev_device_open(serdev);
180	if (ret) {
181		devres_free(dr);
182		return ret;
183	}
184
185	*dr = serdev;
186	devres_add(dev, dr);
187
188	return 0;
189}
190EXPORT_SYMBOL_GPL(devm_serdev_device_open);
191
192void serdev_device_write_wakeup(struct serdev_device *serdev)
193{
194	complete(&serdev->write_comp);
195}
196EXPORT_SYMBOL_GPL(serdev_device_write_wakeup);
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198int serdev_device_write_buf(struct serdev_device *serdev,
199			    const unsigned char *buf, size_t count)
200{
201	struct serdev_controller *ctrl = serdev->ctrl;
202
203	if (!ctrl || !ctrl->ops->write_buf)
204		return -EINVAL;
205
206	return ctrl->ops->write_buf(ctrl, buf, count);
207}
208EXPORT_SYMBOL_GPL(serdev_device_write_buf);
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210int serdev_device_write(struct serdev_device *serdev,
211			const unsigned char *buf, size_t count,
212			unsigned long timeout)
213{
214	struct serdev_controller *ctrl = serdev->ctrl;
 
215	int ret;
216
217	if (!ctrl || !ctrl->ops->write_buf ||
218	    (timeout && !serdev->ops->write_wakeup))
219		return -EINVAL;
220
 
 
 
221	mutex_lock(&serdev->write_lock);
222	do {
223		reinit_completion(&serdev->write_comp);
224
225		ret = ctrl->ops->write_buf(ctrl, buf, count);
226		if (ret < 0)
227			break;
228
 
229		buf += ret;
230		count -= ret;
231
232	} while (count &&
233		 (timeout = wait_for_completion_timeout(&serdev->write_comp,
234							timeout)));
 
 
 
235	mutex_unlock(&serdev->write_lock);
236	return ret < 0 ? ret : (count ? -ETIMEDOUT : 0);
 
 
 
 
 
 
 
 
 
 
 
237}
238EXPORT_SYMBOL_GPL(serdev_device_write);
239
240void serdev_device_write_flush(struct serdev_device *serdev)
241{
242	struct serdev_controller *ctrl = serdev->ctrl;
243
244	if (!ctrl || !ctrl->ops->write_flush)
245		return;
246
247	ctrl->ops->write_flush(ctrl);
248}
249EXPORT_SYMBOL_GPL(serdev_device_write_flush);
250
251int serdev_device_write_room(struct serdev_device *serdev)
252{
253	struct serdev_controller *ctrl = serdev->ctrl;
254
255	if (!ctrl || !ctrl->ops->write_room)
256		return 0;
257
258	return serdev->ctrl->ops->write_room(ctrl);
259}
260EXPORT_SYMBOL_GPL(serdev_device_write_room);
261
262unsigned int serdev_device_set_baudrate(struct serdev_device *serdev, unsigned int speed)
263{
264	struct serdev_controller *ctrl = serdev->ctrl;
265
266	if (!ctrl || !ctrl->ops->set_baudrate)
267		return 0;
268
269	return ctrl->ops->set_baudrate(ctrl, speed);
270
271}
272EXPORT_SYMBOL_GPL(serdev_device_set_baudrate);
273
274void serdev_device_set_flow_control(struct serdev_device *serdev, bool enable)
275{
276	struct serdev_controller *ctrl = serdev->ctrl;
277
278	if (!ctrl || !ctrl->ops->set_flow_control)
279		return;
280
281	ctrl->ops->set_flow_control(ctrl, enable);
282}
283EXPORT_SYMBOL_GPL(serdev_device_set_flow_control);
284
285int serdev_device_set_parity(struct serdev_device *serdev,
286			     enum serdev_parity parity)
287{
288	struct serdev_controller *ctrl = serdev->ctrl;
289
290	if (!ctrl || !ctrl->ops->set_parity)
291		return -ENOTSUPP;
292
293	return ctrl->ops->set_parity(ctrl, parity);
294}
295EXPORT_SYMBOL_GPL(serdev_device_set_parity);
296
297void serdev_device_wait_until_sent(struct serdev_device *serdev, long timeout)
298{
299	struct serdev_controller *ctrl = serdev->ctrl;
300
301	if (!ctrl || !ctrl->ops->wait_until_sent)
302		return;
303
304	ctrl->ops->wait_until_sent(ctrl, timeout);
305}
306EXPORT_SYMBOL_GPL(serdev_device_wait_until_sent);
307
308int serdev_device_get_tiocm(struct serdev_device *serdev)
309{
310	struct serdev_controller *ctrl = serdev->ctrl;
311
312	if (!ctrl || !ctrl->ops->get_tiocm)
313		return -ENOTSUPP;
314
315	return ctrl->ops->get_tiocm(ctrl);
316}
317EXPORT_SYMBOL_GPL(serdev_device_get_tiocm);
318
319int serdev_device_set_tiocm(struct serdev_device *serdev, int set, int clear)
320{
321	struct serdev_controller *ctrl = serdev->ctrl;
322
323	if (!ctrl || !ctrl->ops->set_tiocm)
324		return -ENOTSUPP;
325
326	return ctrl->ops->set_tiocm(ctrl, set, clear);
327}
328EXPORT_SYMBOL_GPL(serdev_device_set_tiocm);
329
330static int serdev_drv_probe(struct device *dev)
331{
332	const struct serdev_device_driver *sdrv = to_serdev_device_driver(dev->driver);
 
 
 
 
 
 
 
 
 
333
334	return sdrv->probe(to_serdev_device(dev));
335}
336
337static int serdev_drv_remove(struct device *dev)
338{
339	const struct serdev_device_driver *sdrv = to_serdev_device_driver(dev->driver);
340	if (sdrv->remove)
341		sdrv->remove(to_serdev_device(dev));
342	return 0;
 
343}
344
345static struct bus_type serdev_bus_type = {
346	.name		= "serial",
347	.match		= serdev_device_match,
348	.probe		= serdev_drv_probe,
349	.remove		= serdev_drv_remove,
350};
351
352/**
353 * serdev_device_alloc() - Allocate a new serdev device
354 * @ctrl:	associated controller
355 *
356 * Caller is responsible for either calling serdev_device_add() to add the
357 * newly allocated controller, or calling serdev_device_put() to discard it.
358 */
359struct serdev_device *serdev_device_alloc(struct serdev_controller *ctrl)
360{
361	struct serdev_device *serdev;
362
363	serdev = kzalloc(sizeof(*serdev), GFP_KERNEL);
364	if (!serdev)
365		return NULL;
366
367	serdev->ctrl = ctrl;
368	device_initialize(&serdev->dev);
369	serdev->dev.parent = &ctrl->dev;
370	serdev->dev.bus = &serdev_bus_type;
371	serdev->dev.type = &serdev_device_type;
372	init_completion(&serdev->write_comp);
373	mutex_init(&serdev->write_lock);
374	return serdev;
375}
376EXPORT_SYMBOL_GPL(serdev_device_alloc);
377
378/**
379 * serdev_controller_alloc() - Allocate a new serdev controller
380 * @parent:	parent device
381 * @size:	size of private data
382 *
383 * Caller is responsible for either calling serdev_controller_add() to add the
384 * newly allocated controller, or calling serdev_controller_put() to discard it.
385 * The allocated private data region may be accessed via
386 * serdev_controller_get_drvdata()
387 */
388struct serdev_controller *serdev_controller_alloc(struct device *parent,
389					      size_t size)
390{
391	struct serdev_controller *ctrl;
392	int id;
393
394	if (WARN_ON(!parent))
395		return NULL;
396
397	ctrl = kzalloc(sizeof(*ctrl) + size, GFP_KERNEL);
398	if (!ctrl)
399		return NULL;
400
401	id = ida_simple_get(&ctrl_ida, 0, 0, GFP_KERNEL);
402	if (id < 0) {
403		dev_err(parent,
404			"unable to allocate serdev controller identifier.\n");
405		goto err_free;
406	}
407
408	ctrl->nr = id;
409
410	device_initialize(&ctrl->dev);
411	ctrl->dev.type = &serdev_ctrl_type;
412	ctrl->dev.bus = &serdev_bus_type;
413	ctrl->dev.parent = parent;
414	ctrl->dev.of_node = parent->of_node;
415	serdev_controller_set_drvdata(ctrl, &ctrl[1]);
416
417	dev_set_name(&ctrl->dev, "serial%d", id);
418
 
 
 
419	dev_dbg(&ctrl->dev, "allocated controller 0x%p id %d\n", ctrl, id);
420	return ctrl;
421
422err_free:
423	kfree(ctrl);
424
425	return NULL;
426}
427EXPORT_SYMBOL_GPL(serdev_controller_alloc);
428
429static int of_serdev_register_devices(struct serdev_controller *ctrl)
430{
431	struct device_node *node;
432	struct serdev_device *serdev = NULL;
433	int err;
434	bool found = false;
435
436	for_each_available_child_of_node(ctrl->dev.of_node, node) {
437		if (!of_get_property(node, "compatible", NULL))
438			continue;
439
440		dev_dbg(&ctrl->dev, "adding child %pOF\n", node);
441
442		serdev = serdev_device_alloc(ctrl);
443		if (!serdev)
444			continue;
445
446		serdev->dev.of_node = node;
447
448		err = serdev_device_add(serdev);
449		if (err) {
450			dev_err(&serdev->dev,
451				"failure adding device. status %d\n", err);
 
452			serdev_device_put(serdev);
453		} else
454			found = true;
455	}
456	if (!found)
457		return -ENODEV;
458
459	return 0;
460}
461
462#ifdef CONFIG_ACPI
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463static acpi_status acpi_serdev_register_device(struct serdev_controller *ctrl,
464					    struct acpi_device *adev)
465{
466	struct serdev_device *serdev = NULL;
467	int err;
468
469	if (acpi_bus_get_status(adev) || !adev->status.present ||
470	    acpi_device_enumerated(adev))
471		return AE_OK;
472
473	serdev = serdev_device_alloc(ctrl);
474	if (!serdev) {
475		dev_err(&ctrl->dev, "failed to allocate serdev device for %s\n",
476			dev_name(&adev->dev));
477		return AE_NO_MEMORY;
478	}
479
480	ACPI_COMPANION_SET(&serdev->dev, adev);
481	acpi_device_set_enumerated(adev);
482
483	err = serdev_device_add(serdev);
484	if (err) {
485		dev_err(&serdev->dev,
486			"failure adding ACPI serdev device. status %d\n", err);
 
487		serdev_device_put(serdev);
488	}
489
490	return AE_OK;
491}
492
 
 
 
 
 
 
493static acpi_status acpi_serdev_add_device(acpi_handle handle, u32 level,
494				       void *data, void **return_value)
495{
 
496	struct serdev_controller *ctrl = data;
497	struct acpi_device *adev;
498
499	if (acpi_bus_get_device(handle, &adev))
 
 
 
 
 
 
 
500		return AE_OK;
501
502	return acpi_serdev_register_device(ctrl, adev);
503}
504
 
505static int acpi_serdev_register_devices(struct serdev_controller *ctrl)
506{
507	acpi_status status;
508	acpi_handle handle;
 
509
510	handle = ACPI_HANDLE(ctrl->dev.parent);
511	if (!handle)
512		return -ENODEV;
513
514	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
515				     acpi_serdev_add_device, NULL, ctrl, NULL);
516	if (ACPI_FAILURE(status))
517		dev_dbg(&ctrl->dev, "failed to enumerate serdev slaves\n");
518
519	if (!ctrl->serdev)
520		return -ENODEV;
521
522	return 0;
523}
524#else
525static inline int acpi_serdev_register_devices(struct serdev_controller *ctrl)
526{
527	return -ENODEV;
528}
529#endif /* CONFIG_ACPI */
530
531/**
532 * serdev_controller_add() - Add an serdev controller
533 * @ctrl:	controller to be registered.
534 *
535 * Register a controller previously allocated via serdev_controller_alloc() with
536 * the serdev core.
537 */
538int serdev_controller_add(struct serdev_controller *ctrl)
539{
540	int ret_of, ret_acpi, ret;
541
542	/* Can't register until after driver model init */
543	if (WARN_ON(!is_registered))
544		return -EAGAIN;
545
546	ret = device_add(&ctrl->dev);
547	if (ret)
548		return ret;
549
 
 
550	ret_of = of_serdev_register_devices(ctrl);
551	ret_acpi = acpi_serdev_register_devices(ctrl);
552	if (ret_of && ret_acpi) {
553		dev_dbg(&ctrl->dev, "no devices registered: of:%d acpi:%d\n",
554			ret_of, ret_acpi);
555		ret = -ENODEV;
556		goto out_dev_del;
557	}
558
559	dev_dbg(&ctrl->dev, "serdev%d registered: dev:%p\n",
560		ctrl->nr, &ctrl->dev);
561	return 0;
562
563out_dev_del:
 
564	device_del(&ctrl->dev);
565	return ret;
566};
567EXPORT_SYMBOL_GPL(serdev_controller_add);
568
569/* Remove a device associated with a controller */
570static int serdev_remove_device(struct device *dev, void *data)
571{
572	struct serdev_device *serdev = to_serdev_device(dev);
573	if (dev->type == &serdev_device_type)
574		serdev_device_remove(serdev);
575	return 0;
576}
577
578/**
579 * serdev_controller_remove(): remove an serdev controller
580 * @ctrl:	controller to remove
581 *
582 * Remove a serdev controller.  Caller is responsible for calling
583 * serdev_controller_put() to discard the allocated controller.
584 */
585void serdev_controller_remove(struct serdev_controller *ctrl)
586{
587	int dummy;
588
589	if (!ctrl)
590		return;
591
592	dummy = device_for_each_child(&ctrl->dev, NULL,
593				      serdev_remove_device);
594	device_del(&ctrl->dev);
595}
596EXPORT_SYMBOL_GPL(serdev_controller_remove);
597
598/**
599 * serdev_driver_register() - Register client driver with serdev core
600 * @sdrv:	client driver to be associated with client-device.
 
601 *
602 * This API will register the client driver with the serdev framework.
603 * It is typically called from the driver's module-init function.
604 */
605int __serdev_device_driver_register(struct serdev_device_driver *sdrv, struct module *owner)
606{
607	sdrv->driver.bus = &serdev_bus_type;
608	sdrv->driver.owner = owner;
609
610	/* force drivers to async probe so I/O is possible in probe */
611        sdrv->driver.probe_type = PROBE_PREFER_ASYNCHRONOUS;
612
613	return driver_register(&sdrv->driver);
614}
615EXPORT_SYMBOL_GPL(__serdev_device_driver_register);
616
617static void __exit serdev_exit(void)
618{
619	bus_unregister(&serdev_bus_type);
 
620}
621module_exit(serdev_exit);
622
623static int __init serdev_init(void)
624{
625	int ret;
626
627	ret = bus_register(&serdev_bus_type);
628	if (ret)
629		return ret;
630
631	is_registered = true;
632	return 0;
633}
634/* Must be before serial drivers register */
635postcore_initcall(serdev_init);
636
637MODULE_AUTHOR("Rob Herring <robh@kernel.org>");
638MODULE_LICENSE("GPL v2");
639MODULE_DESCRIPTION("Serial attached device bus");
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2016-2017 Linaro Ltd., Rob Herring <robh@kernel.org>
  4 *
  5 * Based on drivers/spmi/spmi.c:
  6 * Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
  7 */
  8
  9#include <linux/acpi.h>
 10#include <linux/errno.h>
 11#include <linux/idr.h>
 12#include <linux/kernel.h>
 13#include <linux/module.h>
 14#include <linux/of.h>
 15#include <linux/of_device.h>
 16#include <linux/pm_domain.h>
 17#include <linux/pm_runtime.h>
 18#include <linux/sched.h>
 19#include <linux/serdev.h>
 20#include <linux/slab.h>
 21#include <linux/platform_data/x86/apple.h>
 22
 23static bool is_registered;
 24static DEFINE_IDA(ctrl_ida);
 25
 26static ssize_t modalias_show(struct device *dev,
 27			     struct device_attribute *attr, char *buf)
 28{
 29	int len;
 30
 31	len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
 32	if (len != -ENODEV)
 33		return len;
 34
 35	return of_device_modalias(dev, buf, PAGE_SIZE);
 36}
 37static DEVICE_ATTR_RO(modalias);
 38
 39static struct attribute *serdev_device_attrs[] = {
 40	&dev_attr_modalias.attr,
 41	NULL,
 42};
 43ATTRIBUTE_GROUPS(serdev_device);
 44
 45static int serdev_device_uevent(struct device *dev, struct kobj_uevent_env *env)
 46{
 47	int rc;
 48
 49	/* TODO: platform modalias */
 50
 51	rc = acpi_device_uevent_modalias(dev, env);
 52	if (rc != -ENODEV)
 53		return rc;
 54
 55	return of_device_uevent_modalias(dev, env);
 56}
 57
 58static void serdev_device_release(struct device *dev)
 59{
 60	struct serdev_device *serdev = to_serdev_device(dev);
 61	kfree(serdev);
 62}
 63
 64static const struct device_type serdev_device_type = {
 65	.groups		= serdev_device_groups,
 66	.uevent		= serdev_device_uevent,
 67	.release	= serdev_device_release,
 68};
 69
 70static bool is_serdev_device(const struct device *dev)
 71{
 72	return dev->type == &serdev_device_type;
 73}
 74
 75static void serdev_ctrl_release(struct device *dev)
 76{
 77	struct serdev_controller *ctrl = to_serdev_controller(dev);
 78	ida_simple_remove(&ctrl_ida, ctrl->nr);
 79	kfree(ctrl);
 80}
 81
 82static const struct device_type serdev_ctrl_type = {
 83	.release	= serdev_ctrl_release,
 84};
 85
 86static int serdev_device_match(struct device *dev, struct device_driver *drv)
 87{
 88	if (!is_serdev_device(dev))
 89		return 0;
 90
 91	/* TODO: platform matching */
 92	if (acpi_driver_match_device(dev, drv))
 93		return 1;
 94
 95	return of_driver_match_device(dev, drv);
 96}
 97
 98/**
 99 * serdev_device_add() - add a device previously constructed via serdev_device_alloc()
100 * @serdev:	serdev_device to be added
101 */
102int serdev_device_add(struct serdev_device *serdev)
103{
104	struct serdev_controller *ctrl = serdev->ctrl;
105	struct device *parent = serdev->dev.parent;
106	int err;
107
108	dev_set_name(&serdev->dev, "%s-%d", dev_name(parent), serdev->nr);
109
110	/* Only a single slave device is currently supported. */
111	if (ctrl->serdev) {
112		dev_err(&serdev->dev, "controller busy\n");
113		return -EBUSY;
114	}
115	ctrl->serdev = serdev;
116
117	err = device_add(&serdev->dev);
118	if (err < 0) {
119		dev_err(&serdev->dev, "Can't add %s, status %pe\n",
120			dev_name(&serdev->dev), ERR_PTR(err));
121		goto err_clear_serdev;
122	}
123
124	dev_dbg(&serdev->dev, "device %s registered\n", dev_name(&serdev->dev));
125
126	return 0;
127
128err_clear_serdev:
129	ctrl->serdev = NULL;
130	return err;
131}
132EXPORT_SYMBOL_GPL(serdev_device_add);
133
134/**
135 * serdev_device_remove(): remove an serdev device
136 * @serdev:	serdev_device to be removed
137 */
138void serdev_device_remove(struct serdev_device *serdev)
139{
140	struct serdev_controller *ctrl = serdev->ctrl;
141
142	device_unregister(&serdev->dev);
143	ctrl->serdev = NULL;
144}
145EXPORT_SYMBOL_GPL(serdev_device_remove);
146
147int serdev_device_open(struct serdev_device *serdev)
148{
149	struct serdev_controller *ctrl = serdev->ctrl;
150	int ret;
151
152	if (!ctrl || !ctrl->ops->open)
153		return -EINVAL;
154
155	ret = ctrl->ops->open(ctrl);
156	if (ret)
157		return ret;
158
159	ret = pm_runtime_get_sync(&ctrl->dev);
160	if (ret < 0) {
161		pm_runtime_put_noidle(&ctrl->dev);
162		goto err_close;
163	}
164
165	return 0;
166
167err_close:
168	if (ctrl->ops->close)
169		ctrl->ops->close(ctrl);
170
171	return ret;
172}
173EXPORT_SYMBOL_GPL(serdev_device_open);
174
175void serdev_device_close(struct serdev_device *serdev)
176{
177	struct serdev_controller *ctrl = serdev->ctrl;
178
179	if (!ctrl || !ctrl->ops->close)
180		return;
181
182	pm_runtime_put(&ctrl->dev);
183
184	ctrl->ops->close(ctrl);
185}
186EXPORT_SYMBOL_GPL(serdev_device_close);
187
188static void devm_serdev_device_release(struct device *dev, void *dr)
189{
190	serdev_device_close(*(struct serdev_device **)dr);
191}
192
193int devm_serdev_device_open(struct device *dev, struct serdev_device *serdev)
194{
195	struct serdev_device **dr;
196	int ret;
197
198	dr = devres_alloc(devm_serdev_device_release, sizeof(*dr), GFP_KERNEL);
199	if (!dr)
200		return -ENOMEM;
201
202	ret = serdev_device_open(serdev);
203	if (ret) {
204		devres_free(dr);
205		return ret;
206	}
207
208	*dr = serdev;
209	devres_add(dev, dr);
210
211	return 0;
212}
213EXPORT_SYMBOL_GPL(devm_serdev_device_open);
214
215void serdev_device_write_wakeup(struct serdev_device *serdev)
216{
217	complete(&serdev->write_comp);
218}
219EXPORT_SYMBOL_GPL(serdev_device_write_wakeup);
220
221/**
222 * serdev_device_write_buf() - write data asynchronously
223 * @serdev:	serdev device
224 * @buf:	data to be written
225 * @count:	number of bytes to write
226 *
227 * Write data to the device asynchronously.
228 *
229 * Note that any accepted data has only been buffered by the controller; use
230 * serdev_device_wait_until_sent() to make sure the controller write buffer
231 * has actually been emptied.
232 *
233 * Return: The number of bytes written (less than count if not enough room in
234 * the write buffer), or a negative errno on errors.
235 */
236int serdev_device_write_buf(struct serdev_device *serdev,
237			    const unsigned char *buf, size_t count)
238{
239	struct serdev_controller *ctrl = serdev->ctrl;
240
241	if (!ctrl || !ctrl->ops->write_buf)
242		return -EINVAL;
243
244	return ctrl->ops->write_buf(ctrl, buf, count);
245}
246EXPORT_SYMBOL_GPL(serdev_device_write_buf);
247
248/**
249 * serdev_device_write() - write data synchronously
250 * @serdev:	serdev device
251 * @buf:	data to be written
252 * @count:	number of bytes to write
253 * @timeout:	timeout in jiffies, or 0 to wait indefinitely
254 *
255 * Write data to the device synchronously by repeatedly calling
256 * serdev_device_write() until the controller has accepted all data (unless
257 * interrupted by a timeout or a signal).
258 *
259 * Note that any accepted data has only been buffered by the controller; use
260 * serdev_device_wait_until_sent() to make sure the controller write buffer
261 * has actually been emptied.
262 *
263 * Note that this function depends on serdev_device_write_wakeup() being
264 * called in the serdev driver write_wakeup() callback.
265 *
266 * Return: The number of bytes written (less than count if interrupted),
267 * -ETIMEDOUT or -ERESTARTSYS if interrupted before any bytes were written, or
268 * a negative errno on errors.
269 */
270int serdev_device_write(struct serdev_device *serdev,
271			const unsigned char *buf, size_t count,
272			long timeout)
273{
274	struct serdev_controller *ctrl = serdev->ctrl;
275	int written = 0;
276	int ret;
277
278	if (!ctrl || !ctrl->ops->write_buf || !serdev->ops->write_wakeup)
 
279		return -EINVAL;
280
281	if (timeout == 0)
282		timeout = MAX_SCHEDULE_TIMEOUT;
283
284	mutex_lock(&serdev->write_lock);
285	do {
286		reinit_completion(&serdev->write_comp);
287
288		ret = ctrl->ops->write_buf(ctrl, buf, count);
289		if (ret < 0)
290			break;
291
292		written += ret;
293		buf += ret;
294		count -= ret;
295
296		if (count == 0)
297			break;
298
299		timeout = wait_for_completion_interruptible_timeout(&serdev->write_comp,
300								    timeout);
301	} while (timeout > 0);
302	mutex_unlock(&serdev->write_lock);
303
304	if (ret < 0)
305		return ret;
306
307	if (timeout <= 0 && written == 0) {
308		if (timeout == -ERESTARTSYS)
309			return -ERESTARTSYS;
310		else
311			return -ETIMEDOUT;
312	}
313
314	return written;
315}
316EXPORT_SYMBOL_GPL(serdev_device_write);
317
318void serdev_device_write_flush(struct serdev_device *serdev)
319{
320	struct serdev_controller *ctrl = serdev->ctrl;
321
322	if (!ctrl || !ctrl->ops->write_flush)
323		return;
324
325	ctrl->ops->write_flush(ctrl);
326}
327EXPORT_SYMBOL_GPL(serdev_device_write_flush);
328
329int serdev_device_write_room(struct serdev_device *serdev)
330{
331	struct serdev_controller *ctrl = serdev->ctrl;
332
333	if (!ctrl || !ctrl->ops->write_room)
334		return 0;
335
336	return serdev->ctrl->ops->write_room(ctrl);
337}
338EXPORT_SYMBOL_GPL(serdev_device_write_room);
339
340unsigned int serdev_device_set_baudrate(struct serdev_device *serdev, unsigned int speed)
341{
342	struct serdev_controller *ctrl = serdev->ctrl;
343
344	if (!ctrl || !ctrl->ops->set_baudrate)
345		return 0;
346
347	return ctrl->ops->set_baudrate(ctrl, speed);
348
349}
350EXPORT_SYMBOL_GPL(serdev_device_set_baudrate);
351
352void serdev_device_set_flow_control(struct serdev_device *serdev, bool enable)
353{
354	struct serdev_controller *ctrl = serdev->ctrl;
355
356	if (!ctrl || !ctrl->ops->set_flow_control)
357		return;
358
359	ctrl->ops->set_flow_control(ctrl, enable);
360}
361EXPORT_SYMBOL_GPL(serdev_device_set_flow_control);
362
363int serdev_device_set_parity(struct serdev_device *serdev,
364			     enum serdev_parity parity)
365{
366	struct serdev_controller *ctrl = serdev->ctrl;
367
368	if (!ctrl || !ctrl->ops->set_parity)
369		return -ENOTSUPP;
370
371	return ctrl->ops->set_parity(ctrl, parity);
372}
373EXPORT_SYMBOL_GPL(serdev_device_set_parity);
374
375void serdev_device_wait_until_sent(struct serdev_device *serdev, long timeout)
376{
377	struct serdev_controller *ctrl = serdev->ctrl;
378
379	if (!ctrl || !ctrl->ops->wait_until_sent)
380		return;
381
382	ctrl->ops->wait_until_sent(ctrl, timeout);
383}
384EXPORT_SYMBOL_GPL(serdev_device_wait_until_sent);
385
386int serdev_device_get_tiocm(struct serdev_device *serdev)
387{
388	struct serdev_controller *ctrl = serdev->ctrl;
389
390	if (!ctrl || !ctrl->ops->get_tiocm)
391		return -ENOTSUPP;
392
393	return ctrl->ops->get_tiocm(ctrl);
394}
395EXPORT_SYMBOL_GPL(serdev_device_get_tiocm);
396
397int serdev_device_set_tiocm(struct serdev_device *serdev, int set, int clear)
398{
399	struct serdev_controller *ctrl = serdev->ctrl;
400
401	if (!ctrl || !ctrl->ops->set_tiocm)
402		return -ENOTSUPP;
403
404	return ctrl->ops->set_tiocm(ctrl, set, clear);
405}
406EXPORT_SYMBOL_GPL(serdev_device_set_tiocm);
407
408static int serdev_drv_probe(struct device *dev)
409{
410	const struct serdev_device_driver *sdrv = to_serdev_device_driver(dev->driver);
411	int ret;
412
413	ret = dev_pm_domain_attach(dev, true);
414	if (ret)
415		return ret;
416
417	ret = sdrv->probe(to_serdev_device(dev));
418	if (ret)
419		dev_pm_domain_detach(dev, true);
420
421	return ret;
422}
423
424static void serdev_drv_remove(struct device *dev)
425{
426	const struct serdev_device_driver *sdrv = to_serdev_device_driver(dev->driver);
427	if (sdrv->remove)
428		sdrv->remove(to_serdev_device(dev));
429
430	dev_pm_domain_detach(dev, true);
431}
432
433static struct bus_type serdev_bus_type = {
434	.name		= "serial",
435	.match		= serdev_device_match,
436	.probe		= serdev_drv_probe,
437	.remove		= serdev_drv_remove,
438};
439
440/**
441 * serdev_device_alloc() - Allocate a new serdev device
442 * @ctrl:	associated controller
443 *
444 * Caller is responsible for either calling serdev_device_add() to add the
445 * newly allocated controller, or calling serdev_device_put() to discard it.
446 */
447struct serdev_device *serdev_device_alloc(struct serdev_controller *ctrl)
448{
449	struct serdev_device *serdev;
450
451	serdev = kzalloc(sizeof(*serdev), GFP_KERNEL);
452	if (!serdev)
453		return NULL;
454
455	serdev->ctrl = ctrl;
456	device_initialize(&serdev->dev);
457	serdev->dev.parent = &ctrl->dev;
458	serdev->dev.bus = &serdev_bus_type;
459	serdev->dev.type = &serdev_device_type;
460	init_completion(&serdev->write_comp);
461	mutex_init(&serdev->write_lock);
462	return serdev;
463}
464EXPORT_SYMBOL_GPL(serdev_device_alloc);
465
466/**
467 * serdev_controller_alloc() - Allocate a new serdev controller
468 * @parent:	parent device
469 * @size:	size of private data
470 *
471 * Caller is responsible for either calling serdev_controller_add() to add the
472 * newly allocated controller, or calling serdev_controller_put() to discard it.
473 * The allocated private data region may be accessed via
474 * serdev_controller_get_drvdata()
475 */
476struct serdev_controller *serdev_controller_alloc(struct device *parent,
477					      size_t size)
478{
479	struct serdev_controller *ctrl;
480	int id;
481
482	if (WARN_ON(!parent))
483		return NULL;
484
485	ctrl = kzalloc(sizeof(*ctrl) + size, GFP_KERNEL);
486	if (!ctrl)
487		return NULL;
488
489	id = ida_simple_get(&ctrl_ida, 0, 0, GFP_KERNEL);
490	if (id < 0) {
491		dev_err(parent,
492			"unable to allocate serdev controller identifier.\n");
493		goto err_free;
494	}
495
496	ctrl->nr = id;
497
498	device_initialize(&ctrl->dev);
499	ctrl->dev.type = &serdev_ctrl_type;
500	ctrl->dev.bus = &serdev_bus_type;
501	ctrl->dev.parent = parent;
502	ctrl->dev.of_node = parent->of_node;
503	serdev_controller_set_drvdata(ctrl, &ctrl[1]);
504
505	dev_set_name(&ctrl->dev, "serial%d", id);
506
507	pm_runtime_no_callbacks(&ctrl->dev);
508	pm_suspend_ignore_children(&ctrl->dev, true);
509
510	dev_dbg(&ctrl->dev, "allocated controller 0x%p id %d\n", ctrl, id);
511	return ctrl;
512
513err_free:
514	kfree(ctrl);
515
516	return NULL;
517}
518EXPORT_SYMBOL_GPL(serdev_controller_alloc);
519
520static int of_serdev_register_devices(struct serdev_controller *ctrl)
521{
522	struct device_node *node;
523	struct serdev_device *serdev = NULL;
524	int err;
525	bool found = false;
526
527	for_each_available_child_of_node(ctrl->dev.of_node, node) {
528		if (!of_get_property(node, "compatible", NULL))
529			continue;
530
531		dev_dbg(&ctrl->dev, "adding child %pOF\n", node);
532
533		serdev = serdev_device_alloc(ctrl);
534		if (!serdev)
535			continue;
536
537		serdev->dev.of_node = node;
538
539		err = serdev_device_add(serdev);
540		if (err) {
541			dev_err(&serdev->dev,
542				"failure adding device. status %pe\n",
543				ERR_PTR(err));
544			serdev_device_put(serdev);
545		} else
546			found = true;
547	}
548	if (!found)
549		return -ENODEV;
550
551	return 0;
552}
553
554#ifdef CONFIG_ACPI
555
556#define SERDEV_ACPI_MAX_SCAN_DEPTH 32
557
558struct acpi_serdev_lookup {
559	acpi_handle device_handle;
560	acpi_handle controller_handle;
561	int n;
562	int index;
563};
564
565/**
566 * serdev_acpi_get_uart_resource - Gets UARTSerialBus resource if type matches
567 * @ares:	ACPI resource
568 * @uart:	Pointer to UARTSerialBus resource will be returned here
569 *
570 * Checks if the given ACPI resource is of type UARTSerialBus.
571 * In this case, returns a pointer to it to the caller.
572 *
573 * Return: True if resource type is of UARTSerialBus, otherwise false.
574 */
575bool serdev_acpi_get_uart_resource(struct acpi_resource *ares,
576				   struct acpi_resource_uart_serialbus **uart)
577{
578	struct acpi_resource_uart_serialbus *sb;
579
580	if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
581		return false;
582
583	sb = &ares->data.uart_serial_bus;
584	if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_UART)
585		return false;
586
587	*uart = sb;
588	return true;
589}
590EXPORT_SYMBOL_GPL(serdev_acpi_get_uart_resource);
591
592static int acpi_serdev_parse_resource(struct acpi_resource *ares, void *data)
593{
594	struct acpi_serdev_lookup *lookup = data;
595	struct acpi_resource_uart_serialbus *sb;
596	acpi_status status;
597
598	if (!serdev_acpi_get_uart_resource(ares, &sb))
599		return 1;
600
601	if (lookup->index != -1 && lookup->n++ != lookup->index)
602		return 1;
603
604	status = acpi_get_handle(lookup->device_handle,
605				 sb->resource_source.string_ptr,
606				 &lookup->controller_handle);
607	if (ACPI_FAILURE(status))
608		return 1;
609
610	/*
611	 * NOTE: Ideally, we would also want to retrieve other properties here,
612	 * once setting them before opening the device is supported by serdev.
613	 */
614
615	return 1;
616}
617
618static int acpi_serdev_do_lookup(struct acpi_device *adev,
619                                 struct acpi_serdev_lookup *lookup)
620{
621	struct list_head resource_list;
622	int ret;
623
624	lookup->device_handle = acpi_device_handle(adev);
625	lookup->controller_handle = NULL;
626	lookup->n = 0;
627
628	INIT_LIST_HEAD(&resource_list);
629	ret = acpi_dev_get_resources(adev, &resource_list,
630				     acpi_serdev_parse_resource, lookup);
631	acpi_dev_free_resource_list(&resource_list);
632
633	if (ret < 0)
634		return -EINVAL;
635
636	return 0;
637}
638
639static int acpi_serdev_check_resources(struct serdev_controller *ctrl,
640				       struct acpi_device *adev)
641{
642	struct acpi_serdev_lookup lookup;
643	int ret;
644
645	if (acpi_bus_get_status(adev) || !adev->status.present)
646		return -EINVAL;
647
648	/* Look for UARTSerialBusV2 resource */
649	lookup.index = -1;	// we only care for the last device
650
651	ret = acpi_serdev_do_lookup(adev, &lookup);
652	if (ret)
653		return ret;
654
655	/*
656	 * Apple machines provide an empty resource template, so on those
657	 * machines just look for immediate children with a "baud" property
658	 * (from the _DSM method) instead.
659	 */
660	if (!lookup.controller_handle && x86_apple_machine &&
661	    !acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, NULL))
662		acpi_get_parent(adev->handle, &lookup.controller_handle);
663
664	/* Make sure controller and ResourceSource handle match */
665	if (ACPI_HANDLE(ctrl->dev.parent) != lookup.controller_handle)
666		return -ENODEV;
667
668	return 0;
669}
670
671static acpi_status acpi_serdev_register_device(struct serdev_controller *ctrl,
672					       struct acpi_device *adev)
673{
674	struct serdev_device *serdev;
675	int err;
676
 
 
 
 
677	serdev = serdev_device_alloc(ctrl);
678	if (!serdev) {
679		dev_err(&ctrl->dev, "failed to allocate serdev device for %s\n",
680			dev_name(&adev->dev));
681		return AE_NO_MEMORY;
682	}
683
684	ACPI_COMPANION_SET(&serdev->dev, adev);
685	acpi_device_set_enumerated(adev);
686
687	err = serdev_device_add(serdev);
688	if (err) {
689		dev_err(&serdev->dev,
690			"failure adding ACPI serdev device. status %pe\n",
691			ERR_PTR(err));
692		serdev_device_put(serdev);
693	}
694
695	return AE_OK;
696}
697
698static const struct acpi_device_id serdev_acpi_devices_blacklist[] = {
699	{ "INT3511", 0 },
700	{ "INT3512", 0 },
701	{ },
702};
703
704static acpi_status acpi_serdev_add_device(acpi_handle handle, u32 level,
705					  void *data, void **return_value)
706{
707	struct acpi_device *adev = acpi_fetch_acpi_dev(handle);
708	struct serdev_controller *ctrl = data;
 
709
710	if (!adev || acpi_device_enumerated(adev))
711		return AE_OK;
712
713	/* Skip if black listed */
714	if (!acpi_match_device_ids(adev, serdev_acpi_devices_blacklist))
715		return AE_OK;
716
717	if (acpi_serdev_check_resources(ctrl, adev))
718		return AE_OK;
719
720	return acpi_serdev_register_device(ctrl, adev);
721}
722
723
724static int acpi_serdev_register_devices(struct serdev_controller *ctrl)
725{
726	acpi_status status;
727	bool skip;
728	int ret;
729
730	if (!has_acpi_companion(ctrl->dev.parent))
 
731		return -ENODEV;
732
733	/*
734	 * Skip registration on boards where the ACPI tables are known to
735	 * contain buggy devices. Note serdev_controller_add() must still
736	 * succeed in this case, so that the proper serdev devices can be
737	 * added "manually" later.
738	 */
739	ret = acpi_quirk_skip_serdev_enumeration(ctrl->dev.parent, &skip);
740	if (ret)
741		return ret;
742	if (skip)
743		return 0;
744
745	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
746				     SERDEV_ACPI_MAX_SCAN_DEPTH,
747				     acpi_serdev_add_device, NULL, ctrl, NULL);
748	if (ACPI_FAILURE(status))
749		dev_warn(&ctrl->dev, "failed to enumerate serdev slaves\n");
750
751	if (!ctrl->serdev)
752		return -ENODEV;
753
754	return 0;
755}
756#else
757static inline int acpi_serdev_register_devices(struct serdev_controller *ctrl)
758{
759	return -ENODEV;
760}
761#endif /* CONFIG_ACPI */
762
763/**
764 * serdev_controller_add() - Add an serdev controller
765 * @ctrl:	controller to be registered.
766 *
767 * Register a controller previously allocated via serdev_controller_alloc() with
768 * the serdev core.
769 */
770int serdev_controller_add(struct serdev_controller *ctrl)
771{
772	int ret_of, ret_acpi, ret;
773
774	/* Can't register until after driver model init */
775	if (WARN_ON(!is_registered))
776		return -EAGAIN;
777
778	ret = device_add(&ctrl->dev);
779	if (ret)
780		return ret;
781
782	pm_runtime_enable(&ctrl->dev);
783
784	ret_of = of_serdev_register_devices(ctrl);
785	ret_acpi = acpi_serdev_register_devices(ctrl);
786	if (ret_of && ret_acpi) {
787		dev_dbg(&ctrl->dev, "no devices registered: of:%pe acpi:%pe\n",
788			ERR_PTR(ret_of), ERR_PTR(ret_acpi));
789		ret = -ENODEV;
790		goto err_rpm_disable;
791	}
792
793	dev_dbg(&ctrl->dev, "serdev%d registered: dev:%p\n",
794		ctrl->nr, &ctrl->dev);
795	return 0;
796
797err_rpm_disable:
798	pm_runtime_disable(&ctrl->dev);
799	device_del(&ctrl->dev);
800	return ret;
801};
802EXPORT_SYMBOL_GPL(serdev_controller_add);
803
804/* Remove a device associated with a controller */
805static int serdev_remove_device(struct device *dev, void *data)
806{
807	struct serdev_device *serdev = to_serdev_device(dev);
808	if (dev->type == &serdev_device_type)
809		serdev_device_remove(serdev);
810	return 0;
811}
812
813/**
814 * serdev_controller_remove(): remove an serdev controller
815 * @ctrl:	controller to remove
816 *
817 * Remove a serdev controller.  Caller is responsible for calling
818 * serdev_controller_put() to discard the allocated controller.
819 */
820void serdev_controller_remove(struct serdev_controller *ctrl)
821{
 
 
822	if (!ctrl)
823		return;
824
825	device_for_each_child(&ctrl->dev, NULL, serdev_remove_device);
826	pm_runtime_disable(&ctrl->dev);
827	device_del(&ctrl->dev);
828}
829EXPORT_SYMBOL_GPL(serdev_controller_remove);
830
831/**
832 * __serdev_device_driver_register() - Register client driver with serdev core
833 * @sdrv:	client driver to be associated with client-device.
834 * @owner:	client driver owner to set.
835 *
836 * This API will register the client driver with the serdev framework.
837 * It is typically called from the driver's module-init function.
838 */
839int __serdev_device_driver_register(struct serdev_device_driver *sdrv, struct module *owner)
840{
841	sdrv->driver.bus = &serdev_bus_type;
842	sdrv->driver.owner = owner;
843
844	/* force drivers to async probe so I/O is possible in probe */
845        sdrv->driver.probe_type = PROBE_PREFER_ASYNCHRONOUS;
846
847	return driver_register(&sdrv->driver);
848}
849EXPORT_SYMBOL_GPL(__serdev_device_driver_register);
850
851static void __exit serdev_exit(void)
852{
853	bus_unregister(&serdev_bus_type);
854	ida_destroy(&ctrl_ida);
855}
856module_exit(serdev_exit);
857
858static int __init serdev_init(void)
859{
860	int ret;
861
862	ret = bus_register(&serdev_bus_type);
863	if (ret)
864		return ret;
865
866	is_registered = true;
867	return 0;
868}
869/* Must be before serial drivers register */
870postcore_initcall(serdev_init);
871
872MODULE_AUTHOR("Rob Herring <robh@kernel.org>");
873MODULE_LICENSE("GPL v2");
874MODULE_DESCRIPTION("Serial attached device bus");