lkml.org 
[lkml]   [2011]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Date
SubjectRe: [PATCH v3 2/2] i2c: xiic: Use 32bit accesses only
On Tue, Feb 22, 2011 at 10:49 AM, Michal Simek <monstr@monstr.eu> wrote:
> i2c driver is used for LE/BE that's why is useful to use
> 32bit accesses. Then it is not necessary to solve any
> endian issues.

Are you sure? I would expect the BE version needs to use
io{read,write}32be variants of the accessors. What platforms have you
tested on?

>
> Signed-off-by: Michal Simek <monstr@monstr.eu>
> ---
>  drivers/i2c/busses/i2c-xiic.c |   66 +++++++++++++++++------------------------
>  1 files changed, 27 insertions(+), 39 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
> index 0b7647b..78b3b82 100644
> --- a/drivers/i2c/busses/i2c-xiic.c
> +++ b/drivers/i2c/busses/i2c-xiic.c
> @@ -178,21 +178,6 @@ struct xiic_i2c {
>  static void xiic_start_xfer(struct xiic_i2c *i2c);
>  static void __xiic_start_xfer(struct xiic_i2c *i2c);
>
> -static inline void xiic_setreg8(struct xiic_i2c *i2c, int reg, u8 value)
> -{
> -       iowrite8(value, i2c->base + reg);
> -}
> -
> -static inline u8 xiic_getreg8(struct xiic_i2c *i2c, int reg)
> -{
> -       return ioread8(i2c->base + reg);
> -}
> -
> -static inline void xiic_setreg16(struct xiic_i2c *i2c, int reg, u16 value)
> -{
> -       iowrite16(value, i2c->base + reg);
> -}
> -
>  static inline void xiic_setreg32(struct xiic_i2c *i2c, int reg, int value)
>  {
>        iowrite32(value, i2c->base + reg);
> @@ -230,10 +215,11 @@ static inline void xiic_irq_clr_en(struct xiic_i2c *i2c, u32 mask)
>  static void xiic_clear_rx_fifo(struct xiic_i2c *i2c)
>  {
>        u8 sr;
> -       for (sr = xiic_getreg8(i2c, XIIC_SR_REG_OFFSET);
> +       for (sr = xiic_getreg32(i2c, XIIC_SR_REG_OFFSET);
>                !(sr & XIIC_SR_RX_FIFO_EMPTY_MASK);
> -               sr = xiic_getreg8(i2c, XIIC_SR_REG_OFFSET))
> -               xiic_getreg8(i2c, XIIC_DRR_REG_OFFSET);
> +               sr = xiic_getreg32(i2c, XIIC_SR_REG_OFFSET)) {
> +               xiic_getreg32(i2c, XIIC_DRR_REG_OFFSET);
> +       }
>  }
>
>  static void xiic_reinit(struct xiic_i2c *i2c)
> @@ -241,13 +227,13 @@ static void xiic_reinit(struct xiic_i2c *i2c)
>        xiic_setreg32(i2c, XIIC_RESETR_OFFSET, XIIC_RESET_MASK);
>
>        /* Set receive Fifo depth to maximum (zero based). */
> -       xiic_setreg8(i2c, XIIC_RFD_REG_OFFSET, IIC_RX_FIFO_DEPTH - 1);
> +       xiic_setreg32(i2c, XIIC_RFD_REG_OFFSET, IIC_RX_FIFO_DEPTH - 1);
>
>        /* Reset Tx Fifo. */
> -       xiic_setreg8(i2c, XIIC_CR_REG_OFFSET, XIIC_CR_TX_FIFO_RESET_MASK);
> +       xiic_setreg32(i2c, XIIC_CR_REG_OFFSET, XIIC_CR_TX_FIFO_RESET_MASK);
>
>        /* Enable IIC Device, remove Tx Fifo reset & disable general call. */
> -       xiic_setreg8(i2c, XIIC_CR_REG_OFFSET, XIIC_CR_ENABLE_DEVICE_MASK);
> +       xiic_setreg32(i2c, XIIC_CR_REG_OFFSET, XIIC_CR_ENABLE_DEVICE_MASK);
>
>        /* make sure RX fifo is empty */
>        xiic_clear_rx_fifo(i2c);
> @@ -265,8 +251,9 @@ static void xiic_deinit(struct xiic_i2c *i2c)
>        xiic_setreg32(i2c, XIIC_RESETR_OFFSET, XIIC_RESET_MASK);
>
>        /* Disable IIC Device. */
> -       cr = xiic_getreg8(i2c, XIIC_CR_REG_OFFSET);
> -       xiic_setreg8(i2c, XIIC_CR_REG_OFFSET, cr & ~XIIC_CR_ENABLE_DEVICE_MASK);
> +       cr = xiic_getreg32(i2c, XIIC_CR_REG_OFFSET);
> +       xiic_setreg32(i2c, XIIC_CR_REG_OFFSET,
> +                                       cr & ~XIIC_CR_ENABLE_DEVICE_MASK);
>  }
>
>  static void xiic_read_rx(struct xiic_i2c *i2c)
> @@ -274,22 +261,22 @@ static void xiic_read_rx(struct xiic_i2c *i2c)
>        u8 bytes_in_fifo;
>        int i;
>
> -       bytes_in_fifo = xiic_getreg8(i2c, XIIC_RFO_REG_OFFSET) + 1;
> +       bytes_in_fifo = xiic_getreg32(i2c, XIIC_RFO_REG_OFFSET) + 1;
>
>        dev_dbg(i2c->adap.dev.parent, "%s entry, bytes in fifo: %d, msg: %d"
>                ", SR: 0x%x, CR: 0x%x\n",
>                __func__, bytes_in_fifo, xiic_rx_space(i2c),
> -               xiic_getreg8(i2c, XIIC_SR_REG_OFFSET),
> -               xiic_getreg8(i2c, XIIC_CR_REG_OFFSET));
> +               xiic_getreg32(i2c, XIIC_SR_REG_OFFSET),
> +               xiic_getreg32(i2c, XIIC_CR_REG_OFFSET));
>
>        if (bytes_in_fifo > xiic_rx_space(i2c))
>                bytes_in_fifo = xiic_rx_space(i2c);
>
>        for (i = 0; i < bytes_in_fifo; i++)
>                i2c->rx_msg->buf[i2c->rx_pos++] =
> -                       xiic_getreg8(i2c, XIIC_DRR_REG_OFFSET);
> +                       xiic_getreg32(i2c, XIIC_DRR_REG_OFFSET);
>
> -       xiic_setreg8(i2c, XIIC_RFD_REG_OFFSET,
> +       xiic_setreg32(i2c, XIIC_RFD_REG_OFFSET,
>                (xiic_rx_space(i2c) > IIC_RX_FIFO_DEPTH) ?
>                IIC_RX_FIFO_DEPTH - 1 :  xiic_rx_space(i2c) - 1);
>  }
> @@ -297,7 +284,7 @@ static void xiic_read_rx(struct xiic_i2c *i2c)
>  static int xiic_tx_fifo_space(struct xiic_i2c *i2c)
>  {
>        /* return the actual space left in the FIFO */
> -       return IIC_TX_FIFO_DEPTH - xiic_getreg8(i2c, XIIC_TFO_REG_OFFSET) - 1;
> +       return IIC_TX_FIFO_DEPTH - xiic_getreg32(i2c, XIIC_TFO_REG_OFFSET) - 1;
>  }
>
>  static void xiic_fill_tx_fifo(struct xiic_i2c *i2c)
> @@ -317,9 +304,9 @@ static void xiic_fill_tx_fifo(struct xiic_i2c *i2c)
>                        data |= XIIC_TX_DYN_STOP_MASK;
>                        dev_dbg(i2c->adap.dev.parent, "%s TX STOP\n", __func__);
>
> -                       xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET, data);
> +                       xiic_setreg32(i2c, XIIC_DTR_REG_OFFSET, data);
>                } else
> -                       xiic_setreg8(i2c, XIIC_DTR_REG_OFFSET, data);
> +                       xiic_setreg32(i2c, XIIC_DTR_REG_OFFSET, data);
>        }
>  }
>
> @@ -348,7 +335,8 @@ static void xiic_process(struct xiic_i2c *i2c)
>
>        dev_dbg(i2c->adap.dev.parent, "%s entry, IER: 0x%x, ISR: 0x%x, "
>                "pend: 0x%x, SR: 0x%x, msg: %p, nmsgs: %d\n",
> -               __func__, ier, isr, pend, xiic_getreg8(i2c, XIIC_SR_REG_OFFSET),
> +               __func__, ier, isr, pend,
> +               xiic_getreg32(i2c, XIIC_SR_REG_OFFSET),
>                i2c->tx_msg, i2c->nmsgs);
>
>        /* Do not processes a devices interrupts if the device has no
> @@ -479,7 +467,7 @@ out:
>
>  static int xiic_bus_busy(struct xiic_i2c *i2c)
>  {
> -       u8 sr = xiic_getreg8(i2c, XIIC_SR_REG_OFFSET);
> +       u8 sr = xiic_getreg32(i2c, XIIC_SR_REG_OFFSET);
>
>        return (sr & XIIC_SR_BUS_BUSY_MASK) ? -EBUSY : 0;
>  }
> @@ -522,17 +510,17 @@ static void xiic_start_recv(struct xiic_i2c *i2c)
>        rx_watermark = msg->len;
>        if (rx_watermark > IIC_RX_FIFO_DEPTH)
>                rx_watermark = IIC_RX_FIFO_DEPTH;
> -       xiic_setreg8(i2c, XIIC_RFD_REG_OFFSET, rx_watermark - 1);
> +       xiic_setreg32(i2c, XIIC_RFD_REG_OFFSET, rx_watermark - 1);
>
>        if (!(msg->flags & I2C_M_NOSTART))
>                /* write the address */
> -               xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET,
> +               xiic_setreg32(i2c, XIIC_DTR_REG_OFFSET,
>                        (msg->addr << 1) | XIIC_READ_OPERATION |
>                        XIIC_TX_DYN_START_MASK);
>
>        xiic_irq_clr_en(i2c, XIIC_INTR_BNB_MASK);
>
> -       xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET,
> +       xiic_setreg32(i2c, XIIC_DTR_REG_OFFSET,
>                msg->len | ((i2c->nmsgs == 1) ? XIIC_TX_DYN_STOP_MASK : 0));
>        if (i2c->nmsgs == 1)
>                /* very last, enable bus not busy as well */
> @@ -551,7 +539,7 @@ static void xiic_start_send(struct xiic_i2c *i2c)
>        dev_dbg(i2c->adap.dev.parent, "%s entry, msg: %p, len: %d, "
>                "ISR: 0x%x, CR: 0x%x\n",
>                __func__, msg, msg->len, xiic_getreg32(i2c, XIIC_IISR_OFFSET),
> -               xiic_getreg8(i2c, XIIC_CR_REG_OFFSET));
> +               xiic_getreg32(i2c, XIIC_CR_REG_OFFSET));
>
>        if (!(msg->flags & I2C_M_NOSTART)) {
>                /* write the address */
> @@ -561,7 +549,7 @@ static void xiic_start_send(struct xiic_i2c *i2c)
>                        /* no data and last message -> add STOP */
>                        data |= XIIC_TX_DYN_STOP_MASK;
>
> -               xiic_setreg16(i2c, XIIC_DTR_REG_OFFSET, data);
> +               xiic_setreg32(i2c, XIIC_DTR_REG_OFFSET, data);
>        }
>
>        xiic_fill_tx_fifo(i2c);
> @@ -653,7 +641,7 @@ static int xiic_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
>        int err;
>
>        dev_dbg(adap->dev.parent, "%s entry SR: 0x%x\n", __func__,
> -               xiic_getreg8(i2c, XIIC_SR_REG_OFFSET));
> +               xiic_getreg32(i2c, XIIC_SR_REG_OFFSET));
>
>        err = xiic_busy(i2c);
>        if (err)
> --
> 1.5.5.6
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>



--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2011-02-22 19:11    [W:0.056 / U:0.180 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site