From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mslow1.mail.gandi.net (mslow1.mail.gandi.net [217.70.178.240]) (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 AB5CE17E6 for ; Sat, 24 Sep 2022 15:43:24 +0000 (UTC) Received: from relay5-d.mail.gandi.net (unknown [217.70.183.197]) by mslow1.mail.gandi.net (Postfix) with ESMTP id 4AB71CBB47 for ; Sat, 24 Sep 2022 15:28:38 +0000 (UTC) Received: (Authenticated sender: paul.kocialkowski@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 0EB961C0002; Sat, 24 Sep 2022 15:28:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1664033309; 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=Y+GN/Y77mrI21YaO//Y6K2OXQ50jAuwAWf6PBaSr6oE=; b=RarHNf+P7agemyGav7PmtXraa+xdOav9nMXQlgDQcVk6Ba3X3p+jBBzxLwfoyRVsnb+RIp iLtHeA2zL9O8xtizkcaq9dzz1j15O/GcOMhbIpe8KF1mu9vSA2Jju7/MZfp7a6HSiVBSSB olL8g5lplqyjOpGaDVEI+oSNu6iSQ8cv2kxwSLUqucE0G4UPSqbBxJchtCzXZjVKTYs3Hl rbfZHMGcWEyB3K9sJtPVa2/m7aqmkqS6My8rT7TFLxN3KjKk6x8uRJ1DjN9/6A1OSWC1UL t/MB/VMV/k1B9axw+qFxLdhNRUupSvNfoKH9tfNTbLXreg8+3I4MEaVOaWDE4w== From: Paul Kocialkowski To: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org Cc: Rob Herring , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Michael Turquette , Stephen Boyd , Frank Rowand , Maxime Ripard , Laurent Pinchart , Thomas Petazzoni , Paul Kocialkowski Subject: [PATCH v6 0/7] Allwinner A31/A83T MIPI CSI-2 and A31 ISP / Platform Support Date: Sat, 24 Sep 2022 17:28:13 +0200 Message-Id: <20220924152820.77149-1-paul.kocialkowski@bootlin.com> X-Mailer: git-send-email 2.37.3 Precedence: bulk X-Mailing-List: linux-sunxi@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This part only concerns Allwinner platform support changes. Though some patches still need reviewing, they feel ready to go since the MIPI CSI-2 bindings were merged, the updated CSI bindings were reviewed by Rob and the new ISP bindings as well. Although they were not merged yet, they seem ready to go at this point. Since this multi-part series has been going on for a while, it would be great to see it merged soon! Changes since v5: - Added BananaPi M3 camera sensor support as device-tree overlays; - Cleaned-up OV8865 regulator definitions; - Always declared the internal links between CSI and MIPI CSI-2 on A83T in device-tree. Changes since v4: - Removed mbus bindings patch: an equivalent change was merged; - Added collected tags; - Rebased on latest media tree. Changes since v3: - Reordered v3s mbus compatible in binding; - Added collected tag; - Removed rejected interconnects fix. Changes since all-in-one v2: - Corrected mbus index used for the interconnects; - Used extended mbus binding and exported the DRAM clock for that; - Reworked the description of the core openfirmware change to give more insight about the situation. Paul Kocialkowski (7): clk: sunxi-ng: v3s: Export MBUS and DRAM clocks to the public header ARM: dts: sun8i: v3s: Add mbus node to represent the interconnect ARM: dts: sun8i: v3s: Add nodes for MIPI CSI-2 support ARM: dts: sun8i: v3s: Add support for the ISP ARM: dts: sun8i: a83t: Add MIPI CSI-2 controller node ARM: dts: sun8i-a83t: Add BananaPi M3 OV5640 camera overlay ARM: dts: sun8i-a83t: Add BananaPi M3 OV8865 camera overlay arch/arm/boot/dts/Makefile | 2 + .../sun8i-a83t-bananapi-m3-camera-ov5640.dts | 117 +++++++++++++++++ .../sun8i-a83t-bananapi-m3-camera-ov8865.dts | 109 ++++++++++++++++ arch/arm/boot/dts/sun8i-a83t.dtsi | 43 +++++++ arch/arm/boot/dts/sun8i-v3s.dtsi | 121 ++++++++++++++++++ drivers/clk/sunxi-ng/ccu-sun8i-v3s.h | 4 - include/dt-bindings/clock/sun8i-v3s-ccu.h | 4 +- 7 files changed, 394 insertions(+), 6 deletions(-) create mode 100644 arch/arm/boot/dts/sun8i-a83t-bananapi-m3-camera-ov5640.dts create mode 100644 arch/arm/boot/dts/sun8i-a83t-bananapi-m3-camera-ov8865.dts -- 2.37.3