From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from TWMBX01.aspeed.com (mail.aspeedtech.com [211.20.114.72]) (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 C106A25761; Mon, 10 Mar 2025 11:48:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=211.20.114.72 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741607330; cv=none; b=j4npjAnWgIZxoXnz96Bcxo4OCs0Dj1AToybqtF8n+QclOQfiM3jGKPPcnovVjXvcTnLDA77HWUWUlje8/LSOodTU6UPNMC5Knw5yDZSrR+EilIZpx51G4DOyhPrlx/VuPb+i3TqrIu7g8Kl3OFJ7/rhLXbMfxmjHGZLE2JY1vxg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741607330; c=relaxed/simple; bh=AOxcym5RQZaf22q5ZinS6zoGzPoqCfNVaKFxfoC9o94=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=oEpPlLjALr7ws+/a4KFCEhcyoukjol13NIIX91Peq3+hfMD0vDqZmp39NIU2+uMwiNKcY/RPR8QCV9Xnzxebe5rXd3MNCl2K+lJpJ3KfhT36FQZcr7qPWqmImqR4jmbFRJXZbKkJVlL1Xk7palZ4NrJtW053vKbeaAV0e2FmyDo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com; spf=pass smtp.mailfrom=aspeedtech.com; arc=none smtp.client-ip=211.20.114.72 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=aspeedtech.com Received: from TWMBX01.aspeed.com (192.168.0.62) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1258.12; Mon, 10 Mar 2025 19:48:40 +0800 Received: from aspeed-fw03.aspeedtech.com (192.168.10.13) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server id 15.2.1258.12 via Frontend Transport; Mon, 10 Mar 2025 19:48:40 +0800 From: Kevin Chen To: , , , , , , , , , , , , , CC: Kevin Chen Subject: [PATCH v3 0/3] Add AST2600 LPC PCC support Date: Mon, 10 Mar 2025 19:48:36 +0800 Message-ID: <20250310114839.3098148-1-kevin_chen@aspeedtech.com> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain -- v3 aspeed-lpc-pcc.c: -- Add ida_free and fix the dev usage with removing some debug messages. aspeed-lpc.yaml: -- Add description about the pcc-ports usage. v2: -- Change driver path to drivers/misc Kevin Chen (3): dt-binding: aspeed: Add LPC PCC controller ARM: dts: aspeed-g6: Add AST2600 LPC PCC support soc: aspeed: lpc-pcc: Add PCC controller support .../devicetree/bindings/mfd/aspeed-lpc.yaml | 38 ++ arch/arm/boot/dts/aspeed/aspeed-g6.dtsi | 7 + drivers/misc/Kconfig | 10 + drivers/misc/Makefile | 1 + drivers/misc/aspeed-lpc-pcc.c | 440 ++++++++++++++++++ 5 files changed, 496 insertions(+) create mode 100644 drivers/misc/aspeed-lpc-pcc.c -- 2.34.1