qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Hang Yu" <1339236493@qq.com>
To: "Cédric Le Goater" <clg@kaod.org>, qemu-devel <qemu-devel@nongnu.org>
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Andrew Jeffery" <andrew@aj.id.au>,
	"Joel Stanley" <joel@jms.id.au>,
	"open list:ASPEED BMCs" <qemu-arm@nongnu.org>,
	komlodi <komlodi@google.com>, peter <peter@pjd.dev>
Subject: Re: [PATCH] Aspeed: i2c: Fixed Tx and Rx error in BUFF Mode
Date: Thu, 10 Aug 2023 21:55:14 +0800	[thread overview]
Message-ID: <tencent_401D7E692D9798C9F7752312A1159240F605@qq.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 7094 bytes --]

Hello
&gt;&nbsp;Hello,

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

&gt;&nbsp;&gt; 3. Fixed issue with TXBUF transmission start position error in buff mode

&gt;&nbsp;&gt; 4. Added support for the BUFFER ORGANIZATION option in reg I2CC_POOL_CTRL
&gt;&nbsp;
&gt;&nbsp;

&gt;&nbsp;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.


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

[-- Attachment #2: Type: text/html, Size: 31705 bytes --]

             reply	other threads:[~2023-08-10 14:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-10 13:55 Hang Yu [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-08-04  8:11 [PATCH] Aspeed: i2c: Fixed Tx and Rx error in BUFF Mode Hang Yu via
2023-08-10  9:13 ` Cédric Le Goater
2023-08-04  7:50 于航 via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=tencent_401D7E692D9798C9F7752312A1159240F605@qq.com \
    --to=1339236493@qq.com \
    --cc=andrew@aj.id.au \
    --cc=clg@kaod.org \
    --cc=joel@jms.id.au \
    --cc=komlodi@google.com \
    --cc=peter.maydell@linaro.org \
    --cc=peter@pjd.dev \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).