From: Nicholas Piggin <npiggin@gmail.com>
To: Alistair Francis <alistair23@gmail.com>
Cc: Joel Stanley <joel@jms.id.au>,
Alistair Francis <alistair.francis@wdc.com>,
Daniel Henrique Barboza <daniel.barboza@oss.qualcomm.com>,
Chao Liu <chao.liu.zevorn@gmail.com>,
Chris Rauer <crauer@google.com>,
Michael Ellerman <mpe@kernel.org>,
Joel Stanley <jms@oss.tenstorrent.com>,
Anirudh Srinivasan <asrinivasan@oss.tenstorrent.com>,
Portia Stephens <portias@oss.tenstorrent.com>,
qemu-riscv@nongnu.org, qemu-devel@nongnu.org,
Hao Wu <wuhaotsh@google.com>
Subject: Re: [PATCH v4 01/13] hw/i2c: Add designware i2c controller
Date: Tue, 5 May 2026 16:20:26 +1000 [thread overview]
Message-ID: <afmKctliUOEgQrmN@lima-default> (raw)
In-Reply-To: <CAKmqyKPyUYfnS3BsHT31hp_P5ufDOZHmr3VW8aUyeTTSTS-Rcw@mail.gmail.com>
On Thu, Apr 30, 2026 at 01:53:21PM +1000, Alistair Francis wrote:
> On Sat, Apr 25, 2026 at 11:20 PM Joel Stanley <joel@jms.id.au> wrote:
> >
> > From: Chris Rauer <crauer@google.com>
> >
> > In the past this model has been submitted for use with the arm virt
> > machine, however in this case it will be used by the upcoming
> > Tenstorrent Atlantis RISC-V machine.
> >
> > This is a re-submission of the model with Chris' permission, with a
> > light touch of updates to make it build with qemu master.
> >
> > Reviewed-by: Hao Wu <wuhaotsh@google.com>
> > Signed-off-by: Chris Rauer <crauer@google.com>
> > Link: https://lore.kernel.org/qemu-devel/20220110214755.810343-2-venture@google.com
> > [jms: rebase and minor build fixes for class_init and reset callback]
> > Signed-off-by: Joel Stanley <joel@jms.id.au>
> > ---
> > v4: Remove unused random header
> > v2: Add trace event for read and write, document Alano and myself as
> > reviewers.
> > ---
> > MAINTAINERS | 8 +
> > include/hw/i2c/designware_i2c.h | 101 ++++
> > hw/i2c/designware_i2c.c | 817 ++++++++++++++++++++++++++++++++
> > hw/i2c/Kconfig | 4 +
> > hw/i2c/meson.build | 1 +
> > hw/i2c/trace-events | 4 +
> > 6 files changed, 935 insertions(+)
> > create mode 100644 include/hw/i2c/designware_i2c.h
> > create mode 100644 hw/i2c/designware_i2c.c
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index aa4267b15806..e1942a86eba5 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -2716,6 +2716,14 @@ S: Orphan
> > F: hw/gpio/pcf8574.c
> > F: include/gpio/pcf8574.h
> >
> > +DesignWare I2C
> > +M: Chris Rauer <crauer@google.com>
> > +R: Alano Song <alanosong@163.com>
> > +R: Joel Stanley <joel@jms.id.au>
> > +S: Maintained
> > +F: hw/i2c/designware_i2c.c
> > +F: include/hw/i2c/designware_i2c.h
> > +
> > Generic Loader
> > M: Alistair Francis <alistair@alistair23.me>
> > S: Maintained
> > diff --git a/include/hw/i2c/designware_i2c.h b/include/hw/i2c/designware_i2c.h
> > new file mode 100644
> > index 000000000000..0d8f904f51b7
> > --- /dev/null
> > +++ b/include/hw/i2c/designware_i2c.h
> > @@ -0,0 +1,101 @@
> > +/*
> > + * DesignWare I2C Module.
> > + *
> > + * Copyright 2021 Google LLC
> > + *
> > + * SPDX-License-Identifier: GPL-2.0-or-later
> > + */
> > +#ifndef DESIGNWARE_I2C_H
> > +#define DESIGNWARE_I2C_H
> > +
> > +#include "hw/i2c/i2c.h"
> > +#include "hw/core/irq.h"
> > +#include "hw/core/sysbus.h"
> > +
> > +/* Size of the FIFO buffers. */
> > +#define DESIGNWARE_I2C_RX_FIFO_SIZE 16
> > +#define DESIGNWARE_I2C_TX_FIFO_SIZE 16
> > +
> > +typedef enum DesignWareI2CStatus {
> > + DW_I2C_STATUS_IDLE,
> > + DW_I2C_STATUS_SENDING_ADDRESS,
> > + DW_I2C_STATUS_SENDING,
> > + DW_I2C_STATUS_RECEIVING,
> > +} DesignWareI2CStatus;
> > +
> > +/*
> > + * struct DesignWareI2CState - DesignWare I2C device state.
> > + * @bus: The underlying I2C Bus
> > + * @irq: GIC interrupt line to fire on events
> > + * @ic_con: : I2C control register
> > + * @ic_tar: I2C target address register
> > + * @ic_sar: I2C slave address register
> > + * @ic_ss_scl_hcnt: Standard speed i2c clock scl high count register
> > + * @ic_ss_scl_lcnt: Standard speed i2c clock scl low count register
> > + * @ic_fs_scl_hcnt: Fast mode or fast mode plus i2c clock scl high count
> > + * register
> > + * @ic_fs_scl_lcnt:Fast mode or fast mode plus i2c clock scl low count
> > + * register
> > + * @ic_intr_mask: I2C Interrupt Mask Register
> > + * @ic_raw_intr_stat: I2C raw interrupt status register
> > + * @ic_rx_tl: I2C receive FIFO threshold register
> > + * @ic_tx_tl: I2C transmit FIFO threshold register
> > + * @ic_enable: I2C enable register
> > + * @ic_status: I2C status register
> > + * @ic_txflr: I2C transmit fifo level register
> > + * @ic_rxflr: I2C receive fifo level register
> > + * @ic_sda_hold: I2C SDA hold time length register
> > + * @ic_tx_abrt_source: The I2C transmit abort source register
> > + * @ic_sda_setup: I2C SDA setup register
> > + * @ic_enable_status: I2C enable status register
> > + * @ic_fs_spklen: I2C SS, FS or FM+ spike suppression limit
> > + * @ic_comp_param_1: Component parameter register
> > + * @ic_comp_version: I2C component version register
> > + * @ic_comp_type: I2C component type register
> > + * @rx_fifo: The FIFO buffer for receiving in FIFO mode.
> > + * @rx_cur: The current position of rx_fifo.
> > + * @status: The current status of the SMBus.
> > + */
> > +typedef struct DesignWareI2CState {
> > + SysBusDevice parent;
> > +
> > + MemoryRegion iomem;
> > +
> > + I2CBus *bus;
> > + qemu_irq irq;
> > +
> > + uint32_t ic_con;
> > + uint32_t ic_tar;
> > + uint32_t ic_sar;
> > + uint32_t ic_ss_scl_hcnt;
> > + uint32_t ic_ss_scl_lcnt;
> > + uint32_t ic_fs_scl_hcnt;
> > + uint32_t ic_fs_scl_lcnt;
> > + uint32_t ic_intr_mask;
> > + uint32_t ic_raw_intr_stat;
> > + uint32_t ic_rx_tl;
> > + uint32_t ic_tx_tl;
> > + uint32_t ic_enable;
> > + uint32_t ic_status;
> > + uint32_t ic_txflr;
> > + uint32_t ic_rxflr;
> > + uint32_t ic_sda_hold;
> > + uint32_t ic_tx_abrt_source;
> > + uint32_t ic_sda_setup;
> > + uint32_t ic_enable_status;
> > + uint32_t ic_fs_spklen;
> > + uint32_t ic_comp_param_1;
> > + uint32_t ic_comp_version;
> > + uint32_t ic_comp_type;
> > +
> > + uint8_t rx_fifo[DESIGNWARE_I2C_RX_FIFO_SIZE];
> > + uint8_t rx_cur;
> > +
> > + DesignWareI2CStatus status;
> > +} DesignWareI2CState;
> > +
> > +#define TYPE_DESIGNWARE_I2C "designware-i2c"
> > +#define DESIGNWARE_I2C(obj) OBJECT_CHECK(DesignWareI2CState, (obj), \
> > + TYPE_DESIGNWARE_I2C)
> > +
> > +#endif /* DESIGNWARE_I2C_H */
> > diff --git a/hw/i2c/designware_i2c.c b/hw/i2c/designware_i2c.c
> > new file mode 100644
> > index 000000000000..7d8b1c13533e
> > --- /dev/null
> > +++ b/hw/i2c/designware_i2c.c
> > @@ -0,0 +1,817 @@
> > +/*
> > + * DesignWare I2C Module.
> > + *
> > + * Copyright 2021 Google LLC
> > + *
> > + * SPDX-License-Identifier: GPL-2.0-or-later
> > + */
> > +
> > +#include "qemu/osdep.h"
> > +
> > +#include "hw/i2c/designware_i2c.h"
> > +#include "migration/vmstate.h"
> > +#include "qemu/bitops.h"
> > +#include "qemu/log.h"
> > +#include "qemu/module.h"
> > +#include "qemu/units.h"
> > +#include "trace.h"
> > +
> > +enum DesignWareI2CRegister {
> > + DW_IC_CON = 0x00,
> > + DW_IC_TAR = 0x04,
> > + DW_IC_SAR = 0x08,
> > + DW_IC_DATA_CMD = 0x10,
> > + DW_IC_SS_SCL_HCNT = 0x14,
> > + DW_IC_SS_SCL_LCNT = 0x18,
> > + DW_IC_FS_SCL_HCNT = 0x1c,
> > + DW_IC_FS_SCL_LCNT = 0x20,
> > + DW_IC_INTR_STAT = 0x2c,
> > + DW_IC_INTR_MASK = 0x30,
> > + DW_IC_RAW_INTR_STAT = 0x34,
> > + DW_IC_RX_TL = 0x38,
> > + DW_IC_TX_TL = 0x3c,
> > + DW_IC_CLR_INTR = 0x40,
> > + DW_IC_CLR_RX_UNDER = 0x44,
> > + DW_IC_CLR_RX_OVER = 0x48,
> > + DW_IC_CLR_TX_OVER = 0x4c,
> > + DW_IC_CLR_RD_REQ = 0x50,
> > + DW_IC_CLR_TX_ABRT = 0x54,
> > + DW_IC_CLR_RX_DONE = 0x58,
> > + DW_IC_CLR_ACTIVITY = 0x5c,
> > + DW_IC_CLR_STOP_DET = 0x60,
> > + DW_IC_CLR_START_DET = 0x64,
> > + DW_IC_CLR_GEN_CALL = 0x68,
> > + DW_IC_ENABLE = 0x6c,
> > + DW_IC_STATUS = 0x70,
> > + DW_IC_TXFLR = 0x74,
> > + DW_IC_RXFLR = 0x78,
> > + DW_IC_SDA_HOLD = 0x7c,
> > + DW_IC_TX_ABRT_SOURCE = 0x80,
> > + DW_IC_SLV_DATA_NACK_ONLY = 0x84,
> > + DW_IC_DMA_CR = 0x88,
> > + DW_IC_DMA_TDLR = 0x8c,
> > + DW_IC_DMA_RDLR = 0x90,
> > + DW_IC_SDA_SETUP = 0x94,
> > + DW_IC_ACK_GENERAL_CALL = 0x98,
> > + DW_IC_ENABLE_STATUS = 0x9c,
> > + DW_IC_FS_SPKLEN = 0xa0,
> > + DW_IC_CLR_RESTART_DET = 0xa8,
> > + DW_IC_COMP_PARAM_1 = 0xf4,
> > + DW_IC_COMP_VERSION = 0xf8,
> > + DW_IC_COMP_TYPE = 0xfc,
> > +};
> > +
> > +/* DW_IC_CON fields */
> > +#define DW_IC_CON_STOP_DET_IF_MASTER_ACTIV BIT(10)
> > +#define DW_IC_CON_RX_FIFO_FULL_HLD_CTRL BIT(9)
> > +#define DW_IC_CON_TX_EMPTY_CTRL BIT(8)
> > +#define DW_IC_CON_STOP_IF_ADDRESSED BIT(7)
> > +#define DW_IC_CON_SLAVE_DISABLE BIT(6)
> > +#define DW_IC_CON_IC_RESTART_EN BIT(5)
> > +#define DW_IC_CON_10BITADDR_MASTER BIT(4)
> > +#define DW_IC_CON_10BITADDR_SLAVE BIT(3)
> > +#define DW_IC_CON_SPEED(rv) extract32((rv), 1, 2)
> > +#define DW_IC_CON_MASTER_MODE BIT(0)
> > +
> > +/* DW_IC_TAR fields */
> > +#define DW_IC_TAR_IC_10BITADDR_MASTER BIT(12)
> > +#define DW_IC_TAR_SPECIAL BIT(11)
> > +#define DW_IC_TAR_GC_OR_START BIT(10)
> > +#define DW_IC_TAR_ADDRESS(rv) extract32((rv), 0, 10)
> > +
> > +/* DW_IC_DATA_CMD fields */
> > +#define DW_IC_DATA_CMD_RESTART BIT(10)
> > +#define DW_IC_DATA_CMD_STOP BIT(9)
> > +#define DW_IC_DATA_CMD_CMD BIT(8)
> > +#define DW_IC_DATA_CMD_DAT(rv) extract32((rv), 0, 8)
> > +
> > +/* DW_IC_INTR_STAT/INTR_MASK/RAW_INTR_STAT fields */
> > +#define DW_IC_INTR_RESTART_DET BIT(12)
> > +#define DW_IC_INTR_GEN_CALL BIT(11)
> > +#define DW_IC_INTR_START_DET BIT(10)
> > +#define DW_IC_INTR_STOP_DET BIT(9)
> > +#define DW_IC_INTR_ACTIVITY BIT(8)
> > +#define DW_IC_INTR_RX_DONE BIT(7)
> > +#define DW_IC_INTR_TX_ABRT BIT(6)
> > +#define DW_IC_INTR_RD_REQ BIT(5)
> > +#define DW_IC_INTR_TX_EMPTY BIT(4) /* Hardware clear only. */
> > +#define DW_IC_INTR_TX_OVER BIT(3)
> > +#define DW_IC_INTR_RX_FULL BIT(2) /* Hardware clear only. */
> > +#define DW_IC_INTR_RX_OVER BIT(1)
> > +#define DW_IC_INTR_RX_UNDER BIT(0)
> > +
> > +/* DW_IC_ENABLE fields */
> > +#define DW_IC_ENABLE_TX_CMD_BLOCK BIT(2)
> > +#define DW_IC_ENABLE_ABORT BIT(1)
> > +#define DW_IC_ENABLE_ENABLE BIT(0)
> > +
> > +/* DW_IC_STATUS fields */
> > +#define DW_IC_STATUS_SLV_ACTIVITY BIT(6)
> > +#define DW_IC_STATUS_MST_ACTIVITY BIT(5)
> > +#define DW_IC_STATUS_RFF BIT(4)
> > +#define DW_IC_STATUS_RFNE BIT(3)
> > +#define DW_IC_STATUS_TFE BIT(2)
> > +#define DW_IC_STATUS_TFNF BIT(1)
> > +#define DW_IC_STATUS_ACTIVITY BIT(0)
> > +
> > +/* DW_IC_TX_ABRT_SOURCE fields */
> > +#define DW_IC_TX_TX_FLUSH_CNT extract32((rv), 23, 9)
> > +#define DW_IC_TX_ABRT_USER_ABRT BIT(16)
> > +#define DW_IC_TX_ABRT_SLVRD_INTX BIT(15)
> > +#define DW_IC_TX_ABRT_SLV_ARBLOST BIT(14)
> > +#define DW_IC_TX_ABRT_SLVFLUSH_TXFIFO BIT(13)
> > +#define DW_IC_TX_ARB_LOST BIT(12)
> > +#define DW_IC_TX_ABRT_MASTER_DIS BIT(11)
> > +#define DW_IC_TX_ABRT_10B_RD_NORSTRT BIT(10)
> > +#define DW_IC_TX_ABRT_SBYTE_NORSTRT BIT(9)
> > +#define DW_IC_TX_ABRT_HS_NORSTRT BIT(8)
> > +#define DW_IC_TX_ABRT_SBYTE_ACKDET BIT(7)
> > +#define DW_IC_TX_ABRT_HS_ACKDET BIT(6)
> > +#define DW_IC_TX_ABRT_GCALL_READ BIT(5)
> > +#define DW_IC_TX_ABRT_GCALL_NOACK BIT(4)
> > +#define DW_IC_TX_ABRT_TXDATA_NOACK BIT(3)
> > +#define DW_IC_TX_ABRT_10ADDR2_NOACK BIT(2)
> > +#define DW_IC_TX_ABRT_10ADDR1_NOACK BIT(1)
> > +#define DW_IC_TX_ABRT_7B_ADDR_NOACK BIT(0)
> > +
> > +
> > +/* IC_ENABLE_STATUS fields */
> > +#define DW_IC_ENABLE_STATUS_SLV_RX_DATA_LOST BIT(2)
> > +#define DW_IC_ENABLE_STATUS_SLV_DISABLED_WHILE_BUSY BIT(1)
> > +#define DW_IC_ENABLE_STATUS_IC_EN BIT(0)
> > +
> > +/* Masks for writable registers. */
> > +#define DW_IC_CON_MASK 0x000003ff
> > +#define DW_IC_TAR_MASK 0x00000fff
> > +#define DW_IC_SAR_MASK 0x000003ff
> > +#define DW_IC_SS_SCL_HCNT_MASK 0x0000ffff
> > +#define DW_IC_SS_SCL_LCNT_MASK 0x0000ffff
> > +#define DW_IC_FS_SCL_HCNT_MASK 0x0000ffff
> > +#define DW_IC_FS_SCL_LCNT_MASK 0x0000ffff
> > +#define DW_IC_INTR_MASK_MASK 0x00001fff
> > +#define DW_IC_ENABLE_MASK 0x00000007
> > +#define DW_IC_SDA_HOLD_MASK 0x00ffffff
> > +#define DW_IC_SDA_SETUP_MASK 0x000000ff
> > +#define DW_IC_FS_SPKLEN_MASK 0x000000ff
> > +
> > +/* Reset values */
> > +#define DW_IC_CON_INIT_VAL 0x7d
> > +#define DW_IC_TAR_INIT_VAL 0x1055
> > +#define DW_IC_SAR_INIT_VAL 0x55
> > +#define DW_IC_SS_SCL_HCNT_INIT_VAL 0x190
> > +#define DW_IC_SS_SCL_LCNT_INIT_VAL 0x1d6
> > +#define DW_IC_FS_SCL_HCNT_INIT_VAL 0x3c
> > +#define DW_IC_FS_SCL_LCNT_INIT_VAL 0x82
> > +#define DW_IC_INTR_MASK_INIT_VAL 0x8ff
> > +#define DW_IC_STATUS_INIT_VAL 0x6
> > +#define DW_IC_SDA_HOLD_INIT_VAL 0x1
> > +#define DW_IC_SDA_SETUP_INIT_VAL 0x64
> > +#define DW_IC_FS_SPKLEN_INIT_VAL 0x2
> > +
> > +#define DW_IC_COMP_PARAM_1_HAS_ENCODED_PARAMS BIT(7)
> > +#define DW_IC_COMP_PARAM_1_HAS_DMA 0 /* bit 6 - DMA disabled. */
> > +#define DW_IC_COMP_PARAM_1_INTR_IO BIT(5)
> > +#define DW_IC_COMP_PARAM_1_HC_COUNT_VAL 0 /* bit 4 - disabled */
> > +#define DW_IC_COMP_PARAM_1_HIGH_SPEED_MODE (BIT(2) | BIT(3))
> > +#define DW_IC_COMP_PARAM_1_APB_DATA_WIDTH_32 BIT(1) /* bits 0, 1 */
> > +#define DW_IC_COMP_PARAM_1_INIT_VAL \
> > + (DW_IC_COMP_PARAM_1_APB_DATA_WIDTH_32 | \
> > + DW_IC_COMP_PARAM_1_HIGH_SPEED_MODE | \
> > + DW_IC_COMP_PARAM_1_HC_COUNT_VAL | \
> > + DW_IC_COMP_PARAM_1_INTR_IO | \
> > + DW_IC_COMP_PARAM_1_HAS_DMA | \
> > + DW_IC_COMP_PARAM_1_HAS_ENCODED_PARAMS | \
> > + ((DESIGNWARE_I2C_RX_FIFO_SIZE - 1) << 8) | \
> > + ((DESIGNWARE_I2C_TX_FIFO_SIZE - 1) << 16))
> > +#define DW_IC_COMP_VERSION_INIT_VAL 0x3132302a
> > +#define DW_IC_COMP_TYPE_INIT_VAL 0x44570140
>
> I would prefer these to sue the QEMU register API
That's probably a good idea. It's a lot of churn to change it, but
I'm having a try. Might do it as a follow on patch.
> > +
> > + /* Receive data */
> > + if (recv) {
> > + uint8_t pos = (s->rx_cur + s->ic_rxflr) % DESIGNWARE_I2C_RX_FIFO_SIZE;
> > +
> > + if (s->ic_rxflr < DESIGNWARE_I2C_RX_FIFO_SIZE) {
> > + s->rx_fifo[pos] = i2c_recv(s->bus);
> > + s->ic_rxflr++;
>
> QEMU also has the Fifo8 which would handle the FIFO for you, I would
> prefer that as well.
Yeah, that one isn't so hard and makes the code nicer. I might've found
a bug in dw_i2c_reset_to_idle() not clearing rx_cur while doing it.
Thanks,
Nick
next prev parent reply other threads:[~2026-05-05 6:20 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-25 13:17 [PATCH v4 00/13] hw/riscv: Add the Tenstorrent Atlantis machine Joel Stanley
2026-04-25 13:17 ` [PATCH v4 01/13] hw/i2c: Add designware i2c controller Joel Stanley
2026-04-30 3:53 ` Alistair Francis
2026-05-05 6:20 ` Nicholas Piggin [this message]
2026-05-05 7:36 ` Philippe Mathieu-Daudé
2026-05-06 5:58 ` Nicholas Piggin
2026-05-06 8:59 ` Philippe Mathieu-Daudé
2026-05-05 7:57 ` Philippe Mathieu-Daudé
2026-05-06 5:53 ` Nicholas Piggin
2026-05-06 8:55 ` Philippe Mathieu-Daudé
2026-04-25 13:17 ` [PATCH v4 02/13] hw/riscv/boot: Describe discontiguous memory in boot_info Joel Stanley
2026-04-25 13:17 ` [PATCH v4 03/13] hw/riscv/boot: Account for discontiguous memory when loading firmware Joel Stanley
2026-04-29 23:34 ` Alistair Francis
2026-05-04 23:45 ` Nicholas Piggin
2026-04-25 13:17 ` [PATCH v4 04/13] hw/riscv/boot: Provide a simple halting payload Joel Stanley
2026-04-29 23:35 ` Alistair Francis
2026-05-04 23:52 ` Nicholas Piggin
2026-05-05 8:06 ` Philippe Mathieu-Daudé
2026-05-07 1:53 ` Nicholas Piggin
2026-04-25 13:17 ` [PATCH v4 05/13] hw/riscv/virt: Move AIA initialisation to helper file Joel Stanley
2026-04-25 13:17 ` [PATCH v4 06/13] hw/riscv/aia: Provide number of irq sources Joel Stanley
2026-04-25 13:17 ` [PATCH v4 07/13] target/riscv: tt-ascalon: Enable Zkr extension Joel Stanley
2026-04-29 23:36 ` Alistair Francis
2026-05-05 0:06 ` Nicholas Piggin
2026-04-25 13:17 ` [PATCH v4 08/13] target/riscv: tt-ascalon: Enable Svadu by removing Svade Joel Stanley
2026-04-29 23:41 ` Alistair Francis
2026-04-25 13:17 ` [PATCH v4 09/13] hw/riscv: Add Tenstorrent Atlantis machine Joel Stanley
2026-04-29 23:57 ` Alistair Francis
2026-05-05 1:04 ` Nicholas Piggin
2026-05-05 4:34 ` Alistair Francis
2026-05-05 6:00 ` Nicholas Piggin
2026-05-05 7:31 ` Philippe Mathieu-Daudé
2026-05-06 3:14 ` Alistair Francis
2026-05-07 1:50 ` Nicholas Piggin
2026-05-07 2:53 ` Alistair Francis
2026-05-05 2:00 ` Nicholas Piggin
2026-05-05 4:36 ` Alistair Francis
2026-05-05 6:01 ` Nicholas Piggin
2026-04-25 13:17 ` [PATCH v4 10/13] hw/riscv/atlantis: Add PCIe controller Joel Stanley
2026-04-30 0:04 ` Alistair Francis
2026-05-05 1:38 ` Nicholas Piggin
2026-04-25 13:17 ` [PATCH v4 11/13] tests/functional/riscv64: Add tt-atlantis tests Joel Stanley
2026-04-25 13:17 ` [PATCH v4 12/13] hw/riscv/atlantis: Integrate i2c buses Joel Stanley
2026-04-25 13:17 ` [PATCH v4 13/13] hw/riscv/atlantis: Add some i2c peripherals Joel Stanley
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=afmKctliUOEgQrmN@lima-default \
--to=npiggin@gmail.com \
--cc=alistair.francis@wdc.com \
--cc=alistair23@gmail.com \
--cc=asrinivasan@oss.tenstorrent.com \
--cc=chao.liu.zevorn@gmail.com \
--cc=crauer@google.com \
--cc=daniel.barboza@oss.qualcomm.com \
--cc=jms@oss.tenstorrent.com \
--cc=joel@jms.id.au \
--cc=mpe@kernel.org \
--cc=portias@oss.tenstorrent.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=wuhaotsh@google.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.