lkml.org 
[lkml]   [2023]   [Apr]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v6 5/6] i2c: Add support for Intel LJCA USB I2C driver
Hi Andi,

Thanks for the review.
On Sun, Mar 26, 2023 at 05:38:46PM +0200, Andi Shyti wrote:
> Hi Ye,
>
> looks good, just a few questions:
>
> On Fri, Mar 24, 2023 at 01:21:12AM +0800, Ye Xiang wrote:
> > This patch implements the I2C function of Intel USB-I2C/GPIO/SPI adapter
>
> also here, please keep using the imperative form.
Got it.
>
> > device named "La Jolla Cove Adapter" (LJCA). It communicate with LJCA
> > I2c module with specific protocol through interfaces exported by LJCA USB
> > driver.
...
> > +static u8 ljca_i2c_format_slave_addr(u8 slave_addr, u8 type)
> > +{
> > + return (slave_addr << 1) | (type == LJCA_I2C_READ_XFER_TYPE) ?
> > + LJCA_I2C_SLAVE_TRANSFER_READ :
> > + LJCA_I2C_SLAVE_TRANSFER_WRITE;
> > +}
>
> How about:
>
> return (slave_addr << 1) | !!type;
>
> BTW, am I reading correctly that the address here is composed as:
>
> 7 6 5 5 3 2 1 0
> ADDR7 ADDR6 ADDR5 ADDR4 ADDR3 ADDR2 ADDR1 R/W
>
> [...]
>
You are correct. Will adopt this solution on next version.
> > +static u32 ljca_i2c_func(struct i2c_adapter *adap)
> > +{
> > + return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
>
> how is the smbus supported here?
The i2c-sub module of LJCA device is SMBUS compatible.
It's supported by LJCA device hardware itself.

Thanks
Ye Xiang


\
 
 \ /
  Last update: 2023-04-10 11:23    [W:0.224 / U:0.004 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site