On Thu, Aug 25, 2016 at 7:00 PM, David Herrmann <dh.herrmann@xxxxxxxxx> wrote: > Provide a generic DRM helper that evicts all conflicting firmware > framebuffers, devices, and drivers. The new helper is called > drm_evict_firmware(), and takes a flagset controlling which firmware to > kick out. > > This is meant to be used by drivers in their ->probe() callbacks of their > parent bus, before calling into drm_dev_register(). > > Signed-off-by: David Herrmann <dh.herrmann@xxxxxxxxx> > --- > Hey > > This is just compile-tested for now. I just want to get some comments on the > design. I decided to drop the sysfb infrastructure and rather just use this > generic helper. It keeps things simple and should work just fine for all > reasonable use-cases. > > This will work with SimpleDRM out-of-the-box on x86. > > Architectures with dynamic simple-framebuffer devices are not supported yet. I > actually have no idea what the strategy there is? Can the DeviceTree people come > up with something? Am I supposed to call of_platform_depopulate()? If of_platform_populate was used to create the device, then yes call of_platform_depopulate. In this case, I think it wasn't. If of_platform_device_create was used, then platform_device_del. > Or > of_detach_node()? Or what? No. Only the struct device and its resources should need to be destroyed. The node should remain. > Looking at drivers/of/{platform,dynamic}.c, I cannot see how this is supposed to > work at all. Who protects platform_device_del() from being called in parallel? Not sure. In parallel to what? On most systems, nodes never go away and on those that do it is only a few things that get hotplugged. That's changing with DT overlays now, so there certainly could be some issues. > Also: Does any platform make use the of 'display:' entry in 'simple-framebuffer' > DT nodes? If yes, how do I get access to it? And why don't vc4/sun4i make use of > it, rather than falling back to remove_conflicting_framebuffers()? No idea. Rob -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html