* [PATCH v4 1/4] i2c: machxo2: new driver
@ 2025-12-10 13:52 Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-12-10 13:52 UTC (permalink / raw)
To: Andi Shyti, Lee Jones; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
Implement a driver for the "Hardened I2C" controller found on Lattice
MachXO2 family PLDs. The driver can run IRQ-driven or use a timer for
polling.
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
---
v2:
- use MODULE_DEVICE_TABLE()
v3:
- Prefix enums and register defines
- Add machxo2_sleep() using fsleep instead of udelay, update machxo2_recover()
to use it
- Add an early return in machxo2_write() to reduce indentation
- Add a comment regarding limited prescale range
- Use dev_err_probe() where appropriate
- Set I2C_CR_I2CEN later, so it doesn't need to be disabled again in case of a
IRQ setup error. A clear of the IRQ status register is added to machxo2_init()
to ensure that we don't attempt to handle a pending IRQ before I2C_CR_I2CEN is
set.
v4:
- Depend on HAS_IOPORT
- Use ktime_add() for exponential backoff
- Prefer spin_lock_irqsave() to spin_lock_irq()
- Fix platform_get_resource() error handling
drivers/i2c/busses/Kconfig | 11 +
drivers/i2c/busses/Makefile | 1 +
drivers/i2c/busses/i2c-machxo2.c | 709 ++++++++++++++++++++++
include/linux/platform_data/i2c-machxo2.h | 17 +
4 files changed, 738 insertions(+)
create mode 100644 drivers/i2c/busses/i2c-machxo2.c
create mode 100644 include/linux/platform_data/i2c-machxo2.h
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 09ba55bae1fac..2da894ba4251a 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -857,6 +857,17 @@ config I2C_LS2X
This driver can also be built as a module. If so, the module
will be called i2c-ls2x.
+config I2C_MACHXO2
+ tristate "Lattice MachXO2 I2C Controller"
+ depends on HAS_IOPORT
+ select REGMAP_MMIO
+ help
+ If you say yes to this option, support will be included for the
+ "Hardened I2C" controller found on the Lattice MachXO2 PLD family.
+
+ This driver can also be built as a module. If so, the module
+ will be called i2c-machxo2.
+
config I2C_MLXBF
tristate "Mellanox BlueField I2C controller"
depends on (MELLANOX_PLATFORM && ARM64) || COMPILE_TEST
diff --git a/drivers/i2c/busses/Makefile b/drivers/i2c/busses/Makefile
index fb985769f5ff7..f9c44406be2e1 100644
--- a/drivers/i2c/busses/Makefile
+++ b/drivers/i2c/busses/Makefile
@@ -152,6 +152,7 @@ obj-$(CONFIG_I2C_BRCMSTB) += i2c-brcmstb.o
obj-$(CONFIG_I2C_CROS_EC_TUNNEL) += i2c-cros-ec-tunnel.o
obj-$(CONFIG_I2C_ELEKTOR) += i2c-elektor.o
obj-$(CONFIG_I2C_ICY) += i2c-icy.o
+obj-$(CONFIG_I2C_MACHXO2) += i2c-machxo2.o
obj-$(CONFIG_I2C_MLXBF) += i2c-mlxbf.o
obj-$(CONFIG_I2C_MLXCPLD) += i2c-mlxcpld.o
obj-$(CONFIG_I2C_OPAL) += i2c-opal.o
diff --git a/drivers/i2c/busses/i2c-machxo2.c b/drivers/i2c/busses/i2c-machxo2.c
new file mode 100644
index 0000000000000..169103c6a221d
--- /dev/null
+++ b/drivers/i2c/busses/i2c-machxo2.c
@@ -0,0 +1,709 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * i2c-machxo2.c: I2C bus driver for Lattice MachXO2 I2C controller
+ *
+ * Copyright (c) 2024-2025 TQ-Systems GmbH <linux@ew.tq-group.com>, D-82229 Seefeld, Germany.
+ * Author: Matthias Schiffer
+ *
+ * Based on driver by:
+ * Vadim V.Vlasov <vvlasov@dev.rtsoft.ru>
+ *
+ * Implementation follows "MachXO2 Family Handbook", HB1010 Version 01.8, with
+ * a few additional undocumented quirks described by comments.
+ *
+ * Basic design:
+ *
+ * All functions returning an enum machxo2_i2c_state are part of a state machine,
+ * each returning the next state to transition to. The state machine reflects
+ * the diagrams found in the aforementioned document.
+ *
+ * All processing is driven by the hrtimer handler machxo2_handle(). The hrtimer
+ * is used to poll the hardware for state transitions. In IRQ mode, the hrtimer
+ * is disabled in states where we are waiting for an IRQ; the IRQ handler does
+ * nothing but restart the timer to keep code paths in polling and IRQ mode as
+ * similar as possible.
+ */
+
+#include <linux/delay.h>
+#include <linux/errno.h>
+#include <linux/err.h>
+#include <linux/hrtimer.h>
+#include <linux/i2c.h>
+#include <linux/interrupt.h>
+#include <linux/io.h>
+#include <linux/iopoll.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/platform_data/i2c-machxo2.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+#include <linux/wait.h>
+
+enum machxo2_i2c_state {
+ MACHXO2_I2C_STATE_DONE,
+ MACHXO2_I2C_STATE_START,
+ MACHXO2_I2C_STATE_WRITE,
+ MACHXO2_I2C_STATE_READ_WAIT_SRW,
+ MACHXO2_I2C_STATE_READ,
+};
+
+struct machxo2_i2c {
+ struct i2c_adapter adap;
+ struct regmap *regmap;
+ u32 clock_khz;
+ u32 bus_khz;
+ int irq;
+
+ /* Current transfer state */
+ enum machxo2_i2c_state state;
+ struct i2c_msg *msg;
+ int nmsgs;
+ u16 pos;
+
+ wait_queue_head_t wait;
+ ktime_t timer_wait;
+
+ /* lock syncs arming the timer and setting the error field */
+ spinlock_t lock;
+ struct hrtimer timer;
+ int error;
+};
+
+#define MACHXO2_I2C_POST_TIMEOUT_US 1000
+
+/* Registers */
+#define MACHXO2_I2C_CR 0 /* Control, RW */
+#define MACHXO2_I2C_CR_I2CEN 0x80 /* Enable I2C */
+
+#define MACHXO2_I2C_CMDR 1 /* Command, RW */
+#define MACHXO2_I2C_CMDR_STA 0x80 /* Start */
+#define MACHXO2_I2C_CMDR_STO 0x40 /* Stop */
+#define MACHXO2_I2C_CMDR_RD 0x20 /* Read */
+#define MACHXO2_I2C_CMDR_WR 0x10 /* Write */
+#define MACHXO2_I2C_CMDR_ACK 0x08 /* Send NACK if the bit is set */
+#define MACHXO2_I2C_CMDR_CKSDIS 0x04 /* Clock stretch disable */
+
+#define MACHXO2_I2C_BR0 2 /* Clock Pre-scale, RW */
+#define MACHXO2_I2C_BR1 3 /* Clock Pre-scale, RW */
+#define MACHXO2_I2C_TXDR 4 /* Transmit Data, WO */
+#define MACHXO2_I2C_SR 5 /* Status, RO */
+#define MACHXO2_I2C_SR_TIP 0x80 /* Transmit In Progress */
+#define MACHXO2_I2C_SR_BUSY 0x40 /* Bus Busy */
+#define MACHXO2_I2C_SR_RARC 0x20 /* Received ACK (if unset) */
+#define MACHXO2_I2C_SR_SRW 0x10 /* Slave Read/Write */
+#define MACHXO2_I2C_SR_ARBL 0x08 /* Arbitration Lost */
+#define MACHXO2_I2C_SR_TRRDY 0x04 /* Transmitter/Receiver Ready */
+#define MACHXO2_I2C_SR_TROE 0x02 /* Transmitter/Receiver Overrun Error */
+#define MACHXO2_I2C_SR_HGC 0x01 /* Hardware General Call Received */
+#define MACHXO2_I2C_RXDR 7 /* Receive Data, RO */
+#define MACHXO2_I2C_IRQ 8 /* IRQ, RW */
+#define MACHXO2_I2C_IRQEN 9 /* IRQ Enable, RW */
+#define MACHXO2_I2C_IRQ_ARBL 0x08 /* Arbitration Lost */
+#define MACHXO2_I2C_IRQ_TRRDY 0x04 /* Transmitter/Receiver Ready */
+#define MACHXO2_I2C_IRQ_TROE 0x02 /* Transmitter/Receiver Overrun Error */
+#define MACHXO2_I2C_IRQ_HGC 0x01 /* Hardware General Call Received */
+#define MACHXO2_I2C_IRQ_MASK (MACHXO2_I2C_IRQ_ARBL | \
+ MACHXO2_I2C_IRQ_TRRDY | \
+ MACHXO2_I2C_IRQ_TROE)
+
+static inline void machxo2_set(struct machxo2_i2c *i2c, unsigned int reg,
+ u8 value)
+{
+ regmap_write(i2c->regmap, reg, value);
+}
+
+static inline u8 machxo2_get(struct machxo2_i2c *i2c, unsigned int reg)
+{
+ unsigned int val;
+
+ regmap_read(i2c->regmap, reg, &val);
+
+ return val;
+}
+
+static inline unsigned long
+machxo2_cycles_to_usecs(const struct machxo2_i2c *i2c, unsigned int cycles)
+{
+ return DIV_ROUND_UP(cycles * 1000, i2c->bus_khz);
+}
+
+/* Delay by a number of SCL cycles */
+static inline void machxo2_delay(const struct machxo2_i2c *i2c,
+ unsigned int cycles)
+{
+ udelay(machxo2_cycles_to_usecs(i2c, cycles));
+}
+
+/* Sleep by a number of SCL cycles */
+static inline void machxo2_sleep(const struct machxo2_i2c *i2c,
+ unsigned int cycles)
+{
+ fsleep(machxo2_cycles_to_usecs(i2c, cycles));
+}
+
+static enum machxo2_i2c_state
+machxo2_error(struct machxo2_i2c *i2c, int error)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&i2c->lock, flags);
+ if (!i2c->error)
+ i2c->error = error;
+ spin_unlock_irqrestore(&i2c->lock, flags);
+
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STO);
+
+ return MACHXO2_I2C_STATE_DONE;
+}
+
+static void machxo2_reset_timer_wait(struct machxo2_i2c *i2c)
+{
+ /* 10 SCL cycles is a good starting point to wait for 1 byte to get transferred */
+ i2c->timer_wait = ns_to_ktime(machxo2_cycles_to_usecs(i2c, 10) * NSEC_PER_USEC);
+}
+
+static enum machxo2_i2c_state
+machxo2_end_of_message(struct machxo2_i2c *i2c)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ /* More messages to process? */
+ if (--i2c->nmsgs) {
+ i2c->msg++;
+ i2c->pos = 0;
+ return MACHXO2_I2C_STATE_START;
+ }
+
+ /* End of transaction */
+
+ if (!(msg->flags & I2C_M_RD))
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STO);
+
+ return MACHXO2_I2C_STATE_DONE;
+}
+
+static enum machxo2_i2c_state
+machxo2_write(struct machxo2_i2c *i2c, u8 stat)
+{
+ struct i2c_msg *msg = i2c->msg;
+ bool eom = (i2c->pos == msg->len);
+
+ if (!(stat & MACHXO2_I2C_SR_TRRDY))
+ return MACHXO2_I2C_STATE_WRITE;
+
+ if (eom) {
+ machxo2_delay(i2c, 1);
+ stat = machxo2_get(i2c, MACHXO2_I2C_SR);
+ }
+
+ if ((i2c->pos > 0 || eom) && (stat & MACHXO2_I2C_SR_RARC)) {
+ dev_dbg(&i2c->adap.dev, "No ACK at %d\n", i2c->pos);
+ return machxo2_error(i2c, -ENXIO);
+ }
+
+ if (eom)
+ return machxo2_end_of_message(i2c);
+
+ machxo2_set(i2c, MACHXO2_I2C_TXDR, msg->buf[i2c->pos++]);
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_WR);
+
+ machxo2_reset_timer_wait(i2c);
+
+ return MACHXO2_I2C_STATE_WRITE;
+}
+
+static enum machxo2_i2c_state
+machxo2_prepare_read(struct machxo2_i2c *i2c)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ /* Prepare to stop if we are waiting for the last byte */
+ if (i2c->pos == (msg->len - 1) && i2c->nmsgs == 1) {
+ if (msg->len == 1)
+ machxo2_delay(i2c, 2);
+ machxo2_set(i2c, MACHXO2_I2C_CMDR,
+ MACHXO2_I2C_CMDR_RD | MACHXO2_I2C_CMDR_ACK | MACHXO2_I2C_CMDR_STO);
+ } else if (i2c->pos == msg->len) {
+ return machxo2_end_of_message(i2c);
+ }
+
+ machxo2_reset_timer_wait(i2c);
+
+ return MACHXO2_I2C_STATE_READ;
+}
+
+static enum machxo2_i2c_state
+machxo2_read(struct machxo2_i2c *i2c, u8 stat)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ if (stat & MACHXO2_I2C_SR_TRRDY) {
+ msg->buf[i2c->pos++] = machxo2_get(i2c, MACHXO2_I2C_RXDR);
+ return machxo2_prepare_read(i2c);
+ }
+
+ return MACHXO2_I2C_STATE_READ;
+}
+
+static enum machxo2_i2c_state
+machxo2_read_wait_srw(struct machxo2_i2c *i2c, u8 stat)
+{
+ if (!(stat & MACHXO2_I2C_SR_SRW))
+ return MACHXO2_I2C_STATE_READ_WAIT_SRW;
+
+ machxo2_delay(i2c, 1);
+ stat = machxo2_get(i2c, MACHXO2_I2C_SR);
+ if (stat & MACHXO2_I2C_SR_RARC)
+ return machxo2_error(i2c, -ENXIO);
+
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_RD);
+ return machxo2_prepare_read(i2c);
+}
+
+static enum machxo2_i2c_state
+machxo2_start(struct machxo2_i2c *i2c)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ if (!(msg->flags & I2C_M_NOSTART)) {
+ u8 addr = i2c_8bit_addr_from_msg(msg);
+
+ /*
+ * If too much time passes between the previous write and
+ * setting the new address, the address may become written
+ * as a data byte instead of sending a restart first. Removing
+ * the WR flag first avoids this issue.
+ */
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STA);
+ machxo2_set(i2c, MACHXO2_I2C_TXDR, addr);
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STA | MACHXO2_I2C_CMDR_WR);
+ }
+
+ machxo2_reset_timer_wait(i2c);
+
+ return (msg->flags & I2C_M_RD) ? MACHXO2_I2C_STATE_READ_WAIT_SRW : MACHXO2_I2C_STATE_WRITE;
+}
+
+/* I2C state machine - returns the next state to transition to */
+static enum machxo2_i2c_state machxo2_process(struct machxo2_i2c *i2c)
+{
+ unsigned long flags;
+ int error;
+ u8 stat;
+
+ if (i2c->state == MACHXO2_I2C_STATE_DONE)
+ return MACHXO2_I2C_STATE_DONE;
+
+ spin_lock_irqsave(&i2c->lock, flags);
+ error = i2c->error;
+ spin_unlock_irqrestore(&i2c->lock, flags);
+
+ if (error) {
+ /* Error was set from outside of machxo2_process (timeout) */
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STO);
+ return MACHXO2_I2C_STATE_DONE;
+ }
+
+ stat = machxo2_get(i2c, MACHXO2_I2C_SR);
+
+ /* Check for errors (arbitration lost / overrun) */
+ if (stat & (MACHXO2_I2C_SR_ARBL | MACHXO2_I2C_SR_TROE))
+ return machxo2_error(i2c, -EIO);
+
+ switch (i2c->state) {
+ case MACHXO2_I2C_STATE_DONE:
+ /* Handled above - should be unreachable */
+ break;
+
+ case MACHXO2_I2C_STATE_START:
+ return machxo2_start(i2c);
+
+ case MACHXO2_I2C_STATE_WRITE:
+ return machxo2_write(i2c, stat);
+
+ case MACHXO2_I2C_STATE_READ_WAIT_SRW:
+ return machxo2_read_wait_srw(i2c, stat);
+
+ case MACHXO2_I2C_STATE_READ:
+ return machxo2_read(i2c, stat);
+ }
+
+ /* Should be unreachable */
+ WARN_ON(1);
+ return machxo2_error(i2c, -EINVAL);
+}
+
+static enum hrtimer_restart machxo2_restart_timer(struct machxo2_i2c *i2c)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&i2c->lock, flags);
+ if (!hrtimer_is_queued(&i2c->timer))
+ hrtimer_forward_now(&i2c->timer, i2c->timer_wait);
+ spin_unlock_irqrestore(&i2c->lock, flags);
+
+ /* Exponential backoff for timer */
+ i2c->timer_wait = ktime_add(i2c->timer_wait, i2c->timer_wait);
+
+ return HRTIMER_RESTART;
+}
+
+static enum hrtimer_restart machxo2_handle(struct hrtimer *timer)
+{
+ struct machxo2_i2c *i2c = container_of(timer, struct machxo2_i2c, timer);
+
+ /*
+ * If the new state is MACHXO2_I2C_STATE_START, we're at a restart and want to
+ * run process again right away.
+ */
+ do {
+ i2c->state = machxo2_process(i2c);
+ } while (i2c->state == MACHXO2_I2C_STATE_START);
+
+ switch (i2c->state) {
+ case MACHXO2_I2C_STATE_DONE:
+ wake_up(&i2c->wait);
+ return HRTIMER_NORESTART;
+
+ case MACHXO2_I2C_STATE_READ_WAIT_SRW:
+ /* There is no IRQ for the SRW flag, so we always use the timer here */
+ return machxo2_restart_timer(i2c);
+
+ case MACHXO2_I2C_STATE_WRITE:
+ case MACHXO2_I2C_STATE_READ:
+ /* If we have an IRQ, it is used to drive the state machine */
+ if (i2c->irq > 0)
+ return HRTIMER_NORESTART;
+
+ return machxo2_restart_timer(i2c);
+
+ default:
+ /* Unreachable */
+ WARN_ON(1);
+ return HRTIMER_NORESTART;
+ }
+}
+
+static irqreturn_t machxo2_isr(int irq, void *dev_id)
+{
+ struct machxo2_i2c *i2c = dev_id;
+ u8 irq_stat = machxo2_get(i2c, MACHXO2_I2C_IRQ);
+
+ if (!(irq_stat & MACHXO2_I2C_IRQ_MASK))
+ return IRQ_NONE;
+
+ /*
+ * Due to a race condition in the I2C controller, no edge on the IRQ
+ * line may be generated if an event comes in right at the moment when
+ * the IRQs are cleared. Loop to ensure that IRQs are actually cleared.
+ */
+ do {
+ machxo2_set(i2c, MACHXO2_I2C_IRQ, MACHXO2_I2C_IRQ_MASK);
+ irq_stat = machxo2_get(i2c, MACHXO2_I2C_IRQ);
+ } while (irq_stat & MACHXO2_I2C_IRQ_MASK);
+
+ spin_lock(&i2c->lock);
+ hrtimer_start(&i2c->timer, 0, HRTIMER_MODE_REL);
+ spin_unlock(&i2c->lock);
+
+ return IRQ_HANDLED;
+}
+
+static void machxo2_recover(struct machxo2_i2c *i2c)
+{
+ /*
+ * This is happening somewhat often after reads, in particular at
+ * 100kHz. Further investigation is necessary, but for now the recovery
+ * sequence keeps the bus usable.
+ */
+ dev_dbg(&i2c->adap.dev, "stuck transaction, recovering\n");
+
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_CR, MACHXO2_I2C_CR_I2CEN);
+ machxo2_sleep(i2c, 1);
+
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_TXDR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STA | MACHXO2_I2C_CMDR_WR);
+ machxo2_sleep(i2c, 2);
+ machxo2_set(i2c, MACHXO2_I2C_CMDR, MACHXO2_I2C_CMDR_STO);
+ machxo2_sleep(i2c, 10);
+
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_CR, MACHXO2_I2C_CR_I2CEN);
+ machxo2_sleep(i2c, 1);
+}
+
+static void machxo2_wait_not_busy(struct machxo2_i2c *i2c, unsigned long sleep,
+ u64 timeout)
+{
+ u8 status;
+
+ read_poll_timeout(machxo2_get, status, (status & MACHXO2_I2C_SR_BUSY) == 0,
+ sleep, timeout, false, i2c, MACHXO2_I2C_SR);
+
+ if (status & (MACHXO2_I2C_SR_BUSY | MACHXO2_I2C_SR_TROE))
+ machxo2_recover(i2c);
+}
+
+static int machxo2_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
+{
+ struct machxo2_i2c *i2c = i2c_get_adapdata(adap);
+ unsigned long flags;
+
+ machxo2_wait_not_busy(i2c, 1000, jiffies_to_usecs(adap->timeout) + 1);
+
+ dev_dbg(&adap->dev, "new msg: addr %02x, flags %x, nmsgs %d, len %d\n",
+ msgs->addr, msgs->flags, num, msgs[0].len);
+
+ i2c->msg = msgs;
+ i2c->pos = 0;
+ i2c->nmsgs = num;
+ i2c->error = 0;
+ i2c->state = MACHXO2_I2C_STATE_START;
+ /* Ensure that the hrtimer sees the state change */
+ smp_wmb();
+
+ spin_lock_irqsave(&i2c->lock, flags);
+ hrtimer_start(&i2c->timer, 0, HRTIMER_MODE_REL);
+ spin_unlock_irqrestore(&i2c->lock, flags);
+
+ if (!wait_event_timeout(i2c->wait, i2c->state == MACHXO2_I2C_STATE_DONE,
+ adap->timeout)) {
+ spin_lock_irqsave(&i2c->lock, flags);
+ i2c->error = -ETIMEDOUT;
+ /* Run handler once more to send STOP */
+ hrtimer_start(&i2c->timer, 0, HRTIMER_MODE_REL);
+ spin_unlock_irqrestore(&i2c->lock, flags);
+
+ if (!wait_event_timeout(i2c->wait, i2c->state == MACHXO2_I2C_STATE_DONE,
+ usecs_to_jiffies(MACHXO2_I2C_POST_TIMEOUT_US))) {
+
+ if (i2c->irq > 0)
+ disable_irq(i2c->irq);
+ hrtimer_cancel(&i2c->timer);
+ i2c->state = MACHXO2_I2C_STATE_DONE;
+ /*
+ * Ensure that the hrtimer sees the state change (if
+ * started again by pending IRQ)
+ */
+ smp_wmb();
+ if (i2c->irq > 0)
+ enable_irq(i2c->irq);
+ }
+ }
+
+ machxo2_wait_not_busy(i2c, 100, MACHXO2_I2C_POST_TIMEOUT_US);
+
+ if (i2c->error) {
+ dev_dbg(&adap->dev, "end msg: error %d, nmsgs %d, pos %d\n",
+ i2c->error, i2c->nmsgs, i2c->pos);
+ return i2c->error;
+ }
+
+ return num;
+}
+
+static int machxo2_init(struct machxo2_i2c *i2c)
+{
+ unsigned int prescale;
+
+ /* Make sure the device is disabled */
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+
+ /* I2C bus frequencies officially supported by MachXO2 are 400, 100 and 50 kHz */
+ if (i2c->bus_khz >= 400)
+ i2c->bus_khz = 400;
+ else if (i2c->bus_khz >= 100)
+ i2c->bus_khz = 100;
+ else
+ i2c->bus_khz = 50;
+
+ prescale = DIV_ROUND_UP(i2c->clock_khz, 4 * i2c->bus_khz);
+ /* prescale field is 10 bits wide */
+ if (prescale > 0x3ff)
+ return dev_err_probe(&i2c->adap.dev, -EINVAL,
+ "unsupported prescale: %d\n", prescale);
+
+ machxo2_set(i2c, MACHXO2_I2C_BR0, prescale & 0xff);
+ machxo2_set(i2c, MACHXO2_I2C_BR1, prescale >> 8);
+
+ /* Disable and clear interrupts to make sure none is pending */
+ machxo2_set(i2c, MACHXO2_I2C_IRQEN, 0);
+ machxo2_set(i2c, MACHXO2_I2C_IRQ, MACHXO2_I2C_IRQ_MASK);
+
+ return 0;
+}
+
+static u32 machxo2_func(struct i2c_adapter *adap)
+{
+ return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL | I2C_FUNC_NOSTART;
+}
+
+static const struct i2c_algorithm machxo2_algorithm = {
+ .master_xfer = machxo2_xfer,
+ .functionality = machxo2_func,
+};
+
+static const struct regmap_config machxo2_regmap_config = {
+ .reg_bits = 8,
+ .reg_stride = 1,
+ .val_bits = 8,
+ /*
+ * No locking is necessary for ioport access, and we don't have a
+ * regcache (caching doesn't make sense for this driver, as all
+ * registers ever read are volatile)
+ */
+ .disable_locking = true,
+ .io_port = true,
+ .max_register = 9,
+};
+
+static int machxo2_i2c_probe(struct platform_device *pdev)
+{
+ struct machxo2_i2c_platform_data *pdata;
+ struct machxo2_i2c *i2c;
+ struct resource *res;
+ void __iomem *regs;
+ int ret;
+
+ i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL);
+ if (!i2c)
+ return -ENOMEM;
+
+ pdata = dev_get_platdata(&pdev->dev);
+ if (!pdata || !pdata->clock_khz)
+ return -EINVAL;
+
+ i2c->clock_khz = pdata->clock_khz;
+ i2c->bus_khz = pdata->bus_khz;
+
+ res = platform_get_resource(pdev, IORESOURCE_IO, 0);
+ if (!res)
+ return dev_err_probe(&pdev->dev, -EINVAL, "Missing I/O resource\n");
+
+ if (!devm_request_region(&pdev->dev, res->start, resource_size(res),
+ pdev->name))
+ return dev_err_probe(&pdev->dev, -EBUSY, "Can't get I/O resource\n");
+
+ regs = devm_ioport_map(&pdev->dev, res->start, resource_size(res));
+ if (!regs)
+ return dev_err_probe(&pdev->dev, -EBUSY, "Can't map I/O resource\n");
+
+ i2c->regmap = devm_regmap_init_mmio(&pdev->dev, regs, &machxo2_regmap_config);
+ if (IS_ERR(i2c->regmap))
+ return dev_err_probe(&pdev->dev, PTR_ERR(i2c->regmap),
+ "Unable to initialize register map\n");
+
+ i2c->irq = platform_get_irq_optional(pdev, 0);
+ if (i2c->irq < 0 && i2c->irq != -ENXIO)
+ return i2c->irq;
+
+ ret = machxo2_init(i2c);
+ if (ret)
+ return ret;
+
+ init_waitqueue_head(&i2c->wait);
+ spin_lock_init(&i2c->lock);
+ hrtimer_setup(&i2c->timer, machxo2_handle, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
+
+ if (i2c->irq > 0) {
+ ret = devm_request_irq(&pdev->dev, i2c->irq, machxo2_isr, 0,
+ pdev->name, i2c);
+ if (ret)
+ return dev_err_probe(&pdev->dev, ret, "Cannot claim IRQ\n");
+
+ machxo2_set(i2c, MACHXO2_I2C_IRQEN, MACHXO2_I2C_IRQ_MASK);
+
+ dev_info(&pdev->dev,
+ "Using IRQ %d, bus speed %dKHz, clock %dKHz\n",
+ i2c->irq, i2c->bus_khz, i2c->clock_khz);
+ } else {
+ dev_info(&pdev->dev,
+ "Running in polling mode, bus speed %dKHz, clock %dKHz\n",
+ i2c->bus_khz, i2c->clock_khz);
+ }
+
+ platform_set_drvdata(pdev, i2c);
+
+ strscpy(i2c->adap.name, "i2c-machxo2", sizeof(i2c->adap.name));
+ i2c->adap.algo = &machxo2_algorithm;
+ i2c->adap.dev.parent = &pdev->dev;
+ i2c->adap.nr = pdev->id;
+ i2c->adap.owner = THIS_MODULE;
+ i2c_set_adapdata(&i2c->adap, i2c);
+
+ machxo2_set(i2c, MACHXO2_I2C_CR, MACHXO2_I2C_CR_I2CEN);
+
+ ret = i2c_add_adapter(&i2c->adap);
+ if (ret) {
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_IRQEN, 0);
+
+ if (i2c->irq > 0)
+ disable_irq(i2c->irq);
+ hrtimer_cancel(&i2c->timer);
+
+ return ret;
+ }
+
+ return 0;
+}
+
+static void machxo2_i2c_remove(struct platform_device *pdev)
+{
+ struct machxo2_i2c *i2c = platform_get_drvdata(pdev);
+
+ i2c_del_adapter(&i2c->adap);
+
+ /* Disable I2C logic */
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+ machxo2_set(i2c, MACHXO2_I2C_IRQEN, 0);
+
+ if (i2c->irq > 0)
+ disable_irq(i2c->irq);
+ hrtimer_cancel(&i2c->timer);
+}
+
+static int machxo2_i2c_suspend(struct device *dev)
+{
+ struct machxo2_i2c *i2c = dev_get_drvdata(dev);
+
+ machxo2_set(i2c, MACHXO2_I2C_CR, 0);
+
+ return 0;
+}
+
+static int machxo2_i2c_resume(struct device *dev)
+{
+ struct machxo2_i2c *i2c = dev_get_drvdata(dev);
+
+ machxo2_set(i2c, MACHXO2_I2C_CR, MACHXO2_I2C_CR_I2CEN);
+
+ return 0;
+}
+
+static DEFINE_NOIRQ_DEV_PM_OPS(machxo2_i2c_pm,
+ machxo2_i2c_suspend, machxo2_i2c_resume);
+
+static const struct platform_device_id machxo2_i2c_driver_ids[] = {
+ { .name = "i2c-machxo2", },
+ { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(platform, machxo2_i2c_driver_ids);
+
+static struct platform_driver machxo2_i2c_driver = {
+ .probe = machxo2_i2c_probe,
+ .remove = machxo2_i2c_remove,
+ .id_table = machxo2_i2c_driver_ids,
+ .driver = {
+ .name = "i2c-machxo2",
+ .pm = pm_sleep_ptr(&machxo2_i2c_pm),
+ },
+};
+
+module_platform_driver(machxo2_i2c_driver);
+
+MODULE_AUTHOR("TQ-Systems GmbH <linux@ew.tq-group.com>");
+MODULE_DESCRIPTION("Lattice MachXO2 I2C bus driver");
+MODULE_LICENSE("GPL");
diff --git a/include/linux/platform_data/i2c-machxo2.h b/include/linux/platform_data/i2c-machxo2.h
new file mode 100644
index 0000000000000..5cbfbe9d81b46
--- /dev/null
+++ b/include/linux/platform_data/i2c-machxo2.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * i2c-machxo2.h: Platform data for Lattice MachXO2 I2C controller
+ *
+ * Copyright (c) 2024 TQ-Systems GmbH <linux@ew.tq-group.com>, D-82229 Seefeld, Germany.
+ * Author: Matthias Schiffer
+ */
+
+#ifndef _LINUX_I2C_MACHXO2_H
+#define _LINUX_I2C_MACHXO2_H
+
+struct machxo2_i2c_platform_data {
+ u32 clock_khz; /* input clock in kHz */
+ u32 bus_khz; /* I2C bus clock in kHz */
+};
+
+#endif /* _LINUX_I2C_MACHXO2_H */
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
https://www.tq-group.com/
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup
2025-12-10 13:52 [PATCH v4 1/4] i2c: machxo2: new driver Matthias Schiffer
@ 2025-12-10 13:52 ` Matthias Schiffer
2026-01-08 11:52 ` Lee Jones
2025-12-10 13:52 ` [PATCH v4 3/4] mfd: tqmx86: add detection for secondary I2C controller Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 " Matthias Schiffer
2 siblings, 1 reply; 6+ messages in thread
From: Matthias Schiffer @ 2025-12-10 13:52 UTC (permalink / raw)
To: Andi Shyti, Lee Jones; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
Preparation for supporting the second I2C controller, and detecting both
ocores and machxo2 controllers.
- Introduce tqmx86_detect_i2c1()
- Avoid the confusing "soft" I2C controller term - just call it the
ocores I2C
- Define TQMX86_REG_I2C_DETECT relative to I2C base register
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
---
v2: no changes
v3: no changes
v4:
- Keep resource and mfd_cell definitions at the toplevel
- The very generic tqmx86_detect_i2c() of the previous version is replaced with
tqmx86_detect_i2c1(), so we don't need to pass so many arguments around
drivers/mfd/tqmx86.c | 92 +++++++++++++++++++++++---------------------
1 file changed, 49 insertions(+), 43 deletions(-)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 1c2fe3f912389..6d304741f8989 100644
--- a/drivers/mfd/tqmx86.c
+++ b/drivers/mfd/tqmx86.c
@@ -18,7 +18,7 @@
#define TQMX86_IOBASE 0x180
#define TQMX86_IOSIZE 0x20
-#define TQMX86_IOBASE_I2C 0x1a0
+#define TQMX86_IOBASE_I2C1 0x1a0
#define TQMX86_IOSIZE_I2C 0xa
#define TQMX86_IOBASE_WATCHDOG 0x18b
#define TQMX86_IOSIZE_WATCHDOG 0x2
@@ -56,8 +56,8 @@
#define TQMX86_REG_IO_EXT_INT_GPIO_SHIFT 4
#define TQMX86_REG_SAUC 0x17
-#define TQMX86_REG_I2C_DETECT 0x1a7
-#define TQMX86_REG_I2C_DETECT_SOFT 0xa5
+#define TQMX86_REG_I2C_DETECT 0x7
+#define TQMX86_REG_I2C_DETECT_OCORES 0xa5
static uint gpio_irq;
module_param(gpio_irq, uint, 0);
@@ -72,8 +72,8 @@ enum tqmx86_i2c1_resource_type {
TQMX86_I2C1_IRQ,
};
-static struct resource tqmx_i2c_soft_resources[] = {
- [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C, TQMX86_IOSIZE_I2C),
+static struct resource tqmx_i2c1_resources[] = {
+ [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C1, TQMX86_IOSIZE_I2C),
/* Placeholder for IRQ resource */
[TQMX86_I2C1_IRQ] = {},
};
@@ -93,26 +93,24 @@ static struct resource tqmx_gpio_resources[] = {
[TQMX86_GPIO_IRQ] = {},
};
-static struct i2c_board_info tqmx86_i2c_devices[] = {
+static const struct i2c_board_info tqmx86_i2c1_devices[] = {
{
/* 4K EEPROM at 0x50 */
I2C_BOARD_INFO("24c32", 0x50),
},
};
-static struct ocores_i2c_platform_data ocores_platform_data = {
- .num_devices = ARRAY_SIZE(tqmx86_i2c_devices),
- .devices = tqmx86_i2c_devices,
+static struct ocores_i2c_platform_data tqmx86_i2c1_platform_data_ocores = {
+ .num_devices = ARRAY_SIZE(tqmx86_i2c1_devices),
+ .devices = tqmx86_i2c1_devices,
};
-static const struct mfd_cell tqmx86_i2c_soft_dev[] = {
- {
- .name = "ocores-i2c",
- .platform_data = &ocores_platform_data,
- .pdata_size = sizeof(ocores_platform_data),
- .resources = tqmx_i2c_soft_resources,
- .num_resources = ARRAY_SIZE(tqmx_i2c_soft_resources),
- },
+static const struct mfd_cell tqmx86_i2c1_dev_ocores = {
+ .name = "ocores-i2c",
+ .platform_data = &tqmx86_i2c1_platform_data_ocores,
+ .pdata_size = sizeof(tqmx86_i2c1_platform_data_ocores),
+ .resources = tqmx_i2c1_resources,
+ .num_resources = ARRAY_SIZE(tqmx_i2c1_resources),
};
static const struct mfd_cell tqmx86_devs[] = {
@@ -246,13 +244,40 @@ static int tqmx86_setup_irq(struct device *dev, const char *label, u8 irq,
return 0;
}
+static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clock_khz)
+{
+ u8 i2c_det;
+
+ if (i2c1_irq) {
+ if (!tqmx86_setup_irq(dev, "I2C1", i2c1_irq, io_base,
+ TQMX86_REG_IO_EXT_INT_I2C1_SHIFT))
+ tqmx_i2c1_resources[TQMX86_I2C1_IRQ] = DEFINE_RES_IRQ(i2c1_irq);
+ }
+
+ /*
+ * The I2C_DETECT register is in the range assigned to the I2C driver
+ * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
+ * access instead of ioport_map + unmap.
+ */
+ i2c_det = inb(TQMX86_IOBASE_I2C1 + TQMX86_REG_I2C_DETECT);
+
+ if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES) {
+ tqmx86_i2c1_platform_data_ocores.clock_khz = clock_khz;
+ return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
+ &tqmx86_i2c1_dev_ocores, 1, NULL, 0,
+ NULL);
+ }
+
+ return 0;
+}
+
static int tqmx86_probe(struct platform_device *pdev)
{
- u8 board_id, sauc, rev, i2c_det;
+ u8 board_id, sauc, rev;
struct device *dev = &pdev->dev;
const char *board_name;
void __iomem *io_base;
- int err;
+ int err, clock_khz;
io_base = devm_ioport_map(dev, TQMX86_IOBASE, TQMX86_IOSIZE);
if (!io_base)
@@ -267,13 +292,6 @@ static int tqmx86_probe(struct platform_device *pdev)
"Found %s - Board ID %d, PCB Revision %d, PLD Revision %d\n",
board_name, board_id, rev >> 4, rev & 0xf);
- /*
- * The I2C_DETECT register is in the range assigned to the I2C driver
- * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
- * access instead of ioport_map + unmap.
- */
- i2c_det = inb(TQMX86_REG_I2C_DETECT);
-
if (gpio_irq) {
err = tqmx86_setup_irq(dev, "GPIO", gpio_irq, io_base,
TQMX86_REG_IO_EXT_INT_GPIO_SHIFT);
@@ -281,23 +299,11 @@ static int tqmx86_probe(struct platform_device *pdev)
tqmx_gpio_resources[TQMX86_GPIO_IRQ] = DEFINE_RES_IRQ(gpio_irq);
}
- ocores_platform_data.clock_khz = tqmx86_board_id_to_clk_rate(dev, board_id);
-
- if (i2c_det == TQMX86_REG_I2C_DETECT_SOFT) {
- if (i2c1_irq) {
- err = tqmx86_setup_irq(dev, "I2C1", i2c1_irq, io_base,
- TQMX86_REG_IO_EXT_INT_I2C1_SHIFT);
- if (!err)
- tqmx_i2c_soft_resources[TQMX86_I2C1_IRQ] = DEFINE_RES_IRQ(i2c1_irq);
- }
-
- err = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
- tqmx86_i2c_soft_dev,
- ARRAY_SIZE(tqmx86_i2c_soft_dev),
- NULL, 0, NULL);
- if (err)
- return err;
- }
+ clock_khz = tqmx86_board_id_to_clk_rate(dev, board_id);
+
+ err = tqmx86_detect_i2c1(dev, io_base, clock_khz);
+ if (err)
+ return err;
return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
tqmx86_devs,
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
https://www.tq-group.com/
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v4 3/4] mfd: tqmx86: add detection for secondary I2C controller
2025-12-10 13:52 [PATCH v4 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
@ 2025-12-10 13:52 ` Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 " Matthias Schiffer
2 siblings, 0 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-12-10 13:52 UTC (permalink / raw)
To: Andi Shyti, Lee Jones; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
Many TQMx86 PLDs contain 2 I2C controllers. Add support for the second
one.
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
---
v2: no changes
v3: no changes
v4:
- Reorder patch (was 4/4)
- Introduce tqmx86_detect_i2c2(), duplicating tqmx86_detect_i2c1() instead of having a single
more generic function
- Resources, platform data and mfd_cell are toplevel variables now
drivers/mfd/tqmx86.c | 58 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 6d304741f8989..708b33c3e5724 100644
--- a/drivers/mfd/tqmx86.c
+++ b/drivers/mfd/tqmx86.c
@@ -19,6 +19,7 @@
#define TQMX86_IOBASE 0x180
#define TQMX86_IOSIZE 0x20
#define TQMX86_IOBASE_I2C1 0x1a0
+#define TQMX86_IOBASE_I2C2 0x1aa
#define TQMX86_IOSIZE_I2C 0xa
#define TQMX86_IOBASE_WATCHDOG 0x18b
#define TQMX86_IOSIZE_WATCHDOG 0x2
@@ -53,6 +54,7 @@
#define TQMX86_REG_IO_EXT_INT_12 3
#define TQMX86_REG_IO_EXT_INT_MASK 0x3
#define TQMX86_REG_IO_EXT_INT_I2C1_SHIFT 0
+#define TQMX86_REG_IO_EXT_INT_I2C2_SHIFT 2
#define TQMX86_REG_IO_EXT_INT_GPIO_SHIFT 4
#define TQMX86_REG_SAUC 0x17
@@ -67,6 +69,10 @@ static uint i2c1_irq;
module_param(i2c1_irq, uint, 0);
MODULE_PARM_DESC(i2c1_irq, "I2C1 IRQ number (valid parameters: 7, 9, 12)");
+static uint i2c2_irq;
+module_param(i2c2_irq, uint, 0);
+MODULE_PARM_DESC(i2c2_irq, "I2C2 IRQ number (valid parameters: 7, 9, 12)");
+
enum tqmx86_i2c1_resource_type {
TQMX86_I2C1_IO,
TQMX86_I2C1_IRQ,
@@ -78,6 +84,17 @@ static struct resource tqmx_i2c1_resources[] = {
[TQMX86_I2C1_IRQ] = {},
};
+enum tqmx86_i2c2_resource_type {
+ TQMX86_I2C2_IO,
+ TQMX86_I2C2_IRQ,
+};
+
+static struct resource tqmx_i2c2_resources[] = {
+ [TQMX86_I2C2_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C2, TQMX86_IOSIZE_I2C),
+ /* Placeholder for IRQ resource */
+ [TQMX86_I2C2_IRQ] = {},
+};
+
static const struct resource tqmx_watchdog_resources[] = {
DEFINE_RES_IO(TQMX86_IOBASE_WATCHDOG, TQMX86_IOSIZE_WATCHDOG),
};
@@ -113,6 +130,16 @@ static const struct mfd_cell tqmx86_i2c1_dev_ocores = {
.num_resources = ARRAY_SIZE(tqmx_i2c1_resources),
};
+static struct ocores_i2c_platform_data tqmx86_i2c2_platform_data_ocores = {};
+
+static const struct mfd_cell tqmx86_i2c2_dev_ocores = {
+ .name = "ocores-i2c",
+ .platform_data = &tqmx86_i2c2_platform_data_ocores,
+ .pdata_size = sizeof(tqmx86_i2c2_platform_data_ocores),
+ .resources = tqmx_i2c2_resources,
+ .num_resources = ARRAY_SIZE(tqmx_i2c2_resources),
+};
+
static const struct mfd_cell tqmx86_devs[] = {
{
.name = "tqmx86-wdt",
@@ -271,6 +298,33 @@ static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clo
return 0;
}
+static int tqmx86_detect_i2c2(struct device *dev, void __iomem *io_base, int clock_khz)
+{
+ u8 i2c_det;
+
+ if (i2c2_irq) {
+ if (!tqmx86_setup_irq(dev, "I2C2", i2c2_irq, io_base,
+ TQMX86_REG_IO_EXT_INT_I2C2_SHIFT))
+ tqmx_i2c2_resources[TQMX86_I2C2_IRQ] = DEFINE_RES_IRQ(i2c2_irq);
+ }
+
+ /*
+ * The I2C_DETECT register is in the range assigned to the I2C driver
+ * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
+ * access instead of ioport_map + unmap.
+ */
+ i2c_det = inb(TQMX86_IOBASE_I2C2 + TQMX86_REG_I2C_DETECT);
+
+ if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES) {
+ tqmx86_i2c2_platform_data_ocores.clock_khz = clock_khz;
+ return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
+ &tqmx86_i2c2_dev_ocores, 1, NULL, 0,
+ NULL);
+ }
+
+ return 0;
+}
+
static int tqmx86_probe(struct platform_device *pdev)
{
u8 board_id, sauc, rev;
@@ -305,6 +359,10 @@ static int tqmx86_probe(struct platform_device *pdev)
if (err)
return err;
+ err = tqmx86_detect_i2c2(dev, io_base, clock_khz);
+ if (err)
+ return err;
+
return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
tqmx86_devs,
ARRAY_SIZE(tqmx86_devs),
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
https://www.tq-group.com/
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 I2C controller
2025-12-10 13:52 [PATCH v4 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 3/4] mfd: tqmx86: add detection for secondary I2C controller Matthias Schiffer
@ 2025-12-10 13:52 ` Matthias Schiffer
2026-01-08 11:55 ` Lee Jones
2 siblings, 1 reply; 6+ messages in thread
From: Matthias Schiffer @ 2025-12-10 13:52 UTC (permalink / raw)
To: Andi Shyti, Lee Jones; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
The TQMx86 PLD may contain two kinds of I2C controllers as its secondary
instance: the previously supported OpenCores I2C, or the MachXO2 I2C. Add
support for the latter.
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
---
v2: no changes
v3: no changes
v4:
- Reorder patch (was 3/4) - the new order makes more sense with the changed (less generic) approach
- Platform data and mfd_cell are toplevel variables now
- With the new less generic approach i2c-machxo2 detection is only done for the secondary I2C controller
(as the primary one is always i2c-ocores anyways)
drivers/mfd/tqmx86.c | 44 +++++++++++++++++++++++++++++++++++++++-----
1 file changed, 39 insertions(+), 5 deletions(-)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 708b33c3e5724..a4e3ecfccb8ab 100644
--- a/drivers/mfd/tqmx86.c
+++ b/drivers/mfd/tqmx86.c
@@ -13,6 +13,7 @@
#include <linux/io.h>
#include <linux/mfd/core.h>
#include <linux/module.h>
+#include <linux/platform_data/i2c-machxo2.h>
#include <linux/platform_data/i2c-ocores.h>
#include <linux/platform_device.h>
@@ -61,6 +62,8 @@
#define TQMX86_REG_I2C_DETECT 0x7
#define TQMX86_REG_I2C_DETECT_OCORES 0xa5
+#define TQMX86_REG_I2C_IEN 0x9
+
static uint gpio_irq;
module_param(gpio_irq, uint, 0);
MODULE_PARM_DESC(gpio_irq, "GPIO IRQ number (valid parameters: 7, 9, 12)");
@@ -130,6 +133,8 @@ static const struct mfd_cell tqmx86_i2c1_dev_ocores = {
.num_resources = ARRAY_SIZE(tqmx_i2c1_resources),
};
+/* Only one of the tqmx86_i2c2_* instances is registered, depending on which is detected */
+
static struct ocores_i2c_platform_data tqmx86_i2c2_platform_data_ocores = {};
static const struct mfd_cell tqmx86_i2c2_dev_ocores = {
@@ -140,6 +145,18 @@ static const struct mfd_cell tqmx86_i2c2_dev_ocores = {
.num_resources = ARRAY_SIZE(tqmx_i2c2_resources),
};
+struct machxo2_i2c_platform_data tqmx86_i2c2_platform_data_machxo2 = {
+ .bus_khz = 100,
+};
+
+static const struct mfd_cell tqmx86_i2c2_dev_machxo2 = {
+ .name = "i2c-machxo2",
+ .platform_data = &tqmx86_i2c2_platform_data_machxo2,
+ .pdata_size = sizeof(tqmx86_i2c2_platform_data_machxo2),
+ .resources = tqmx_i2c2_resources,
+ .num_resources = ARRAY_SIZE(tqmx_i2c2_resources),
+};
+
static const struct mfd_cell tqmx86_devs[] = {
{
.name = "tqmx86-wdt",
@@ -282,9 +299,9 @@ static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clo
}
/*
- * The I2C_DETECT register is in the range assigned to the I2C driver
- * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
- * access instead of ioport_map + unmap.
+ * These registers are in the range assigned to the I2C driver
+ * later, so we don't extend TQMX86_IOSIZE. Use inb() for these one-off
+ * accesses instead of ioport_map + unmap.
*/
i2c_det = inb(TQMX86_IOBASE_I2C1 + TQMX86_REG_I2C_DETECT);
@@ -300,7 +317,7 @@ static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clo
static int tqmx86_detect_i2c2(struct device *dev, void __iomem *io_base, int clock_khz)
{
- u8 i2c_det;
+ u8 i2c_det, i2c_ien;
if (i2c2_irq) {
if (!tqmx86_setup_irq(dev, "I2C2", i2c2_irq, io_base,
@@ -312,16 +329,33 @@ static int tqmx86_detect_i2c2(struct device *dev, void __iomem *io_base, int clo
* The I2C_DETECT register is in the range assigned to the I2C driver
* later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
* access instead of ioport_map + unmap.
+ *
+ * There are 3 cases to distinguish for the secondary controller:
+ *
+ * - ocores: i2c_det is a TQMx86-specific register that always contains
+ * the value 0xa5. i2c_ien is unused and reads as 0xff.
+ * - machxo2: i2c_det is the data register can read as any value.
+ * i2c_ien is the interrupt enable register; the upper nibble is
+ * reserved and always reads as 0.
+ * - none: both i2c_det and i2c_ien read as 0xff if no I2C controller
+ * exists at a given base address.
*/
i2c_det = inb(TQMX86_IOBASE_I2C2 + TQMX86_REG_I2C_DETECT);
+ i2c_ien = inb(TQMX86_IOBASE_I2C2 + TQMX86_REG_I2C_IEN);
- if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES) {
+ if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES && i2c_ien == 0xff) {
tqmx86_i2c2_platform_data_ocores.clock_khz = clock_khz;
return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
&tqmx86_i2c2_dev_ocores, 1, NULL, 0,
NULL);
+ } else if ((i2c_ien & 0xf0) == 0x00) {
+ tqmx86_i2c2_platform_data_machxo2.clock_khz = clock_khz;
+ return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
+ &tqmx86_i2c2_dev_machxo2, 1, NULL, 0,
+ NULL);
}
+
return 0;
}
--
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
https://www.tq-group.com/
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup
2025-12-10 13:52 ` [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
@ 2026-01-08 11:52 ` Lee Jones
0 siblings, 0 replies; 6+ messages in thread
From: Lee Jones @ 2026-01-08 11:52 UTC (permalink / raw)
To: Matthias Schiffer; +Cc: Andi Shyti, linux-i2c, linux-kernel, linux
On Wed, 10 Dec 2025, Matthias Schiffer wrote:
> Preparation for supporting the second I2C controller, and detecting both
> ocores and machxo2 controllers.
>
> - Introduce tqmx86_detect_i2c1()
> - Avoid the confusing "soft" I2C controller term - just call it the
> ocores I2C
> - Define TQMX86_REG_I2C_DETECT relative to I2C base register
>
> Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
> ---
>
> v2: no changes
>
> v3: no changes
>
> v4:
> - Keep resource and mfd_cell definitions at the toplevel
> - The very generic tqmx86_detect_i2c() of the previous version is replaced with
> tqmx86_detect_i2c1(), so we don't need to pass so many arguments around
>
> drivers/mfd/tqmx86.c | 92 +++++++++++++++++++++++---------------------
> 1 file changed, 49 insertions(+), 43 deletions(-)
>
> diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
> index 1c2fe3f912389..6d304741f8989 100644
> --- a/drivers/mfd/tqmx86.c
> +++ b/drivers/mfd/tqmx86.c
> @@ -18,7 +18,7 @@
>
> #define TQMX86_IOBASE 0x180
> #define TQMX86_IOSIZE 0x20
> -#define TQMX86_IOBASE_I2C 0x1a0
> +#define TQMX86_IOBASE_I2C1 0x1a0
> #define TQMX86_IOSIZE_I2C 0xa
> #define TQMX86_IOBASE_WATCHDOG 0x18b
> #define TQMX86_IOSIZE_WATCHDOG 0x2
> @@ -56,8 +56,8 @@
> #define TQMX86_REG_IO_EXT_INT_GPIO_SHIFT 4
> #define TQMX86_REG_SAUC 0x17
>
> -#define TQMX86_REG_I2C_DETECT 0x1a7
> -#define TQMX86_REG_I2C_DETECT_SOFT 0xa5
> +#define TQMX86_REG_I2C_DETECT 0x7
> +#define TQMX86_REG_I2C_DETECT_OCORES 0xa5
>
> static uint gpio_irq;
> module_param(gpio_irq, uint, 0);
> @@ -72,8 +72,8 @@ enum tqmx86_i2c1_resource_type {
> TQMX86_I2C1_IRQ,
> };
>
> -static struct resource tqmx_i2c_soft_resources[] = {
> - [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C, TQMX86_IOSIZE_I2C),
> +static struct resource tqmx_i2c1_resources[] = {
> + [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C1, TQMX86_IOSIZE_I2C),
> /* Placeholder for IRQ resource */
> [TQMX86_I2C1_IRQ] = {},
> };
> @@ -93,26 +93,24 @@ static struct resource tqmx_gpio_resources[] = {
> [TQMX86_GPIO_IRQ] = {},
> };
>
> -static struct i2c_board_info tqmx86_i2c_devices[] = {
> +static const struct i2c_board_info tqmx86_i2c1_devices[] = {
> {
> /* 4K EEPROM at 0x50 */
> I2C_BOARD_INFO("24c32", 0x50),
> },
> };
>
> -static struct ocores_i2c_platform_data ocores_platform_data = {
> - .num_devices = ARRAY_SIZE(tqmx86_i2c_devices),
> - .devices = tqmx86_i2c_devices,
> +static struct ocores_i2c_platform_data tqmx86_i2c1_platform_data_ocores = {
> + .num_devices = ARRAY_SIZE(tqmx86_i2c1_devices),
> + .devices = tqmx86_i2c1_devices,
> };
>
> -static const struct mfd_cell tqmx86_i2c_soft_dev[] = {
> - {
> - .name = "ocores-i2c",
> - .platform_data = &ocores_platform_data,
> - .pdata_size = sizeof(ocores_platform_data),
> - .resources = tqmx_i2c_soft_resources,
> - .num_resources = ARRAY_SIZE(tqmx_i2c_soft_resources),
> - },
> +static const struct mfd_cell tqmx86_i2c1_dev_ocores = {
> + .name = "ocores-i2c",
> + .platform_data = &tqmx86_i2c1_platform_data_ocores,
> + .pdata_size = sizeof(tqmx86_i2c1_platform_data_ocores),
> + .resources = tqmx_i2c1_resources,
> + .num_resources = ARRAY_SIZE(tqmx_i2c1_resources),
> };
>
> static const struct mfd_cell tqmx86_devs[] = {
> @@ -246,13 +244,40 @@ static int tqmx86_setup_irq(struct device *dev, const char *label, u8 irq,
> return 0;
> }
>
> +static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clock_khz)
> +{
> + u8 i2c_det;
> +
> + if (i2c1_irq) {
> + if (!tqmx86_setup_irq(dev, "I2C1", i2c1_irq, io_base,
It was better before.
Please place the return value into a local variable and compare that.
Function calls inside if () statements hurts readability.
> + TQMX86_REG_IO_EXT_INT_I2C1_SHIFT))
> + tqmx_i2c1_resources[TQMX86_I2C1_IRQ] = DEFINE_RES_IRQ(i2c1_irq);
> + }
> +
> + /*
> + * The I2C_DETECT register is in the range assigned to the I2C driver
> + * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
> + * access instead of ioport_map + unmap.
> + */
> + i2c_det = inb(TQMX86_IOBASE_I2C1 + TQMX86_REG_I2C_DETECT);
> +
> + if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES) {
Reverse the logic and return early instead.
> + tqmx86_i2c1_platform_data_ocores.clock_khz = clock_khz;
> + return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
> + &tqmx86_i2c1_dev_ocores, 1, NULL, 0,
> + NULL);
> + }
> +
> + return 0;
> +}
> +
> static int tqmx86_probe(struct platform_device *pdev)
> {
> - u8 board_id, sauc, rev, i2c_det;
> + u8 board_id, sauc, rev;
> struct device *dev = &pdev->dev;
> const char *board_name;
> void __iomem *io_base;
> - int err;
> + int err, clock_khz;
>
> io_base = devm_ioport_map(dev, TQMX86_IOBASE, TQMX86_IOSIZE);
> if (!io_base)
> @@ -267,13 +292,6 @@ static int tqmx86_probe(struct platform_device *pdev)
> "Found %s - Board ID %d, PCB Revision %d, PLD Revision %d\n",
> board_name, board_id, rev >> 4, rev & 0xf);
>
> - /*
> - * The I2C_DETECT register is in the range assigned to the I2C driver
> - * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
> - * access instead of ioport_map + unmap.
> - */
> - i2c_det = inb(TQMX86_REG_I2C_DETECT);
> -
> if (gpio_irq) {
> err = tqmx86_setup_irq(dev, "GPIO", gpio_irq, io_base,
> TQMX86_REG_IO_EXT_INT_GPIO_SHIFT);
> @@ -281,23 +299,11 @@ static int tqmx86_probe(struct platform_device *pdev)
> tqmx_gpio_resources[TQMX86_GPIO_IRQ] = DEFINE_RES_IRQ(gpio_irq);
> }
>
> - ocores_platform_data.clock_khz = tqmx86_board_id_to_clk_rate(dev, board_id);
> -
> - if (i2c_det == TQMX86_REG_I2C_DETECT_SOFT) {
> - if (i2c1_irq) {
> - err = tqmx86_setup_irq(dev, "I2C1", i2c1_irq, io_base,
> - TQMX86_REG_IO_EXT_INT_I2C1_SHIFT);
> - if (!err)
> - tqmx_i2c_soft_resources[TQMX86_I2C1_IRQ] = DEFINE_RES_IRQ(i2c1_irq);
> - }
> -
> - err = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
> - tqmx86_i2c_soft_dev,
> - ARRAY_SIZE(tqmx86_i2c_soft_dev),
> - NULL, 0, NULL);
> - if (err)
> - return err;
> - }
> + clock_khz = tqmx86_board_id_to_clk_rate(dev, board_id);
Move this into the new functions and only call it if required.
> +
> + err = tqmx86_detect_i2c1(dev, io_base, clock_khz);
> + if (err)
> + return err;
>
> return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
> tqmx86_devs,
> --
> TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
> Amtsgericht München, HRB 105018
> Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
> https://www.tq-group.com/
>
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 I2C controller
2025-12-10 13:52 ` [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 " Matthias Schiffer
@ 2026-01-08 11:55 ` Lee Jones
0 siblings, 0 replies; 6+ messages in thread
From: Lee Jones @ 2026-01-08 11:55 UTC (permalink / raw)
To: Matthias Schiffer; +Cc: Andi Shyti, linux-i2c, linux-kernel, linux
On Wed, 10 Dec 2025, Matthias Schiffer wrote:
> The TQMx86 PLD may contain two kinds of I2C controllers as its secondary
> instance: the previously supported OpenCores I2C, or the MachXO2 I2C. Add
> support for the latter.
>
> Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
> ---
>
> v2: no changes
>
> v3: no changes
>
> v4:
> - Reorder patch (was 3/4) - the new order makes more sense with the changed (less generic) approach
> - Platform data and mfd_cell are toplevel variables now
> - With the new less generic approach i2c-machxo2 detection is only done for the secondary I2C controller
> (as the primary one is always i2c-ocores anyways)
>
>
> drivers/mfd/tqmx86.c | 44 +++++++++++++++++++++++++++++++++++++++-----
> 1 file changed, 39 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
> index 708b33c3e5724..a4e3ecfccb8ab 100644
> --- a/drivers/mfd/tqmx86.c
> +++ b/drivers/mfd/tqmx86.c
> @@ -13,6 +13,7 @@
> #include <linux/io.h>
> #include <linux/mfd/core.h>
> #include <linux/module.h>
> +#include <linux/platform_data/i2c-machxo2.h>
> #include <linux/platform_data/i2c-ocores.h>
> #include <linux/platform_device.h>
>
> @@ -61,6 +62,8 @@
> #define TQMX86_REG_I2C_DETECT 0x7
> #define TQMX86_REG_I2C_DETECT_OCORES 0xa5
>
> +#define TQMX86_REG_I2C_IEN 0x9
> +
> static uint gpio_irq;
> module_param(gpio_irq, uint, 0);
> MODULE_PARM_DESC(gpio_irq, "GPIO IRQ number (valid parameters: 7, 9, 12)");
> @@ -130,6 +133,8 @@ static const struct mfd_cell tqmx86_i2c1_dev_ocores = {
> .num_resources = ARRAY_SIZE(tqmx_i2c1_resources),
> };
>
> +/* Only one of the tqmx86_i2c2_* instances is registered, depending on which is detected */
> +
> static struct ocores_i2c_platform_data tqmx86_i2c2_platform_data_ocores = {};
>
> static const struct mfd_cell tqmx86_i2c2_dev_ocores = {
> @@ -140,6 +145,18 @@ static const struct mfd_cell tqmx86_i2c2_dev_ocores = {
> .num_resources = ARRAY_SIZE(tqmx_i2c2_resources),
> };
>
> +struct machxo2_i2c_platform_data tqmx86_i2c2_platform_data_machxo2 = {
> + .bus_khz = 100,
> +};
> +
> +static const struct mfd_cell tqmx86_i2c2_dev_machxo2 = {
> + .name = "i2c-machxo2",
> + .platform_data = &tqmx86_i2c2_platform_data_machxo2,
> + .pdata_size = sizeof(tqmx86_i2c2_platform_data_machxo2),
> + .resources = tqmx_i2c2_resources,
> + .num_resources = ARRAY_SIZE(tqmx_i2c2_resources),
> +};
> +
> static const struct mfd_cell tqmx86_devs[] = {
> {
> .name = "tqmx86-wdt",
> @@ -282,9 +299,9 @@ static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clo
> }
>
> /*
> - * The I2C_DETECT register is in the range assigned to the I2C driver
> - * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
> - * access instead of ioport_map + unmap.
> + * These registers are in the range assigned to the I2C driver
> + * later, so we don't extend TQMX86_IOSIZE. Use inb() for these one-off
> + * accesses instead of ioport_map + unmap.
> */
> i2c_det = inb(TQMX86_IOBASE_I2C1 + TQMX86_REG_I2C_DETECT);
>
> @@ -300,7 +317,7 @@ static int tqmx86_detect_i2c1(struct device *dev, void __iomem *io_base, int clo
>
> static int tqmx86_detect_i2c2(struct device *dev, void __iomem *io_base, int clock_khz)
> {
> - u8 i2c_det;
> + u8 i2c_det, i2c_ien;
>
> if (i2c2_irq) {
> if (!tqmx86_setup_irq(dev, "I2C2", i2c2_irq, io_base,
> @@ -312,16 +329,33 @@ static int tqmx86_detect_i2c2(struct device *dev, void __iomem *io_base, int clo
> * The I2C_DETECT register is in the range assigned to the I2C driver
> * later, so we don't extend TQMX86_IOSIZE. Use inb() for this one-off
> * access instead of ioport_map + unmap.
> + *
> + * There are 3 cases to distinguish for the secondary controller:
> + *
> + * - ocores: i2c_det is a TQMx86-specific register that always contains
> + * the value 0xa5. i2c_ien is unused and reads as 0xff.
> + * - machxo2: i2c_det is the data register can read as any value.
> + * i2c_ien is the interrupt enable register; the upper nibble is
> + * reserved and always reads as 0.
> + * - none: both i2c_det and i2c_ien read as 0xff if no I2C controller
> + * exists at a given base address.
> */
> i2c_det = inb(TQMX86_IOBASE_I2C2 + TQMX86_REG_I2C_DETECT);
> + i2c_ien = inb(TQMX86_IOBASE_I2C2 + TQMX86_REG_I2C_IEN);
>
> - if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES) {
> + if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES && i2c_ien == 0xff) {
What is 0xff? No magic numbers - please define.
> tqmx86_i2c2_platform_data_ocores.clock_khz = clock_khz;
> return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
> &tqmx86_i2c2_dev_ocores, 1, NULL, 0,
> NULL);
> + } else if ((i2c_ien & 0xf0) == 0x00) {
As above - 0x00 means nothing to me.
> + tqmx86_i2c2_platform_data_machxo2.clock_khz = clock_khz;
> + return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
> + &tqmx86_i2c2_dev_machxo2, 1, NULL, 0,
> + NULL);
> }
>
> +
> return 0;
> }
>
> --
> TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
> Amtsgericht München, HRB 105018
> Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
> https://www.tq-group.com/
>
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-01-08 11:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-10 13:52 [PATCH v4 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
2026-01-08 11:52 ` Lee Jones
2025-12-10 13:52 ` [PATCH v4 3/4] mfd: tqmx86: add detection for secondary I2C controller Matthias Schiffer
2025-12-10 13:52 ` [PATCH v4 4/4] mfd: tqmx86: add detection for MachXO2 " Matthias Schiffer
2026-01-08 11:55 ` Lee Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox