Linux Serial subsystem development
 help / color / mirror / Atom feed
From: Hugo Villeneuve <hugo@hugovil.com>
To: Biju Das <biju.das.jz@bp.renesas.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>,
	Wolfram Sang <wsa+renesas@sang-engineering.com>,
	Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>,
	Nam Cao <namcao@linutronix.de>,
	linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
	Biju Das <biju.das.au@gmail.com>,
	linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH 15/19] serial: sh-sci: Add support for RZ/G3E RSCI SCIF
Date: Tue, 28 Oct 2025 11:22:36 -0400	[thread overview]
Message-ID: <20251028112236.c832fb48ad9fafcd2cf34b57@hugovil.com> (raw)
In-Reply-To: <20251027154615.115759-16-biju.das.jz@bp.renesas.com>

Hi Biju,

On Mon, 27 Oct 2025 15:46:02 +0000
Biju Das <biju.das.jz@bp.renesas.com> wrote:

> Add support for RZ/G3E RSCI SCIF(a.k.a FIFO mode). RSCI IP found on the
> RZ/G3E SoC is similar to RZ/T2H, but it has a 32-stage FIFO. it has 5
> module clocks instead of 2 on T2H and has multiple resets. Add support
> for hardware flow control.
> 
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> ---
>  drivers/tty/serial/rsci.c   | 279 ++++++++++++++++++++++++++++++++++--
>  drivers/tty/serial/rsci.h   |   1 +
>  drivers/tty/serial/sh-sci.c |   9 +-
>  3 files changed, 279 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/tty/serial/rsci.c b/drivers/tty/serial/rsci.c
> index ade5ee479e99..4c74251dc171 100644
> --- a/drivers/tty/serial/rsci.c
> +++ b/drivers/tty/serial/rsci.c
> @@ -11,6 +11,8 @@
>  #include <linux/serial_core.h>
>  #include <linux/serial_sci.h>
>  #include <linux/tty_flip.h>
> +
> +#include "serial_mctrl_gpio.h"
>  #include "rsci.h"
>  
>  MODULE_IMPORT_NS("SH_SCI");
> @@ -59,6 +61,41 @@ MODULE_IMPORT_NS("SH_SCI");
>  #define CCR1_CTSPEN		BIT(1)	/* CTS External Pin Enable */
>  #define CCR1_CTSE		BIT(0)	/* CTS Enable */
>  
> +/* CCR2 (Common Control Register 2) */
> +#define CCR2_INIT			0xFF000004
> +#define CCR2_CKS_TCLK			(0)	/* TCLK clock */
> +#define CCR2_CKS_TCLK_DIV4		BIT(20)	/* TCLK/4 clock */
> +#define CCR2_CKS_TCLK_DIV16		BIT(21)	/* TCLK16 clock */
> +#define CCR2_CKS_TCLK_DIV64		(BIT(21) | BIT(20)) /* TCLK/64 clock */
> +#define CCR2_BRME			BIT(16)	/* Bitrate Modulation Enable */
> +#define CCR2_ABCSE			BIT(6)	/* Asynchronous Mode Extended Base Clock Select */
> +#define CCR2_ABCS			BIT(5)	/* Asynchronous Mode Base Clock Select */
> +#define CCR2_BGDM			BIT(4)	/* Baud Rate Generator Double-Speed Mode Select */
> +
> +/* CCR3 (Common Control Register 3) */
> +#define CCR3_INIT			0x1203
> +#define CCR3_BLK			BIT(29)	/* Block Transfer Mode */
> +#define CCR3_GM				BIT(28)	/* GSM Mode */
> +#define CCR3_CKE1			BIT(25)	/* Clock Enable 1 */
> +#define CCR3_CKE0			BIT(24)	/* Clock Enable 0 */
> +#define CCR3_DEN			BIT(21)	/* Driver Enabled */
> +#define CCR3_FM				BIT(20)	/* FIFO Mode Select */
> +#define CCR3_MP				BIT(19)	/* Multi-Processor Mode */
> +#define CCR3_MOD_ASYNC			0	/* Asynchronous mode (Multi-processor mode) */
> +#define CCR3_MOD_IRDA			BIT(16)	/* Smart card interface mode */
> +#define CCR3_MOD_CLK_SYNC		BIT(17)	/* Clock synchronous mode */
> +#define CCR3_MOD_SPI			(BIT(17) | BIT(16)) /* Simple SPI mode */
> +#define CCR3_MOD_I2C			BIT(18)	/* Simple I2C mode */
> +#define CCR3_RXDESEL			BIT(15)	/* Asynchronous Start Bit Edge Detection Select */
> +#define CCR3_STP			BIT(14)	/* Stop bit Length */
> +#define CCR3_SINV			BIT(13)	/* Transmitted/Received Data Invert */
> +#define CCR3_LSBF			BIT(12)	/* LSB First select */
> +#define CCR3_CHR1			BIT(9)	/* Character Length */
> +#define CCR3_CHR0			BIT(8)	/* Character Length */
> +#define CCR3_BPEN			BIT(7)	/* Synchronizer Bypass Enable */
> +#define CCR3_CPOL			BIT(1)	/* Clock Polarity Select */
> +#define CCR3_CPHA			BIT(0)	/* Clock Phase Select */
> +
>  /* FCR (FIFO Control Register) */
>  #define FCR_RFRST		BIT(23)	/* Receive FIFO Data Register Reset */
>  #define FCR_TFRST		BIT(15)	/* Transmit FIFO Data Register Reset */
> @@ -142,21 +179,162 @@ static void rsci_start_rx(struct uart_port *port)
>  	rsci_serial_out(port, CCR0, ctrl);
>  }
>  
> +static void rsci_enable_ms(struct uart_port *port)
> +{
> +	mctrl_gpio_enable_ms(to_sci_port(port)->gpios);
> +}
> +
> +static void rsci_init_pins(struct uart_port *port, unsigned int cflag)
> +{
> +	struct sci_port *s = to_sci_port(port);
> +
> +	/*
> +	 * Use port-specific handler if provided.
> +	 */

Put on one line: /* Use... */

> +	if (s->cfg->ops && s->cfg->ops->init_pins) {
> +		s->cfg->ops->init_pins(port, cflag);
> +		return;
> +	}
> +
> +	if (!s->has_rtscts)
> +		return;
> +
> +	if (s->autorts)
> +		rsci_serial_out(port, CCR1, rsci_serial_in(port, CCR1) |
> +				CCR1_CTSE | CCR1_CTSPEN);
> +}
> +
> +static int rsci_scif_set_rtrg(struct uart_port *port, int rx_trig)
> +{
> +	unsigned int bits;
> +
> +	if (rx_trig >= port->fifosize)
> +		rx_trig = port->fifosize - 1;
> +	else if (rx_trig < 1)
> +		rx_trig = 1;
> +
> +	bits = rx_trig << 16;
> +	rsci_serial_out(port, FCR, (rsci_serial_in(port, FCR) & ~FCR_RTRG4_0) | bits);
> +
> +	return rx_trig;
> +}
> +
>  static void rsci_set_termios(struct uart_port *port, struct ktermios *termios,
>  			     const struct ktermios *old)
>  {
> +	unsigned int ccr2_val = CCR2_INIT, ccr3_val = CCR3_INIT;
> +	unsigned int ccr0_val = 0, ccr1_val = 0, ccr4_val = 0;
> +	unsigned int brr1 = 255, cks1 = 0, srr1 = 15;
>  	struct sci_port *s = to_sci_port(port);
> +	unsigned int brr = 255, cks = 0;
> +	int min_err = INT_MAX, err;
> +	unsigned long max_freq = 0;
> +	unsigned int baud, i;
>  	unsigned long flags;
> +	unsigned int ctrl;
> +	int best_clk = -1;
> +
> +	if ((termios->c_cflag & CSIZE) == CS7) {
> +		ccr3_val |= CCR3_CHR0;
> +	} else {
> +		termios->c_cflag &= ~CSIZE;
> +		termios->c_cflag |= CS8;
> +	}
> +	if (termios->c_cflag & PARENB)
> +		ccr1_val |= CCR1_PE;
> +	if (termios->c_cflag & PARODD)
> +		ccr1_val |= (CCR1_PE | CCR1_PM);
> +	if (termios->c_cflag & CSTOPB)
> +		ccr3_val |= CCR3_STP;
> +
> +	/* Enable noise filter function */
> +	ccr1_val |= CCR1_NFEN;
> +
> +	/*
> +	 * earlyprintk comes here early on with port->uartclk set to zero.
> +	 * the clock framework is not up and running at this point so here
> +	 * we assume that 115200 is the maximum baud rate. please note that
> +	 * the baud rate is not programmed during earlyprintk - it is assumed
> +	 * that the previous boot loader has enabled required clocks and
> +	 * setup the baud rate generator hardware for us already.
> +	 */
> +	if (!port->uartclk) {
> +		baud = uart_get_baud_rate(port, termios, old, 0, 115200);

Here you do not check the baud return value, as you do a few lines
below...

> +		goto done;
> +	}
> +
> +	for (i = 0; i < SCI_NUM_CLKS; i++)
> +		max_freq = max(max_freq, s->clk_rates[i]);
> +
> +	baud = uart_get_baud_rate(port, termios, old, 0, max_freq / min_sr(s));
> +	if (!baud)

Here you check the baud return value...

Maybe simplify and commonize the above code with something
like:

--------
if (!port->uartclk) {
    max_freq = 115200;
} else {
    for (i = 0; i < SCI_NUM_CLKS; i++)
	max_freq = max(max_freq, s->clk_rates[i]);

    max_freq /= min_sr(s);
}

baud = uart_get_baud_rate(port, termios, old, 0, max_freq);
if (!baud)
    goto done;
--------




> +		goto done;
> +
> +	/* Divided Functional Clock using standard Bit Rate Register */
> +	err = sci_scbrr_calc(s, baud, &brr1, &srr1, &cks1);
> +	if (abs(err) < abs(min_err)) {
> +		best_clk = SCI_FCK;
> +		ccr0_val = 0;
> +		min_err = err;
> +		brr = brr1;
> +		cks = cks1;
> +	}
> +
> +done:
> +	if (best_clk >= 0)
> +		dev_dbg(port->dev, "Using clk %pC for %u%+d bps\n",
> +			s->clks[best_clk], baud, min_err);
>  
>  	sci_port_enable(s);
>  	uart_port_lock_irqsave(port, &flags);
>  
> -	/* For now, only RX enabling is supported */
> -	if (termios->c_cflag & CREAD)
> +	uart_update_timeout(port, termios->c_cflag, baud);
> +
> +	rsci_serial_out(port, CCR0, ccr0_val);
> +
> +	ccr3_val |= CCR3_FM;
> +

Remove space here to be consistent with below statements?

> +	rsci_serial_out(port, CCR3, ccr3_val);
> +
> +	ccr2_val |= (cks << 20) | (brr << 8);
> +	rsci_serial_out(port, CCR2, ccr2_val);
> +
> +	rsci_serial_out(port, CCR1, ccr1_val);
> +
> +	rsci_serial_out(port, CCR4, ccr4_val);
> +
> +	ctrl = rsci_serial_in(port, FCR);
> +
> +	ctrl |= (FCR_RFRST | FCR_TFRST);
> +	rsci_serial_out(port, FCR, ctrl);
> +
> +	if (s->rx_trigger > 1)
> +		rsci_scif_set_rtrg(port, s->rx_trigger);
> +
> +	port->status &= ~UPSTAT_AUTOCTS;
> +	s->autorts = false;
> +
> +	if ((port->flags & UPF_HARD_FLOW) && (termios->c_cflag & CRTSCTS)) {
> +		port->status |= UPSTAT_AUTOCTS;
> +		s->autorts = true;
> +	}
> +
> +	rsci_init_pins(port, termios->c_cflag);
> +	rsci_serial_out(port, CFCLR, CFCLR_CLRFLAG);
> +
> +	rsci_serial_out(port, FFCLR, FFCLR_DRC);
> +
> +	ccr0_val |= CCR0_RE;
> +	rsci_serial_out(port, CCR0, ccr0_val);
> +
> +	if ((termios->c_cflag & CREAD) != 0)
>  		rsci_start_rx(port);
>  
>  	uart_port_unlock_irqrestore(port, flags);
>  	sci_port_disable(s);
> +
> +	if (UART_ENABLE_MS(port, termios->c_cflag))
> +		rsci_enable_ms(port);
>  }
>  
>  static int rsci_txfill(struct uart_port *port)
> @@ -181,13 +359,32 @@ static unsigned int rsci_tx_empty(struct uart_port *port)
>  
>  static void rsci_set_mctrl(struct uart_port *port, unsigned int mctrl)
>  {
> -	/* Not supported yet */
> +	if (mctrl & TIOCM_LOOP) {
> +		/* Standard loopback mode */
> +		rsci_serial_out(port, CCR1, rsci_serial_in(port, CCR1) | CCR1_SPLP);
> +	}
>  }
>  
>  static unsigned int rsci_get_mctrl(struct uart_port *port)
>  {
> -	/* Not supported yet */
> -	return 0;
> +	struct sci_port *s = to_sci_port(port);
> +	struct mctrl_gpios *gpios = s->gpios;
> +	unsigned int mctrl = 0;
> +
> +	mctrl_gpio_get(gpios, &mctrl);
> +
> +	/*
> +	 * CTS/RTS is handled in hardware when supported, while nothing
> +	 * else is wired up.
> +	 */
> +	if (!mctrl_gpio_to_gpiod(gpios, UART_GPIO_CTS))
> +		mctrl |= TIOCM_CTS;
> +	if (!mctrl_gpio_to_gpiod(gpios, UART_GPIO_DSR))
> +		mctrl |= TIOCM_DSR;
> +	if (!mctrl_gpio_to_gpiod(gpios, UART_GPIO_DCD))
> +		mctrl |= TIOCM_CAR;

Maybe separate these if blocks with a blank line for readability.

> +
> +	return mctrl;
>  }
>  
>  static void rsci_start_tx(struct uart_port *port)
> @@ -346,6 +543,28 @@ static void rsci_receive_chars(struct uart_port *port)
>  	}
>  }
>  
> +static void rsci_break_ctl(struct uart_port *port, int break_state)
> +{
> +	unsigned short ccr0_val, ccr1_val;
> +	unsigned long flags;
> +
> +	uart_port_lock_irqsave(port, &flags);
> +	ccr1_val = rsci_serial_in(port, CCR1);
> +	ccr0_val = rsci_serial_in(port, CCR0);
> +
> +	if (break_state == -1) {
> +		ccr1_val = (ccr1_val | CCR1_SPB2IO) & ~CCR1_SPB2DT;
> +		ccr0_val &= ~CCR0_TE;
> +	} else {
> +		ccr1_val = (ccr1_val | CCR1_SPB2DT) & ~CCR1_SPB2IO;
> +		ccr0_val |= CCR0_TE;
> +	}
> +
> +	rsci_serial_out(port, CCR1, ccr1_val);
> +	rsci_serial_out(port, CCR0, ccr0_val);
> +	uart_port_unlock_irqrestore(port, flags);
> +}
> +
>  static void rsci_poll_put_char(struct uart_port *port, unsigned char c)
>  {
>  	u32 status;
> @@ -367,14 +586,30 @@ static void rsci_poll_put_char(struct uart_port *port, unsigned char c)
>  static void rsci_prepare_console_write(struct uart_port *port, u32 ctrl)
>  {
>  	struct sci_port *s = to_sci_port(port);
> -	u32 ctrl_temp =
> -		s->params->param_bits->rxtx_enable | CCR0_TIE |
> -		s->hscif_tot;
> +	u32 ctrl_temp = s->params->param_bits->rxtx_enable;
> +
> +	if (s->type == SCI_PORT_RSCI)
> +		ctrl_temp |= CCR0_TIE | s->hscif_tot;
> +
>  	rsci_serial_out(port, CCR0, ctrl_temp);
>  }
>  
> +static void rsci_finish_console_write(struct uart_port *port, u32 ctrl)
> +{
> +	rsci_serial_out(port, CCR0, ctrl & ~CCR0_TE);
> +	cpu_relax();
> +	rsci_serial_out(port, CCR0, ctrl);
> +}
> +
>  static const char *rsci_type(struct uart_port *port)
>  {
> +	struct sci_port *s = to_sci_port(port);
> +
> +	switch (s->type) {
> +	case RSCI_PORT_SCIF:
> +		return "scif";
> +	}
> +
>  	return "rsci";
>  }
>  
> @@ -414,6 +649,17 @@ static const struct sci_port_params rsci_port_params = {
>  	.common_regs = &rsci_common_regs,
>  };
>  
> +static const struct sci_port_params rsci_rzg3e_scif_port_params = {
> +	.fifosize = 32,
> +	.overrun_reg = CSR,
> +	.overrun_mask = CSR_ORER,
> +	.sampling_rate_mask = SCI_SR(32),
> +	.error_mask = RSCI_DEFAULT_ERROR_MASK,
> +	.error_clear = RSCI_ERROR_CLEAR,
> +	.param_bits = &rsci_port_param_bits,
> +	.common_regs = &rsci_common_regs,
> +};
> +
>  static const struct uart_ops rsci_uart_ops = {
>  	.tx_empty	= rsci_tx_empty,
>  	.set_mctrl	= rsci_set_mctrl,
> @@ -421,6 +667,8 @@ static const struct uart_ops rsci_uart_ops = {
>  	.start_tx	= rsci_start_tx,
>  	.stop_tx	= rsci_stop_tx,
>  	.stop_rx	= rsci_stop_rx,
> +	.enable_ms	= rsci_enable_ms,
> +	.break_ctl	= rsci_break_ctl,
>  	.startup	= sci_startup,
>  	.shutdown	= sci_shutdown,
>  	.set_termios	= rsci_set_termios,
> @@ -440,6 +688,7 @@ static const struct sci_port_ops rsci_port_ops = {
>  	.receive_chars		= rsci_receive_chars,
>  	.poll_put_char		= rsci_poll_put_char,
>  	.prepare_console_write	= rsci_prepare_console_write,
> +	.finish_console_write	= rsci_finish_console_write,
>  	.suspend_regs_size	= rsci_suspend_regs_size,
>  	.shutdown_complete	= rsci_shutdown_complete,
>  };
> @@ -451,6 +700,13 @@ struct sci_of_data of_sci_rsci_data = {
>  	.params = &rsci_port_params,
>  };
>  
> +struct sci_of_data of_rsci_scif_data = {
> +	.type = RSCI_PORT_SCIF,
> +	.ops = &rsci_port_ops,
> +	.uart_ops = &rsci_uart_ops,
> +	.params = &rsci_rzg3e_scif_port_params,
> +};
> +
>  #ifdef CONFIG_SERIAL_SH_SCI_EARLYCON
>  
>  static int __init rsci_early_console_setup(struct earlycon_device *device,
> @@ -459,6 +715,13 @@ static int __init rsci_early_console_setup(struct earlycon_device *device,
>  	return scix_early_console_setup(device, &of_sci_rsci_data);
>  }
>  
> +static int __init rsci_rzg3e_scif_early_console_setup(struct earlycon_device *device,
> +						      const char *opt)
> +{
> +	return scix_early_console_setup(device, &of_rsci_scif_data);
> +}
> +
> +OF_EARLYCON_DECLARE(rsci, "renesas,r9a09g047-rscif", rsci_rzg3e_scif_early_console_setup);
>  OF_EARLYCON_DECLARE(rsci, "renesas,r9a09g077-rsci", rsci_early_console_setup);
>  
>  #endif /* CONFIG_SERIAL_SH_SCI_EARLYCON */
> diff --git a/drivers/tty/serial/rsci.h b/drivers/tty/serial/rsci.h
> index 2af3f28b465a..ba255f58c088 100644
> --- a/drivers/tty/serial/rsci.h
> +++ b/drivers/tty/serial/rsci.h
> @@ -6,5 +6,6 @@
>  #include "sh-sci-common.h"
>  
>  extern struct sci_of_data of_sci_rsci_data;
> +extern struct sci_of_data of_rsci_scif_data;
>  
>  #endif /* __RSCI_H__ */
> diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
> index 7d1c8338f36c..379528c6725a 100644
> --- a/drivers/tty/serial/sh-sci.c
> +++ b/drivers/tty/serial/sh-sci.c
> @@ -3403,7 +3403,7 @@ static void sci_remove(struct platform_device *dev)
>  	if (s->port.fifosize > 1)
>  		device_remove_file(&dev->dev, &dev_attr_rx_fifo_trigger);
>  	if (type == PORT_SCIFA || type == PORT_SCIFB || type == PORT_HSCIF ||
> -	    type == SCI_PORT_RSCI)
> +	    type == SCI_PORT_RSCI || type == RSCI_PORT_SCIF)
>  		device_remove_file(&dev->dev, &dev_attr_rx_fifo_timeout);
>  }
>  
> @@ -3498,6 +3498,10 @@ static const struct of_device_id of_sci_match[] __maybe_unused = {
>  		.data = &of_sci_scif_rzv2h,
>  	},
>  #ifdef CONFIG_SERIAL_RSCI
> +	{
> +		.compatible = "renesas,r9a09g047-rscif",
> +		.data = &of_rsci_scif_data,
> +	},
>  	{
>  		.compatible = "renesas,r9a09g077-rsci",
>  		.data = &of_sci_rsci_data,
> @@ -3765,7 +3769,8 @@ static int sci_probe(struct platform_device *dev)
>  			return ret;
>  	}
>  	if (sp->type == PORT_SCIFA || sp->type == PORT_SCIFB ||
> -	    sp->type == PORT_HSCIF || sp->type == SCI_PORT_RSCI) {
> +	    sp->type == PORT_HSCIF || sp->type == SCI_PORT_RSCI ||
> +	    sp->type == RSCI_PORT_SCIF) {
>  		ret = device_create_file(&dev->dev, &dev_attr_rx_fifo_timeout);
>  		if (ret) {
>  			if (sp->port.fifosize > 1) {
> -- 
> 2.43.0
> 
> 

Hugo.

  reply	other threads:[~2025-10-28 15:22 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-27 15:45 [PATCH 00/19] Add RZ/G3E RSCI support Biju Das
2025-10-27 15:45 ` [PATCH 02/19] dt-bindings: serial: rsci: Drop "uart-has-rtscts: false" Biju Das
2025-10-28 19:28   ` Conor Dooley
2025-10-28 19:39     ` Biju Das
2025-10-28 19:50       ` Conor Dooley
2025-10-28 20:27         ` Biju Das
2025-10-27 15:45 ` [PATCH 03/19] dt-bindings: serial: renesas,rsci: Document RZ/G3E support Biju Das
2025-10-28 19:30   ` Conor Dooley
2025-10-28 19:41     ` Biju Das
2025-10-28 19:51       ` Conor Dooley
2025-10-28 20:26         ` Biju Das
2025-10-29 17:20           ` Conor Dooley
2025-10-27 15:45 ` [PATCH 04/19] serial: sh-sci: Fix deadlock during RSCI FIFO overrun error Biju Das
2025-10-28  8:40   ` Greg Kroah-Hartman
2025-10-28  9:08     ` Biju Das
2025-10-27 15:45 ` [PATCH 05/19] serial: rsci: Drop rsci_clear_CFC() Biju Das
2025-10-27 15:45 ` [PATCH 06/19] serial: sh-sci: Drop extra line Biju Das
2025-10-28 14:35   ` Hugo Villeneuve
2025-10-30 14:43     ` Biju Das
2025-10-27 15:45 ` [PATCH 07/19] serial: rsci: Drop unused macro DCR Biju Das
2025-10-27 15:45 ` [PATCH 08/19] serial: rsci: Drop unused TDR register Biju Das
2025-10-27 15:45 ` [PATCH 09/19] serial: sh-sci: Use devm_reset_control_array_get_exclusive() Biju Das
2025-10-27 15:45 ` [PATCH 10/19] serial: sh-sci: Add RSCI_PORT_{SCI,SCIF} port IDs Biju Das
2025-10-27 15:45 ` [PATCH 11/19] serial: sh-sci: Add sci_is_rsci_type() Biju Das
2025-10-27 15:45 ` [PATCH 12/19] serial: sh-sci: Add support for RZ/G3E RSCI clks Biju Das
2025-10-28 14:51   ` Hugo Villeneuve
2025-10-28 15:08     ` Biju Das
2025-10-28 15:37       ` Hugo Villeneuve
2025-10-27 15:46 ` [PATCH 13/19] serial: sh-sci: Make sci_scbrr_calc() public Biju Das
2025-10-27 15:46 ` [PATCH 14/19] serial: sh-sci: Add finish_console_write() callback Biju Das
2025-10-27 15:46 ` [PATCH 15/19] serial: sh-sci: Add support for RZ/G3E RSCI SCIF Biju Das
2025-10-28 15:22   ` Hugo Villeneuve [this message]
2025-10-27 15:46 ` [PATCH 16/19] serial: sh-sci: Add support for RZ/G3E RSCI SCI Biju Das
2025-10-28  8:41 ` [PATCH 00/19] Add RZ/G3E RSCI support Greg Kroah-Hartman
2025-10-28  9:12   ` Biju Das

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20251028112236.c832fb48ad9fafcd2cf34b57@hugovil.com \
    --to=hugo@hugovil.com \
    --cc=biju.das.au@gmail.com \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=claudiu.beznea.uj@bp.renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=gregkh@linuxfoundation.org \
    --cc=jirislaby@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=namcao@linutronix.de \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=wsa+renesas@sang-engineering.com \
    /path/to/YOUR_REPLY

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

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