mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-29 11:42:36 +00:00

The PMIC is supposed to be a child of ACPM, add it here to describe the connection. Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: André Draszik <andre.draszik@linaro.org> Link: https://lore.kernel.org/r/20250409-s2mpg10-v4-3-d66d5f39b6bf@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
86 lines
2.3 KiB
YAML
86 lines
2.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
# Copyright 2024 Linaro Ltd.
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/firmware/google,gs101-acpm-ipc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Samsung Exynos ACPM mailbox protocol
|
|
|
|
maintainers:
|
|
- Tudor Ambarus <tudor.ambarus@linaro.org>
|
|
|
|
description: |
|
|
ACPM (Alive Clock and Power Manager) is a firmware that operates on the
|
|
APM (Active Power Management) module that handles overall power management
|
|
activities. ACPM and masters regard each other as independent hardware
|
|
component and communicate with each other using mailbox messages and
|
|
shared memory.
|
|
|
|
This binding is intended to define the interface the firmware implementing
|
|
ACPM provides for OSPM in the device tree.
|
|
|
|
properties:
|
|
compatible:
|
|
const: google,gs101-acpm-ipc
|
|
|
|
mboxes:
|
|
maxItems: 1
|
|
|
|
pmic:
|
|
description: Child node describing the main PMIC.
|
|
type: object
|
|
additionalProperties: true
|
|
|
|
properties:
|
|
compatible:
|
|
const: samsung,s2mpg10-pmic
|
|
|
|
shmem:
|
|
description:
|
|
List of phandle pointing to the shared memory (SHM) area. The memory
|
|
contains channels configuration data and the TX/RX ring buffers that
|
|
are used for passing messages to/from the ACPM firmware.
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- mboxes
|
|
- shmem
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
power-management {
|
|
compatible = "google,gs101-acpm-ipc";
|
|
mboxes = <&ap2apm_mailbox>;
|
|
shmem = <&apm_sram>;
|
|
|
|
pmic {
|
|
compatible = "samsung,s2mpg10-pmic";
|
|
interrupts-extended = <&gpa0 6 IRQ_TYPE_LEVEL_LOW>;
|
|
|
|
regulators {
|
|
LDO1 {
|
|
regulator-name = "vdd_ldo1";
|
|
regulator-min-microvolt = <700000>;
|
|
regulator-max-microvolt = <1300000>;
|
|
regulator-always-on;
|
|
};
|
|
|
|
// ...
|
|
|
|
BUCK1 {
|
|
regulator-name = "vdd_mif";
|
|
regulator-min-microvolt = <450000>;
|
|
regulator-max-microvolt = <1300000>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
};
|
|
};
|
|
};
|
|
};
|