Tero Kristo <t-kristo@xxxxxx> writes: > On Tue, 2012-05-15 at 15:41 -0700, Kevin Hilman wrote: >> Tero Kristo <t-kristo@xxxxxx> writes: >> >> > PM debug now contains a file that can be used to control OSWR support >> > enable / disable on OMAP4. Also removed the off_mode_enable file for >> > the same platform as it is unsupported. >> >> >> > Signed-off-by: Tero Kristo <t-kristo@xxxxxx> >> >> I'll gladly take a patch that makes enable_off_mode OMAP3-only, but I am >> not interested managing another new flag for OSWR. >> >> For OMAP4, this should just be the default, and any drivers that are >> broken just need to be fixed either by implementing context save/restore >> or by using constraints. > > Well, it is not flag as such, as it is static variable internal to > pm-debug.c. I could drop this, however it is extremely useful as a > testing feature. Without this, it is difficult to test CSWR / OSWR. I understand its usefulness for testing (and I will use it to test this series), but IMO it should live out of tree. Having this in tree makes it possible for drivers to be merged that don't support off-mode. I added this flag to OMAP3 as a short-term feature hoping that drivers would eventually be converted, and I was wrong. We still have drivers that don't support off-mode upstream. I don't want to make that mistake again. > If you have taken a look at the device-off set, I am actually adding > the flag back for omap4 there for enabling device off. If this flag is > also dropped, the device will always just go to device off, in which > case testing CSWR / OSWR becomes an issue again, and I don't think > this is ideal. > > Speaking of enable_off_mode, it might be possible to change it also be > static and remove all the references to it from code. Currently it is > only used from cpuidle34xx.c. I would prefer to get rid of all of these flags, and use the new sysfs controls[1] for CPUidle C-states to disable/enable certain C-states for debugging/testing. Kevin [1] Example shell snippet using new sysfs interface: # CPUidle: disable everything but C1 cd /sys/devices/system/cpu/cpu0/cpuidle for state in state[1-6]*; do if [ -e ${state} ]; then echo 1 > ${state}/disable fi done -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html