From patchwork Tue Oct 25 07:28:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frank Wunderlich X-Patchwork-Id: 13018629 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E4782C04A95 for ; Tue, 25 Oct 2022 07:29:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=dmmoMZI8VYmZ9c9NeqcbckII5hehYEGnkEREnEOCWgc=; b=eq/bKlUqu3HgLY IJbCPE6u16JF8U17Zm3PRI3lCpaT8Z1PWbtl1NLm3pDOaZs55aroOVEMD+FXsnMJtJcC8zbJ+IyoJ 2IFOhyzrV+s87Gc3CU1HXbsj+RM6LZviy808wRVRLyRI3v8AIE6sNFY0i5OeTTsKUZq/XAqdOfTKW cbsJr8GQM1cUe8dElwYOFomo3WIltur2bmcAZp4MtSl9M6iRb+ee7b+zP8GopX1YIfjEnbKmjGhrp cqCjXjpyvAGq9j2KnKeyAwhd+ybsjQ5XWeDP+spQ/gBmfi3TgKTdh76qIA3xriZLO1XMb/W/idLH4 1Z8VQMobCuOYJ+MUvd+Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1onEMj-0048vq-Ua; Tue, 25 Oct 2022 07:28:50 +0000 Received: from mxout3.routing.net ([2a03:2900:1:a::8]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1onEMg-0048uc-IN; Tue, 25 Oct 2022 07:28:47 +0000 Received: from mxbox2.masterlogin.de (unknown [192.168.10.89]) by mxout3.routing.net (Postfix) with ESMTP id C534F60571; Tue, 25 Oct 2022 07:28:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1666682924; 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=oU7xNIJOgcDZyQLTxB0D1Oegkqiid6wFmJS2x9cVETs=; b=v3fyfjC/VqaNdQeY6P0Wwd0ir5wLyOgK+RoLPwqtVE6PWZTCRHW/fXK9ftzvcWKyMVL+n9 NbMY1KzHU7Q+32fpzti718c4VnUHR4DuSyfc/ipp+jG9fmkyJCuxL4SRgIovffoUjUq3D0 26D34hPVJIAnh/0+fkIf5U852d/Reyo= Received: from frank-G5.. (fttx-pool-217.61.152.57.bambit.de [217.61.152.57]) by mxbox2.masterlogin.de (Postfix) with ESMTPSA id 476F51003DE; Tue, 25 Oct 2022 07:28:43 +0000 (UTC) From: Frank Wunderlich To: linux-mediatek@lists.infradead.org Cc: Frank Wunderlich , Ryder Lee , Jianjun Wang , Bjorn Helgaas , Rob Herring , Krzysztof Kozlowski , Matthias Brugger , linux-pci@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 0/2] rework mtk pcie-gen3 bindings and support mt7986 Date: Tue, 25 Oct 2022 09:28:35 +0200 Message-Id: <20221025072837.16591-1-linux@fw-web.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Mail-ID: b840c511-db93-405d-9f2f-cfd160d31122 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221025_002846_765826_90DBE7D8 X-CRM114-Status: UNSURE ( 8.20 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Frank Wunderlich This Series prepares support for mt7986 PCIe which is basicly gen3 PCIe but with slightly differnt clock configuration. To make differences better to read i split the exiting bindings which has already different settings with a compatible switch and then add a new one for mt7986. v2: - fixed typo in part 1 (SoC based config) - squashed part2+3 (compatible and clock config for mt7986) Frank Wunderlich (2): dt-bindings: PCI: mediatek-gen3: add SoC based clock config dt-bindings: PCI: mediatek-gen3: add support for mt7986 .../bindings/pci/mediatek-pcie-gen3.yaml | 65 +++++++++++++++---- 1 file changed, 53 insertions(+), 12 deletions(-)