Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp587698ybb; Sat, 28 Mar 2020 06:00:03 -0700 (PDT) X-Google-Smtp-Source: ADFU+vsORbAJaWw6Ir/p5UamGq1nfwotxqas0ZfZGaYAbPvkjqoJIWVXr2sTnva+RP9G8NWpGRFm X-Received: by 2002:a05:6830:146:: with SMTP id j6mr2544011otp.117.1585400402962; Sat, 28 Mar 2020 06:00:02 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585400402; cv=none; d=google.com; s=arc-20160816; b=m7M6RxEKBoQyxwitqL9pYXDHZU7mKcrhJHAOMMg4gymkKVR4BUj9gV5KpUOEyRoSvC lVznquMF2H1Y5JDNmIHFufuUFqt1Lg8DgDv8jmoq86tT0f2gHFvj/yZ40SwSJPo0pVPa afRZ+uTJ2Jm/PkBuROtDkMQ9F7A6GI+lffTZDzw5teAuAKZ/og2bqk7n9ejNZ8tJJIRq yPtMDUsdhaMiwApHWEq9oHPviYs5GM4w8C92BAQ7f79YbhKWG4qdsOeBF1IgnrYzOx0d ILIXnzfDpOAmzl5xZDl8Qj86lqnxoxCOX7YpyVSnuQlydNnWLtrgkvH0D3BT2dVTtAbv XFnQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=gGoZDMO8aeTHNOXXwgwfr3mQjhDyfU0lUxUmyBXjq4M=; b=pSKnYMbuZtDSHTAr8Mi4yGYACvuGr8YtkLIL6ZVGh8tYlcrCQK5gDUrj3fMfGydjTS KrfmxZzqQmd7lL/JEL3iYzu5RLUwDMi4+YdN9lBYi+xNsox1VPB+cYPwz32UG8L3uTWa WeChgpWrtFReMXBqHfuxTYqnNG2nDeE/1JzHOBioWF7cHnJi8knLRR/y+HXrF+GVvBoX 99PHPfONX8RD5umse8TvUWo2b8vRKK5qGxynycXyLfmbUUx/GUo+Xzm5K2CXvqIcVXp3 Fml7AmLPTjMSi9BlLSS1gNNHcZi5b6If605snZXoaAJSJsG7BTdlPkq89FGNXH0hpqKu N6uQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 97si3673072oth.209.2020.03.28.05.59.50; Sat, 28 Mar 2020 06:00:02 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726402AbgC1M61 (ORCPT + 99 others); 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!