* [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds
@ 2026-02-27 11:11 Jan Kantert
2026-03-01 19:19 ` Chris Packham
2026-04-01 22:06 ` Andi Shyti
0 siblings, 2 replies; 3+ messages in thread
From: Jan Kantert @ 2026-02-27 11:11 UTC (permalink / raw)
To: chris.packham, linux-i2c; +Cc: Jan Kantert
Some SFP modules on certain switches (for example the ONTi ONT-S508CL-8S and
XikeStor SKS8300-8X) exhibit unreliable I2C communication at the currently
supported speeds. Add support for 50 kHz and 2.5 MHz I2C bus modes on the
RTL9300 to improve compatibility with these devices.
Signed-off-by: Jan Kantert <jan-kernel@kantert.net>
---
drivers/i2c/busses/i2c-rtl9300.c | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/drivers/i2c/busses/i2c-rtl9300.c b/drivers/i2c/busses/i2c-rtl9300.c
index 672cb978066d..67a5c4228fc9 100644
--- a/drivers/i2c/busses/i2c-rtl9300.c
+++ b/drivers/i2c/busses/i2c-rtl9300.c
@@ -11,10 +11,16 @@
#include <linux/unaligned.h>
enum rtl9300_bus_freq {
- RTL9300_I2C_STD_FREQ,
- RTL9300_I2C_FAST_FREQ,
+ RTL9300_I2C_STD_FREQ, // 100kHz
+ RTL9300_I2C_FAST_FREQ, // 400kHz
+ RTL9300_I2C_SUPER_FAST_FREQ, // 2.5MHz
+ RTL9300_I2C_SLOW_FREQ, // 50kHz
};
+#define RTL9300_I2C_MAX_SUPER_FAST_FREQ 2500000
+#define RTL9300_I2C_MAX_SLOW_FREQ 50000
+
+
struct rtl9300_i2c;
struct rtl9300_i2c_chan {
@@ -433,6 +439,12 @@ static int rtl9300_i2c_probe(struct platform_device *pdev)
case I2C_MAX_FAST_MODE_FREQ:
chan->bus_freq = RTL9300_I2C_FAST_FREQ;
break;
+ case RTL9300_I2C_MAX_SUPER_FAST_FREQ:
+ chan->bus_freq = RTL9300_I2C_SUPER_FAST_FREQ;
+ break;
+ case RTL9300_I2C_MAX_SLOW_FREQ:
+ chan->bus_freq = RTL9300_I2C_SLOW_FREQ;
+ break;
default:
dev_warn(i2c->dev, "SDA%d clock-frequency %d not supported using default\n",
sda_num, clock_freq);
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds
2026-02-27 11:11 [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds Jan Kantert
@ 2026-03-01 19:19 ` Chris Packham
2026-04-01 22:06 ` Andi Shyti
1 sibling, 0 replies; 3+ messages in thread
From: Chris Packham @ 2026-03-01 19:19 UTC (permalink / raw)
To: Jan Kantert, linux-i2c@vger.kernel.org
Hi Jan,
On 28/02/2026 00:11, Jan Kantert wrote:
> Some SFP modules on certain switches (for example the ONTi ONT-S508CL-8S and
> XikeStor SKS8300-8X) exhibit unreliable I2C communication at the currently
> supported speeds. Add support for 50 kHz and 2.5 MHz I2C bus modes on the
> RTL9300 to improve compatibility with these devices.
>
> Signed-off-by: Jan Kantert <jan-kernel@kantert.net>
Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Thanks,
> ---
> drivers/i2c/busses/i2c-rtl9300.c | 16 ++++++++++++++--
> 1 file changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-rtl9300.c b/drivers/i2c/busses/i2c-rtl9300.c
> index 672cb978066d..67a5c4228fc9 100644
> --- a/drivers/i2c/busses/i2c-rtl9300.c
> +++ b/drivers/i2c/busses/i2c-rtl9300.c
> @@ -11,10 +11,16 @@
> #include <linux/unaligned.h>
>
> enum rtl9300_bus_freq {
> - RTL9300_I2C_STD_FREQ,
> - RTL9300_I2C_FAST_FREQ,
> + RTL9300_I2C_STD_FREQ, // 100kHz
> + RTL9300_I2C_FAST_FREQ, // 400kHz
> + RTL9300_I2C_SUPER_FAST_FREQ, // 2.5MHz
> + RTL9300_I2C_SLOW_FREQ, // 50kHz
> };
>
> +#define RTL9300_I2C_MAX_SUPER_FAST_FREQ 2500000
> +#define RTL9300_I2C_MAX_SLOW_FREQ 50000
> +
> +
> struct rtl9300_i2c;
>
> struct rtl9300_i2c_chan {
> @@ -433,6 +439,12 @@ static int rtl9300_i2c_probe(struct platform_device *pdev)
> case I2C_MAX_FAST_MODE_FREQ:
> chan->bus_freq = RTL9300_I2C_FAST_FREQ;
> break;
> + case RTL9300_I2C_MAX_SUPER_FAST_FREQ:
> + chan->bus_freq = RTL9300_I2C_SUPER_FAST_FREQ;
> + break;
> + case RTL9300_I2C_MAX_SLOW_FREQ:
> + chan->bus_freq = RTL9300_I2C_SLOW_FREQ;
> + break;
> default:
> dev_warn(i2c->dev, "SDA%d clock-frequency %d not supported using default\n",
> sda_num, clock_freq);
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds
2026-02-27 11:11 [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds Jan Kantert
2026-03-01 19:19 ` Chris Packham
@ 2026-04-01 22:06 ` Andi Shyti
1 sibling, 0 replies; 3+ messages in thread
From: Andi Shyti @ 2026-04-01 22:06 UTC (permalink / raw)
To: Jan Kantert; +Cc: chris.packham, linux-i2c
Hi Jan,
On Fri, Feb 27, 2026 at 12:11:34PM +0100, Jan Kantert wrote:
> Some SFP modules on certain switches (for example the ONTi ONT-S508CL-8S and
> XikeStor SKS8300-8X) exhibit unreliable I2C communication at the currently
> supported speeds. Add support for 50 kHz and 2.5 MHz I2C bus modes on the
> RTL9300 to improve compatibility with these devices.
>
> Signed-off-by: Jan Kantert <jan-kernel@kantert.net>
merged to i2c/i2c-host.
Thanks,
Andi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-01 22:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-27 11:11 [PATCH] i2c: rtl9300: add support for 50 kHz and 2.5 MHz bus speeds Jan Kantert
2026-03-01 19:19 ` Chris Packham
2026-04-01 22:06 ` Andi Shyti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox