Lesly A M <x0080970@xxxxxx> writes: > map3: pm: Update TRITON power scripts and making it generic > > This series of patch implements a updated TRITON power scripts. > Also moving the sleep, wakeup & warm_reset sequence to a generic script file, > which can be used by different OMAP3 board with the power companion chip TWL4030. Hi Lesly, Overall, I like the overall direction you're going. I appreciate your efforts to combine the common code and simplify things. Thank you very much for your efforts. I may have some specific comments on some of the patches, but rather than comment in detail on each patch, I have some comments/opinions on the overall approach. First, I think the series should be done in a slightly different order. Currently, you create the common twl4030-script file at the end of series. I'd rather see this done earlier on. In other words, rather than create/update the scripts/setuptimes for Z2 and 3630SDP in their board files and then remove them in following patches, why not create the common code earlier in the series and do minimal changes to the board files? That would cause a lot fewer lines changed, and make the series as a whole more understandable. Second, your series is making it clear we need some common VC init. And this common VC init should be probably be separated from PMIC init/setup. So before we go much further with this, I think it's time for some common VC infrastructure. So here's a proposal off the top of my head: - create new file(s): vc34xx.c, vc.h (or something like that) - move the common prm_setup_times init and structs there - move VC init from pm34xx.c (omap3_pm_init_vc, configure_vc, etc.) We'll then have all the VC init/setup in a single place. Also, along the lines of keeping PMIC and VC details separated, I think there should be separate calls to get the T2 scripts and the VC values from T2. IOW, board code should call one function to get T2 scripts, and a separate one to override the VC values with PMIC specifics. This will scale better to other PMICs as well. Something like: int twl_get_scripts(struct twl4030_power_data *); int twl_get_vc_timings(struct prm_setup_vc *); The common VC init code could have the default prm_setup_vc values for 34xx and 36xx as well (the ones that are not overridden by the PMIC), so these values to no have to be defined/duplicated in the various board files. Ideally, a board file that just wants the defaults and is not doing any overrides should not have to define its own prm_setup_vc. The defaults should come from vc.c with the PMIC related values coming from the PMIC init. Sorry to get so long winded on this one... We've been needing some cleanup in this area for some time, so before I merge any more changes in this area, I'd like to see some reorg/cleanup along the lines above. Kevin -- 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