mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
4070e2a64c
This target adds support for the StarFive JH7100 and JH7110 SoCs, based on 6.1, as well as a couple boards equipped with these. Specifications: SoCs: JH7100: - StarFive JH7100 dual-core RISC-V (U74, RC64GC) - additional monitoring (S7) and control (E24) cores - 2Mb L2 cache JH7110: - StarFive JH7110 quad-core RISC-V (U74, RV64GC) - additional monitoring (S7) and control (E24) cores - 2Mb L2 cache Boards: VisionFive1: - JH7100 @ 1GHz - Memory: 8Gb LPDDR4 - 4x USB3.0 - 1x GBit ethernet - AMPak 6236 wifi / bluetooth - audio - powered via USB-C VisionFive2: - JH7110 @ 1.5GHz - Memory: 2/4/8Gb DDR4 - 2x Gbit ethernet - 2x USB3.0 / 2x USB2.0 - eMMC / SDIO - various multimedia input/outputs (MIPI CSI, HDMI, audio) - M.2 key M slot - PoE support - powered via USB-C Installation: Standard SD-card installation via dd-ing the generated image to an SD-card of at least 256Mb. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
56 lines
1.9 KiB
Diff
56 lines
1.9 KiB
Diff
From 60817a4e755c6e98092fdceec35fcda94d35e4b1 Mon Sep 17 00:00:00 2001
|
|
From: Jack Zhu <jack.zhu@starfivetech.com>
|
|
Date: Tue, 23 May 2023 16:56:23 +0800
|
|
Subject: [PATCH 077/122] media: dt-bindings: cadence-csi2rx: Add resets
|
|
property
|
|
|
|
Add resets property for Cadence MIPI-CSI2 RX controller
|
|
|
|
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
|
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
Signed-off-by: Jack Zhu <jack.zhu@starfivetech.com>
|
|
---
|
|
.../bindings/media/cdns,csi2rx.yaml | 24 +++++++++++++++++++
|
|
1 file changed, 24 insertions(+)
|
|
|
|
--- a/Documentation/devicetree/bindings/media/cdns,csi2rx.yaml
|
|
+++ b/Documentation/devicetree/bindings/media/cdns,csi2rx.yaml
|
|
@@ -41,6 +41,24 @@ properties:
|
|
- const: pixel_if2_clk
|
|
- const: pixel_if3_clk
|
|
|
|
+ resets:
|
|
+ items:
|
|
+ - description: CSI2Rx system reset
|
|
+ - description: Gated Register bank reset for APB interface
|
|
+ - description: pixel reset for Stream interface 0
|
|
+ - description: pixel reset for Stream interface 1
|
|
+ - description: pixel reset for Stream interface 2
|
|
+ - description: pixel reset for Stream interface 3
|
|
+
|
|
+ reset-names:
|
|
+ items:
|
|
+ - const: sys
|
|
+ - const: reg_bank
|
|
+ - const: pixel_if0
|
|
+ - const: pixel_if1
|
|
+ - const: pixel_if2
|
|
+ - const: pixel_if3
|
|
+
|
|
phys:
|
|
maxItems: 1
|
|
description: MIPI D-PHY
|
|
@@ -123,6 +141,12 @@ examples:
|
|
clock-names = "sys_clk", "p_clk",
|
|
"pixel_if0_clk", "pixel_if1_clk",
|
|
"pixel_if2_clk", "pixel_if3_clk";
|
|
+ resets = <&bytereset 9>, <&bytereset 4>,
|
|
+ <&corereset 5>, <&corereset 6>,
|
|
+ <&corereset 7>, <&corereset 8>;
|
|
+ reset-names = "sys", "reg_bank",
|
|
+ "pixel_if0", "pixel_if1",
|
|
+ "pixel_if2", "pixel_if3";
|
|
phys = <&csi_phy>;
|
|
phy-names = "dphy";
|
|
|