project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
87 lines
2.0 KiB
YAML
87 lines
2.0 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/clock/qcom,gcc-msm8996.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Global Clock & Reset Controller Binding for MSM8996
|
|
|
|
maintainers:
|
|
- Stephen Boyd <sboyd@kernel.org>
|
|
- Taniya Das <tdas@codeaurora.org>
|
|
|
|
description: |
|
|
Qualcomm global clock control module which supports the clocks, resets and
|
|
power domains on MSM8996.
|
|
|
|
See also:
|
|
- dt-bindings/clock/qcom,gcc-msm8996.h
|
|
|
|
properties:
|
|
compatible:
|
|
const: qcom,gcc-msm8996
|
|
|
|
clocks:
|
|
minItems: 3
|
|
items:
|
|
- description: XO source
|
|
- description: Second XO source
|
|
- description: Sleep clock source
|
|
- description: PCIe 0 PIPE clock (optional)
|
|
- description: PCIe 1 PIPE clock (optional)
|
|
- description: PCIe 2 PIPE clock (optional)
|
|
- description: USB3 PIPE clock (optional)
|
|
- description: UFS RX symbol 0 clock (optional)
|
|
- description: UFS RX symbol 1 clock (optional)
|
|
- description: UFS TX symbol 0 clock (optional)
|
|
|
|
clock-names:
|
|
minItems: 3
|
|
items:
|
|
- const: cxo
|
|
- const: cxo2
|
|
- const: sleep_clk
|
|
- const: pcie_0_pipe_clk_src
|
|
- const: pcie_1_pipe_clk_src
|
|
- const: pcie_2_pipe_clk_src
|
|
- const: usb3_phy_pipe_clk_src
|
|
- const: ufs_rx_symbol_0_clk_src
|
|
- const: ufs_rx_symbol_1_clk_src
|
|
- const: ufs_tx_symbol_0_clk_src
|
|
|
|
'#clock-cells':
|
|
const: 1
|
|
|
|
'#reset-cells':
|
|
const: 1
|
|
|
|
'#power-domain-cells':
|
|
const: 1
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
protected-clocks:
|
|
description:
|
|
Protected clock specifier list as per common clock binding.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- '#clock-cells'
|
|
- '#reset-cells'
|
|
- '#power-domain-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
clock-controller@300000 {
|
|
compatible = "qcom,gcc-msm8996";
|
|
#clock-cells = <1>;
|
|
#reset-cells = <1>;
|
|
#power-domain-cells = <1>;
|
|
reg = <0x300000 0x90000>;
|
|
};
|
|
...
|