OSDN Git Service

ASoC: SOF: IPC client infrastructure
authorMark Brown <broonie@kernel.org>
Thu, 10 Feb 2022 18:16:07 +0000 (18:16 +0000)
committerMark Brown <broonie@kernel.org>
Thu, 10 Feb 2022 18:16:07 +0000 (18:16 +0000)
commit54f5bae0b75843c0ee6a3948e6b81698bfe69800
tree83abd00a372999313cc7d56cf0a30bee18e6da79
parenta61faea1a02f735237d0889e731b592f006de50c
parent3dc0d709177828a22dfc9d0072e3ac937ef90d06
ASoC: SOF: IPC client infrastructure

Merge series from Peter Ujfalusi <peter.ujfalusi@linux.intel.com>:

The Linux SOF implementation is historically monolithic in a sense that all
features accessible in the firmware can be used via the snd_sof_dev struct in
one way or another.

Support for features can not be added or removed runtime and with the current
way of things it is hard if not impossible to implement support for dynamic
feature support when based on the firmware manifest we can easily enable/access
independent modules with the SOF.

In order to be able to support such modularity this series introduces a small
framework within SOF for client support using the Auxiliary bus.

Client drivers can be removed runtime and later re-loaded if needed without
affecting the core's behaviour, but it is the core's and the platform's duty
to create the Auxiliary devices usable in the platform and via the firmware.

There is still a need for SOF manifest update to convey information about
features to really make the full dynamic client device creation.

The series will introduce the core SOF client support and converts the generic
ipc flood test, ipc message injector and the probes (Intel HDA only) to a client
driver.