Path: blob/master/Documentation/devicetree/bindings/firmware/google,gs101-acpm-ipc.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1# Copyright 2024 Linaro Ltd.2%YAML 1.23---4$id: http://devicetree.org/schemas/firmware/google,gs101-acpm-ipc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#67title: Samsung Exynos ACPM mailbox protocol89maintainers:10- Tudor Ambarus <tudor.ambarus@linaro.org>1112description: |13ACPM (Alive Clock and Power Manager) is a firmware that operates on the14APM (Active Power Management) module that handles overall power management15activities. ACPM and masters regard each other as independent hardware16component and communicate with each other using mailbox messages and17shared memory.1819This binding is intended to define the interface the firmware implementing20ACPM provides for OSPM in the device tree.2122properties:23compatible:24const: google,gs101-acpm-ipc2526mboxes:27maxItems: 12829pmic:30description: Child node describing the main PMIC.31type: object32additionalProperties: true3334properties:35compatible:36const: samsung,s2mpg10-pmic3738shmem:39description:40List of phandle pointing to the shared memory (SHM) area. The memory41contains channels configuration data and the TX/RX ring buffers that42are used for passing messages to/from the ACPM firmware.43maxItems: 14445required:46- compatible47- mboxes48- shmem4950additionalProperties: false5152examples:53- |54#include <dt-bindings/interrupt-controller/irq.h>5556power-management {57compatible = "google,gs101-acpm-ipc";58mboxes = <&ap2apm_mailbox>;59shmem = <&apm_sram>;6061pmic {62compatible = "samsung,s2mpg10-pmic";63interrupts-extended = <&gpa0 6 IRQ_TYPE_LEVEL_LOW>;6465regulators {66LDO1 {67regulator-name = "vdd_ldo1";68regulator-min-microvolt = <700000>;69regulator-max-microvolt = <1300000>;70regulator-always-on;71};7273// ...7475BUCK1 {76regulator-name = "vdd_mif";77regulator-min-microvolt = <450000>;78regulator-max-microvolt = <1300000>;79regulator-always-on;80regulator-boot-on;81};82};83};84};858687