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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4FEE7C004D4 for ; Sat, 21 Jan 2023 16:39:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229744AbjAUQhr (ORCPT ); Sat, 21 Jan 2023 11:37:47 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34676 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229637AbjAUQhp (ORCPT ); Sat, 21 Jan 2023 11:37:45 -0500 Received: from mout-p-102.mailbox.org (mout-p-102.mailbox.org [80.241.56.152]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6E85426847 for ; Sat, 21 Jan 2023 08:37:43 -0800 (PST) Received: from smtp202.mailbox.org (smtp202.mailbox.org [IPv6:2001:67c:2050:b231:465::202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4NzhqM17DKz9ssb; Sat, 21 Jan 2023 17:37:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=espindo.la; s=MBO0001; t=1674319055; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=Gua9qY8MWYbza4ODWsNxoeI2RrnpCInu/OZvKkC2+IU=; b=cQUehuXFkWj1WHhIjtkC4qbpjY4aqBBh0z9GS2tz37ClJezGaQ90pykuNHtcnzPNXCwTCX ESCAOiTLjRz4w2sXTzxeQ47NHos+aNU0G5dVSu7Tnww/V8Lmar0AucDUV6ZR8irssynX6Y BK7ow+9Y3D/kLL34Kq3pwE30xaCx/j2jYra5p9nwhw7TsRMfa61QgfyTcdn6rvh3hPHrS8 ZzTQFYGniO5ubnFwDHSsLokBXlFAQFrfR/k14zKPru45MsNEioJiqtfhx0Bk7W5QsAa2ZM vVnRjNX32Apiug2yntEI+u2RFuHbtQmIFhSwSR994dtuKNVwJfAcZmHWaqiyxg== From: =?utf-8?Q?Rafael_=C3=81vila_de_Esp=C3=ADndola?= To: Mario Limonciello Cc: linux-kernel@vger.kernel.org Subject: amdgpu: suspend-to-idle on a 4350G desktop Date: Sat, 21 Jan 2023 15:37:23 -0100 Message-ID: <87edrnu9mk.fsf@espindo.la> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4NzhqM17DKz9ssb Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, I have a desktop that doubles as a NAS, and would like to suspend it when not in use. It works, but when it comes back it is using about 7W more than before going to sleep. It looks like a6ed2035878e5ad2e43ed175d8812ac9399d6c40 is the culprit. The system doesn't even support S3: % cat /sys/power/mem_sleep [s2idle] And looks like the vendor decided that they should not define ACPI_FADT_LOW_POWER_S0. The MB is a Gigabyte B550I AORUS PRO AX with bios version F16e. Which systems had crashes when ACPI_FADT_LOW_POWER_S0 was not defined? Would it be possible to limit the check only to those systems or at least only to systems that have S3? I can build the amdgpu module without that check and see if the problem goes away if that would help. Thanks, Rafael