On 7/7/26 10:34, Bin Meng wrote:
Document the boundary between SPI/SSI controller models and SPI flash
models when representing fast-read dummy cycles. It explains that
flash models own command semantics, while controllers own
hardware-generated dummy transfers and cycle-to-byte conversion.
Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
---
(no changes since v1)
docs/devel/index-internals.rst | 1 +
docs/devel/ssi.rst | 132 +++++++++++++++++++++++++++++++++
2 files changed, 133 insertions(+)
create mode 100644 docs/devel/ssi.rst
Fails checkpatch.pl, missing:
-- >8 --
diff --git a/MAINTAINERS b/MAINTAINERS
index 1e239f21166..2a9cf15fc7a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2345,2 +2345,3 @@ M: Alistair Francis <[email protected]>
S: Maintained
+F: docs/devel/ssi.rst
F: hw/ssi/*
diff --git a/docs/devel/ssi.rst b/docs/devel/ssi.rst
index 864b5d93204..7475d7f241a 100644
--- a/docs/devel/ssi.rst
+++ b/docs/devel/ssi.rst
@@ -1 +1,3 @@
+.. SPDX-License-Identifier: GPL-2.0-or-later
+
================================
---