devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: devicetree@vger.kernel.org
Cc: Mark Rutland <mark.rutland@arm.com>,
	Rob Herring <robh@kernel.org>,
	Lean Sheng Tan <sheng.tan@9elements.com>,
	lkml <linux-kernel@vger.kernel.org>,
	Dhaval Sharma <dhaval@rivosinc.com>,
	Maximilian Brune <maximilian.brune@9elements.com>,
	Yunhui Cui <cuiyunhui@bytedance.com>,
	Guo Dong <guo.dong@intel.com>, Tom Rini <trini@konsulko.com>,
	ron minnich <rminnich@gmail.com>, Gua Guo <gua.guo@intel.com>,
	Chiu Chasel <chasel.chiu@intel.com>,
	linux-acpi@vger.kernel.org,
	U-Boot Mailing List <u-boot@lists.denx.de>,
	Ard Biesheuvel <ardb@kernel.org>, Simon Glass <sjg@chromium.org>
Subject: [PATCH v7 2/2] schemas: Add some common reserved-memory usages
Date: Tue, 26 Sep 2023 13:42:39 -0600	[thread overview]
Message-ID: <20230926194242.2732127-2-sjg@chromium.org> (raw)
In-Reply-To: <20230926194242.2732127-1-sjg@chromium.org>

It is common to split firmware into 'Platform Init', which does the
initial hardware setup and a "Payload" which selects the OS to be booted.
Thus an handover interface is required between these two pieces.

Where UEFI boot-time services are not available, but UEFI firmware is
present on either side of this interface, information about memory usage
and attributes must be presented to the "Payload" in some form.

This aims to provide an small schema addition for the memory mapping
needed to keep these two pieces working together well.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v7:
- Rename acpi-reclaim to acpi
- Drop individual mention of when memory can be reclaimed
- Rewrite the item descriptions
- Add back the UEFI text (with trepidation)

Changes in v6:
- Drop mention of UEFI
- Use compatible strings instead of node names

Changes in v5:
- Drop the memory-map node (should have done that in v4)
- Tidy up schema a bit

Changes in v4:
- Make use of the reserved-memory node instead of creating a new one

Changes in v3:
- Reword commit message again
- cc a lot more people, from the FFI patch
- Split out the attributes into the /memory nodes

Changes in v2:
- Reword commit message

 .../reserved-memory/common-reserved.yaml      | 71 +++++++++++++++++++
 1 file changed, 71 insertions(+)
 create mode 100644 dtschema/schemas/reserved-memory/common-reserved.yaml

diff --git a/dtschema/schemas/reserved-memory/common-reserved.yaml b/dtschema/schemas/reserved-memory/common-reserved.yaml
new file mode 100644
index 0000000..f7fbdfd
--- /dev/null
+++ b/dtschema/schemas/reserved-memory/common-reserved.yaml
@@ -0,0 +1,71 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/reserved-memory/common-reserved.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Common memory reservations
+
+description: |
+  Specifies that the reserved memory region can be used for the purpose
+  indicated by its compatible string.
+
+  Clients may reuse this reserved memory if they understand what it is for,
+  subject to the notes below.
+
+maintainers:
+  - Simon Glass <sjg@chromium.org>
+
+allOf:
+  - $ref: reserved-memory.yaml
+
+properties:
+  compatible:
+    description: |
+      This describes some common memory reservations, with the compatible
+      string indicating what it is used for:
+
+         acpi: Advanced Configuration and Power Interface (ACPI) tables
+         acpi-nvs: ACPI Non-Volatile-Sleeping Memory (NVS). This is reserved by
+           the firmware for its use and is required to be saved and restored
+           across an NVS sleep
+         boot-code: Contains code used for booting which is not needed by the OS
+         boot-code: Contains data used for booting which is not needed by the OS
+         runtime-code: Contains code used for interacting with the system when
+           running the OS
+         runtime-data: Contains data used for interacting with the system when
+           running the OS
+
+    enum:
+      - acpi
+      - acpi-nvs
+      - boot-code
+      - boot-data
+      - runtime-code
+      - runtime-data
+
+  reg:
+    description: region of memory that is reserved for the purpose indicated
+      by the compatible string.
+
+required:
+  - reg
+
+unevaluatedProperties: false
+
+examples:
+  - |
+    reserved-memory {
+        #address-cells = <1>;
+        #size-cells = <1>;
+
+        reserved@12340000 {
+            compatible = "boot-code";
+            reg = <0x12340000 0x00800000>;
+        };
+
+        reserved@43210000 {
+            compatible = "boot-data";
+            reg = <0x43210000 0x00800000>;
+        };
+    };
-- 
2.42.0.515.g380fc7ccd1-goog


  reply	other threads:[~2023-09-26 19:42 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-26 19:42 [PATCH v7 1/2] schemas: memory: Add ECC properties Simon Glass
2023-09-26 19:42 ` Simon Glass [this message]
2023-10-02 17:53   ` [PATCH v7 2/2] schemas: Add some common reserved-memory usages Simon Glass
2023-10-06 17:33     ` Ard Biesheuvel
2023-10-06 18:17       ` Simon Glass
2023-10-06 22:59         ` Ard Biesheuvel
2023-10-07  0:03           ` Simon Glass
2023-10-09 20:14             ` Simon Glass
2023-10-11 20:40             ` Ard Biesheuvel
2023-10-13 20:42             ` Rob Herring
2023-10-13 21:09               ` Simon Glass
2023-10-16 16:50                 ` Rob Herring
2023-10-16 21:54                   ` Simon Glass
2023-10-31 15:56                     ` Simon Glass
2023-11-07 16:57                       ` Simon Glass
2023-11-07 18:07                       ` Rob Herring
2023-11-08 11:38                         ` Ard Biesheuvel
2023-11-08 13:57                           ` Rob Herring
2023-11-08 14:20                             ` Ard Biesheuvel
2023-11-10 18:20   ` Chiu, Chasel
2023-11-11 11:03     ` Ard Biesheuvel
2023-11-13 18:09       ` Chiu, Chasel
2023-11-21  2:12         ` Simon Glass
2023-11-21 16:41           ` Ard Biesheuvel
2023-11-21 18:34             ` Chiu, Chasel
2023-11-21 18:37               ` Chiu, Chasel
2023-11-28 18:07                 ` Ard Biesheuvel
2023-11-28 20:30                   ` Chiu, Chasel
2023-12-11 17:52                     ` Simon Glass
2023-12-20  4:46                       ` Simon Glass
2023-12-21 14:30                     ` Ard Biesheuvel
2023-12-21 16:50                       ` Chiu, Chasel
2023-12-22 12:47                         ` Ard Biesheuvel
2023-12-22 19:52                           ` Chiu, Chasel
2024-01-03 15:22                             ` Ard Biesheuvel
2024-01-04  0:25                               ` Chiu, Chasel
2024-01-04  8:43                                 ` Ard Biesheuvel
2024-01-04 17:53                                   ` Chiu, Chasel
2024-01-16 14:34                                     ` Ard Biesheuvel
2024-01-03 16:00                           ` Rob Herring
2024-01-03 19:36                             ` Chiu, Chasel
2024-01-03 20:54                             ` Simon Glass
2023-10-09 19:22 ` [PATCH v7 1/2] schemas: memory: Add ECC properties Simon Glass
2023-10-16 19:57 ` Rob Herring
2023-10-16 21:54   ` Simon Glass

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230926194242.2732127-2-sjg@chromium.org \
    --to=sjg@chromium.org \
    --cc=ardb@kernel.org \
    --cc=chasel.chiu@intel.com \
    --cc=cuiyunhui@bytedance.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dhaval@rivosinc.com \
    --cc=gua.guo@intel.com \
    --cc=guo.dong@intel.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=maximilian.brune@9elements.com \
    --cc=rminnich@gmail.com \
    --cc=robh@kernel.org \
    --cc=sheng.tan@9elements.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).