From: kernel test robot <lkp@intel.com>
To: Pankaj Gupta <pankaj.gupta@nxp.com>,
Jonathan Corbet <corbet@lwn.net>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v21 1/7] Documentation/firmware: add imx/se to other_interfaces
Date: Mon, 15 Dec 2025 04:51:39 +0100 [thread overview]
Message-ID: <202512150427.Kc14BEvI-lkp@intel.com> (raw)
In-Reply-To: <20251212-imx-se-if-v21-1-ee7d6052d848@nxp.com>
Hi Pankaj,
kernel test robot noticed the following build warnings:
[auto build test WARNING on 4a26e7032d7d57c998598c08a034872d6f0d3945]
url: https://github.com/intel-lab-lkp/linux/commits/Pankaj-Gupta/Documentation-firmware-add-imx-se-to-other_interfaces/20251212-172535
base: 4a26e7032d7d57c998598c08a034872d6f0d3945
patch link: https://lore.kernel.org/r/20251212-imx-se-if-v21-1-ee7d6052d848%40nxp.com
patch subject: [PATCH v21 1/7] Documentation/firmware: add imx/se to other_interfaces
reproduce: (https://download.01.org/0day-ci/archive/20251215/202512150427.Kc14BEvI-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202512150427.Kc14BEvI-lkp@intel.com/
All warnings (new ones prefixed by >>):
ERROR: Cannot find file ./include/linux/firmware/intel/stratix10-svc-client.h
WARNING: No kernel-doc for file ./include/linux/firmware/intel/stratix10-svc-client.h
Documentation/driver-api/firmware/other_interfaces.rst:60: ERROR: Unexpected indentation. [docutils]
Documentation/driver-api/firmware/other_interfaces.rst:103: ERROR: Unexpected indentation. [docutils]
Documentation/driver-api/firmware/other_interfaces.rst:115: ERROR: Unexpected indentation. [docutils]
>> Documentation/driver-api/firmware/other_interfaces.rst:116: WARNING: Blank line required after table. [docutils]
>> Documentation/driver-api/firmware/other_interfaces.rst:140: WARNING: Bullet list ends without a blank line; unexpected unindent. [docutils]
ERROR: Cannot find file ./drivers/firmware/imx/se_fw.c
ERROR: Cannot find file ./drivers/firmware/imx/se_fw.c
WARNING: No kernel-doc for file ./drivers/firmware/imx/se_fw.c
ERROR: Cannot find file ./include/linux/fpga/fpga-bridge.h
WARNING: No kernel-doc for file ./include/linux/fpga/fpga-bridge.h
vim +116 Documentation/driver-api/firmware/other_interfaces.rst
94
95 ::
96 +--------------------------------------------+
97 | Character Device(C_DEV) |
98 | |
99 | +---------+ +---------+ +---------+ |
100 | | misc #1 | | misc #2 | ... | misc #n | |
101 | | dev | | dev | | dev | |
102 | +---------+ +---------+ +---------+ |
103 | +-------------------------+ |
104 | | Misc. Dev Synchr. Logic | |
105 | +-------------------------+ |
106 | |
107 +--------------------------------------------+
108
109 +--------------------------------------------+
110 | Service Layer |
111 | |
112 | +-----------------------------+ |
113 | | Message Serialization Logic | |
114 | +-----------------------------+ |
115 | +---------------+ |
> 116 | | imx-mailbox | |
117 | | mailbox.c | |
118 | +---------------+ |
119 | |
120 +--------------------------------------------+
121
122 - service layer:
123 This layer is responsible for ensuring the communication protocol that is defined
124 for communication with firmware.
125
126 FW Communication protocol ensures two things:
127 - Serializing the messages to be sent over an MU.
128
129 - FW can handle one command message at a time.
130
131 - c_dev:
132 This layer offers character device contexts, created as '/dev/<se>_mux_chx'.
133 Using these multiple device contexts that are getting multiplexed over a single MU,
134 userspace application(s) can call fops like write/read to send the command message,
135 and read back the command response message to/from Firmware.
136 fops like read & write use the above defined service layer API(s) to communicate with
137 Firmware.
138
139 Misc-device(/dev/<se>_mux_chn) synchronization protocol:
> 140 ::
141
142 Non-Secure + Secure
143 |
144 |
145 +---------+ +-------------+ |
146 | se_fw.c +<---->+imx-mailbox.c| |
147 | | | mailbox.c +<-->+------+ +------+
148 +---+-----+ +-------------+ | MU X +<-->+ ELE |
149 | +------+ +------+
150 +----------------+ |
151 | | |
152 v v |
153 logical logical |
154 receiver waiter |
155 + + |
156 | | |
157 | | |
158 | +----+------+ |
159 | | | |
160 | | | |
161 device_ctx device_ctx device_ctx |
162 |
163 User 0 User 1 User Y |
164 +------+ +------+ +------+ |
165 |misc.c| |misc.c| |misc.c| |
166 kernel space +------+ +------+ +------+ |
167 |
168 +------------------------------------------------------ |
169 | | | |
170 userspace /dev/ele_muXch0 | | |
171 /dev/ele_muXch1 | |
172 /dev/ele_muXchY |
173 |
174
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-12-15 3:53 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-12 9:14 [PATCH v21 0/7] firmware: imx: driver for NXP secure-enclave Pankaj Gupta
2025-12-12 9:14 ` [PATCH v21 1/7] Documentation/firmware: add imx/se to other_interfaces Pankaj Gupta
2025-12-15 3:51 ` kernel test robot [this message]
2025-12-12 9:14 ` [PATCH v21 2/7] dt-bindings: arm: fsl: add imx-se-fw binding doc Pankaj Gupta
2025-12-12 9:14 ` [PATCH v21 3/7] firmware: imx: add driver for NXP EdgeLock Enclave Pankaj Gupta
2025-12-13 0:45 ` kernel test robot
2025-12-13 0:45 ` kernel test robot
2025-12-14 2:44 ` kernel test robot
2025-12-12 9:14 ` [PATCH v21 4/7] firmware: imx: device context dedicated to priv Pankaj Gupta
2025-12-12 9:14 ` [PATCH v21 5/7] firmware: drivers: imx: adds miscdev Pankaj Gupta
2025-12-12 16:54 ` Frank Li
2025-12-17 8:40 ` Pankaj Gupta
2025-12-12 9:14 ` [PATCH v21 6/7] arm64: dts: imx8ulp: add secure enclave node Pankaj Gupta
2025-12-12 9:14 ` [PATCH v21 7/7] arm64: dts: imx8ulp-evk: add reserved memory property Pankaj Gupta
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=202512150427.Kc14BEvI-lkp@intel.com \
--to=lkp@intel.com \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pankaj.gupta@nxp.com \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
/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).