From: Jeff Hugo <jeff.hugo@oss.qualcomm.com>
To: Nipun Gupta <nipun.gupta@amd.com>,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, krzk+dt@kernel.org,
gregkh@linuxfoundation.org, robh@kernel.org, conor+dt@kernel.org,
ogabbay@kernel.org, maarten.lankhorst@linux.intel.com,
mripard@kernel.org, tzimmermann@suse.de, airlied@gmail.com,
simona@ffwll.ch, derek.kiernan@amd.com, dragan.cvetic@amd.com,
arnd@arndb.de
Cc: praveen.jain@amd.com, harpreet.anand@amd.com,
nikhil.agarwal@amd.com, srivatsa@csail.mit.edu, code@tyhicks.com,
ptsm@linux.microsoft.com
Subject: Re: [PATCH v2 1/3] dt-bindings: accel: add device tree for AMD PKI accelerator
Date: Fri, 11 Apr 2025 10:16:12 -0600 [thread overview]
Message-ID: <1c7ed443-a5b0-446c-8689-97fb8319ddb4@oss.qualcomm.com> (raw)
In-Reply-To: <20250409173033.2261755-1-nipun.gupta@amd.com>
On 4/9/2025 11:30 AM, Nipun Gupta wrote:
No cover letter?
> Add binding documentation for AMD PKI accelerator supported for AMD
> versal-net SoC.
>
> AMD PKI accelerator is a device on AMD versa-net SoC to execute public key
> asymmetric crypto operations like ECDSA, ECDH, RSA etc. with high performance.
> The driver provides accel interface to applications for configuring the device
> and performing the required operations. AMD PKI device comprises of multiple
> Barco Silex ba414 PKI engines bundled together, and providing a queue based
> interface to interact with the device.
>
> +------------------+
> | Software |
> +------------------+
> | |
> | v
> | +-----------------------------------------------------------+
> | | RAM |
> | | +----------------------------+ +---------------------+ |
> | | | RQ pages | | CQ pages | |
> | | | +------------------------+ | | +-----------------+ | |
> | | | | START (cmd) | | | | req_id | status | | |
> | | | | TFRI (addr, sz)---+ | | | | req_id | status | | |
> | | | | +-TFRO (addr, sz) | | | | | ... | | |
> | | | | | NTFY (req_id) | | | | +-----------------+ | |
> | | | +-|-------------------|--+ | | | |
> | | | | v | +---------------------+ |
> | | | | +-----------+ | |
> | | | | | input | | |
> | | | | | data | | |
> | | | v +-----------+ | |
> | | | +----------------+ | |
> | | | | output data | | |
> | | | +----------------+ | |
> | | +----------------------------+ |
> | | |
> | +-----------------------------------------------------------+
> |
> |
> +---|----------------------------------------------------+
> | v AMD PKI device |
> | +-------------------+ +------------------------+ |
> | | New request FIFO | --> | PK engines | |
> | +-------------------+ +------------------------+ |
> +--------------------------------------------------------+
>
> To perform a crypto operation, the software writes a sequence of descriptors,
> into the RQ memory. This includes input data and designated location for the
> output data. After preparing the request, request offset (from the RQ memory
> region) is written into the NEW_REQUEST register. Request is then stored in a
> common hardware FIFO shared among all RQs.
>
> When a PK engine becomes available, device pops the request from the FIFO and
> fetches the descriptors. It DMAs the input data from RQ memory and executes
> the necessary computations. After computation is complete, the device writes
> output data back to RAM via DMA. Device then writes a new entry in CQ ring
> buffer in RAM, indicating completion of the request. Device also generates
> an interrupt for notifying completion to the software.
>
> Signed-off-by: Nipun Gupta <nipun.gupta@amd.com>
> ---
>
> The patch series was originally submitted as misc driver:
> https://lore.kernel.org/all/20250312095421.1839220-1-nipun.gupta@amd.com/
>
> As suggested by Greg, the driver does not fit in misc and should be part
> of accel or crypto. Accel is well suited for AMD PKI Crypto Accelerator,
> and thus the driver is updated as an accel driver and yaml moved to
> newly created accel folder.
Why does this not fit in crypto?
prev parent reply other threads:[~2025-04-11 16:16 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-09 17:30 [PATCH v2 1/3] dt-bindings: accel: add device tree for AMD PKI accelerator Nipun Gupta
2025-04-09 17:30 ` [PATCH v2 2/3] accel/amdpk: add driver " Nipun Gupta
2025-04-10 7:36 ` Krzysztof Kozlowski
2025-04-11 4:51 ` Gupta, Nipun
2025-04-11 5:17 ` Herbert Xu
2025-04-11 18:20 ` Gupta, Nipun
2025-04-12 1:23 ` Herbert Xu
2025-04-17 15:32 ` Gupta, Nipun
2025-04-20 6:39 ` Herbert Xu
2025-04-13 18:52 ` Lukas Wunner
2025-04-16 15:11 ` Gupta, Nipun
2025-04-11 16:34 ` Jeff Hugo
2025-04-16 10:41 ` kernel test robot
2025-04-09 17:30 ` [PATCH v2 3/3] accel/amdpk: add debugfs support Nipun Gupta
2025-04-10 7:29 ` [PATCH v2 1/3] dt-bindings: accel: add device tree for AMD PKI accelerator Krzysztof Kozlowski
2025-04-11 18:18 ` Gupta, Nipun
2025-04-11 16:16 ` Jeff Hugo [this message]
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=1c7ed443-a5b0-446c-8689-97fb8319ddb4@oss.qualcomm.com \
--to=jeff.hugo@oss.qualcomm.com \
--cc=airlied@gmail.com \
--cc=arnd@arndb.de \
--cc=code@tyhicks.com \
--cc=conor+dt@kernel.org \
--cc=derek.kiernan@amd.com \
--cc=devicetree@vger.kernel.org \
--cc=dragan.cvetic@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=harpreet.anand@amd.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=nikhil.agarwal@amd.com \
--cc=nipun.gupta@amd.com \
--cc=ogabbay@kernel.org \
--cc=praveen.jain@amd.com \
--cc=ptsm@linux.microsoft.com \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=srivatsa@csail.mit.edu \
--cc=tzimmermann@suse.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