mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 22:54:17 -04:00
Add the serdev (UART) transport for the Realtek PSE MCU core. It registers the MCU as a serdev device and provides the send/recv callbacks the core uses to exchange the 12-byte frames, receiving asynchronously via the serdev receive_buf callback. The baud rate defaults to 19200 and can be overridden per board with the "current-speed" property. Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com> Reviewed-by: Kory Maincent <kory.maincent@bootlin.com> Link: https://patch.msgid.link/20260813222036.873930-5-jelonek.jonas@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
13 lines
458 B
Makefile
13 lines
458 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Makefile for Linux PSE drivers
|
|
|
|
obj-$(CONFIG_PSE_CONTROLLER) += pse_core.o
|
|
|
|
obj-$(CONFIG_PSE_REALTEK_MCU) += realtek-pse-mcu-core.o
|
|
obj-$(CONFIG_PSE_REALTEK_MCU_I2C) += realtek-pse-mcu-i2c.o
|
|
obj-$(CONFIG_PSE_REALTEK_MCU_UART) += realtek-pse-mcu-uart.o
|
|
obj-$(CONFIG_PSE_REGULATOR) += pse_regulator.o
|
|
obj-$(CONFIG_PSE_PD692X0) += pd692x0.o
|
|
obj-$(CONFIG_PSE_SI3474) += si3474.o
|
|
obj-$(CONFIG_PSE_TPS23881) += tps23881.o
|