mirror of
https://github.com/torvalds/linux.git
synced 2026-04-28 11:32:28 -04:00
Pull char/misc/IIO driver updates from Greg KH:
"Here is the big set of char/misc/iio driver updates for 6.19-rc1. Lots
of stuff in here including:
- lots of IIO driver updates, cleanups, and additions
- large interconnect driver changes as they get converted over to a
dynamic system of ids
- coresight driver updates
- mwave driver updates
- binder driver updates and changes
- comedi driver fixes now that the fuzzers are being set loose on
them
- nvmem driver updates
- new uio driver addition
- lots of other small char/misc driver updates, full details in the
shortlog
All of these have been in linux-next for a while now"
* tag 'char-misc-6.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (304 commits)
char: applicom: fix NULL pointer dereference in ac_ioctl
hangcheck-timer: fix coding style spacing
hangcheck-timer: Replace %Ld with %lld
hangcheck-timer: replace printk(KERN_CRIT) with pr_crit
uio: Add SVA support for PCI devices via uio_pci_generic_sva.c
dt-bindings: slimbus: fix warning from example
intel_th: Fix error handling in intel_th_output_open
misc: rp1: Fix an error handling path in rp1_probe()
char: xillybus: add WQ_UNBOUND to alloc_workqueue users
misc: bh1770glc: use pm_runtime_resume_and_get() in power_state_store
misc: cb710: Fix a NULL vs IS_ERR() check in probe()
mux: mmio: Add suspend and resume support
virt: acrn: split acrn_mmio_dev_res out of acrn_mmiodev
greybus: gb-beagleplay: Fix timeout handling in bootloader functions
greybus: add WQ_PERCPU to alloc_workqueue users
char/mwave: drop typedefs
char/mwave: drop printk wrapper
char/mwave: remove printk tracing
char/mwave: remove unneeded fops
char/mwave: remove MWAVE_FUTZ_WITH_OTHER_DEVICES ifdeffery
...
146 lines
3.8 KiB
YAML
146 lines
3.8 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/interconnect/qcom,msm8998-bwmon.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Interconnect Bandwidth Monitor
|
|
|
|
maintainers:
|
|
- Krzysztof Kozlowski <krzk@kernel.org>
|
|
|
|
description: |
|
|
Bandwidth Monitor measures current throughput on buses between various NoC
|
|
fabrics and provides information when it crosses configured thresholds.
|
|
|
|
Certain SoCs might have more than one Bandwidth Monitors, for example on SDM845::
|
|
- Measuring the bandwidth between CPUs and Last Level Cache Controller -
|
|
called just BWMON,
|
|
- Measuring the bandwidth between Last Level Cache Controller and memory
|
|
(DDR) - called LLCC BWMON.
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- const: qcom,msm8998-bwmon # BWMON v4
|
|
- items:
|
|
- enum:
|
|
- qcom,kaanapali-cpu-bwmon
|
|
- qcom,qcm2290-cpu-bwmon
|
|
- qcom,qcs615-cpu-bwmon
|
|
- qcom,qcs8300-cpu-bwmon
|
|
- qcom,sa8775p-cpu-bwmon
|
|
- qcom,sc7180-cpu-bwmon
|
|
- qcom,sc7280-cpu-bwmon
|
|
- qcom,sc8280xp-cpu-bwmon
|
|
- qcom,sdm845-cpu-bwmon
|
|
- qcom,sm6115-cpu-bwmon
|
|
- qcom,sm6350-llcc-bwmon
|
|
- qcom,sm8250-cpu-bwmon
|
|
- qcom,sm8550-cpu-bwmon
|
|
- qcom,sm8650-cpu-bwmon
|
|
- qcom,sm8750-cpu-bwmon
|
|
- qcom,x1e80100-cpu-bwmon
|
|
- const: qcom,sdm845-bwmon # BWMON v4, unified register space
|
|
- items:
|
|
- enum:
|
|
- qcom,qcs615-llcc-bwmon
|
|
- qcom,qcs8300-llcc-bwmon
|
|
- qcom,sa8775p-llcc-bwmon
|
|
- qcom,sc7180-llcc-bwmon
|
|
- qcom,sc8280xp-llcc-bwmon
|
|
- qcom,sm6350-cpu-bwmon
|
|
- qcom,sm8250-llcc-bwmon
|
|
- qcom,sm8550-llcc-bwmon
|
|
- qcom,sm8650-llcc-bwmon
|
|
- qcom,x1e80100-llcc-bwmon
|
|
- const: qcom,sc7280-llcc-bwmon
|
|
- const: qcom,sc7280-llcc-bwmon # BWMON v5
|
|
- const: qcom,sdm845-llcc-bwmon # BWMON v5
|
|
|
|
interconnects:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
operating-points-v2: true
|
|
opp-table:
|
|
type: object
|
|
|
|
reg:
|
|
# BWMON v5 uses one register address space, v1-v4 use one or two.
|
|
minItems: 1
|
|
maxItems: 2
|
|
|
|
reg-names:
|
|
minItems: 1
|
|
maxItems: 2
|
|
|
|
nonposted-mmio: true
|
|
|
|
required:
|
|
- compatible
|
|
- interconnects
|
|
- interrupts
|
|
- operating-points-v2
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
allOf:
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
const: qcom,msm8998-bwmon
|
|
then:
|
|
properties:
|
|
reg:
|
|
minItems: 2
|
|
|
|
reg-names:
|
|
items:
|
|
- const: monitor
|
|
- const: global
|
|
|
|
else:
|
|
properties:
|
|
reg:
|
|
maxItems: 1
|
|
|
|
reg-names:
|
|
maxItems: 1
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interconnect/qcom,sdm845.h>
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
pmu@1436400 {
|
|
compatible = "qcom,sdm845-cpu-bwmon", "qcom,sdm845-bwmon";
|
|
reg = <0x01436400 0x600>;
|
|
interrupts = <GIC_SPI 581 IRQ_TYPE_LEVEL_HIGH>;
|
|
interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_LLCC 3>;
|
|
|
|
operating-points-v2 = <&cpu_bwmon_opp_table>;
|
|
|
|
cpu_bwmon_opp_table: opp-table {
|
|
compatible = "operating-points-v2";
|
|
opp-0 {
|
|
opp-peak-kBps = <4800000>;
|
|
};
|
|
opp-1 {
|
|
opp-peak-kBps = <9216000>;
|
|
};
|
|
opp-2 {
|
|
opp-peak-kBps = <15052800>;
|
|
};
|
|
opp-3 {
|
|
opp-peak-kBps = <20889600>;
|
|
};
|
|
opp-4 {
|
|
opp-peak-kBps = <25497600>;
|
|
};
|
|
};
|
|
};
|