* [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word cases
@ 2014-01-15 9:07 Axel Lin
[not found] ` <5EB3BFCD089AD643B9BB63439F5FD5E9012BC1048F@SHAASIEXM01.ASIA.ROOT.PRI>
2014-01-27 20:30 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2014-01-15 9:07 UTC (permalink / raw)
To: Mark Brown
Cc: Zhiwu Song, Barry Song, Qipan Li,
linux-spi-u79uwXL29TY76Z2rM5mHXA
Trivial cleanup to avoid duplicate code in various bits_per_word cases.
Signed-off-by: Axel Lin <axel.lin-8E1dMatC8ynQT0dZR+AlfA@public.gmane.org>
---
drivers/spi/spi-sirf.c | 21 ++++++---------------
1 file changed, 6 insertions(+), 15 deletions(-)
diff --git a/drivers/spi/spi-sirf.c b/drivers/spi/spi-sirf.c
index ed5e501..4b43310 100644
--- a/drivers/spi/spi-sirf.c
+++ b/drivers/spi/spi-sirf.c
@@ -459,11 +459,6 @@ spi_sirfsoc_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
regval |= SIRFSOC_SPI_TRAN_DAT_FORMAT_8;
sspi->rx_word = spi_sirfsoc_rx_word_u8;
sspi->tx_word = spi_sirfsoc_tx_word_u8;
- txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_BYTE;
- rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_BYTE;
- sspi->word_width = 1;
break;
case 12:
case 16:
@@ -471,26 +466,22 @@ spi_sirfsoc_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
SIRFSOC_SPI_TRAN_DAT_FORMAT_16;
sspi->rx_word = spi_sirfsoc_rx_word_u16;
sspi->tx_word = spi_sirfsoc_tx_word_u16;
- txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_WORD;
- rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_WORD;
- sspi->word_width = 2;
break;
case 32:
regval |= SIRFSOC_SPI_TRAN_DAT_FORMAT_32;
sspi->rx_word = spi_sirfsoc_rx_word_u32;
sspi->tx_word = spi_sirfsoc_tx_word_u32;
- txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_DWORD;
- rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
- SIRFSOC_SPI_FIFO_WIDTH_DWORD;
- sspi->word_width = 4;
break;
default:
BUG();
}
+ sspi->word_width = DIV_ROUND_UP(bits_per_word, 8);
+ txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
+ sspi->word_width;
+ rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
+ sspi->word_width;
+
if (!(spi->mode & SPI_CS_HIGH))
regval |= SIRFSOC_SPI_CS_IDLE_STAT;
if (!(spi->mode & SPI_LSB_FIRST))
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word cases
[not found] ` <5EB3BFCD089AD643B9BB63439F5FD5E9012BC1048F-W2enlP78h2wYZnBWG7VmBdnKn0HB1kRyVQQcQy+6Uvc@public.gmane.org>
@ 2014-01-15 9:35 ` Barry Song
0 siblings, 0 replies; 3+ messages in thread
From: Barry Song @ 2014-01-15 9:35 UTC (permalink / raw)
To: Barry Song, Axel Lin
Cc: DL-SHA-WorkGroupLinux, linux-spi-u79uwXL29TY76Z2rM5mHXA, Qipan Li
2014/1/15 Barry Song <Barry.Song-kQvG35nSl+M@public.gmane.org>:
>> -----Original Message-----
>> From: Axel Lin [mailto:axel.lin-8E1dMatC8ynQT0dZR+AlfA@public.gmane.org]
>> Sent: Wednesday, January 15, 2014 5:08 PM
>> To: Mark Brown
>> Cc: Zhiwu Song; Barry Song; Qipan Li; linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Subject: [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word
>> cases
>>
>> Trivial cleanup to avoid duplicate code in various bits_per_word cases.
>>
>> Signed-off-by: Axel Lin <axel.lin-8E1dMatC8ynQT0dZR+AlfA@public.gmane.org>
looks good to me. Thank, Axel.
Reviewed-by: Barry Song <Baohua.Song-kQvG35nSl+M@public.gmane.org>
>> ---
>> drivers/spi/spi-sirf.c | 21 ++++++---------------
>> 1 file changed, 6 insertions(+), 15 deletions(-)
>>
>> diff --git a/drivers/spi/spi-sirf.c b/drivers/spi/spi-sirf.c index
>> ed5e501..4b43310 100644
>> --- a/drivers/spi/spi-sirf.c
>> +++ b/drivers/spi/spi-sirf.c
>> @@ -459,11 +459,6 @@ spi_sirfsoc_setup_transfer(struct spi_device *spi,
>> struct spi_transfer *t)
>> regval |= SIRFSOC_SPI_TRAN_DAT_FORMAT_8;
>> sspi->rx_word = spi_sirfsoc_rx_word_u8;
>> sspi->tx_word = spi_sirfsoc_tx_word_u8;
>> - txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_BYTE;
>> - rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_BYTE;
>> - sspi->word_width = 1;
>> break;
>> case 12:
>> case 16:
>> @@ -471,26 +466,22 @@ spi_sirfsoc_setup_transfer(struct spi_device *spi,
>> struct spi_transfer *t)
>> SIRFSOC_SPI_TRAN_DAT_FORMAT_16;
>> sspi->rx_word = spi_sirfsoc_rx_word_u16;
>> sspi->tx_word = spi_sirfsoc_tx_word_u16;
>> - txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_WORD;
>> - rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_WORD;
>> - sspi->word_width = 2;
>> break;
>> case 32:
>> regval |= SIRFSOC_SPI_TRAN_DAT_FORMAT_32;
>> sspi->rx_word = spi_sirfsoc_rx_word_u32;
>> sspi->tx_word = spi_sirfsoc_tx_word_u32;
>> - txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_DWORD;
>> - rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE
>> / 2) |
>> - SIRFSOC_SPI_FIFO_WIDTH_DWORD;
>> - sspi->word_width = 4;
>> break;
>> default:
>> BUG();
>> }
>>
>> + sspi->word_width = DIV_ROUND_UP(bits_per_word, 8);
>> + txfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
>> + sspi->word_width;
>> + rxfifo_ctrl = SIRFSOC_SPI_FIFO_THD(SIRFSOC_SPI_FIFO_SIZE / 2) |
>> + sspi->word_width;
>> +
>> if (!(spi->mode & SPI_CS_HIGH))
>> regval |= SIRFSOC_SPI_CS_IDLE_STAT;
>> if (!(spi->mode & SPI_LSB_FIRST))
>> --
>> 1.8.1.2
-barry
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word cases
2014-01-15 9:07 [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word cases Axel Lin
[not found] ` <5EB3BFCD089AD643B9BB63439F5FD5E9012BC1048F@SHAASIEXM01.ASIA.ROOT.PRI>
@ 2014-01-27 20:30 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2014-01-27 20:30 UTC (permalink / raw)
To: Axel Lin; +Cc: Zhiwu Song, Barry Song, Qipan Li,
linux-spi-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 150 bytes --]
On Wed, Jan 15, 2014 at 05:07:43PM +0800, Axel Lin wrote:
> Trivial cleanup to avoid duplicate code in various bits_per_word cases.
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-27 20:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-15 9:07 [PATCH v2] spi: sirf: Avoid duplicate code in various bits_per_word cases Axel Lin
[not found] ` <5EB3BFCD089AD643B9BB63439F5FD5E9012BC1048F@SHAASIEXM01.ASIA.ROOT.PRI>
[not found] ` <5EB3BFCD089AD643B9BB63439F5FD5E9012BC1048F-W2enlP78h2wYZnBWG7VmBdnKn0HB1kRyVQQcQy+6Uvc@public.gmane.org>
2014-01-15 9:35 ` Barry Song
2014-01-27 20:30 ` Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.