* Johan Hovold <johan@xxxxxxxxxx> [180517 10:12]: > [ Sorry about the late reply. ] > > On Wed, May 09, 2018 at 06:57:06AM -0700, Tony Lindgren wrote: > > * Johan Hovold <johan@xxxxxxxxxx> [180509 13:12]: > > > > It seems we really should not be using the negative autosuspend to > > > configure the RPM behaviour the way these drivers do. Perhaps a new > > > mechanism is needed. > > > > Hmm well simply defaulting to "on" instead of "auto" and setting the > > autosuspend_ms to 3000 by default might be doable. I think that way > > we can keep use_autosuspend() in probe. Let's hope there are no > > existing use cases that would break with that. > > No, defaulting to "on" (i.e. calling pm_runtime_forbid()) wouldn't work > either as that would also prevent the device from runtime suspending > just as the current negative autosuspend delay does. Well in that case we should just stick with -1 value for the autosuspend. And just do pm_runtime_put_sync_suspend() after probe and on close. > I fail to see how we can implement this using the current toolbox. What > you're after here is really a mechanism for selecting between two > different runtime PM schemes at runtime: > > 1. normal serial RPM, where the controller is active while the > port is open (this should be the safe default) Agreed. And that is the case already. > 2. aggressive serial RPM, where the controller is allowed to > suspend while the port is open even though this may result in > lost characters when waking up on incoming data In this case it seems that the only thing needed is to just configure the autosuspend delay for the parent port. The use of -1 has been around since the start of runtime PM AFAIK, so maybe we should just document it. I guess we could also introduce pm_runtime_block_autoidle_unless_configured() :) > For normal ttys, we need a user-space interface for selecting between > the two, and for serdev we may want a way to select the RPM scheme from > within the kernel. > > Note that with my serdev controller runtime PM patch, serdev core could > always opt for aggressive PM (as by default serdev core holds an RPM > reference for the controller while the port is open). So if your serdev controller was to set the parent autosuspend delay on open() and set it back on close() this should work? Regards, Tony -- 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