* [U-Boot] [PATCH] spi: designware_spi: revisit FIFO size detection again
@ 2015-02-26 2:45 Axel Lin
2015-02-27 19:19 ` Pavel Machek
0 siblings, 1 reply; 3+ messages in thread
From: Axel Lin @ 2015-02-26 2:45 UTC (permalink / raw)
To: u-boot
By specification the FIFO size would be in a range 2-256 bytes. From TX Level
prospective it means we can set threshold in the range 0-(FIFO size - 1) bytes.
Hence there are currently two issues:
a) FIFO size 2 bytes is actually skipped since TX Level is 1 bit and could be
either 0 or 1 byte;
b) FIFO size is incorrectly decreased by 1 which already done by meaning of
TX Level register.
Fixes: 501943696ea4 (spi: designware_spi: Fix detecting FIFO depth)
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
This fix is from linux-spi tree:
http://git.kernel.org/cgit/linux/kernel/git/broonie/spi.git/commit/?h=for-linus&id=9d239d353c319f9ff884c287ce47feb7cdf60ddc
drivers/spi/designware_spi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/spi/designware_spi.c b/drivers/spi/designware_spi.c
index 2624844..8f5c0fc 100644
--- a/drivers/spi/designware_spi.c
+++ b/drivers/spi/designware_spi.c
@@ -164,13 +164,13 @@ static void spi_hw_init(struct dw_spi_priv *priv)
if (!priv->fifo_len) {
u32 fifo;
- for (fifo = 2; fifo <= 256; fifo++) {
+ for (fifo = 1; fifo < 256; fifo++) {
dw_writew(priv, DW_SPI_TXFLTR, fifo);
if (fifo != dw_readw(priv, DW_SPI_TXFLTR))
break;
}
- priv->fifo_len = (fifo == 2) ? 0 : fifo - 1;
+ priv->fifo_len = (fifo == 1) ? 0 : fifo;
dw_writew(priv, DW_SPI_TXFLTR, 0);
}
debug("%s: fifo_len=%d\n", __func__, priv->fifo_len);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* [U-Boot] [PATCH] spi: designware_spi: revisit FIFO size detection again
2015-02-26 2:45 [U-Boot] [PATCH] spi: designware_spi: revisit FIFO size detection again Axel Lin
@ 2015-02-27 19:19 ` Pavel Machek
2015-03-29 20:15 ` Jagan Teki
0 siblings, 1 reply; 3+ messages in thread
From: Pavel Machek @ 2015-02-27 19:19 UTC (permalink / raw)
To: u-boot
On Thu 2015-02-26 10:45:22, Axel Lin wrote:
> By specification the FIFO size would be in a range 2-256 bytes. From TX Level
> prospective it means we can set threshold in the range 0-(FIFO size - 1) bytes.
> Hence there are currently two issues:
> a) FIFO size 2 bytes is actually skipped since TX Level is 1 bit and could be
> either 0 or 1 byte;
> b) FIFO size is incorrectly decreased by 1 which already done by meaning of
> TX Level register.
>
> Fixes: 501943696ea4 (spi: designware_spi: Fix detecting FIFO depth)
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Pavel Machek <pavel@denx.de>
> ---
> This fix is from linux-spi tree:
> http://git.kernel.org/cgit/linux/kernel/git/broonie/spi.git/commit/?h=for-linus&id=9d239d353c319f9ff884c287ce47feb7cdf60ddc
>
> drivers/spi/designware_spi.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/spi/designware_spi.c b/drivers/spi/designware_spi.c
> index 2624844..8f5c0fc 100644
> --- a/drivers/spi/designware_spi.c
> +++ b/drivers/spi/designware_spi.c
> @@ -164,13 +164,13 @@ static void spi_hw_init(struct dw_spi_priv *priv)
> if (!priv->fifo_len) {
> u32 fifo;
>
> - for (fifo = 2; fifo <= 256; fifo++) {
> + for (fifo = 1; fifo < 256; fifo++) {
> dw_writew(priv, DW_SPI_TXFLTR, fifo);
> if (fifo != dw_readw(priv, DW_SPI_TXFLTR))
> break;
> }
>
> - priv->fifo_len = (fifo == 2) ? 0 : fifo - 1;
> + priv->fifo_len = (fifo == 1) ? 0 : fifo;
> dw_writew(priv, DW_SPI_TXFLTR, 0);
> }
> debug("%s: fifo_len=%d\n", __func__, priv->fifo_len);
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 3+ messages in thread* [U-Boot] [PATCH] spi: designware_spi: revisit FIFO size detection again
2015-02-27 19:19 ` Pavel Machek
@ 2015-03-29 20:15 ` Jagan Teki
0 siblings, 0 replies; 3+ messages in thread
From: Jagan Teki @ 2015-03-29 20:15 UTC (permalink / raw)
To: u-boot
On 28 February 2015 at 00:49, Pavel Machek <pavel@denx.de> wrote:
> On Thu 2015-02-26 10:45:22, Axel Lin wrote:
>> By specification the FIFO size would be in a range 2-256 bytes. From TX Level
>> prospective it means we can set threshold in the range 0-(FIFO size - 1) bytes.
>> Hence there are currently two issues:
>> a) FIFO size 2 bytes is actually skipped since TX Level is 1 bit and could be
>> either 0 or 1 byte;
>> b) FIFO size is incorrectly decreased by 1 which already done by meaning of
>> TX Level register.
>>
>> Fixes: 501943696ea4 (spi: designware_spi: Fix detecting FIFO depth)
>> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>> Signed-off-by: Axel Lin <axel.lin@ingics.com>
>
> Acked-by: Pavel Machek <pavel@denx.de>
>
>> ---
>> This fix is from linux-spi tree:
>> http://git.kernel.org/cgit/linux/kernel/git/broonie/spi.git/commit/?h=for-linus&id=9d239d353c319f9ff884c287ce47feb7cdf60ddc
>>
>> drivers/spi/designware_spi.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/spi/designware_spi.c b/drivers/spi/designware_spi.c
>> index 2624844..8f5c0fc 100644
>> --- a/drivers/spi/designware_spi.c
>> +++ b/drivers/spi/designware_spi.c
>> @@ -164,13 +164,13 @@ static void spi_hw_init(struct dw_spi_priv *priv)
>> if (!priv->fifo_len) {
>> u32 fifo;
>>
>> - for (fifo = 2; fifo <= 256; fifo++) {
>> + for (fifo = 1; fifo < 256; fifo++) {
>> dw_writew(priv, DW_SPI_TXFLTR, fifo);
>> if (fifo != dw_readw(priv, DW_SPI_TXFLTR))
>> break;
>> }
>>
>> - priv->fifo_len = (fifo == 2) ? 0 : fifo - 1;
>> + priv->fifo_len = (fifo == 1) ? 0 : fifo;
>> dw_writew(priv, DW_SPI_TXFLTR, 0);
>> }
>> debug("%s: fifo_len=%d\n", __func__, priv->fifo_len);
>
> --
> (english) http://www.livejournal.com/~pavelmachek
> (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
Applied to u-boot-spi/master
thanks!
--
Jagan.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-29 20:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-26 2:45 [U-Boot] [PATCH] spi: designware_spi: revisit FIFO size detection again Axel Lin
2015-02-27 19:19 ` Pavel Machek
2015-03-29 20:15 ` Jagan Teki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox