lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1e3b5447-b776-f929-bca6-306f90ac0856@linux.intel.com> Date: Wed, 29 May 2019 09:55:32 -0500 From: Richard Gong <richard.gong@...ux.intel.com> To: Greg KH <gregkh@...uxfoundation.org> Cc: robh+dt@...nel.org, mark.rutland@....com, dinguyen@...nel.org, atull@...nel.org, linux-kernel@...r.kernel.org, devicetree@...r.kernel.org, sen.li@...el.com, Richard Gong <richard.gong@...el.com> Subject: Re: [PATCHv4 2/4] firmware: add Intel Stratix10 remote system update driver Hi Greg, On 5/28/19 6:22 PM, Greg KH wrote: > On Tue, May 28, 2019 at 03:20:31PM -0500, richard.gong@...ux.intel.com wrote: >> +/** >> + * rsu_send_msg() - send a message to Intel service layer >> + * @priv: pointer to rsu private data >> + * @command: RSU status or update command >> + * @arg: the request argument, the bitstream address or notify status >> + * @callback: function pointer for the callback (status or update) >> + * >> + * Start an Intel service layer transaction to perform the SMC call that >> + * is necessary to get RSU boot log or set the address of bitstream to >> + * boot after reboot. >> + * >> + * Returns 0 on success or -ETIMEDOUT on error. >> + */ >> +static int rsu_send_msg(struct stratix10_rsu_priv *priv, >> + enum stratix10_svc_command_code command, >> + unsigned long arg, >> + void (*callback)(struct stratix10_svc_client *client, >> + struct stratix10_svc_cb_data *data)) >> +{ >> + struct stratix10_svc_client_msg msg; >> + int ret; >> + >> + mutex_lock(&priv->lock); >> + reinit_completion(&priv->completion); >> + priv->client.receive_cb = callback; >> + >> + msg.command = command; >> + if (arg) >> + msg.arg[0] = arg; >> + >> + ret = stratix10_svc_send(priv->chan, &msg); > > meta-question, can you send messages that are on the stack and not in > DMA-able memory? Or should this be a dynamicly created variable so you > know it can work properly with DMA? > > And how big is that structure, will it mess with stack sizes? > stratix10_svc_send() is a function from Intel Stratix10 service layer driver, which is used by service clients (RSU and FPGA manager drivers as now) to add a message to the service layer driver's queue for being sent to the secure world via SMC call. It is not DMA related, we send messages via FIFO API. The size of FIFO is sizeof(struct stratix10_svc_data) * SVC_NUM_DATA_IN_FIFO, SVC_NUM_DATA_IN_FIFO is defined as 32. fifo_size = sizeof(struct stratix10_svc_data) * SVC_NUM_DATA_IN_FIFO; ret = kfifo_alloc(&controller->svc_fifo, fifo_size, GFP_KERNEL); if (ret) { dev_err(dev, "failed to allocate FIFO\n"); return ret; } spin_lock_init(&controller->svc_fifo_lock); It will not mess with stack sizes. > thanks, > > greg k-h > Regards, Richard
Powered by blists - more mailing lists