From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751348AbdBFGi4 (ORCPT ); Mon, 6 Feb 2017 01:38:56 -0500 Received: from mail-qt0-f194.google.com ([209.85.216.194]:36076 "EHLO mail-qt0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750956AbdBFGiz (ORCPT ); Mon, 6 Feb 2017 01:38:55 -0500 MIME-Version: 1.0 In-Reply-To: <20170206033511.GC3131@vireshk-i7> References: <20170202010601.75995-1-code@mmayer.net> <20170202010601.75995-4-code@mmayer.net> <20170203042917.GL7458@vireshk-i7> <20170206033511.GC3131@vireshk-i7> From: Markus Mayer Date: Sun, 5 Feb 2017 22:38:53 -0800 X-Google-Sender-Auth: Bbg074ZTOXDt3h02u7i36V5MXUw Message-ID: Subject: Re: [PATCH 3/3] MIPS: BMIPS: enable CPUfreq To: Viresh Kumar Cc: Markus Mayer , Markus Mayer , Ralf Baechle , "Rafael J . Wysocki" , MIPS Linux Kernel List , Power Management List , Linux Kernel Mailing List Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5 February 2017 at 19:35, Viresh Kumar wrote: > > On 03-02-17, 17:00, Markus Mayer wrote: > > On 2 February 2017 at 20:29, Viresh Kumar wrote: > > > On 01-02-17, 17:06, Markus Mayer wrote: > > >> From: Markus Mayer > > >> > > >> Enable all applicable CPUfreq options. > > >> > > >> Signed-off-by: Markus Mayer > > >> --- > > >> arch/mips/configs/bmips_stb_defconfig | 10 ++++++++++ > > >> 1 file changed, 10 insertions(+) > > >> > > >> diff --git a/arch/mips/configs/bmips_stb_defconfig b/arch/mips/configs/bmips_stb_defconfig > > >> index 4eb5d6e..6fda604 100644 > > >> --- a/arch/mips/configs/bmips_stb_defconfig > > >> +++ b/arch/mips/configs/bmips_stb_defconfig > > >> @@ -26,6 +26,16 @@ CONFIG_INET=y > > >> # CONFIG_INET_XFRM_MODE_BEET is not set > > >> # CONFIG_INET_LRO is not set > > >> # CONFIG_INET_DIAG is not set > > >> +CONFIG_CPU_FREQ=y > > >> +CONFIG_CPU_FREQ_STAT=y > > >> +CONFIG_CPU_FREQ_STAT_DETAILS=y > > >> +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y > > >> +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y > > >> +CONFIG_CPU_FREQ_GOV_ONDEMAND=y > > >> +CONFIG_CPU_FREQ_GOV_POWERSAVE=y > > >> +CONFIG_CPU_FREQ_GOV_USERSPACE=y > > >> +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y > > >> +CONFIG_BMIPS_CPUFREQ=y > > >> CONFIG_CFG80211=y > > >> CONFIG_NL80211_TESTMODE=y > > >> CONFIG_MAC80211=y > > > > > > Rebase your stuff over pm/linux-next and you will see some changes here. Also > > > schedutil is the new governor in town, you must give it a try. > > > > I'll definitely turn on SCHEDUTIL. As for the changes in next, I don't > > see any conflicts. My series applied fine on top of linux-next from > > https://git.kernel.org/cgit/linux/kernel/git/rafael/linux-pm.git/. Did > > I use the wrong tree? > > No, but you didn't follow the right process. You should use 'make > savedefconfig' to update the defconfig. > > The symbol CONFIG_CPU_FREQ_STAT_DETAILS is removed from the kernel > now. Okay. Got it. Will do. -Markus