spi: tegra20-slink: use u32 for 32-bit register values
Previously used “unsigned long” may lead to confusion should the code be compiled for 64-bit machine. Signed-off-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Родитель
6ce4eac1f6
Коммит
5fd38677a4
|
@ -196,7 +196,7 @@ struct tegra_slink_data {
|
||||||
u32 rx_status;
|
u32 rx_status;
|
||||||
u32 status_reg;
|
u32 status_reg;
|
||||||
bool is_packed;
|
bool is_packed;
|
||||||
unsigned long packed_size;
|
u32 packed_size;
|
||||||
|
|
||||||
u32 command_reg;
|
u32 command_reg;
|
||||||
u32 command2_reg;
|
u32 command2_reg;
|
||||||
|
@ -220,14 +220,14 @@ struct tegra_slink_data {
|
||||||
static int tegra_slink_runtime_suspend(struct device *dev);
|
static int tegra_slink_runtime_suspend(struct device *dev);
|
||||||
static int tegra_slink_runtime_resume(struct device *dev);
|
static int tegra_slink_runtime_resume(struct device *dev);
|
||||||
|
|
||||||
static inline unsigned long tegra_slink_readl(struct tegra_slink_data *tspi,
|
static inline u32 tegra_slink_readl(struct tegra_slink_data *tspi,
|
||||||
unsigned long reg)
|
unsigned long reg)
|
||||||
{
|
{
|
||||||
return readl(tspi->base + reg);
|
return readl(tspi->base + reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void tegra_slink_writel(struct tegra_slink_data *tspi,
|
static inline void tegra_slink_writel(struct tegra_slink_data *tspi,
|
||||||
unsigned long val, unsigned long reg)
|
u32 val, unsigned long reg)
|
||||||
{
|
{
|
||||||
writel(val, tspi->base + reg);
|
writel(val, tspi->base + reg);
|
||||||
|
|
||||||
|
@ -238,38 +238,30 @@ static inline void tegra_slink_writel(struct tegra_slink_data *tspi,
|
||||||
|
|
||||||
static void tegra_slink_clear_status(struct tegra_slink_data *tspi)
|
static void tegra_slink_clear_status(struct tegra_slink_data *tspi)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
u32 val_write;
|
||||||
unsigned long val_write = 0;
|
|
||||||
|
|
||||||
val = tegra_slink_readl(tspi, SLINK_STATUS);
|
tegra_slink_readl(tspi, SLINK_STATUS);
|
||||||
|
|
||||||
/* Write 1 to clear status register */
|
/* Write 1 to clear status register */
|
||||||
val_write = SLINK_RDY | SLINK_FIFO_ERROR;
|
val_write = SLINK_RDY | SLINK_FIFO_ERROR;
|
||||||
tegra_slink_writel(tspi, val_write, SLINK_STATUS);
|
tegra_slink_writel(tspi, val_write, SLINK_STATUS);
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long tegra_slink_get_packed_size(struct tegra_slink_data *tspi,
|
static u32 tegra_slink_get_packed_size(struct tegra_slink_data *tspi,
|
||||||
struct spi_transfer *t)
|
struct spi_transfer *t)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
|
||||||
|
|
||||||
switch (tspi->bytes_per_word) {
|
switch (tspi->bytes_per_word) {
|
||||||
case 0:
|
case 0:
|
||||||
val = SLINK_PACK_SIZE_4;
|
return SLINK_PACK_SIZE_4;
|
||||||
break;
|
|
||||||
case 1:
|
case 1:
|
||||||
val = SLINK_PACK_SIZE_8;
|
return SLINK_PACK_SIZE_8;
|
||||||
break;
|
|
||||||
case 2:
|
case 2:
|
||||||
val = SLINK_PACK_SIZE_16;
|
return SLINK_PACK_SIZE_16;
|
||||||
break;
|
|
||||||
case 4:
|
case 4:
|
||||||
val = SLINK_PACK_SIZE_32;
|
return SLINK_PACK_SIZE_32;
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
val = 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return val;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned tegra_slink_calculate_curr_xfer_param(
|
static unsigned tegra_slink_calculate_curr_xfer_param(
|
||||||
|
@ -312,10 +304,9 @@ static unsigned tegra_slink_fill_tx_fifo_from_client_txbuf(
|
||||||
{
|
{
|
||||||
unsigned nbytes;
|
unsigned nbytes;
|
||||||
unsigned tx_empty_count;
|
unsigned tx_empty_count;
|
||||||
unsigned long fifo_status;
|
u32 fifo_status;
|
||||||
unsigned max_n_32bit;
|
unsigned max_n_32bit;
|
||||||
unsigned i, count;
|
unsigned i, count;
|
||||||
unsigned long x;
|
|
||||||
unsigned int written_words;
|
unsigned int written_words;
|
||||||
unsigned fifo_words_left;
|
unsigned fifo_words_left;
|
||||||
u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
|
u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
|
||||||
|
@ -329,9 +320,9 @@ static unsigned tegra_slink_fill_tx_fifo_from_client_txbuf(
|
||||||
nbytes = written_words * tspi->bytes_per_word;
|
nbytes = written_words * tspi->bytes_per_word;
|
||||||
max_n_32bit = DIV_ROUND_UP(nbytes, 4);
|
max_n_32bit = DIV_ROUND_UP(nbytes, 4);
|
||||||
for (count = 0; count < max_n_32bit; count++) {
|
for (count = 0; count < max_n_32bit; count++) {
|
||||||
x = 0;
|
u32 x = 0;
|
||||||
for (i = 0; (i < 4) && nbytes; i++, nbytes--)
|
for (i = 0; (i < 4) && nbytes; i++, nbytes--)
|
||||||
x |= (*tx_buf++) << (i*8);
|
x |= (u32)(*tx_buf++) << (i * 8);
|
||||||
tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
|
tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -339,10 +330,10 @@ static unsigned tegra_slink_fill_tx_fifo_from_client_txbuf(
|
||||||
written_words = max_n_32bit;
|
written_words = max_n_32bit;
|
||||||
nbytes = written_words * tspi->bytes_per_word;
|
nbytes = written_words * tspi->bytes_per_word;
|
||||||
for (count = 0; count < max_n_32bit; count++) {
|
for (count = 0; count < max_n_32bit; count++) {
|
||||||
x = 0;
|
u32 x = 0;
|
||||||
for (i = 0; nbytes && (i < tspi->bytes_per_word);
|
for (i = 0; nbytes && (i < tspi->bytes_per_word);
|
||||||
i++, nbytes--)
|
i++, nbytes--)
|
||||||
x |= ((*tx_buf++) << i*8);
|
x |= (u32)(*tx_buf++) << (i * 8);
|
||||||
tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
|
tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -354,9 +345,8 @@ static unsigned int tegra_slink_read_rx_fifo_to_client_rxbuf(
|
||||||
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
||||||
{
|
{
|
||||||
unsigned rx_full_count;
|
unsigned rx_full_count;
|
||||||
unsigned long fifo_status;
|
u32 fifo_status;
|
||||||
unsigned i, count;
|
unsigned i, count;
|
||||||
unsigned long x;
|
|
||||||
unsigned int read_words = 0;
|
unsigned int read_words = 0;
|
||||||
unsigned len;
|
unsigned len;
|
||||||
u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
|
u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
|
||||||
|
@ -366,7 +356,7 @@ static unsigned int tegra_slink_read_rx_fifo_to_client_rxbuf(
|
||||||
if (tspi->is_packed) {
|
if (tspi->is_packed) {
|
||||||
len = tspi->curr_dma_words * tspi->bytes_per_word;
|
len = tspi->curr_dma_words * tspi->bytes_per_word;
|
||||||
for (count = 0; count < rx_full_count; count++) {
|
for (count = 0; count < rx_full_count; count++) {
|
||||||
x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
|
u32 x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
|
||||||
for (i = 0; len && (i < 4); i++, len--)
|
for (i = 0; len && (i < 4); i++, len--)
|
||||||
*rx_buf++ = (x >> i*8) & 0xFF;
|
*rx_buf++ = (x >> i*8) & 0xFF;
|
||||||
}
|
}
|
||||||
|
@ -374,7 +364,7 @@ static unsigned int tegra_slink_read_rx_fifo_to_client_rxbuf(
|
||||||
read_words += tspi->curr_dma_words;
|
read_words += tspi->curr_dma_words;
|
||||||
} else {
|
} else {
|
||||||
for (count = 0; count < rx_full_count; count++) {
|
for (count = 0; count < rx_full_count; count++) {
|
||||||
x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
|
u32 x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
|
||||||
for (i = 0; (i < tspi->bytes_per_word); i++)
|
for (i = 0; (i < tspi->bytes_per_word); i++)
|
||||||
*rx_buf++ = (x >> (i*8)) & 0xFF;
|
*rx_buf++ = (x >> (i*8)) & 0xFF;
|
||||||
}
|
}
|
||||||
|
@ -387,27 +377,24 @@ static unsigned int tegra_slink_read_rx_fifo_to_client_rxbuf(
|
||||||
static void tegra_slink_copy_client_txbuf_to_spi_txbuf(
|
static void tegra_slink_copy_client_txbuf_to_spi_txbuf(
|
||||||
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
||||||
{
|
{
|
||||||
unsigned len;
|
|
||||||
|
|
||||||
/* Make the dma buffer to read by cpu */
|
/* Make the dma buffer to read by cpu */
|
||||||
dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
|
dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
|
||||||
tspi->dma_buf_size, DMA_TO_DEVICE);
|
tspi->dma_buf_size, DMA_TO_DEVICE);
|
||||||
|
|
||||||
if (tspi->is_packed) {
|
if (tspi->is_packed) {
|
||||||
len = tspi->curr_dma_words * tspi->bytes_per_word;
|
unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
|
||||||
memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
|
memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
|
||||||
} else {
|
} else {
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
unsigned int count;
|
unsigned int count;
|
||||||
u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
|
u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
|
||||||
unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
|
unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
|
||||||
unsigned int x;
|
|
||||||
|
|
||||||
for (count = 0; count < tspi->curr_dma_words; count++) {
|
for (count = 0; count < tspi->curr_dma_words; count++) {
|
||||||
x = 0;
|
u32 x = 0;
|
||||||
for (i = 0; consume && (i < tspi->bytes_per_word);
|
for (i = 0; consume && (i < tspi->bytes_per_word);
|
||||||
i++, consume--)
|
i++, consume--)
|
||||||
x |= ((*tx_buf++) << i * 8);
|
x |= (u32)(*tx_buf++) << (i * 8);
|
||||||
tspi->tx_dma_buf[count] = x;
|
tspi->tx_dma_buf[count] = x;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -434,14 +421,10 @@ static void tegra_slink_copy_spi_rxbuf_to_client_rxbuf(
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
unsigned int count;
|
unsigned int count;
|
||||||
unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
|
unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
|
||||||
unsigned int x;
|
u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
|
||||||
unsigned int rx_mask, bits_per_word;
|
|
||||||
|
|
||||||
bits_per_word = t->bits_per_word;
|
|
||||||
rx_mask = (1 << bits_per_word) - 1;
|
|
||||||
for (count = 0; count < tspi->curr_dma_words; count++) {
|
for (count = 0; count < tspi->curr_dma_words; count++) {
|
||||||
x = tspi->rx_dma_buf[count];
|
u32 x = tspi->rx_dma_buf[count] & rx_mask;
|
||||||
x &= rx_mask;
|
|
||||||
for (i = 0; (i < tspi->bytes_per_word); i++)
|
for (i = 0; (i < tspi->bytes_per_word); i++)
|
||||||
*rx_buf++ = (x >> (i*8)) & 0xFF;
|
*rx_buf++ = (x >> (i*8)) & 0xFF;
|
||||||
}
|
}
|
||||||
|
@ -501,17 +484,16 @@ static int tegra_slink_start_rx_dma(struct tegra_slink_data *tspi, int len)
|
||||||
static int tegra_slink_start_dma_based_transfer(
|
static int tegra_slink_start_dma_based_transfer(
|
||||||
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
u32 val;
|
||||||
unsigned long test_val;
|
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
unsigned long status;
|
u32 status;
|
||||||
|
|
||||||
/* Make sure that Rx and Tx fifo are empty */
|
/* Make sure that Rx and Tx fifo are empty */
|
||||||
status = tegra_slink_readl(tspi, SLINK_STATUS);
|
status = tegra_slink_readl(tspi, SLINK_STATUS);
|
||||||
if ((status & SLINK_FIFO_EMPTY) != SLINK_FIFO_EMPTY) {
|
if ((status & SLINK_FIFO_EMPTY) != SLINK_FIFO_EMPTY) {
|
||||||
dev_err(tspi->dev,
|
dev_err(tspi->dev, "Rx/Tx fifo are not empty status 0x%08x\n",
|
||||||
"Rx/Tx fifo are not empty status 0x%08lx\n", status);
|
(unsigned)status);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -551,9 +533,9 @@ static int tegra_slink_start_dma_based_transfer(
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Wait for tx fifo to be fill before starting slink */
|
/* Wait for tx fifo to be fill before starting slink */
|
||||||
test_val = tegra_slink_readl(tspi, SLINK_STATUS);
|
status = tegra_slink_readl(tspi, SLINK_STATUS);
|
||||||
while (!(test_val & SLINK_TX_FULL))
|
while (!(status & SLINK_TX_FULL))
|
||||||
test_val = tegra_slink_readl(tspi, SLINK_STATUS);
|
status = tegra_slink_readl(tspi, SLINK_STATUS);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tspi->cur_direction & DATA_DIR_RX) {
|
if (tspi->cur_direction & DATA_DIR_RX) {
|
||||||
|
@ -587,7 +569,7 @@ static int tegra_slink_start_dma_based_transfer(
|
||||||
static int tegra_slink_start_cpu_based_transfer(
|
static int tegra_slink_start_cpu_based_transfer(
|
||||||
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
struct tegra_slink_data *tspi, struct spi_transfer *t)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
u32 val;
|
||||||
unsigned cur_words;
|
unsigned cur_words;
|
||||||
|
|
||||||
val = tspi->packed_size;
|
val = tspi->packed_size;
|
||||||
|
@ -714,8 +696,8 @@ static int tegra_slink_start_transfer_one(struct spi_device *spi,
|
||||||
u8 bits_per_word;
|
u8 bits_per_word;
|
||||||
unsigned total_fifo_words;
|
unsigned total_fifo_words;
|
||||||
int ret;
|
int ret;
|
||||||
unsigned long command;
|
u32 command;
|
||||||
unsigned long command2;
|
u32 command2;
|
||||||
|
|
||||||
bits_per_word = t->bits_per_word;
|
bits_per_word = t->bits_per_word;
|
||||||
speed = t->speed_hz;
|
speed = t->speed_hz;
|
||||||
|
@ -762,17 +744,18 @@ static int tegra_slink_start_transfer_one(struct spi_device *spi,
|
||||||
|
|
||||||
static int tegra_slink_setup(struct spi_device *spi)
|
static int tegra_slink_setup(struct spi_device *spi)
|
||||||
{
|
{
|
||||||
struct tegra_slink_data *tspi = spi_master_get_devdata(spi->master);
|
static const u32 cs_pol_bit[MAX_CHIP_SELECT] = {
|
||||||
unsigned long val;
|
|
||||||
unsigned long flags;
|
|
||||||
int ret;
|
|
||||||
unsigned int cs_pol_bit[MAX_CHIP_SELECT] = {
|
|
||||||
SLINK_CS_POLARITY,
|
SLINK_CS_POLARITY,
|
||||||
SLINK_CS_POLARITY1,
|
SLINK_CS_POLARITY1,
|
||||||
SLINK_CS_POLARITY2,
|
SLINK_CS_POLARITY2,
|
||||||
SLINK_CS_POLARITY3,
|
SLINK_CS_POLARITY3,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct tegra_slink_data *tspi = spi_master_get_devdata(spi->master);
|
||||||
|
u32 val;
|
||||||
|
unsigned long flags;
|
||||||
|
int ret;
|
||||||
|
|
||||||
dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
|
dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
|
||||||
spi->bits_per_word,
|
spi->bits_per_word,
|
||||||
spi->mode & SPI_CPOL ? "" : "~",
|
spi->mode & SPI_CPOL ? "" : "~",
|
||||||
|
|
Загрузка…
Ссылка в новой задаче