On Thu, May 24, 2018 at 11:49:24AM -0500, Rob Herring wrote: > On Thu, May 24, 2018 at 7:18 AM, Ricardo Ribalda Delgado > <ricardo.ribalda@xxxxxxxxx> wrote: > > Hi Johan, > > > > On Thu, May 24, 2018 at 2:07 PM Johan Hovold <johan@xxxxxxxxxx> wrote: > >> Serdev currently only supports device tree and ACPI. Using out-of-tree > >> code, you could load a device tree fragment during runtime to describe > >> your serial bus (or you just amend the device tree). > > > >> Using device tree overlays would have the benefit of being able to > >> describe associated resources (e.g. reset gpios) which a simple > >> compatible string (or equivalent) would not. > > > >> But there are examples where a simple compatible string would do, for > >> example an existing CEC device presenting itself as a generic USB CDC > >> device (hopefully with a dedicated VID/PID so that no user-space > >> configuration is needed at all). > The fundamental problem here is you need a parent device node to apply > a DT overlay to and a USB device hotplugged has no DT device node. The > system you are running on may not even have a DT (like a PC). If you > have an overlay of the downstream devices, they have to be a child of > something for the overlay to apply to. We could just create virtual > device nodes for the purposes of applying overlays to. Another option > would be allowing multiple DTs. Then you aren't even using overlays > (what's the point of an overlay when a system has no real DT to begin > with). That also would mean they are completely independent from any > real DT or other instances (you may want to plug in multiple of the > same device). Right, there's more (than just a DT overlay loader) that needs to be in place before this could be used for the generic hotplug case (and even more than that if this was to be usable for ACPI systems). I think generating DT nodes during enumeration is preferable to having detached trees, if only to deal with the case where a loaded overlay do overlap with the "real" static tree. Another problem is that we need to deregister any tty device and essentially reprobe the underlying serial controller whenever user space tells us what can be found on the other end of wire in order to register a serdev controller and device instead. IIRC this is something we would get for free if using DT overlays (i.e. any device with a modified DT node would get removed and readded, or at least notified that something changed). Johan -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html