From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 144F4C2D0ED for ; Sat, 28 Mar 2020 12:58:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E13DE208FE for ; Sat, 28 Mar 2020 12:58:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726445AbgC1M61 (ORCPT ); Sat, 28 Mar 2020 08:58:27 -0400 Received: from cloudserver094114.home.pl ([79.96.170.134]:43443 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726369AbgC1M61 (ORCPT ); Sat, 28 Mar 2020 08:58:27 -0400 Received: from 185.80.35.16 (185.80.35.16) (HELO kreacher.localnet) by serwer1319399.home.pl (79.96.170.134) with SMTP (IdeaSmtpServer 0.83.341) id 54b4ded94d5d9511; Sat, 28 Mar 2020 13:58:25 +0100 From: "Rafael J. Wysocki" To: Linux PM , Srinivas Pandruvada Cc: LKML , "Rafael J. Wysocki" , Viresh Kumar , Giovanni Gherdovich , Doug Smythies Subject: [PATCH 0/2] cpufreq: intel_pstate: Run in the passive mode by default on systems without HWP Date: Sat, 28 Mar 2020 13:54:35 +0100 Message-ID: <2016232.ihCVsphvri@kreacher> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi All, These two patches modify the intel_pstate driver to run in the passive mode by default on systems without HWP (refer to the changelog of patch [2/2] for the motivation part). Internal testing of the system performance in 5.6-rc indicates that the difference between the active mode with the powersave scaling algorithm and the passive mode with the schedutil governor should be negligible for the majority of users, so it should be safe to change the default behavior of the driver as per the above. Patch [1/2] makes changes to select the schedutil governor and set it as the default one when intel_pstate is selected in Kconfig. Patch [2/2] changes intel_pstate to start in the passive by default if HWP is not supported (or if it is disabled via the kernel command line). Please refer to the patch changelogs for more information. Thanks!