mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 00:33:58 -04:00
Pull Char/Misc updates from Greg KH:
"Here is the big set of char/misc and other driver subsystem updates
for 6.5-rc1.
Lots of different, tiny, stuff in here, from a range of smaller driver
subsystems, including pulls from some substems directly:
- IIO driver updates and additions
- W1 driver updates and fixes (and a new maintainer!)
- FPGA driver updates and fixes
- Counter driver updates
- Extcon driver updates
- Interconnect driver updates
- Coresight driver updates
- mfd tree tag merge needed for other updates on top of that, lots of
small driver updates as patches, including:
- static const updates for class structures
- nvmem driver updates
- pcmcia driver fix
- lots of other small driver updates and fixes
All of these have been in linux-next for a while with no reported
problems"
* tag 'char-misc-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (243 commits)
bsr: fix build problem with bsr_class static cleanup
comedi: make all 'class' structures const
char: xillybus: make xillybus_class a static const structure
xilinx_hwicap: make icap_class a static const structure
virtio_console: make port class a static const structure
ppdev: make ppdev_class a static const structure
char: misc: make misc_class a static const structure
/dev/mem: make mem_class a static const structure
char: lp: make lp_class a static const structure
dsp56k: make dsp56k_class a static const structure
bsr: make bsr_class a static const structure
oradax: make 'cl' a static const structure
hwtracing: hisi_ptt: Fix potential sleep in atomic context
hwtracing: hisi_ptt: Advertise PERF_PMU_CAP_NO_EXCLUDE for PTT PMU
hwtracing: hisi_ptt: Export available filters through sysfs
hwtracing: hisi_ptt: Add support for dynamically updating the filter list
hwtracing: hisi_ptt: Factor out filter allocation and release operation
samples: pfsm: add CC_CAN_LINK dependency
misc: fastrpc: check return value of devm_kasprintf()
coresight: dummy: Update type of mode parameter in dummy_{sink,source}_enable()
...
121 lines
2.9 KiB
YAML
121 lines
2.9 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/nvmem/qcom,qfprom.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Technologies Inc, QFPROM Efuse
|
|
|
|
maintainers:
|
|
- Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
|
|
|
|
allOf:
|
|
- $ref: nvmem.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- qcom,apq8064-qfprom
|
|
- qcom,apq8084-qfprom
|
|
- qcom,ipq5332-qfprom
|
|
- qcom,ipq6018-qfprom
|
|
- qcom,ipq8064-qfprom
|
|
- qcom,ipq8074-qfprom
|
|
- qcom,ipq9574-qfprom
|
|
- qcom,msm8916-qfprom
|
|
- qcom,msm8974-qfprom
|
|
- qcom,msm8976-qfprom
|
|
- qcom,msm8996-qfprom
|
|
- qcom,msm8998-qfprom
|
|
- qcom,qcs404-qfprom
|
|
- qcom,sc7180-qfprom
|
|
- qcom,sc7280-qfprom
|
|
- qcom,sdm630-qfprom
|
|
- qcom,sdm670-qfprom
|
|
- qcom,sdm845-qfprom
|
|
- qcom,sm6115-qfprom
|
|
- qcom,sm6350-qfprom
|
|
- qcom,sm6375-qfprom
|
|
- qcom,sm8150-qfprom
|
|
- qcom,sm8250-qfprom
|
|
- const: qcom,qfprom
|
|
|
|
reg:
|
|
# If the QFPROM is read-only OS image then only the corrected region
|
|
# needs to be provided. If the QFPROM is writable then all 4 regions
|
|
# must be provided.
|
|
oneOf:
|
|
- items:
|
|
- description: The corrected region.
|
|
- items:
|
|
- description: The corrected region.
|
|
- description: The raw region.
|
|
- description: The config region.
|
|
- description: The security control region.
|
|
|
|
# Clock must be provided if QFPROM is writable from the OS image.
|
|
clocks:
|
|
maxItems: 1
|
|
clock-names:
|
|
const: core
|
|
|
|
# Supply reference must be provided if QFPROM is writable from the OS image.
|
|
vcc-supply:
|
|
description: Our power supply.
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/qcom,gcc-sc7180.h>
|
|
|
|
soc {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
efuse@784000 {
|
|
compatible = "qcom,sc7180-qfprom", "qcom,qfprom";
|
|
reg = <0 0x00784000 0 0x8ff>,
|
|
<0 0x00780000 0 0x7a0>,
|
|
<0 0x00782000 0 0x100>,
|
|
<0 0x00786000 0 0x1fff>;
|
|
clocks = <&gcc GCC_SEC_CTRL_CLK_SRC>;
|
|
clock-names = "core";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
vcc-supply = <&vreg_l11a_1p8>;
|
|
|
|
hstx-trim-primary@25b {
|
|
reg = <0x25b 0x1>;
|
|
bits = <1 3>;
|
|
};
|
|
};
|
|
};
|
|
|
|
- |
|
|
soc {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
efuse@784000 {
|
|
compatible = "qcom,sdm845-qfprom", "qcom,qfprom";
|
|
reg = <0 0x00784000 0 0x8ff>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
hstx-trim-primary@1eb {
|
|
reg = <0x1eb 0x1>;
|
|
bits = <1 4>;
|
|
};
|
|
};
|
|
};
|