Hi Rob, Mark
These are v4 of OF graph base simple-card patch-set. v3 patch had ALSA SoC side prepare patches as [1/xx] - [5/xx], but these are already accepted by Mark, thus, this v4 doesn't include these. Mainly, v4 solved non-OF case compile error which was reported by kbuild.
1) - 5) : OF graph new feature 6) - 12) : OF graph base simple-card (depends on above 2 patch-set)
Kuninori Morimoto (12): 1) of_graph: add of_graph_get_remote_endpoint() 2) of_graph: add of_graph_get_port_parent() 3) of_graph: add of_graph_get_top_port() 4) of_graph: add for_each_of_port() / for_each_of_endpoint_in_port() 5) of_graph: add of_graph_get_port/endpoint_count() 6) ASoC: simple-card-utils: add asoc_simple_card_parse_graph_dai() 7) ASoC: simple-card-utils: add asoc_simple_card_try_to_probe_graph_card() 8) ASoC: simple-card-utils: adjust for graph on asoc_simple_card_parse_card_name 9) ASoC: add simple-graph-card document 10) ASoC: add simple-graph-card support 11) ASoC: add simple-graph-scu-card document 12) ASoC: add simple-graph-scu-card support
.../bindings/sound/simple-graph-card.txt | 65 +++ .../bindings/sound/simple-graph-scu-card.txt | 65 +++ drivers/of/base.c | 160 ++++++- include/linux/of_graph.h | 59 +++ include/sound/simple_card_utils.h | 19 + sound/soc/generic/Kconfig | 15 + sound/soc/generic/Makefile | 4 + sound/soc/generic/simple-card-utils.c | 98 ++++- sound/soc/generic/simple-card.c | 2 +- sound/soc/generic/simple-graph-card.c | 462 +++++++++++++++++++++ sound/soc/generic/simple-graph-scu-card.c | 417 +++++++++++++++++++ sound/soc/generic/simple-scu-card.c | 2 +- 12 files changed, 1355 insertions(+), 13 deletions(-) create mode 100644 Documentation/devicetree/bindings/sound/simple-graph-card.txt create mode 100644 Documentation/devicetree/bindings/sound/simple-graph-scu-card.txt create mode 100644 sound/soc/generic/simple-graph-card.c create mode 100644 sound/soc/generic/simple-graph-scu-card.c