From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH V3 1/2] ARM: OMAP3+: use cpu0-cpufreq driver in device tree supported boot Date: Fri, 5 Apr 2013 12:28:30 -0700 Message-ID: <20130405192829.GE10155@atomide.com> References: <87ppybxxi0.fsf@linaro.org> <20130404025211.GA2456@snafu> <515D0BF1.7060802@ti.com> <20130404190053.GA4371@kahuna> <515E9E79.8010300@ti.com> <20130405161338.GB10155@atomide.com> <20130405163254.GA7259@kahuna> <20130405170527.GC10155@atomide.com> <20130405171750.GA7398@kahuna> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20130405171750.GA7398@kahuna> Sender: linux-omap-owner@vger.kernel.org To: Nishanth Menon Cc: Rajendra Nayak , Kevin Hilman , linux-omap , Rob Herring , cpufreq@vger.kernel.org, linux-pm@vger.kernel.org, Paul Walmsley , =?utf-8?Q?Beno=C3=AEt?= Cousson , Jon Hunter , Keerthy , Santosh Shilimkar , Shawn Guo List-Id: linux-pm@vger.kernel.org * Nishanth Menon [130405 10:22]: > On 10:05-20130405, Tony Lindgren wrote: > > > > > diff --git a/arch/arm/mach-omap2/board-generic.c b/arch/arm/mach-omap2/board-generic.c > > > index afa509a..5b147ef 100644 > > > --- a/arch/arm/mach-omap2/board-generic.c > > > +++ b/arch/arm/mach-omap2/board-generic.c > > > @@ -49,6 +49,11 @@ static void __init omap_generic_init(void) > > > omap4_panda_display_init_of(); > > > else if (of_machine_is_compatible("ti,omap4-sdp")) > > > omap_4430sdp_display_init_of(); > > > + > > > + if (IS_ENABLED(CONFIG_GENERIC_CPUFREQ_CPU0)) { > > > + struct platform_device_info devinfo = { .name = "cpufreq-cpu0", }; > > > + platform_device_register_full(&devinfo); > > > + } > > > } > > > > Hmm why would the driver need this? Sounds like the driver is > > missing support for DT? > Nope, this was a long chain of discussion in previous iterations of this > patch.. more or less started here: > https://patchwork.kernel.org/patch/2251821/ > Suggested as the generic approach for cpufreq drivers. > Paul questioned this approach in: > http://marc.info/?l=linux-pm&m=136485349218809&w=2 How about just set it up in omap2_common_pm_init instead of the board-generic? Regards, Tony