Hello
> Hello,

> 
> On 8/4/23 10:11, Hang Yu via wrote:
> > 1. Fixed inconsistency between the bit field definition in 
register
> > I2CD_POOL_CTRL and the ast2600 datasheet
> > 2. Fixed issue of confusing RXSIZE and RXCOUNT, as well as 
forgetting
> > to add one to TXCOUNT and RXSIZE in buff mode

> > 3. Fixed issue with TXBUF transmission start position error in 
buff mode

> > 4. Added support for the BUFFER ORGANIZATION option in reg 
I2CC_POOL_CTRL
> 
> 

> This looks like 4 patches. Could split and resend a series please ?



Ok,I will split it. However, it should be noted that pool mode will only work 
if the first three patches have been applied.


> 
> Also, Cc: these persons
> 
> Joe Komlodi
> Peter Delevoryas
> 
> since they have been involved with the AST2600 I2C implementation.
> 
> > After adding these changes, QEMU can support driver code:
> > https://github.com/AspeedTech-BMC/linux/blob/aspeed-master-v5.15
> > /drivers/i2c/busses/i2c-ast2600.c
> >
&gt;&nbsp;&gt; Signed-off-by: Hang Yu <1339236...@qq.com&gt;
&gt;&nbsp;

&gt;&nbsp;This is very cryptic. Don't you have a corporate email ?

Sorry, because I am still a student and do not have 
a&nbsp;corporate&nbsp;email, I have used a private email. When submitting the 
patch next time, I will switch to my student email.
&gt;&nbsp;
&gt;&nbsp;Thanks,
&gt;&nbsp;
&gt;&nbsp;C.
&gt;&nbsp;
&gt;&nbsp;
&gt;&nbsp;


Thanks,
Hang Yu
&gt;&nbsp;&gt; ---
&gt;&nbsp;&gt; hw/i2c/aspeed_i2c.c | 21 ++++++---------------
&gt;&nbsp;&gt; include/hw/i2c/aspeed_i2c.h | 5 +++--
&gt;&nbsp;&gt; 2 files changed, 9 insertions(+), 17 deletions(-)
&gt;&nbsp;&gt;
&gt;&nbsp;&gt; diff --git a/hw/i2c/aspeed_i2c.c b/hw/i2c/aspeed_i2c.c
&gt;&nbsp;&gt; index 1f071a3811..0e380d0bba 100644
&gt;&nbsp;&gt; --- a/hw/i2c/aspeed_i2c.c

&gt;&nbsp;&gt; +++ b/hw/i2c/aspeed_i2c.c

&gt;&nbsp;&gt; @@ -236,7 +236,7 @@ static int aspeed_i2c_bus_send(AspeedI2CBus 
*bus, uint8_t pool_start)
&gt;&nbsp;&gt; uint32_t reg_byte_buf = aspeed_i2c_bus_byte_buf_offset(bus);
&gt;&nbsp;&gt; uint32_t reg_dma_len = aspeed_i2c_bus_dma_len_offset(bus);
&gt;&nbsp;&gt; int pool_tx_count = SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, 
reg_pool_ctrl,
&gt;&nbsp;&gt; - TX_COUNT);
&gt;&nbsp;&gt; + TX_COUNT)+1;
&gt;&nbsp;&gt;
&gt;&nbsp;&gt; if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, TX_BUFF_EN)) {
&gt;&nbsp;&gt; for (i = pool_start; i < pool_tx_count; i++) {
&gt;&nbsp;&gt; @@ -293,10 +293,12 @@ static void 
aspeed_i2c_bus_recv(AspeedI2CBus *bus)
&gt;&nbsp;&gt; uint32_t reg_dma_len = aspeed_i2c_bus_dma_len_offset(bus);
&gt;&nbsp;&gt; uint32_t reg_dma_addr = aspeed_i2c_bus_dma_addr_offset(bus);
&gt;&nbsp;&gt; int pool_rx_count = SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, 
reg_pool_ctrl,
&gt;&nbsp;&gt; - RX_COUNT);
&gt;&nbsp;&gt; + RX_SIZE)+1;
&gt;&nbsp;&gt;
&gt;&nbsp;&gt; if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, RX_BUFF_EN)) {
&gt;&nbsp;&gt; - uint8_t *pool_base = aic-&gt;bus_pool_base(bus);
&gt;&nbsp;&gt; + uint8_t *pool_base ;
&gt;&nbsp;&gt; + 
if(ARRAY_FIELD_EX32(bus-&gt;regs,I2CC_POOL_CTRL,BUF_ORGANIZATION))pool_base=aic-&gt;bus_pool_base(bus)+16;
&gt;&nbsp;&gt; + else pool_base= aic-&gt;bus_pool_base(bus);
&gt;&nbsp;&gt;
&gt;&nbsp;&gt; for (i = 0; i < pool_rx_count; i++) {
&gt;&nbsp;&gt; pool_base[i] = i2c_recv(bus-&gt;bus);
&gt;&nbsp;&gt; @@ -418,7 +420,7 @@ static void 
aspeed_i2c_bus_cmd_dump(AspeedI2CBus *bus)
&gt;&nbsp;&gt; uint32_t reg_intr_sts = aspeed_i2c_bus_intr_sts_offset(bus);
&gt;&nbsp;&gt; uint32_t reg_dma_len = aspeed_i2c_bus_dma_len_offset(bus);
&gt;&nbsp;&gt; if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, RX_BUFF_EN)) {
&gt;&nbsp;&gt; - count = SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_pool_ctrl, 
TX_COUNT);
&gt;&nbsp;&gt; + count = SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_pool_ctrl, 
TX_COUNT)+1;
&gt;&nbsp;&gt; } else if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, 
RX_DMA_EN)) {
&gt;&nbsp;&gt; count = bus-&gt;regs[reg_dma_len];
&gt;&nbsp;&gt; } else { /* BYTE mode */
&gt;&nbsp;&gt; @@ -449,7 +451,6 @@ static void 
aspeed_i2c_bus_handle_cmd(AspeedI2CBus *bus, uint64_t value)
&gt;&nbsp;&gt; uint8_t pool_start = 0;
&gt;&nbsp;&gt; uint32_t reg_intr_sts = aspeed_i2c_bus_intr_sts_offset(bus);
&gt;&nbsp;&gt; uint32_t reg_cmd = aspeed_i2c_bus_cmd_offset(bus);
&gt;&nbsp;&gt; - uint32_t reg_pool_ctrl = aspeed_i2c_bus_pool_ctrl_offset(bus);
&gt;&nbsp;&gt; uint32_t reg_dma_len = aspeed_i2c_bus_dma_len_offset(bus);
&gt;&nbsp;&gt;
&gt;&nbsp;&gt; if (!aspeed_i2c_check_sram(bus)) {
&gt;&nbsp;&gt; @@ -489,16 +490,6 @@ static void 
aspeed_i2c_bus_handle_cmd(AspeedI2CBus *bus, uint64_t value)
&gt;&nbsp;&gt; * else needs to be sent in this sequence.
&gt;&nbsp;&gt; */
&gt;&nbsp;&gt; if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, TX_BUFF_EN)) {
&gt;&nbsp;&gt; - if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_pool_ctrl, 
TX_COUNT)
&gt;&nbsp;&gt; - == 1) {
&gt;&nbsp;&gt; - SHARED_ARRAY_FIELD_DP32(bus-&gt;regs, reg_cmd, M_TX_CMD, 0);
&gt;&nbsp;&gt; - } else {
&gt;&nbsp;&gt; - /*
&gt;&nbsp;&gt; - * Increase the start index in the TX pool buffer to

&gt;&nbsp;&gt; - * skip the address byte.

&gt;&nbsp;&gt;&nbsp;- */

&gt;&nbsp;&gt; - pool_start++;
&gt;&nbsp;&gt; - }
&gt;&nbsp;&gt; } else if (SHARED_ARRAY_FIELD_EX32(bus-&gt;regs, reg_cmd, 
TX_DMA_EN)) {
&gt;&nbsp;&gt; if (bus-&gt;regs[reg_dma_len] == 0) {
&gt;&nbsp;&gt; SHARED_ARRAY_FIELD_DP32(bus-&gt;regs, reg_cmd, M_TX_CMD, 0);
&gt;&nbsp;&gt; diff --git a/include/hw/i2c/aspeed_i2c.h 
b/include/hw/i2c/aspeed_i2c.h
&gt;&nbsp;&gt; index 51c944efea..88b144a599 100644
&gt;&nbsp;&gt; --- a/include/hw/i2c/aspeed_i2c.h
&gt;&nbsp;&gt; +++ b/include/hw/i2c/aspeed_i2c.h
&gt;&nbsp;&gt; @@ -139,9 +139,9 @@ REG32(I2CD_CMD, 0x14) /* I2CD Command/Status 
*/
&gt;&nbsp;&gt; REG32(I2CD_DEV_ADDR, 0x18) /* Slave Device Address */
&gt;&nbsp;&gt; SHARED_FIELD(SLAVE_DEV_ADDR1, 0, 7)
&gt;&nbsp;&gt; REG32(I2CD_POOL_CTRL, 0x1C) /* Pool Buffer Control */
&gt;&nbsp;&gt; - SHARED_FIELD(RX_COUNT, 24, 5)
&gt;&nbsp;&gt; + SHARED_FIELD(RX_COUNT, 24, 6)
&gt;&nbsp;&gt; SHARED_FIELD(RX_SIZE, 16, 5)
&gt;&nbsp;&gt; - SHARED_FIELD(TX_COUNT, 9, 5)
&gt;&nbsp;&gt; + SHARED_FIELD(TX_COUNT, 8, 5)
&gt;&nbsp;&gt; FIELD(I2CD_POOL_CTRL, OFFSET, 2, 6) /* AST2400 */
&gt;&nbsp;&gt; REG32(I2CD_BYTE_BUF, 0x20) /* Transmit/Receive Byte Buffer */
&gt;&nbsp;&gt; SHARED_FIELD(RX_BUF, 8, 8)
&gt;&nbsp;&gt; @@ -162,6 +162,7 @@ REG32(I2CC_MS_TXRX_BYTE_BUF, 0x08)
&gt;&nbsp;&gt; /* 15:0 shared with I2CD_BYTE_BUF[15:0] */
&gt;&nbsp;&gt; REG32(I2CC_POOL_CTRL, 0x0c)
&gt;&nbsp;&gt; /* 31:0 shared with I2CD_POOL_CTRL[31:0] */
&gt;&nbsp;&gt; + FIELD(I2CC_POOL_CTRL, BUF_ORGANIZATION, 0, 1) /* AST2600 */
&gt;&nbsp;&gt; REG32(I2CM_INTR_CTRL, 0x10)
&gt;&nbsp;&gt; REG32(I2CM_INTR_STS, 0x14)
&gt;&nbsp;&gt; FIELD(I2CM_INTR_STS, PKT_STATE, 28, 4)

Reply via email to