2018-10-23 01:08:56

by Ryan Case

[permalink] [raw]
Subject: [PATCH v1] spi: spi-qcom-qspi: Fix remaining driver nits

Address remaining comments from original driver patch series

* Move RD_FIFO_CFG to be ordered corretly
* Expand spinlock comment

Signed-off-by: Ryan Case <[email protected]>
---

drivers/spi/spi-qcom-qspi.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/spi/spi-qcom-qspi.c b/drivers/spi/spi-qcom-qspi.c
index b8163b40bb92..e0f061139c8f 100644
--- a/drivers/spi/spi-qcom-qspi.c
+++ b/drivers/spi/spi-qcom-qspi.c
@@ -90,6 +90,9 @@
#define PIO_DATAOUT_1B 0x0020
#define PIO_DATAOUT_4B 0x0024

+#define RD_FIFO_CFG 0x0028
+#define CONTINUOUS_MODE BIT(0)
+
#define RD_FIFO_STATUS 0x002c
#define FIFO_EMPTY BIT(11)
#define WR_CNTS_MSK 0x7f0
@@ -99,9 +102,6 @@
#define RDY_16BYTE BIT(1)
#define FIFO_RDY BIT(0)

-#define RD_FIFO_CFG 0x0028
-#define CONTINUOUS_MODE BIT(0)
-
#define RD_FIFO_RESET 0x0030
#define RESET_FIFO BIT(0)

@@ -139,7 +139,7 @@ struct qcom_qspi {
struct device *dev;
struct clk_bulk_data clks[QSPI_NUM_CLKS];
struct qspi_xfer xfer;
- /* Lock to protect data accessed by IRQs */
+ /* Lock to protect xfer and IRQ accessed registers */
spinlock_t lock;
};

--
2.19.1.568.g152ad8e336-goog



2018-10-23 09:01:37

by Stephen Boyd

[permalink] [raw]
Subject: Re: [PATCH v1] spi: spi-qcom-qspi: Fix remaining driver nits

Quoting Ryan Case (2018-10-22 18:07:07)
> Address remaining comments from original driver patch series
>
> * Move RD_FIFO_CFG to be ordered corretly
> * Expand spinlock comment
>
> Signed-off-by: Ryan Case <[email protected]>
> ---

Reviewed-by: Stephen Boyd <[email protected]>


2018-10-23 19:54:50

by Doug Anderson

[permalink] [raw]
Subject: Re: [PATCH v1] spi: spi-qcom-qspi: Fix remaining driver nits

Hi,
On Mon, Oct 22, 2018 at 6:07 PM Ryan Case <[email protected]> wrote:
>
> Address remaining comments from original driver patch series
>
> * Move RD_FIFO_CFG to be ordered corretly
> * Expand spinlock comment
>
> Signed-off-by: Ryan Case <[email protected]>
> ---
>
> drivers/spi/spi-qcom-qspi.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)

Reviewed-by: Douglas Anderson <[email protected]>

2018-11-05 18:30:36

by Doug Anderson

[permalink] [raw]
Subject: Re: [PATCH v1] spi: spi-qcom-qspi: Fix remaining driver nits

Mark,

On Mon, Oct 22, 2018 at 6:07 PM Ryan Case <[email protected]> wrote:
>
> Address remaining comments from original driver patch series
>
> * Move RD_FIFO_CFG to be ordered corretly
> * Expand spinlock comment
>
> Signed-off-by: Ryan Case <[email protected]>
> ---
>
> drivers/spi/spi-qcom-qspi.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)

No huge deal (obviously) but I noticed that you landed a batch of
similar patches last night but didn't land this one. Did it fall off
your radar or is there some other reason not to land it?

Thanks!

-Doug