mbox series

[0/3] cadence_qspi driver updates

Message ID 20220824113847.7482-1-ashok.reddy.soma@xilinx.com
Headers show
Series cadence_qspi driver updates | expand

Message

Ashok Reddy Soma Aug. 24, 2022, 11:38 a.m. UTC
In this patch series
 - Change driver to use plat data structure only in of_to_plat() and
   probe(). In probe, copy plat structure members to priv structure.
   Replace plat with priv across the driver.
 - Fix function name issue in flash reset
 - Add a call to read_setup in cadence_spi_read_id() before STIG read.



Ashok Reddy Soma (3):
  spi: cadence-qspi: Correct flash reset function name
  spi: cadence_qspi: Call read_setup for STIG_READ
  spi: cadence-qspi: Use priv instead of plat across the driver

 drivers/spi/cadence_ospi_versal.c |  56 ++++----
 drivers/spi/cadence_qspi.c        | 104 ++++++++------
 drivers/spi/cadence_qspi.h        |  56 +++++---
 drivers/spi/cadence_qspi_apb.c    | 231 +++++++++++++++---------------
 4 files changed, 242 insertions(+), 205 deletions(-)

Comments

Michal Simek Sept. 6, 2022, 7:30 a.m. UTC | #1
On 8/24/22 13:38, Ashok Reddy Soma wrote:
> In this patch series
>   - Change driver to use plat data structure only in of_to_plat() and
>     probe(). In probe, copy plat structure members to priv structure.
>     Replace plat with priv across the driver.
>   - Fix function name issue in flash reset
>   - Add a call to read_setup in cadence_spi_read_id() before STIG read.
> 
> 
> 
> Ashok Reddy Soma (3):
>    spi: cadence-qspi: Correct flash reset function name
>    spi: cadence_qspi: Call read_setup for STIG_READ
>    spi: cadence-qspi: Use priv instead of plat across the driver
> 
>   drivers/spi/cadence_ospi_versal.c |  56 ++++----
>   drivers/spi/cadence_qspi.c        | 104 ++++++++------
>   drivers/spi/cadence_qspi.h        |  56 +++++---
>   drivers/spi/cadence_qspi_apb.c    | 231 +++++++++++++++---------------
>   4 files changed, 242 insertions(+), 205 deletions(-)
> 

Applied.
M