* [PATCH 1/4] i2c: machxo2: new driver
@ 2025-10-15 11:03 Matthias Schiffer
2025-10-15 11:03 ` [PATCH 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-10-15 11:03 UTC (permalink / raw)
To: Andi Shyti; +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>
---
drivers/i2c/busses/Kconfig | 10 +
drivers/i2c/busses/Makefile | 1 +
drivers/i2c/busses/i2c-machxo2.c | 697 ++++++++++++++++++++++
include/linux/platform_data/i2c-machxo2.h | 17 +
4 files changed, 725 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 fd81e49638aaa..9c170485a8924 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -855,6 +855,16 @@ 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"
+ 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..1c19cc1d15a6f
--- /dev/null
+++ b/drivers/i2c/busses/i2c-machxo2.c
@@ -0,0 +1,697 @@
+// 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 {
+ STATE_DONE,
+ STATE_START,
+ STATE_WRITE,
+ STATE_READ_WAIT_SRW,
+ 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 I2C_CR 0 /* Control, RW */
+#define I2C_CR_I2CEN 0x80 /* Enable I2C */
+
+#define I2C_CMDR 1 /* Command, RW */
+#define I2C_CMDR_STA 0x80 /* Start */
+#define I2C_CMDR_STO 0x40 /* Stop */
+#define I2C_CMDR_RD 0x20 /* Read */
+#define I2C_CMDR_WR 0x10 /* Write */
+#define I2C_CMDR_ACK 0x08 /* Send NACK if the bit is set */
+#define I2C_CMDR_CKSDIS 0x04 /* Clock stretch disable */
+
+#define I2C_BR0 2 /* Clock Pre-scale, RW */
+#define I2C_BR1 3 /* Clock Pre-scale, RW */
+#define I2C_TXDR 4 /* Transmit Data, WO */
+#define I2C_SR 5 /* Status, RO */
+#define I2C_SR_TIP 0x80 /* Transmit In Progress */
+#define I2C_SR_BUSY 0x40 /* Bus Busy */
+#define I2C_SR_RARC 0x20 /* Received ACK (if unset) */
+#define I2C_SR_SRW 0x10 /* Slave Read/Write */
+#define I2C_SR_ARBL 0x08 /* Arbitration Lost */
+#define I2C_SR_TRRDY 0x04 /* Transmitter/Receiver Ready */
+#define I2C_SR_TROE 0x02 /* Transmitter/Receiver Overrun Error */
+#define I2C_SR_HGC 0x01 /* Hardware General Call Received */
+#define I2C_RXDR 7 /* Receive Data, RO */
+#define I2C_IRQ 8 /* IRQ, RW */
+#define I2C_IRQEN 9 /* IRQ Enable, RW */
+#define I2C_IRQ_ARBL 0x08 /* Arbitration Lost */
+#define I2C_IRQ_TRRDY 0x04 /* Transmitter/Receiver Ready */
+#define I2C_IRQ_TROE 0x02 /* Transmitter/Receiver Overrun Error */
+#define I2C_IRQ_HGC 0x01 /* Hardware General Call Received */
+#define I2C_IRQ_MASK (I2C_IRQ_ARBL | I2C_IRQ_TRRDY | 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));
+}
+
+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, I2C_CMDR, I2C_CMDR_STO);
+
+ return 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 STATE_START;
+ }
+
+ /* End of transaction */
+
+ if (!(msg->flags & I2C_M_RD))
+ machxo2_set(i2c, I2C_CMDR, I2C_CMDR_STO);
+
+ return STATE_DONE;
+}
+
+static enum machxo2_i2c_state
+machxo2_write(struct machxo2_i2c *i2c, u8 stat)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ if (stat & I2C_SR_TRRDY) {
+ bool eom = (i2c->pos == msg->len);
+
+ if (eom) {
+ machxo2_delay(i2c, 1);
+ stat = machxo2_get(i2c, I2C_SR);
+ }
+
+ if ((i2c->pos > 0 || eom) && (stat & 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, I2C_TXDR, msg->buf[i2c->pos++]);
+ machxo2_set(i2c, I2C_CMDR, I2C_CMDR_WR);
+
+ machxo2_reset_timer_wait(i2c);
+ }
+
+ return 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, I2C_CMDR, I2C_CMDR_RD | I2C_CMDR_ACK | I2C_CMDR_STO);
+ } else if (i2c->pos == msg->len) {
+ return machxo2_end_of_message(i2c);
+ }
+
+ machxo2_reset_timer_wait(i2c);
+
+ return STATE_READ;
+}
+
+static enum machxo2_i2c_state
+machxo2_read(struct machxo2_i2c *i2c, u8 stat)
+{
+ struct i2c_msg *msg = i2c->msg;
+
+ if (stat & I2C_SR_TRRDY) {
+ msg->buf[i2c->pos++] = machxo2_get(i2c, I2C_RXDR);
+ return machxo2_prepare_read(i2c);
+ }
+
+ return STATE_READ;
+}
+
+static enum machxo2_i2c_state
+machxo2_read_wait_srw(struct machxo2_i2c *i2c, u8 stat)
+{
+ if (!(stat & I2C_SR_SRW))
+ return STATE_READ_WAIT_SRW;
+
+ machxo2_delay(i2c, 1);
+ stat = machxo2_get(i2c, I2C_SR);
+ if (stat & I2C_SR_RARC)
+ return machxo2_error(i2c, -ENXIO);
+
+ machxo2_set(i2c, I2C_CMDR, 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, I2C_CMDR, I2C_CMDR_STA);
+ machxo2_set(i2c, I2C_TXDR, addr);
+ machxo2_set(i2c, I2C_CMDR, I2C_CMDR_STA | I2C_CMDR_WR);
+ }
+
+ machxo2_reset_timer_wait(i2c);
+
+ return (msg->flags & I2C_M_RD) ? STATE_READ_WAIT_SRW : 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 == STATE_DONE)
+ return 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, I2C_CMDR, I2C_CMDR_STO);
+ return STATE_DONE;
+ }
+
+ stat = machxo2_get(i2c, I2C_SR);
+
+ /* Check for errors (arbitration lost / overrun) */
+ if (stat & (I2C_SR_ARBL | I2C_SR_TROE))
+ return machxo2_error(i2c, -EIO);
+
+ switch (i2c->state) {
+ case STATE_DONE:
+ /* Handled above - should be unreachable */
+ break;
+
+ case STATE_START:
+ return machxo2_start(i2c);
+
+ case STATE_WRITE:
+ return machxo2_write(i2c, stat);
+
+ case STATE_READ_WAIT_SRW:
+ return machxo2_read_wait_srw(i2c, stat);
+
+ case 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 *= 2;
+
+ 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 STATE_START, we're at a restart and want to
+ * run process again right away.
+ */
+ do {
+ i2c->state = machxo2_process(i2c);
+ } while (i2c->state == STATE_START);
+
+ switch (i2c->state) {
+ case STATE_DONE:
+ wake_up(&i2c->wait);
+ return HRTIMER_NORESTART;
+
+ case 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 STATE_WRITE:
+ case 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, I2C_IRQ);
+
+ if (!(irq_stat & 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, I2C_IRQ, I2C_IRQ_MASK);
+ irq_stat = machxo2_get(i2c, I2C_IRQ);
+ } while (irq_stat & 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, I2C_CR, 0);
+ machxo2_set(i2c, I2C_CR, I2C_CR_I2CEN);
+ machxo2_delay(i2c, 1);
+
+ machxo2_set(i2c, I2C_CMDR, 0);
+ machxo2_set(i2c, I2C_TXDR, 0);
+ machxo2_set(i2c, I2C_CMDR, I2C_CMDR_STA | I2C_CMDR_WR);
+ machxo2_delay(i2c, 2);
+ machxo2_set(i2c, I2C_CMDR, I2C_CMDR_STO);
+ machxo2_delay(i2c, 10);
+
+ machxo2_set(i2c, I2C_CR, 0);
+ machxo2_set(i2c, I2C_CR, I2C_CR_I2CEN);
+ machxo2_delay(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 & I2C_SR_BUSY) == 0,
+ sleep, timeout, false, i2c, I2C_SR);
+
+ if (status & (I2C_SR_BUSY | 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);
+
+ 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 = STATE_START;
+ /* Ensure that the hrtimer sees the state change */
+ smp_wmb();
+
+ spin_lock_irq(&i2c->lock);
+ hrtimer_start(&i2c->timer, 0, HRTIMER_MODE_REL);
+ spin_unlock_irq(&i2c->lock);
+
+ if (!wait_event_timeout(i2c->wait, i2c->state == STATE_DONE,
+ adap->timeout)) {
+ spin_lock_irq(&i2c->lock);
+ i2c->error = -ETIMEDOUT;
+ /* Run handler once more to send STOP */
+ hrtimer_start(&i2c->timer, 0, HRTIMER_MODE_REL);
+ spin_unlock_irq(&i2c->lock);
+
+ if (!wait_event_timeout(i2c->wait, i2c->state == STATE_DONE,
+ usecs_to_jiffies(MACHXO2_I2C_POST_TIMEOUT_US))) {
+
+ if (i2c->irq > 0)
+ disable_irq(i2c->irq);
+ hrtimer_cancel(&i2c->timer);
+ i2c->state = 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, 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);
+ if (prescale > 0x3ff) {
+ dev_err(&i2c->adap.dev, "unsupported prescale: %d\n",
+ prescale);
+ return -EINVAL;
+ }
+
+ machxo2_set(i2c, I2C_BR0, prescale & 0xff);
+ machxo2_set(i2c, I2C_BR1, prescale >> 8);
+
+ machxo2_set(i2c, I2C_IRQEN, 0);
+ machxo2_set(i2c, I2C_CR, I2C_CR_I2CEN);
+
+ 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 (IS_ERR(res))
+ return PTR_ERR(res);
+
+ if (!devm_request_region(&pdev->dev, res->start, resource_size(res),
+ pdev->name)) {
+ dev_err(&pdev->dev, "Can't get I/O resource.\n");
+ return -EBUSY;
+ }
+
+ regs = devm_ioport_map(&pdev->dev, res->start, resource_size(res));
+ if (!regs) {
+ dev_err(&pdev->dev, "Can't map I/O resource.\n");
+ return -EBUSY;
+ }
+
+ 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) {
+ dev_err(&pdev->dev, "Cannot claim IRQ\n");
+ machxo2_set(i2c, I2C_CR, 0);
+ return ret;
+ }
+
+ machxo2_set(i2c, I2C_IRQEN, 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);
+
+ ret = i2c_add_adapter(&i2c->adap);
+ if (ret) {
+ machxo2_set(i2c, I2C_CR, 0);
+ machxo2_set(i2c, 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, I2C_CR, 0);
+ machxo2_set(i2c, 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, I2C_CR, 0);
+
+ return 0;
+}
+
+static int machxo2_i2c_resume(struct device *dev)
+{
+ struct machxo2_i2c *i2c = dev_get_drvdata(dev);
+
+ machxo2_set(i2c, I2C_CR, I2C_CR_I2CEN);
+
+ return 0;
+}
+
+static DEFINE_NOIRQ_DEV_PM_OPS(machxo2_i2c_pm,
+ machxo2_i2c_suspend, machxo2_i2c_resume);
+
+static struct platform_driver machxo2_i2c_driver = {
+ .probe = machxo2_i2c_probe,
+ .remove = machxo2_i2c_remove,
+ .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");
+MODULE_ALIAS("platform:i2c-machxo2");
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 [flat|nested] 6+ messages in thread* [PATCH 2/4] mfd: tqmx86: refactor I2C setup
2025-10-15 11:03 [PATCH 1/4] i2c: machxo2: new driver Matthias Schiffer
@ 2025-10-15 11:03 ` Matthias Schiffer
2025-10-15 11:11 ` Matthias Schiffer
2025-10-15 11:03 ` [PATCH 3/4] mfd: tqmx86: add detection for MachXO2 I2C controller Matthias Schiffer
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Matthias Schiffer @ 2025-10-15 11:03 UTC (permalink / raw)
To: Andi Shyti; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
Preparation for supporting the second I2C controller, and detecting both
ocores and machxo2 controllers.
- Avoid the confusing "soft" I2C controller term - just call it the
ocores I2C
- All non-const parts of the MFD cell are moved from global variables
into new functions tqmx86_setup_i2c_ocores() and tqmx86_setup_i2c()
- Define TQMX86_REG_I2C_DETECT relative to I2C base register
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
---
drivers/mfd/tqmx86.c | 130 ++++++++++++++++++++++++-------------------
1 file changed, 74 insertions(+), 56 deletions(-)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 1cba3b67b0fb9..3c6f158bf1a45 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
@@ -54,8 +54,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);
@@ -65,17 +65,6 @@ static uint i2c1_irq;
module_param(i2c1_irq, uint, 0);
MODULE_PARM_DESC(i2c1_irq, "I2C1 IRQ number (valid parameters: 7, 9, 12)");
-enum tqmx86_i2c1_resource_type {
- TQMX86_I2C1_IO,
- TQMX86_I2C1_IRQ,
-};
-
-static struct resource tqmx_i2c_soft_resources[] = {
- [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C, TQMX86_IOSIZE_I2C),
- /* Placeholder for IRQ resource */
- [TQMX86_I2C1_IRQ] = {},
-};
-
static const struct resource tqmx_watchdog_resources[] = {
DEFINE_RES_IO(TQMX86_IOBASE_WATCHDOG, TQMX86_IOSIZE_WATCHDOG),
};
@@ -91,28 +80,13 @@ 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 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_devs[] = {
{
.name = "tqmx86-wdt",
@@ -238,13 +212,74 @@ static int tqmx86_setup_irq(struct device *dev, const char *label, u8 irq,
return 0;
}
+static int tqmx86_setup_i2c(struct device *dev, const char *name,
+ unsigned long i2c_base, const void *platform_data,
+ size_t pdata_size, u8 irq)
+{
+ const struct resource resources[] = {
+ DEFINE_RES_IO(i2c_base, TQMX86_IOSIZE_I2C),
+ irq ? DEFINE_RES_IRQ(irq) : (struct resource) {},
+ };
+ const struct mfd_cell i2c_dev = {
+ .name = name,
+ .platform_data = platform_data,
+ .pdata_size = pdata_size,
+ .resources = resources,
+ .num_resources = ARRAY_SIZE(resources),
+ };
+
+ return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE, &i2c_dev, 1,
+ NULL, 0, NULL);
+
+}
+
+static int tqmx86_setup_i2c_ocores(struct device *dev, const char *label,
+ unsigned long i2c_base, int clock_khz, u8 irq,
+ const struct i2c_board_info *devices,
+ size_t num_devices)
+{
+ const struct ocores_i2c_platform_data platform_data = {
+ .clock_khz = clock_khz,
+ .num_devices = num_devices,
+ .devices = devices,
+ };
+
+ return tqmx86_setup_i2c(dev, "ocores-i2c", i2c_base, &platform_data,
+ sizeof(platform_data), irq);
+}
+
+static int tqmx86_detect_i2c(struct device *dev, const char *label,
+ unsigned long i2c_base, int clock_khz, u8 irq,
+ const struct i2c_board_info *devices,
+ size_t num_devices, void __iomem *io_base,
+ u8 irq_reg_shift)
+{
+ u8 i2c_det;
+
+ if (tqmx86_setup_irq(dev, label, irq, io_base, irq_reg_shift))
+ irq = 0;
+
+ /*
+ * 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(i2c_base + TQMX86_REG_I2C_DETECT);
+
+ if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES)
+ return tqmx86_setup_i2c_ocores(dev, label, i2c_base, clock_khz,
+ irq, devices, num_devices);
+
+ 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)
@@ -259,13 +294,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);
@@ -273,23 +301,13 @@ 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_i2c(dev, "I2C1", TQMX86_IOBASE_I2C1, clock_khz, i2c1_irq,
+ tqmx86_i2c1_devices, ARRAY_SIZE(tqmx86_i2c1_devices),
+ io_base, TQMX86_REG_IO_EXT_INT_I2C1_SHIFT);
+ 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 [flat|nested] 6+ messages in thread* Re: [PATCH 2/4] mfd: tqmx86: refactor I2C setup
2025-10-15 11:03 ` [PATCH 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
@ 2025-10-15 11:11 ` Matthias Schiffer
0 siblings, 0 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-10-15 11:11 UTC (permalink / raw)
To: Lee Jones; +Cc: linux-i2c, linux-kernel, linux, Andi Shyti
On Wed, 2025-10-15 at 13:03 +0200, Matthias Schiffer wrote:
> Preparation for supporting the second I2C controller, and detecting both
> ocores and machxo2 controllers.
>
> - Avoid the confusing "soft" I2C controller term - just call it the
> ocores I2C
> - All non-const parts of the MFD cell are moved from global variables
> into new functions tqmx86_setup_i2c_ocores() and tqmx86_setup_i2c()
> - Define TQMX86_REG_I2C_DETECT relative to I2C base register
>
> Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Ah, Lee Jones was missing in the recipients of this series for the MFD parts...
going to resend tomorrow.
Best,
Matthias
> ---
> drivers/mfd/tqmx86.c | 130 ++++++++++++++++++++++++-------------------
> 1 file changed, 74 insertions(+), 56 deletions(-)
>
> diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
> index 1cba3b67b0fb9..3c6f158bf1a45 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
> @@ -54,8 +54,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);
> @@ -65,17 +65,6 @@ static uint i2c1_irq;
> module_param(i2c1_irq, uint, 0);
> MODULE_PARM_DESC(i2c1_irq, "I2C1 IRQ number (valid parameters: 7, 9, 12)");
>
> -enum tqmx86_i2c1_resource_type {
> - TQMX86_I2C1_IO,
> - TQMX86_I2C1_IRQ,
> -};
> -
> -static struct resource tqmx_i2c_soft_resources[] = {
> - [TQMX86_I2C1_IO] = DEFINE_RES_IO(TQMX86_IOBASE_I2C, TQMX86_IOSIZE_I2C),
> - /* Placeholder for IRQ resource */
> - [TQMX86_I2C1_IRQ] = {},
> -};
> -
> static const struct resource tqmx_watchdog_resources[] = {
> DEFINE_RES_IO(TQMX86_IOBASE_WATCHDOG, TQMX86_IOSIZE_WATCHDOG),
> };
> @@ -91,28 +80,13 @@ 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 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_devs[] = {
> {
> .name = "tqmx86-wdt",
> @@ -238,13 +212,74 @@ static int tqmx86_setup_irq(struct device *dev, const char *label, u8 irq,
> return 0;
> }
>
> +static int tqmx86_setup_i2c(struct device *dev, const char *name,
> + unsigned long i2c_base, const void *platform_data,
> + size_t pdata_size, u8 irq)
> +{
> + const struct resource resources[] = {
> + DEFINE_RES_IO(i2c_base, TQMX86_IOSIZE_I2C),
> + irq ? DEFINE_RES_IRQ(irq) : (struct resource) {},
> + };
> + const struct mfd_cell i2c_dev = {
> + .name = name,
> + .platform_data = platform_data,
> + .pdata_size = pdata_size,
> + .resources = resources,
> + .num_resources = ARRAY_SIZE(resources),
> + };
> +
> + return devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE, &i2c_dev, 1,
> + NULL, 0, NULL);
> +
> +}
> +
> +static int tqmx86_setup_i2c_ocores(struct device *dev, const char *label,
> + unsigned long i2c_base, int clock_khz, u8 irq,
> + const struct i2c_board_info *devices,
> + size_t num_devices)
> +{
> + const struct ocores_i2c_platform_data platform_data = {
> + .clock_khz = clock_khz,
> + .num_devices = num_devices,
> + .devices = devices,
> + };
> +
> + return tqmx86_setup_i2c(dev, "ocores-i2c", i2c_base, &platform_data,
> + sizeof(platform_data), irq);
> +}
> +
> +static int tqmx86_detect_i2c(struct device *dev, const char *label,
> + unsigned long i2c_base, int clock_khz, u8 irq,
> + const struct i2c_board_info *devices,
> + size_t num_devices, void __iomem *io_base,
> + u8 irq_reg_shift)
> +{
> + u8 i2c_det;
> +
> + if (tqmx86_setup_irq(dev, label, irq, io_base, irq_reg_shift))
> + irq = 0;
> +
> + /*
> + * 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(i2c_base + TQMX86_REG_I2C_DETECT);
> +
> + if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES)
> + return tqmx86_setup_i2c_ocores(dev, label, i2c_base, clock_khz,
> + irq, devices, num_devices);
> +
> + 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)
> @@ -259,13 +294,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);
> @@ -273,23 +301,13 @@ 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_i2c(dev, "I2C1", TQMX86_IOBASE_I2C1, clock_khz, i2c1_irq,
> + tqmx86_i2c1_devices, ARRAY_SIZE(tqmx86_i2c1_devices),
> + io_base, TQMX86_REG_IO_EXT_INT_I2C1_SHIFT);
> + 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 [flat|nested] 6+ messages in thread
* [PATCH 3/4] mfd: tqmx86: add detection for MachXO2 I2C controller
2025-10-15 11:03 [PATCH 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-10-15 11:03 ` [PATCH 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
@ 2025-10-15 11:03 ` Matthias Schiffer
2025-10-15 11:03 ` [PATCH 4/4] mfd: tqmx86: add detection for secondary " Matthias Schiffer
2025-10-16 5:44 ` [PATCH 1/4] i2c: machxo2: new driver Krzysztof Kozlowski
3 siblings, 0 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-10-15 11:03 UTC (permalink / raw)
To: Andi Shyti; +Cc: linux-i2c, linux-kernel, linux, Matthias Schiffer
The TQMx86 PLD may contain two kinds of I2C controllers: 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>
---
drivers/mfd/tqmx86.c | 39 ++++++++++++++++++++++++++++++++++-----
1 file changed, 34 insertions(+), 5 deletions(-)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 3c6f158bf1a45..6447406f5026f 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>
@@ -57,6 +58,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)");
@@ -248,27 +251,53 @@ static int tqmx86_setup_i2c_ocores(struct device *dev, const char *label,
sizeof(platform_data), irq);
}
+static int tqmx86_setup_i2c_machxo2(struct device *dev, const char *label,
+ unsigned long i2c_base, int clock_khz, u8 irq)
+{
+ const struct machxo2_i2c_platform_data platform_data = {
+ .clock_khz = clock_khz,
+ .bus_khz = 100,
+ };
+
+ return tqmx86_setup_i2c(dev, "i2c-machxo2", i2c_base, &platform_data,
+ sizeof(platform_data), irq);
+}
+
static int tqmx86_detect_i2c(struct device *dev, const char *label,
unsigned long i2c_base, int clock_khz, u8 irq,
const struct i2c_board_info *devices,
size_t num_devices, void __iomem *io_base,
u8 irq_reg_shift)
{
- u8 i2c_det;
+ u8 i2c_det, i2c_ien;
if (tqmx86_setup_irq(dev, label, irq, io_base, irq_reg_shift))
irq = 0;
/*
- * 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.
+ *
+ * There are 3 cases to distinguish:
+ *
+ * - 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(i2c_base + TQMX86_REG_I2C_DETECT);
+ i2c_ien = inb(i2c_base + TQMX86_REG_I2C_IEN);
- if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES)
+ if (i2c_det == TQMX86_REG_I2C_DETECT_OCORES && i2c_ien == 0xff)
return tqmx86_setup_i2c_ocores(dev, label, i2c_base, clock_khz,
irq, devices, num_devices);
+ else if ((i2c_ien & 0xf0) == 0x00)
+ return tqmx86_setup_i2c_machxo2(dev, label, i2c_base, clock_khz,
+ irq);
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 [flat|nested] 6+ messages in thread* [PATCH 4/4] mfd: tqmx86: add detection for secondary I2C controller
2025-10-15 11:03 [PATCH 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-10-15 11:03 ` [PATCH 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
2025-10-15 11:03 ` [PATCH 3/4] mfd: tqmx86: add detection for MachXO2 I2C controller Matthias Schiffer
@ 2025-10-15 11:03 ` Matthias Schiffer
2025-10-16 5:44 ` [PATCH 1/4] i2c: machxo2: new driver Krzysztof Kozlowski
3 siblings, 0 replies; 6+ messages in thread
From: Matthias Schiffer @ 2025-10-15 11:03 UTC (permalink / raw)
To: Andi Shyti; +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>
---
drivers/mfd/tqmx86.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/mfd/tqmx86.c b/drivers/mfd/tqmx86.c
index 6447406f5026f..a6f0a185904e9 100644
--- a/drivers/mfd/tqmx86.c
+++ b/drivers/mfd/tqmx86.c
@@ -20,6 +20,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
@@ -52,6 +53,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
@@ -68,6 +70,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)");
+
static const struct resource tqmx_watchdog_resources[] = {
DEFINE_RES_IO(TQMX86_IOBASE_WATCHDOG, TQMX86_IOSIZE_WATCHDOG),
};
@@ -338,6 +344,11 @@ static int tqmx86_probe(struct platform_device *pdev)
if (err)
return err;
+ err = tqmx86_detect_i2c(dev, "I2C2", TQMX86_IOBASE_I2C2, clock_khz, i2c2_irq,
+ NULL, 0, io_base, TQMX86_REG_IO_EXT_INT_I2C2_SHIFT);
+ 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 [flat|nested] 6+ messages in thread* Re: [PATCH 1/4] i2c: machxo2: new driver
2025-10-15 11:03 [PATCH 1/4] i2c: machxo2: new driver Matthias Schiffer
` (2 preceding siblings ...)
2025-10-15 11:03 ` [PATCH 4/4] mfd: tqmx86: add detection for secondary " Matthias Schiffer
@ 2025-10-16 5:44 ` Krzysztof Kozlowski
3 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-16 5:44 UTC (permalink / raw)
To: Matthias Schiffer, Andi Shyti; +Cc: linux-i2c, linux-kernel, linux
On 15/10/2025 13:03, Matthias Schiffer wrote:
> +
> +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");
> +MODULE_ALIAS("platform:i2c-machxo2");
You should not need MODULE_ALIAS() in normal cases. If you need it,
usually it means your device ID table is wrong (e.g. misses either
entries or MODULE_DEVICE_TABLE()). MODULE_ALIAS() is not a substitute
for incomplete ID table.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-10-16 5:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-15 11:03 [PATCH 1/4] i2c: machxo2: new driver Matthias Schiffer
2025-10-15 11:03 ` [PATCH 2/4] mfd: tqmx86: refactor I2C setup Matthias Schiffer
2025-10-15 11:11 ` Matthias Schiffer
2025-10-15 11:03 ` [PATCH 3/4] mfd: tqmx86: add detection for MachXO2 I2C controller Matthias Schiffer
2025-10-15 11:03 ` [PATCH 4/4] mfd: tqmx86: add detection for secondary " Matthias Schiffer
2025-10-16 5:44 ` [PATCH 1/4] i2c: machxo2: new driver Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®