From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-180.mta1.migadu.com (out-180.mta1.migadu.com [95.215.58.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 55B5B6F2F2 for ; Wed, 11 Feb 2026 21:27:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.180 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770845233; cv=none; b=jtYcSYju8p985BWK36Lz2/MKvKwwfu5tZw3BsKljvn1tUzZz80fmns19KAvDAK9HigsF8TToOy2I4vNx+m/mL/brJ3xwMGblpMKrzwpjegE1hAmihtv+qysHOQhxLZr1TJo+ENkpgLLw7buOzgs2z17Ar6bx38E70rEYn1fImes= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770845233; c=relaxed/simple; bh=mcGGtZegcADqQJ9WOAf+bE0n25k25tsvawQlB3ySA7A=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=lScicpVMDoc1v3Z0csumNfhQMAB79/wyDBsIbrwIWqxnr7laZv/y8bfITu+YMMP3GshR6cOJDc8aL2QzeFE+dJyZ9Do68aUFXyeLMgKpI3qcrDrQwszkj3aOqSeRwWgkt5ETXffMbS8F4O0PoeAfWdYL4O+MsMvb9HbBI3W2HQY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=aGxnQ422; arc=none smtp.client-ip=95.215.58.180 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="aGxnQ422" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1770845229; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=IFu7Gpj/3GABjrjyEpsSuqRGdHbbjYT2yHQn3zZPsBA=; b=aGxnQ422wMbgEzXMFh54snmjcMZNFCAnlN9yb5Z93/ZWFrZ5skvEtMELNrVahjUCYoMVmo qnZtEnvQTXtQyyEBhB9JrstUiForW6JNLDptLUbyXDvW2toymalXl6AgPCZECR5rUTJxoK 2VBYKfTK+gDTz+7lBYsK+dqSNOajFgE= From: Denis Benato To: linux-kernel@vger.kernel.org Cc: platform-driver-x86@vger.kernel.org, "Hans de Goede" , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , "Luke D . Jones" , "Mateusz Schyboll" , "Denis Benato" , Denis Benato Subject: [PATCH] platform/x86: asus-armoury: add support for G733QS Date: Wed, 11 Feb 2026 22:26:59 +0100 Message-ID: <20260211212659.16542-1-denis.benato@linux.dev> Precedence: bulk X-Mailing-List: platform-driver-x86@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Add TDP data for laptop model G733QS. Signed-off-by: Denis Benato --- drivers/platform/x86/asus-armoury.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asus-armoury.h index 6e9703bd5017..001c011fdd56 100644 --- a/drivers/platform/x86/asus-armoury.h +++ b/drivers/platform/x86/asus-armoury.h @@ -1708,6 +1708,20 @@ static const struct dmi_system_id power_limits[] = { .requires_fan_curve = true, }, }, + { + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "G733QS"), + }, + .driver_data = &(struct power_data) { + .ac_data = &(struct power_limits) { + .ppt_pl1_spl_min = 15, + .ppt_pl1_spl_max = 80, + .ppt_pl2_sppt_min = 15, + .ppt_pl2_sppt_max = 80, + }, + .requires_fan_curve = false, + }, + }, { .matches = { DMI_MATCH(DMI_BOARD_NAME, "G814J"), -- 2.53.0