* [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575
@ 2025-12-31 2:35 Oder Chiou
2025-12-31 2:35 ` [PATCH v11 1/4] spi: export of_find_spi_controller_by_node() Oder Chiou
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Oder Chiou @ 2025-12-31 2:35 UTC (permalink / raw)
To: cezary.rojewski, broonie, lgirdwood, robh, krzk+dt, conor+dt
Cc: linux-spi, perex, linux-sound, devicetree, alsa-devel, flove,
shumingf, jack.yu, derek.fang, Oder Chiou
Hi all,
This patch series adds support for the Realtek ALC5575 audio codec.
Changes in v11:
- Patch 1/4:
- minor fixes
- Patch 2/4:
- change of_find_spi_controller_by_node() gating to CONFIG_OF
- Patch 3/4:
- nothing
- Patch 4/4:
- achieve reverse-christmas-tree notation
- remove formal version check
- revise check whether the firmware boots from SPI or not
- minor fixes
Changes in v10:
- Patch 1/3:
- export of_find_spi_controller_by_node()
- Patch 2/3:
- remove realtek,rt5575-use-spi
- add spi-parent for firmware-loading
- Patch 3/3:
- use of_find_spi_controller_by_node() to get the SPI controller and add
the spi device for firmware-loading
- Link to v10: https://lore.kernel.org/all/20251216071853.3929135-1-oder_chiou@realtek.com/
Changes in v9:
- Patch 1/2:
- modify the comment
- change the compatible name to "realtek,rt5575-use-spi"
- Patch 2/2:
- remove the standalone rt5575_spi_driver module and integrate its
functionality into the I2C driver
- move the SPI firmware-loading function to rt5575-spi.c
- use the match data to distinguish between w/wo flash
- minor fixes
- Link to v9: https://lore.kernel.org/all/20251211110130.2925541-1-oder_chiou@realtek.com/
Changes in v8:
- Patch 1/2:
- remove the variable rt5575_spi_ready
- use the multiple compatible names to distinguish between w/wo flash
- Patch 2/2:
- add compatible enum "realtek,rt5575-with-spi"
- Link to v8: https://lore.kernel.org/all/20251201105926.1714341-1-oder_chiou@realtek.com/
Changes in v7:
- Patch 1/2:
- add a caption for the tristates
- remove the redundant enum of the SPI command
- add the error log in the request firmware failure
- change the function name rt5575_spi_fw_loaded to rt5575_fw_load_by_spi
- minor fixes
- Patch 2/2:
- modify commit message
- Link to v7: https://lore.kernel.org/all/20251121084112.743518-1-oder_chiou@realtek.com/
Changes in v6:
- Patch 1/2:
- modify commit message
- add select SND_SOC_RT5575 to config SND_SOC_RT5575_SPI in the Kconfig
- revise the boiler plate in the head of the file
- sort the include files
- use a structure to transfer the spi data
- use the poll() related function instead the for-loop
- revise the UUID to the private ID
- minor fixes
- Patch 2/2:
- modify description
- Link to v6: https://lore.kernel.org/all/20251031073245.3629060-1-oder_chiou@realtek.com/
Changes in v2 to v5:
- Patch 1/2:
- move the firmware to the subdirectory
- remove the empty functions
- remove the cache_type in the regmap_config
- add the error log in the run firmware failure
- Patch 2/2:
- nothing
- Link to v5: https://lore.kernel.org/all/20251015103404.3075684-1-oder_chiou@realtek.com/
Oder Chiou (4):
spi: export of_find_spi_controller_by_node()
spi: change of_find_spi_controller_by_node() gating to CONFIG_OF
ASoC: dt-bindings: realtek,rt5575: add support for ALC5575
ASoC: rt5575: Add the codec driver for the ALC5575
.../bindings/sound/realtek,rt5575.yaml | 61 +++
drivers/spi/spi.c | 23 +-
include/linux/spi/spi.h | 9 +
sound/soc/codecs/Kconfig | 10 +
sound/soc/codecs/Makefile | 3 +
sound/soc/codecs/rt5575-spi.c | 118 ++++++
sound/soc/codecs/rt5575-spi.h | 27 ++
sound/soc/codecs/rt5575.c | 352 ++++++++++++++++++
sound/soc/codecs/rt5575.h | 58 +++
9 files changed, 651 insertions(+), 10 deletions(-)
create mode 100644 Documentation/devicetree/bindings/sound/realtek,rt5575.yaml
create mode 100644 sound/soc/codecs/rt5575-spi.c
create mode 100644 sound/soc/codecs/rt5575-spi.h
create mode 100644 sound/soc/codecs/rt5575.c
create mode 100644 sound/soc/codecs/rt5575.h
--
2.52.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v11 1/4] spi: export of_find_spi_controller_by_node()
2025-12-31 2:35 [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Oder Chiou
@ 2025-12-31 2:35 ` Oder Chiou
2025-12-31 2:36 ` [PATCH v11 2/4] spi: change of_find_spi_controller_by_node() gating to CONFIG_OF Oder Chiou
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Oder Chiou @ 2025-12-31 2:35 UTC (permalink / raw)
To: cezary.rojewski, broonie, lgirdwood, robh, krzk+dt, conor+dt
Cc: linux-spi, devicetree, flove, shumingf, jack.yu, derek.fang,
Oder Chiou
Some devices are primarily described on another bus (e.g. I2C) but also
have an additional SPI connection that serves as a transport for
firmware loading. Export of_find_spi_controller_by_node() so drivers can
obtain the SPI controller referenced by a DT phandle.
Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
---
drivers/spi/spi.c | 3 ++-
include/linux/spi/spi.h | 9 +++++++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index e25df9990f82..ecb5281b04a2 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -4771,7 +4771,7 @@ static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
}
/* The spi controllers are not using spi_bus, so we find it with another way */
-static struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
+struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
{
struct device *dev;
@@ -4784,6 +4784,7 @@ static struct spi_controller *of_find_spi_controller_by_node(struct device_node
/* Reference got in class_find_device */
return container_of(dev, struct spi_controller, dev);
}
+EXPORT_SYMBOL_GPL(of_find_spi_controller_by_node);
static int of_spi_notify(struct notifier_block *nb, unsigned long action,
void *arg)
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h
index cb2c2df31089..e6fdaf02386c 100644
--- a/include/linux/spi/spi.h
+++ b/include/linux/spi/spi.h
@@ -882,6 +882,15 @@ extern int devm_spi_register_controller(struct device *dev,
struct spi_controller *ctlr);
extern void spi_unregister_controller(struct spi_controller *ctlr);
+#if IS_ENABLED(CONFIG_OF_DYNAMIC)
+extern struct spi_controller *of_find_spi_controller_by_node(struct device_node *node);
+#else
+static inline struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
+{
+ return NULL;
+}
+#endif
+
#if IS_ENABLED(CONFIG_ACPI) && IS_ENABLED(CONFIG_SPI_MASTER)
extern struct spi_controller *acpi_spi_find_controller_by_adev(struct acpi_device *adev);
extern struct spi_device *acpi_spi_device_alloc(struct spi_controller *ctlr,
--
2.52.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v11 2/4] spi: change of_find_spi_controller_by_node() gating to CONFIG_OF
2025-12-31 2:35 [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Oder Chiou
2025-12-31 2:35 ` [PATCH v11 1/4] spi: export of_find_spi_controller_by_node() Oder Chiou
@ 2025-12-31 2:36 ` Oder Chiou
2025-12-31 2:37 ` [PATCH v11 3/4] ASoC: dt-bindings: realtek,rt5575: add support for ALC5575 Oder Chiou
2026-01-06 19:42 ` [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Mark Brown
3 siblings, 0 replies; 7+ messages in thread
From: Oder Chiou @ 2025-12-31 2:36 UTC (permalink / raw)
To: cezary.rojewski, broonie, lgirdwood, robh, krzk+dt, conor+dt
Cc: linux-spi, devicetree, flove, shumingf, jack.yu, derek.fang,
Oder Chiou
Currently, the helper of_find_spi_controller_by_node() is gated under
CONFIG_OF_DYNAMIC. This prevents drivers from using it in all CONFIG_OF
configurations.
This patch moves the gating to CONFIG_OF, keeping the inline fallback
returning NULL when Device Tree support is disabled.
Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
---
drivers/spi/spi.c | 20 +++++++++++---------
include/linux/spi/spi.h | 2 +-
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index ecb5281b04a2..2badacc7a91c 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -4761,15 +4761,7 @@ EXPORT_SYMBOL_GPL(spi_write_then_read);
/*-------------------------------------------------------------------------*/
-#if IS_ENABLED(CONFIG_OF_DYNAMIC)
-/* Must call put_device() when done with returned spi_device device */
-static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
-{
- struct device *dev = bus_find_device_by_of_node(&spi_bus_type, node);
-
- return dev ? to_spi_device(dev) : NULL;
-}
-
+#if IS_ENABLED(CONFIG_OF)
/* The spi controllers are not using spi_bus, so we find it with another way */
struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
{
@@ -4785,6 +4777,16 @@ struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
return container_of(dev, struct spi_controller, dev);
}
EXPORT_SYMBOL_GPL(of_find_spi_controller_by_node);
+#endif
+
+#if IS_ENABLED(CONFIG_OF_DYNAMIC)
+/* Must call put_device() when done with returned spi_device device */
+static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
+{
+ struct device *dev = bus_find_device_by_of_node(&spi_bus_type, node);
+
+ return dev ? to_spi_device(dev) : NULL;
+}
static int of_spi_notify(struct notifier_block *nb, unsigned long action,
void *arg)
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h
index e6fdaf02386c..8bc616b00343 100644
--- a/include/linux/spi/spi.h
+++ b/include/linux/spi/spi.h
@@ -882,7 +882,7 @@ extern int devm_spi_register_controller(struct device *dev,
struct spi_controller *ctlr);
extern void spi_unregister_controller(struct spi_controller *ctlr);
-#if IS_ENABLED(CONFIG_OF_DYNAMIC)
+#if IS_ENABLED(CONFIG_OF)
extern struct spi_controller *of_find_spi_controller_by_node(struct device_node *node);
#else
static inline struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
--
2.52.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v11 3/4] ASoC: dt-bindings: realtek,rt5575: add support for ALC5575
2025-12-31 2:35 [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Oder Chiou
2025-12-31 2:35 ` [PATCH v11 1/4] spi: export of_find_spi_controller_by_node() Oder Chiou
2025-12-31 2:36 ` [PATCH v11 2/4] spi: change of_find_spi_controller_by_node() gating to CONFIG_OF Oder Chiou
@ 2025-12-31 2:37 ` Oder Chiou
2026-01-06 19:42 ` [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Mark Brown
3 siblings, 0 replies; 7+ messages in thread
From: Oder Chiou @ 2025-12-31 2:37 UTC (permalink / raw)
To: cezary.rojewski, broonie, lgirdwood, robh, krzk+dt, conor+dt
Cc: perex, linux-sound, devicetree, alsa-devel, flove, shumingf,
jack.yu, derek.fang, Oder Chiou
Audio codec with I2S, I2C and SPI.
Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
---
.../bindings/sound/realtek,rt5575.yaml | 61 +++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 Documentation/devicetree/bindings/sound/realtek,rt5575.yaml
diff --git a/Documentation/devicetree/bindings/sound/realtek,rt5575.yaml b/Documentation/devicetree/bindings/sound/realtek,rt5575.yaml
new file mode 100644
index 000000000000..981ebc39b195
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/realtek,rt5575.yaml
@@ -0,0 +1,61 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/sound/realtek,rt5575.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ALC5575 audio CODEC
+
+maintainers:
+ - Oder Chiou <oder_chiou@realtek.com>
+
+description:
+ The device supports both I2C and SPI. I2C is mandatory, while SPI is
+ optional depending on the hardware configuration. SPI is used for
+ firmware loading if present.
+
+allOf:
+ - $ref: dai-common.yaml#
+
+properties:
+ compatible:
+ const: realtek,rt5575
+
+ reg:
+ maxItems: 1
+
+ spi-parent:
+ description:
+ Optional phandle reference to the SPI controller used for firmware
+ loading. The argument specifies the chip select.
+ $ref: /schemas/types.yaml#/definitions/phandle-array
+
+required:
+ - compatible
+ - reg
+
+unevaluatedProperties: false
+
+examples:
+ # I2C-only node
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ codec@57 {
+ compatible = "realtek,rt5575";
+ reg = <0x57>;
+ };
+ };
+
+ # I2C + optional SPI node
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ codec@57 {
+ compatible = "realtek,rt5575";
+ reg = <0x57>;
+ spi-parent = <&spi0 0>; /* chip-select 0 */
+ };
+ };
--
2.52.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575
2025-12-31 2:35 [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Oder Chiou
` (2 preceding siblings ...)
2025-12-31 2:37 ` [PATCH v11 3/4] ASoC: dt-bindings: realtek,rt5575: add support for ALC5575 Oder Chiou
@ 2026-01-06 19:42 ` Mark Brown
2026-01-07 9:04 ` Cezary Rojewski
3 siblings, 1 reply; 7+ messages in thread
From: Mark Brown @ 2026-01-06 19:42 UTC (permalink / raw)
To: cezary.rojewski, lgirdwood, robh, krzk+dt, conor+dt, Oder Chiou
Cc: linux-spi, perex, linux-sound, devicetree, alsa-devel, flove,
shumingf, jack.yu, derek.fang
On Wed, 31 Dec 2025 10:35:01 +0800, Oder Chiou wrote:
> This patch series adds support for the Realtek ALC5575 audio codec.
>
> Changes in v11:
> - Patch 1/4:
> - minor fixes
> - Patch 2/4:
> - change of_find_spi_controller_by_node() gating to CONFIG_OF
> - Patch 3/4:
> - nothing
> - Patch 4/4:
> - achieve reverse-christmas-tree notation
> - remove formal version check
> - revise check whether the firmware boots from SPI or not
> - minor fixes
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/4] spi: export of_find_spi_controller_by_node()
commit: ee69f55eb183efb43da14cdad72910b1b1cc2932
[2/4] spi: change of_find_spi_controller_by_node() gating to CONFIG_OF
commit: 037f8d896688bf3384eb6bf34e24e8fbc9f6e02d
[3/4] ASoC: dt-bindings: realtek,rt5575: add support for ALC5575
commit: af4c0b951b18a8af73fa8541fabf1bf2484bba9b
[4/4] ASoC: rt5575: Add the codec driver for the ALC5575
commit: c7ac7499ac5bb50ab3e00add121822c5c904bc91
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575
2026-01-06 19:42 ` [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Mark Brown
@ 2026-01-07 9:04 ` Cezary Rojewski
0 siblings, 0 replies; 7+ messages in thread
From: Cezary Rojewski @ 2026-01-07 9:04 UTC (permalink / raw)
To: Mark Brown
Cc: linux-spi, perex, linux-sound, devicetree, alsa-devel, flove,
shumingf, jack.yu, derek.fang, lgirdwood, robh, krzk+dt, conor+dt,
Oder Chiou
On 2026-01-06 8:42 PM, Mark Brown wrote:
> On Wed, 31 Dec 2025 10:35:01 +0800, Oder Chiou wrote:
>> This patch series adds support for the Realtek ALC5575 audio codec.
>>
>> Changes in v11:
>> - Patch 1/4:
>> - minor fixes
>> - Patch 2/4:
>> - change of_find_spi_controller_by_node() gating to CONFIG_OF
>> - Patch 3/4:
>> - nothing
>> - Patch 4/4:
>> - achieve reverse-christmas-tree notation
>> - remove formal version check
>> - revise check whether the firmware boots from SPI or not
>> - minor fixes
>>
>> [...]
>
> Applied to
>
> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
...
> [4/4] ASoC: rt5575: Add the codec driver for the ALC5575
> commit: c7ac7499ac5bb50ab3e00add121822c5c904bc91
Due to Christmas break I wasn't able to continue the review during that
time, back at work today :) To be honest, I believe there are still
some comments (not related to nitpicks) left uncovered. However, the
code in v11 (more like v12) is still a large improvement when compared
to v1. For that reason, if it is still feasible you can add my tag:
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575
@ 2025-12-26 8:38 Oder Chiou
0 siblings, 0 replies; 7+ messages in thread
From: Oder Chiou @ 2025-12-26 8:38 UTC (permalink / raw)
To: cezary.rojewski, broonie, lgirdwood, robh, krzk+dt, conor+dt
Cc: linux-spi, perex, linux-sound, devicetree, alsa-devel, flove,
shumingf, jack.yu, derek.fang, Oder Chiou
Hi all,
This patch series adds support for the Realtek ALC5575 audio codec.
Changes in v11:
- Patch 1/4:
- minor fixes
- Patch 2/4:
- change of_find_spi_controller_by_node() gating to CONFIG_OF
- Patch 3/4:
- nothing
- Patch 4/4:
- achieve reverse-christmas-tree notation
- remove formal version check
- revise check whether the firmware boots from SPI or not
- minor fixes
Changes in v10:
- Patch 1/3:
- export of_find_spi_controller_by_node()
- Patch 2/3:
- remove realtek,rt5575-use-spi
- add spi-parent for firmware-loading
- Patch 3/3:
- use of_find_spi_controller_by_node() to get the SPI controller and add
the spi device for firmware-loading
- Link to v10: https://lore.kernel.org/all/20251216071853.3929135-1-oder_chiou@realtek.com/
Changes in v9:
- Patch 1/2:
- modify the comment
- change the compatible name to "realtek,rt5575-use-spi"
- Patch 2/2:
- remove the standalone rt5575_spi_driver module and integrate its
functionality into the I2C driver
- move the SPI firmware-loading function to rt5575-spi.c
- use the match data to distinguish between w/wo flash
- minor fixes
- Link to v9: https://lore.kernel.org/all/20251211110130.2925541-1-oder_chiou@realtek.com/
Changes in v8:
- Patch 1/2:
- remove the variable rt5575_spi_ready
- use the multiple compatible names to distinguish between w/wo flash
- Patch 2/2:
- add compatible enum "realtek,rt5575-with-spi"
- Link to v8: https://lore.kernel.org/all/20251201105926.1714341-1-oder_chiou@realtek.com/
Changes in v7:
- Patch 1/2:
- add a caption for the tristates
- remove the redundant enum of the SPI command
- add the error log in the request firmware failure
- change the function name rt5575_spi_fw_loaded to rt5575_fw_load_by_spi
- minor fixes
- Patch 2/2:
- modify commit message
- Link to v7: https://lore.kernel.org/all/20251121084112.743518-1-oder_chiou@realtek.com/
Changes in v6:
- Patch 1/2:
- modify commit message
- add select SND_SOC_RT5575 to config SND_SOC_RT5575_SPI in the Kconfig
- revise the boiler plate in the head of the file
- sort the include files
- use a structure to transfer the spi data
- use the poll() related function instead the for-loop
- revise the UUID to the private ID
- minor fixes
- Patch 2/2:
- modify description
- Link to v6: https://lore.kernel.org/all/20251031073245.3629060-1-oder_chiou@realtek.com/
Changes in v2 to v5:
- Patch 1/2:
- move the firmware to the subdirectory
- remove the empty functions
- remove the cache_type in the regmap_config
- add the error log in the run firmware failure
- Patch 2/2:
- nothing
- Link to v5: https://lore.kernel.org/all/20251015103404.3075684-1-oder_chiou@realtek.com/
Oder Chiou (4):
spi: export of_find_spi_controller_by_node()
spi: change of_find_spi_controller_by_node() gating to CONFIG_OF
ASoC: dt-bindings: realtek,rt5575: add support for ALC5575
ASoC: rt5575: Add the codec driver for the ALC5575
.../bindings/sound/realtek,rt5575.yaml | 61 +++
drivers/spi/spi.c | 23 +-
include/linux/spi/spi.h | 9 +
sound/soc/codecs/Kconfig | 10 +
sound/soc/codecs/Makefile | 3 +
sound/soc/codecs/rt5575-spi.c | 118 ++++++
sound/soc/codecs/rt5575-spi.h | 27 ++
sound/soc/codecs/rt5575.c | 352 ++++++++++++++++++
sound/soc/codecs/rt5575.h | 58 +++
9 files changed, 651 insertions(+), 10 deletions(-)
create mode 100644 Documentation/devicetree/bindings/sound/realtek,rt5575.yaml
create mode 100644 sound/soc/codecs/rt5575-spi.c
create mode 100644 sound/soc/codecs/rt5575-spi.h
create mode 100644 sound/soc/codecs/rt5575.c
create mode 100644 sound/soc/codecs/rt5575.h
--
2.52.0
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-01-07 9:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-31 2:35 [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Oder Chiou
2025-12-31 2:35 ` [PATCH v11 1/4] spi: export of_find_spi_controller_by_node() Oder Chiou
2025-12-31 2:36 ` [PATCH v11 2/4] spi: change of_find_spi_controller_by_node() gating to CONFIG_OF Oder Chiou
2025-12-31 2:37 ` [PATCH v11 3/4] ASoC: dt-bindings: realtek,rt5575: add support for ALC5575 Oder Chiou
2026-01-06 19:42 ` [PATCH v11 0/4] ASoC: rt5575: Add the codec driver for the ALC5575 Mark Brown
2026-01-07 9:04 ` Cezary Rojewski
-- strict thread matches above, loose matches on Subject: below --
2025-12-26 8:38 Oder Chiou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox