From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Sasha Levin <sashal@kernel.org>,
jirislaby@kernel.org, p.zabel@pengutronix.de,
wsa+renesas@sang-engineering.com, zack.rusin@broadcom.com,
namcao@linutronix.de, prabhakar.mahadev-lad.rj@bp.renesas.com,
linux-serial@vger.kernel.org
Subject: [PATCH AUTOSEL 6.1 168/212] serial: sh-sci: Update the suspend/resume support
Date: Mon, 5 May 2025 19:05:40 -0400 [thread overview]
Message-ID: <20250505230624.2692522-168-sashal@kernel.org> (raw)
In-Reply-To: <20250505230624.2692522-1-sashal@kernel.org>
From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
[ Upstream commit 22a6984c5b5df8eab864d7f3e8b94d5a554d31ab ]
The Renesas RZ/G3S supports a power saving mode where power to most of the
SoC components is turned off. When returning from this power saving mode,
SoC components need to be re-configured.
The SCIFs on the Renesas RZ/G3S need to be re-configured as well when
returning from this power saving mode. The sh-sci code already configures
the SCIF clocks, power domain and registers by calling uart_resume_port()
in sci_resume(). On suspend path the SCIF UART ports are suspended
accordingly (by calling uart_suspend_port() in sci_suspend()). The only
missing setting is the reset signal. For this assert/de-assert the reset
signal on driver suspend/resume.
In case the no_console_suspend is specified by the user, the registers need
to be saved on suspend path and restore on resume path. To do this the
sci_console_save()/sci_console_restore() functions were added. There is no
need to cache/restore the status or FIFO registers. Only the control
registers. The registers that will be saved/restored on suspend/resume are
specified by the struct sci_suspend_regs data structure.
Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20250207113313.545432-1-claudiu.beznea.uj@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/tty/serial/sh-sci.c | 71 +++++++++++++++++++++++++++++++++++--
1 file changed, 69 insertions(+), 2 deletions(-)
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
index e2dfca4c2eff8..191136dcb94d0 100644
--- a/drivers/tty/serial/sh-sci.c
+++ b/drivers/tty/serial/sh-sci.c
@@ -105,6 +105,15 @@ struct plat_sci_reg {
u8 offset, size;
};
+struct sci_suspend_regs {
+ u16 scsmr;
+ u16 scscr;
+ u16 scfcr;
+ u16 scsptr;
+ u8 scbrr;
+ u8 semr;
+};
+
struct sci_port_params {
const struct plat_sci_reg regs[SCIx_NR_REGS];
unsigned int fifosize;
@@ -135,6 +144,8 @@ struct sci_port {
struct dma_chan *chan_tx;
struct dma_chan *chan_rx;
+ struct reset_control *rstc;
+
#ifdef CONFIG_SERIAL_SH_SCI_DMA
struct dma_chan *chan_tx_saved;
struct dma_chan *chan_rx_saved;
@@ -154,6 +165,7 @@ struct sci_port {
int rx_trigger;
struct timer_list rx_fifo_timer;
int rx_fifo_timeout;
+ struct sci_suspend_regs suspend_regs;
u16 hscif_tot;
bool has_rtscts;
@@ -3252,6 +3264,7 @@ static struct plat_sci_port *sci_parse_dt(struct platform_device *pdev,
}
sp = &sci_ports[id];
+ sp->rstc = rstc;
*dev_id = id;
p->type = SCI_OF_TYPE(data);
@@ -3400,13 +3413,57 @@ static int sci_probe(struct platform_device *dev)
return 0;
}
+static void sci_console_save(struct sci_port *s)
+{
+ struct sci_suspend_regs *regs = &s->suspend_regs;
+ struct uart_port *port = &s->port;
+
+ if (sci_getreg(port, SCSMR)->size)
+ regs->scsmr = sci_serial_in(port, SCSMR);
+ if (sci_getreg(port, SCSCR)->size)
+ regs->scscr = sci_serial_in(port, SCSCR);
+ if (sci_getreg(port, SCFCR)->size)
+ regs->scfcr = sci_serial_in(port, SCFCR);
+ if (sci_getreg(port, SCSPTR)->size)
+ regs->scsptr = sci_serial_in(port, SCSPTR);
+ if (sci_getreg(port, SCBRR)->size)
+ regs->scbrr = sci_serial_in(port, SCBRR);
+ if (sci_getreg(port, SEMR)->size)
+ regs->semr = sci_serial_in(port, SEMR);
+}
+
+static void sci_console_restore(struct sci_port *s)
+{
+ struct sci_suspend_regs *regs = &s->suspend_regs;
+ struct uart_port *port = &s->port;
+
+ if (sci_getreg(port, SCSMR)->size)
+ sci_serial_out(port, SCSMR, regs->scsmr);
+ if (sci_getreg(port, SCSCR)->size)
+ sci_serial_out(port, SCSCR, regs->scscr);
+ if (sci_getreg(port, SCFCR)->size)
+ sci_serial_out(port, SCFCR, regs->scfcr);
+ if (sci_getreg(port, SCSPTR)->size)
+ sci_serial_out(port, SCSPTR, regs->scsptr);
+ if (sci_getreg(port, SCBRR)->size)
+ sci_serial_out(port, SCBRR, regs->scbrr);
+ if (sci_getreg(port, SEMR)->size)
+ sci_serial_out(port, SEMR, regs->semr);
+}
+
static __maybe_unused int sci_suspend(struct device *dev)
{
struct sci_port *sport = dev_get_drvdata(dev);
- if (sport)
+ if (sport) {
uart_suspend_port(&sci_uart_driver, &sport->port);
+ if (!console_suspend_enabled && uart_console(&sport->port))
+ sci_console_save(sport);
+ else
+ return reset_control_assert(sport->rstc);
+ }
+
return 0;
}
@@ -3414,8 +3471,18 @@ static __maybe_unused int sci_resume(struct device *dev)
{
struct sci_port *sport = dev_get_drvdata(dev);
- if (sport)
+ if (sport) {
+ if (!console_suspend_enabled && uart_console(&sport->port)) {
+ sci_console_restore(sport);
+ } else {
+ int ret = reset_control_deassert(sport->rstc);
+
+ if (ret)
+ return ret;
+ }
+
uart_resume_port(&sci_uart_driver, &sport->port);
+ }
return 0;
}
--
2.39.5
next prev parent reply other threads:[~2025-05-05 23:11 UTC|newest]
Thread overview: 213+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-05 23:02 [PATCH AUTOSEL 6.1 001/212] kconfig: merge_config: use an empty file as initfile Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 002/212] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 003/212] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 004/212] cifs: Fix querying and creating MF symlinks over SMB1 Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 005/212] cifs: Fix negotiate retry functionality Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 006/212] fuse: Return EPERM rather than ENOSYS from link() Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 007/212] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 008/212] NFS: Don't allow waiting for exiting tasks Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 009/212] SUNRPC: " Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 010/212] arm64: Add support for HIP09 Spectre-BHB mitigation Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 011/212] tracing: Mark binary printing functions with __printf() attribute Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 012/212] mailbox: use error ret code of of_parse_phandle_with_args() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 013/212] fbdev: fsl-diu-fb: add missing device_remove_file() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 014/212] fbcon: Use correct erase colour for clearing in fbcon Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 015/212] fbdev: core: tileblit: Implement missing margin clearing for tileblit Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 016/212] cifs: Fix establishing NetBIOS session for SMB2+ connection Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 017/212] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 018/212] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 019/212] SUNRPC: rpcbind should never reset the port to the value '0' Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 020/212] thermal/drivers/qoriq: Power down TMU on system suspend Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 021/212] exit: fix the usage of delay_group_leader->exit_code in do_notify_parent() and pidfs_exit() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 022/212] dql: Fix dql->limit value when reset Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 023/212] lockdep: Fix wait context check on softirq for PREEMPT_RT Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 024/212] objtool: Properly disable uaccess validation Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 025/212] PCI: dwc: ep: Ensure proper iteration over outbound map windows Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 026/212] tools/build: Don't pass test log files to linker Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 027/212] pNFS/flexfiles: Report ENETDOWN as a connection error Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 028/212] PCI: vmd: Disable MSI remapping bypass under Xen Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 029/212] libnvdimm/labels: Fix divide error in nd_label_data_init() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 030/212] mmc: host: Wait for Vdd to settle on card power off Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 031/212] x86/mm: Check return value from memblock_phys_alloc_range() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 032/212] i2c: qup: Vote for interconnect bandwidth to DRAM Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 033/212] i2c: pxa: fix call balance of i2c->clk handling routines Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 034/212] btrfs: make btrfs_discard_workfn() block_group ref explicit Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 035/212] btrfs: avoid linker error in btrfs_find_create_tree_block() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 036/212] btrfs: run btrfs_error_commit_super() early Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 037/212] btrfs: fix non-empty delayed iputs list on unmount due to async workers Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 038/212] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 039/212] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 040/212] btrfs: zoned: exit btrfs_can_activate_zone if BTRFS_FS_NEED_ZONE_FINISH is set Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 041/212] drm/amd/display: Guard against setting dispclk low for dcn31x Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 042/212] i3c: master: svc: Fix missing STOP for master request Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 043/212] dlm: make tcp still work in multi-link env Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 044/212] um: Store full CSGSFS and SS register from mcontext Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 045/212] um: Update min_low_pfn to match changes in uml_reserved Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 046/212] ext4: reorder capability check last Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 047/212] scsi: st: Tighten the page format heuristics with MODE SELECT Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 048/212] scsi: st: ERASE does not change tape location Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 049/212] vfio/pci: Handle INTx IRQ_NOTCONNECTED Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 050/212] bpf: Return prog btf_id without capable check Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 051/212] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 052/212] rtc: rv3032: fix EERD location Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 053/212] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 054/212] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 055/212] kbuild: fix argument parsing in scripts/config Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 056/212] crypto: octeontx2 - suppress auth failure screaming due to negative tests Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 057/212] dm: restrict dm device size to 2^63-512 bytes Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 058/212] net/smc: use the correct ndev to find pnetid by pnetid table Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 059/212] xen: Add support for XenServer 6.1 platform device Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 060/212] pinctrl-tegra: Restore SFSEL bit when freeing pins Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 061/212] ASoC: sun4i-codec: support hp-det-gpios property Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 062/212] f2fs: defer readonly check vs norecovery Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 063/212] ext4: reject the 'data_err=abort' option in nojournal mode Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 064/212] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 065/212] posix-timers: Add cond_resched() to posix_timer_add() search loop Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 066/212] timer_list: Don't use %pK through printk() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 067/212] netfilter: conntrack: Bound nf_conntrack sysctl writes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 068/212] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 069/212] mmc: dw_mmc: add exynos7870 DW MMC support Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 070/212] mmc: sdhci: Disable SD card clock before changing parameters Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 071/212] hwmon: (dell-smm) Increment the number of fans Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 072/212] ipv6: save dontfrag in cork Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 073/212] drm/amd/display: calculate the remain segments for all pipes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 074/212] gfs2: Check for empty queue in run_queue Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 075/212] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 076/212] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 077/212] iommu/amd/pgtbl_v2: Improve error handling Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 078/212] cpufreq: tegra186: Share policy per cluster Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 079/212] crypto: lzo - Fix compression buffer overrun Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 080/212] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 081/212] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 082/212] ALSA: seq: Improve data consistency at polling Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 083/212] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 084/212] rtc: ds1307: stop disabling alarms on probe Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 085/212] ieee802154: ca8210: Use proper setters and getters for bitwise types Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 086/212] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 087/212] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 088/212] dm cache: prevent BUG_ON by blocking retries on failed device resumes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 089/212] orangefs: Do not truncate file size Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 090/212] net: phylink: use pl->link_interface in phylink_expects_phy() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 091/212] remoteproc: qcom_wcnss: Handle platforms with only single power domain Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 092/212] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 093/212] media: cx231xx: set device_caps for 417 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 094/212] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 095/212] net: ethernet: ti: cpsw_new: populate netdev of_node Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 096/212] net: pktgen: fix mpls maximum labels list parsing Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 097/212] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 098/212] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 099/212] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 100/212] drm/rockchip: vop2: Add uv swap for cluster window Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 101/212] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 102/212] clk: imx8mp: inform CCF of maximum frequency of clocks Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 103/212] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 104/212] hwmon: (gpio-fan) Add missing mutex locks Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 105/212] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 106/212] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 107/212] fpga: altera-cvp: Increase credit timeout Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 108/212] soc: apple: rtkit: Use high prio work queue Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 109/212] soc: apple: rtkit: Implement OSLog buffers properly Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 110/212] PCI: brcmstb: Expand inbound window size up to 64GB Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 111/212] PCI: brcmstb: Add a softdep to MIP MSI-X driver Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 112/212] nvme: map uring_cmd data even if address is 0 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 113/212] firmware: arm_ffa: Set dma_mask for ffa devices Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 114/212] net/mlx5: Avoid report two health errors on same syndrome Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 115/212] selftests/net: have `gro.sh -t` return a correct exit code Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 116/212] drm/amdkfd: KFD release_work possible circular locking Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 117/212] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 118/212] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 119/212] net: xgene-v2: remove incorrect ACPI_PTR annotation Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 120/212] bonding: report duplicate MAC address in all situations Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 121/212] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 122/212] x86/build: Fix broken copy command in genimage.sh when making isoimage Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 123/212] drm/amd/display: handle max_downscale_src_width fail check Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 124/212] drm/amd/display: fix dcn4x init failed Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 125/212] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 126/212] cpuidle: menu: Avoid discarding useful information Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 127/212] media: adv7180: Disable test-pattern control on adv7180 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 128/212] libbpf: Fix out-of-bound read Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 129/212] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 130/212] x86/kaslr: Reduce KASLR entropy on most x86 systems Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 131/212] MIPS: Use arch specific syscall name match function Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 132/212] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 133/212] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 134/212] clocksource: mips-gic-timer: Enable counter when CPUs start Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 135/212] scsi: mpt3sas: Send a diag reset if target reset fails Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 136/212] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 137/212] wifi: rtw88: Fix rtw_init_ht_cap() " Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 138/212] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 139/212] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 140/212] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 141/212] EDAC/ie31200: work around false positive build warning Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 142/212] bpf: Prevent unsafe access to the sock fields in the BPF timestamping callback Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 143/212] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 144/212] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 145/212] RDMA/core: Fix best page size finding when it can cross SG entries Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 146/212] pmdomain: imx: gpcv2: use proper helper for property detection Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 147/212] can: c_can: Use of_property_present() to test existence of DT property Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 148/212] eth: mlx4: don't try to complete XDP frames in netpoll Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 149/212] PCI: Fix old_size lower bound in calculate_iosize() too Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 150/212] ACPI: HED: Always initialize before evged Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 151/212] vxlan: Join / leave MC group after remote changes Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 152/212] media: test-drivers: vivid: don't call schedule in loop Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 153/212] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 154/212] net/mlx5: Apply rate-limiting to high temperature warning Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 155/212] ASoC: ops: Enforce platform maximum on initial value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 156/212] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 157/212] ASoC: tas2764: Mark SW_RESET as volatile Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 158/212] ASoC: tas2764: Power up/down amp on mute ops Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 159/212] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 160/212] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 161/212] smack: recognize ipv4 CIPSO w/o categories Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 162/212] kunit: tool: Use qboot on QEMU x86_64 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 163/212] kernfs: Don't re-lock kernfs_root::kernfs_rwsem in kernfs_fop_readdir() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 164/212] kernfs: Acquire kernfs_rwsem in kernfs_get_parent_dentry() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 165/212] libbpf: fix LDX/STX/ST CO-RE relocation size adjustment logic Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 166/212] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 167/212] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Sasha Levin
2025-05-05 23:05 ` Sasha Levin [this message]
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 169/212] phy: core: don't require set_mode() callback for phy_get_mode() to work Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 170/212] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 171/212] drm/amd/display: Initial psr_version with correct setting Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 172/212] drm/amdgpu: enlarge the VBIOS binary size limit Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 173/212] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 174/212] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 175/212] net/mlx5e: set the tx_queue_len for pfifo_fast Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 176/212] net/mlx5e: reduce rep rxq depth to 256 for ECPF Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 177/212] wifi: mac80211: don't unconditionally call drv_mgd_complete_tx() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 178/212] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 179/212] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 180/212] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 181/212] r8152: add vendor/device ID pair for Dell Alienware AW1022z Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 182/212] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 183/212] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 184/212] exit: change the release_task() paths to call flush_sigqueue() lockless Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 185/212] hwmon: (xgene-hwmon) use appropriate type for the latency value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 186/212] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 187/212] vxlan: Annotate FDB data races Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 188/212] r8169: don't scan PHY addresses > 0 Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 189/212] net-sysfs: prevent uncleared queues from being re-added Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 190/212] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 191/212] rcu: handle unstable rdp in rcu_read_unlock_strict() Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 192/212] rcu: fix header guard for rcu_all_qs() Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 193/212] perf: Avoid the read if the count is already updated Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 194/212] ice: count combined queues using Rx/Tx count Sasha Levin
2025-05-06 9:26 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 195/212] net/mana: fix warning in the writer of client oob Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 196/212] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 197/212] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 198/212] scsi: st: Restore some drive settings after reset Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 199/212] HID: usbkbd: Fix the bit shift number for LED_KANA Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 200/212] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 201/212] drm/ast: Find VBIOS mode from regular display size Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 202/212] bpftool: Fix readlink usage in get_fd_type Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 203/212] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 204/212] wifi: rtl8xxxu: retry firmware download on error Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 205/212] wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 206/212] wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 207/212] spi: zynqmp-gqspi: Always acknowledge interrupts Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 208/212] regulator: ad5398: Add device tree support Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 209/212] wifi: ath9k: return by of_get_mac_address Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 210/212] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 211/212] drm/panel-edp: Add Starry 116KHD024006 Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 212/212] drm: Add valid clones check Sasha Levin
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=20250505230624.2692522-168-sashal@kernel.org \
--to=sashal@kernel.org \
--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-serial@vger.kernel.org \
--cc=namcao@linutronix.de \
--cc=p.zabel@pengutronix.de \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=stable@vger.kernel.org \
--cc=wsa+renesas@sang-engineering.com \
--cc=zack.rusin@broadcom.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