sound: Fixes for audioinjector-octo under 4.19
authorPhil Elwell <phil@raspberrypi.org>
Thu, 21 Mar 2019 11:19:46 +0000 (11:19 +0000)
committerpopcornmix <popcornmix@gmail.com>
Mon, 13 May 2019 23:08:28 +0000 (00:08 +0100)
1. Move the DT alias declaration to the I2C shim in the cases
where the shim is enabled. This works around a problem caused by a
4.19 commit [1] that generates DT/OF uevents for I2C drivers.

2. Fix the diagnostics in an error path of the soundcard driver to
correctly identify the reason for the failure to load.

3. Move the declaration of the clock node in the overlay outside
the I2C node to avoid warnings.

4. Sort the overlay nodes so that dependencies are only to earlier
fragments, in an attempt to get runtime dtoverlay application to
work (it still doesn't...)

See: https://github.com/Audio-Injector/Octo/issues/14
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
[1] af503716ac14 ("i2c: core: report OF style module alias for devices registered via OF")

arch/arm/boot/dts/overlays/audioinjector-addons-overlay.dts
sound/soc/bcm/audioinjector-octo-soundcard.c
sound/soc/codecs/cs42xx8-i2c.c
sound/soc/codecs/cs42xx8.c

index cedbf5e..6d192af 100644 (file)
        };
 
        fragment@1 {
+               target-path = "/";
+               __overlay__ {
+                       cs42448_mclk: codec-mclk {
+                               compatible = "fixed-clock";
+                               #clock-cells = <0>;
+                               clock-frequency = <49152000>;
+                       };
+               };
+       };
+
+       fragment@2 {
                target = <&i2c1>;
                __overlay__ {
                        #address-cells = <1>;
                                clock-names = "mclk";
                                status = "okay";
                        };
-
-                       cs42448_mclk: codec-mclk {
-                               compatible = "fixed-clock";
-                               #clock-cells = <0>;
-                               clock-frequency = <49152000>;
-                       };
                };
        };
 
-       fragment@2 {
+       fragment@3 {
                target = <&sound>;
                snd: __overlay__ {
                        compatible = "ai,audioinjector-octo-soundcard";
index 6029a12..550ef25 100644 (file)
@@ -297,7 +297,7 @@ static int audioinjector_octo_probe(struct platform_device *pdev)
                        dai->codec_name = NULL;
                        dai->codec_of_node = codec_node;
                } else
-                       if (!dai->cpu_of_node) {
+                       if (!i2s_node) {
                                dev_err(&pdev->dev,
                                "i2s-controller missing or invalid in DT\n");
                                return -EINVAL;
index 0214e3a..a4586ea 100644 (file)
@@ -45,6 +45,13 @@ static struct i2c_device_id cs42xx8_i2c_id[] = {
 };
 MODULE_DEVICE_TABLE(i2c, cs42xx8_i2c_id);
 
+const struct of_device_id cs42xx8_of_match[] = {
+       { .compatible = "cirrus,cs42448", .data = &cs42448_data, },
+       { .compatible = "cirrus,cs42888", .data = &cs42888_data, },
+       { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(of, cs42xx8_of_match);
+
 static struct i2c_driver cs42xx8_i2c_driver = {
        .driver = {
                .name = "cs42xx8",
index ebb9e0c..42677c6 100644 (file)
@@ -436,8 +436,10 @@ const struct of_device_id cs42xx8_of_match[] = {
        { .compatible = "cirrus,cs42888", .data = &cs42888_data, },
        { /* sentinel */ }
 };
+#if !IS_ENABLED(CONFIG_SND_SOC_CS42XX8_I2C)
 MODULE_DEVICE_TABLE(of, cs42xx8_of_match);
 EXPORT_SYMBOL_GPL(cs42xx8_of_match);
+#endif
 
 int cs42xx8_probe(struct device *dev, struct regmap *regmap)
 {