mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-20 04:23:55 -04:00
Pull devicetree updates from Rob Herring:
"Bindings:
- Convert Qcom IOMMU, Amlogic timer, Freescale sec-v4.0, Toshiba
TC358764 display bridge, Parade PS8622 display bridge, and Xilinx
FPGA bindings to DT schema format
- Add qdu1000 and sa8775p SoC support to Qcom PDC interrupt
controller
- Add MediaTek MT8365 UART and SYSIRQ bindings
- Add Arm Cortex-A78C and X1C core compatibles
- Add vendor prefix for Novatek
- Remove bindings for stih415, sti416, stid127 platforms
- Drop uneeded quotes in schema files. This is preparation for
yamllint checking quoting for us.
- Add missing (unevaluated|additional)Properties constraints on child
node schemas
- Clean-up schema comments formatting
- Fix I2C and SPI node bus names in schema examples
- Clean-up some display compatibles schema syntax
- Fix incorrect references to lvds.yaml
- Gather all cache controller bindings in a common directory
DT core:
- Convert unittest to new void .remove platform device hook
- kerneldoc fixes for DT address of_pci_range_to_resource/
of_address_to_resource functions"
* tag 'devicetree-for-6.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: (46 commits)
dt-bindings: rng: Drop unneeded quotes
dt-bindings: arm/soc: mediatek: Drop unneeded quotes
dt-bindings: soc: qcom: Drop unneeded quotes
dt-bindings: i2c: samsung: Fix 'deprecated' value
dt-bindings: display: Fix lvds.yaml references
dt-bindings: display: simplify compatibles syntax
dt-bindings: display: mediatek: simplify compatibles syntax
dt-bindings: drm/bridge: ti-sn65dsi86: Fix the video-interfaces.yaml references
dt-bindings: timer: Drop unneeded quotes
dt-bindings: interrupt-controller: qcom,pdc: document qcom,qdu1000-pdc
dt-bindings: interrupt-controller: qcom-pdc: add compatible for sa8775p
dt-bindings: reset: remove stih415/stih416 reset
dt-bindings: net: dwmac: sti: remove stih415/sti416/stid127
dt-bindings: irqchip: sti: remove stih415/stih416 and stid127
dt-bindings: iommu: Convert QCOM IOMMU to YAML
dt-bindings: irqchip: ti,sci-inta: Add optional power-domains property
dt-bindings: Add missing (unevaluated|additional)Properties on child node schemas
of: address: Reshuffle to remove forward declarations
of: address: Fix documented return value of of_pci_range_to_resource()
of: address: Document return value of of_address_to_resource()
...
191 lines
5.4 KiB
YAML
191 lines
5.4 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/regulator/nxp,pf8x00-regulator.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: NXP PF8100/PF8121A/PF8200 PMIC regulators
|
|
|
|
maintainers:
|
|
- Jagan Teki <jagan@amarulasolutions.com>
|
|
- Troy Kisky <troy.kisky@boundarydevices.com>
|
|
|
|
description: |
|
|
PF8100/PF8121A/PF8200 is a PMIC designed for highperformance consumer
|
|
applications. It features seven high efficiency buck converters, four
|
|
linear and one vsnvs regulators. It has built-in one time programmable
|
|
fuse bank for device configurations.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- nxp,pf8100
|
|
- nxp,pf8121a
|
|
- nxp,pf8200
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
regulators:
|
|
type: object
|
|
description: |
|
|
list of regulators provided by this controller
|
|
|
|
patternProperties:
|
|
"^ldo[1-4]$":
|
|
type: object
|
|
$ref: regulator.yaml#
|
|
description:
|
|
Properties for single LDO regulator.
|
|
|
|
unevaluatedProperties: false
|
|
|
|
"^buck[1-7]$":
|
|
type: object
|
|
$ref: regulator.yaml#
|
|
description:
|
|
Properties for single BUCK regulator.
|
|
|
|
properties:
|
|
nxp,ilim-ma:
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
minimum: 2100
|
|
maximum: 4500
|
|
deprecated: true
|
|
description:
|
|
BUCK regulators current limit in mA.
|
|
This property is deprecated, please use
|
|
"regulator-max-microamp" instead.
|
|
|
|
Listed current limits in mA are,
|
|
2100 (default)
|
|
2600
|
|
3000
|
|
4500
|
|
|
|
nxp,phase-shift:
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
default: 0
|
|
enum: [ 0, 45, 90, 135, 180, 225, 270, 315 ]
|
|
description:
|
|
BUCK regulators phase shift control in degrees.
|
|
|
|
unevaluatedProperties: false
|
|
|
|
properties:
|
|
vsnvs:
|
|
type: object
|
|
$ref: regulator.yaml#
|
|
description:
|
|
Properties for single VSNVS regulator.
|
|
|
|
unevaluatedProperties: false
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- regulators
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pmic@8 {
|
|
compatible = "nxp,pf8100";
|
|
reg = <0x08>;
|
|
|
|
regulators {
|
|
reg_ldo1: ldo1 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-min-microvolt = <1500000>;
|
|
};
|
|
|
|
reg_ldo2: ldo2 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-min-microvolt = <1500000>;
|
|
};
|
|
|
|
reg_ldo3: ldo3 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-min-microvolt = <1500000>;
|
|
};
|
|
|
|
reg_ldo4: ldo4 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-min-microvolt = <1500000>;
|
|
};
|
|
|
|
reg_buck1: buck1 {
|
|
nxp,ilim-ma = <4500>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck2: buck2 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck3: buck3 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck4: buck4 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck5: buck5 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck6: buck6 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <1800000>;
|
|
regulator-min-microvolt = <400000>;
|
|
};
|
|
|
|
reg_buck7: buck7 {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <3300000>;
|
|
regulator-min-microvolt = <3300000>;
|
|
};
|
|
|
|
reg_vsnvs: vsnvs {
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
regulator-max-microvolt = <3300000>;
|
|
regulator-min-microvolt = <1800000>;
|
|
};
|
|
};
|
|
};
|
|
};
|