All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
@ 2016-02-21 14:35 Fabio Estevam
  2016-02-21 19:13 ` Maciej S. Szmigiero
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Fabio Estevam @ 2016-02-21 14:35 UTC (permalink / raw)
  To: broonie; +Cc: nicoleotsuka, Fabio Estevam, mail, mika.penttila, alsa-devel

From: Fabio Estevam <fabio.estevam@nxp.com>

Commit 5c408fee2546 ("ASoC: fsl_ssi: remove explicit register defaults")
causes the driver to fail to probe:

fsl-ssi-dai 2028000.ssi: No cache defaults, reading back from HW
fsl-ssi-dai 2028000.ssi: Failed to init register map
fsl-ssi-dai: probe of 2028000.ssi failed with error -22

, so revert this commit.

Cc: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Reported-by: Mika Penttilä <mika.penttila@nextfour.com> 
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
Maciej,

As this currently breaks SSI on 4.5-rc we should better revert it for
this cycle.

We can then add it back to 4.7 when Mark's patch 3245d460a1eb55 
("regmap: cache: Fall back to register by register read for cache defaults")
will be available and then the driver will work fine with your patch.

 sound/soc/fsl/fsl_ssi.c | 42 ++++++++++++++++++++----------------------
 1 file changed, 20 insertions(+), 22 deletions(-)

diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index ed8de10..40dfd8a 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -112,6 +112,20 @@ struct fsl_ssi_rxtx_reg_val {
 	struct fsl_ssi_reg_val tx;
 };
 
+static const struct reg_default fsl_ssi_reg_defaults[] = {
+	{CCSR_SSI_SCR,     0x00000000},
+	{CCSR_SSI_SIER,    0x00003003},
+	{CCSR_SSI_STCR,    0x00000200},
+	{CCSR_SSI_SRCR,    0x00000200},
+	{CCSR_SSI_STCCR,   0x00040000},
+	{CCSR_SSI_SRCCR,   0x00040000},
+	{CCSR_SSI_SACNT,   0x00000000},
+	{CCSR_SSI_STMSK,   0x00000000},
+	{CCSR_SSI_SRMSK,   0x00000000},
+	{CCSR_SSI_SACCEN,  0x00000000},
+	{CCSR_SSI_SACCDIS, 0x00000000},
+};
+
 static bool fsl_ssi_readable_reg(struct device *dev, unsigned int reg)
 {
 	switch (reg) {
@@ -176,7 +190,8 @@ static const struct regmap_config fsl_ssi_regconfig = {
 	.val_bits = 32,
 	.reg_stride = 4,
 	.val_format_endian = REGMAP_ENDIAN_NATIVE,
-	.num_reg_defaults_raw = CCSR_SSI_SACCDIS / sizeof(uint32_t) + 1,
+	.reg_defaults = fsl_ssi_reg_defaults,
+	.num_reg_defaults = ARRAY_SIZE(fsl_ssi_reg_defaults),
 	.readable_reg = fsl_ssi_readable_reg,
 	.volatile_reg = fsl_ssi_volatile_reg,
 	.precious_reg = fsl_ssi_precious_reg,
@@ -186,7 +201,6 @@ static const struct regmap_config fsl_ssi_regconfig = {
 
 struct fsl_ssi_soc_data {
 	bool imx;
-	bool imx21regs; /* imx21-class SSI - no SACC{ST,EN,DIS} regs */
 	bool offline_config;
 	u32 sisr_write_mask;
 };
@@ -289,7 +303,6 @@ static struct fsl_ssi_soc_data fsl_ssi_mpc8610 = {
 
 static struct fsl_ssi_soc_data fsl_ssi_imx21 = {
 	.imx = true,
-	.imx21regs = true,
 	.offline_config = true,
 	.sisr_write_mask = 0,
 };
@@ -573,12 +586,8 @@ static void fsl_ssi_setup_ac97(struct fsl_ssi_private *ssi_private)
 	 */
 	regmap_write(regs, CCSR_SSI_SACNT,
 			CCSR_SSI_SACNT_AC97EN | CCSR_SSI_SACNT_FV);
-
-	/* no SACC{ST,EN,DIS} regs on imx21-class SSI */
-	if (!ssi_private->soc->imx21regs) {
-		regmap_write(regs, CCSR_SSI_SACCDIS, 0xff);
-		regmap_write(regs, CCSR_SSI_SACCEN, 0x300);
-	}
+	regmap_write(regs, CCSR_SSI_SACCDIS, 0xff);
+	regmap_write(regs, CCSR_SSI_SACCEN, 0x300);
 
 	/*
 	 * Enable SSI, Transmit and Receive. AC97 has to communicate with the
@@ -1388,7 +1397,6 @@ static int fsl_ssi_probe(struct platform_device *pdev)
 	struct resource *res;
 	void __iomem *iomem;
 	char name[64];
-	struct regmap_config regconfig = fsl_ssi_regconfig;
 
 	of_id = of_match_device(fsl_ssi_ids, &pdev->dev);
 	if (!of_id || !of_id->data)
@@ -1436,25 +1444,15 @@ static int fsl_ssi_probe(struct platform_device *pdev)
 		return PTR_ERR(iomem);
 	ssi_private->ssi_phys = res->start;
 
-	if (ssi_private->soc->imx21regs) {
-		/*
-		 * According to datasheet imx21-class SSI
-		 * don't have SACC{ST,EN,DIS} regs.
-		 */
-		regconfig.max_register = CCSR_SSI_SRMSK;
-		regconfig.num_reg_defaults_raw =
-			CCSR_SSI_SRMSK / sizeof(uint32_t) + 1;
-	}
-
 	ret = of_property_match_string(np, "clock-names", "ipg");
 	if (ret < 0) {
 		ssi_private->has_ipg_clk_name = false;
 		ssi_private->regs = devm_regmap_init_mmio(&pdev->dev, iomem,
-			&regconfig);
+			&fsl_ssi_regconfig);
 	} else {
 		ssi_private->has_ipg_clk_name = true;
 		ssi_private->regs = devm_regmap_init_mmio_clk(&pdev->dev,
-			"ipg", iomem, &regconfig);
+			"ipg", iomem, &fsl_ssi_regconfig);
 	}
 	if (IS_ERR(ssi_private->regs)) {
 		dev_err(&pdev->dev, "Failed to init register map\n");
-- 
1.9.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
  2016-02-21 14:35 [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults" Fabio Estevam
@ 2016-02-21 19:13 ` Maciej S. Szmigiero
  2016-02-21 21:41   ` Fabio Estevam
  2016-02-22  2:59 ` Mark Brown
  2016-02-22  3:14 ` Applied "ASoC: fsl_ssi: Go back to explicit register defaults" to the asoc tree Mark Brown
  2 siblings, 1 reply; 7+ messages in thread
From: Maciej S. Szmigiero @ 2016-02-21 19:13 UTC (permalink / raw)
  To: Fabio Estevam, broonie
  Cc: nicoleotsuka, Fabio Estevam, alsa-devel, mika.penttila

On 21.02.2016 15:35, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> Commit 5c408fee2546 ("ASoC: fsl_ssi: remove explicit register defaults")
> causes the driver to fail to probe:
> 
> fsl-ssi-dai 2028000.ssi: No cache defaults, reading back from HW
> fsl-ssi-dai 2028000.ssi: Failed to init register map
> fsl-ssi-dai: probe of 2028000.ssi failed with error -22
> 
> , so revert this commit.
> 
> Cc: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
> Reported-by: Mika Penttilä <mika.penttila@nextfour.com> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
> Maciej,
> 
> As this currently breaks SSI on 4.5-rc we should better revert it for
> this cycle.
> 
> We can then add it back to 4.7 when Mark's patch 3245d460a1eb55 
> ("regmap: cache: Fall back to register by register read for cache defaults")
> will be available and then the driver will work fine with your patch.

While I see no problem with delaying this patch to next kernel wouldn't
it be easier to simply merge the regmap change as a fix as you
had suggested previously?

Maciej

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
  2016-02-21 19:13 ` Maciej S. Szmigiero
@ 2016-02-21 21:41   ` Fabio Estevam
  0 siblings, 0 replies; 7+ messages in thread
From: Fabio Estevam @ 2016-02-21 21:41 UTC (permalink / raw)
  To: Maciej S. Szmigiero
  Cc: Nicolin Chen, Fabio Estevam, alsa-devel, Mark Brown, Mika Penttilä

Hi Maciej,

On Sun, Feb 21, 2016 at 4:13 PM, Maciej S. Szmigiero
<mail@maciej.szmigiero.name> wrote:
> On 21.02.2016 15:35, Fabio Estevam wrote:
>> From: Fabio Estevam <fabio.estevam@nxp.com>
>>
>> Commit 5c408fee2546 ("ASoC: fsl_ssi: remove explicit register defaults")
>> causes the driver to fail to probe:
>>
>> fsl-ssi-dai 2028000.ssi: No cache defaults, reading back from HW
>> fsl-ssi-dai 2028000.ssi: Failed to init register map
>> fsl-ssi-dai: probe of 2028000.ssi failed with error -22
>>
>> , so revert this commit.
>>
>> Cc: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
>> Reported-by: Mika Penttilä <mika.penttila@nextfour.com>
>> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
>> ---
>> Maciej,
>>
>> As this currently breaks SSI on 4.5-rc we should better revert it for
>> this cycle.
>>
>> We can then add it back to 4.7 when Mark's patch 3245d460a1eb55
>> ("regmap: cache: Fall back to register by register read for cache defaults")
>> will be available and then the driver will work fine with your patch.
>
> While I see no problem with delaying this patch to next kernel wouldn't
> it be easier to simply merge the regmap change as a fix as you
> had suggested previously?

That would work too, but as we are late in the 4.5-rc cycle we face
the risk of breaking some other drivers after applying 3245d460a1eb55
("regmap: cache: Fall back to register by register read for cache
defaults").

So either this revert or applying 3245d460a1eb55 would work, but the
revert is bit safer IMHO.
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
  2016-02-21 14:35 [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults" Fabio Estevam
  2016-02-21 19:13 ` Maciej S. Szmigiero
@ 2016-02-22  2:59 ` Mark Brown
  2016-03-07  0:11   ` Fabio Estevam
  2016-02-22  3:14 ` Applied "ASoC: fsl_ssi: Go back to explicit register defaults" to the asoc tree Mark Brown
  2 siblings, 1 reply; 7+ messages in thread
From: Mark Brown @ 2016-02-22  2:59 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: nicoleotsuka, Fabio Estevam, mail, mika.penttila, alsa-devel


[-- Attachment #1.1: Type: text/plain, Size: 853 bytes --]

On Sun, Feb 21, 2016 at 11:35:00AM -0300, Fabio Estevam wrote:

> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> Commit 5c408fee2546 ("ASoC: fsl_ssi: remove explicit register defaults")
> causes the driver to fail to probe:

Please use subject lines matching the style for the subsystem.  This
makes it easier for people to identify relevant patches.

> As this currently breaks SSI on 4.5-rc we should better revert it for
> this cycle.

> We can then add it back to 4.7 when Mark's patch 3245d460a1eb55 
> ("regmap: cache: Fall back to register by register read for cache defaults")
> will be available and then the driver will work fine with your patch.

There's no problem adding it back for v4.6 for that matter, the changes
will all have long enough to soak (and have already been soaking for a
little while).  I'll do that.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Applied "ASoC: fsl_ssi: Go back to explicit register defaults" to the asoc tree
  2016-02-21 14:35 [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults" Fabio Estevam
  2016-02-21 19:13 ` Maciej S. Szmigiero
  2016-02-22  2:59 ` Mark Brown
@ 2016-02-22  3:14 ` Mark Brown
  2 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-02-22  3:14 UTC (permalink / raw)
  To: Fabio Estevam, Mark Brown; +Cc: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 5253 bytes --]

The patch

   ASoC: fsl_ssi: Go back to explicit register defaults

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

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

>From 56e5fd8feb286ab71f4ca7674505b0d17967376d Mon Sep 17 00:00:00 2001
From: Fabio Estevam <fabio.estevam@nxp.com>
Date: Sun, 21 Feb 2016 11:35:00 -0300
Subject: [PATCH] ASoC: fsl_ssi: Go back to explicit register defaults
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Commit 5c408fee2546 ("ASoC: fsl_ssi: remove explicit register defaults")
causes the driver to fail to probe:

fsl-ssi-dai 2028000.ssi: No cache defaults, reading back from HW
fsl-ssi-dai 2028000.ssi: Failed to init register map
fsl-ssi-dai: probe of 2028000.ssi failed with error -22

, so revert this commit.

Reported-by: Mika Penttilä <mika.penttila@nextfour.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/fsl/fsl_ssi.c | 42 ++++++++++++++++++++----------------------
 1 file changed, 20 insertions(+), 22 deletions(-)

diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index ed8de10..40dfd8a 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -112,6 +112,20 @@ struct fsl_ssi_rxtx_reg_val {
 	struct fsl_ssi_reg_val tx;
 };
 
+static const struct reg_default fsl_ssi_reg_defaults[] = {
+	{CCSR_SSI_SCR,     0x00000000},
+	{CCSR_SSI_SIER,    0x00003003},
+	{CCSR_SSI_STCR,    0x00000200},
+	{CCSR_SSI_SRCR,    0x00000200},
+	{CCSR_SSI_STCCR,   0x00040000},
+	{CCSR_SSI_SRCCR,   0x00040000},
+	{CCSR_SSI_SACNT,   0x00000000},
+	{CCSR_SSI_STMSK,   0x00000000},
+	{CCSR_SSI_SRMSK,   0x00000000},
+	{CCSR_SSI_SACCEN,  0x00000000},
+	{CCSR_SSI_SACCDIS, 0x00000000},
+};
+
 static bool fsl_ssi_readable_reg(struct device *dev, unsigned int reg)
 {
 	switch (reg) {
@@ -176,7 +190,8 @@ static const struct regmap_config fsl_ssi_regconfig = {
 	.val_bits = 32,
 	.reg_stride = 4,
 	.val_format_endian = REGMAP_ENDIAN_NATIVE,
-	.num_reg_defaults_raw = CCSR_SSI_SACCDIS / sizeof(uint32_t) + 1,
+	.reg_defaults = fsl_ssi_reg_defaults,
+	.num_reg_defaults = ARRAY_SIZE(fsl_ssi_reg_defaults),
 	.readable_reg = fsl_ssi_readable_reg,
 	.volatile_reg = fsl_ssi_volatile_reg,
 	.precious_reg = fsl_ssi_precious_reg,
@@ -186,7 +201,6 @@ static const struct regmap_config fsl_ssi_regconfig = {
 
 struct fsl_ssi_soc_data {
 	bool imx;
-	bool imx21regs; /* imx21-class SSI - no SACC{ST,EN,DIS} regs */
 	bool offline_config;
 	u32 sisr_write_mask;
 };
@@ -289,7 +303,6 @@ static struct fsl_ssi_soc_data fsl_ssi_mpc8610 = {
 
 static struct fsl_ssi_soc_data fsl_ssi_imx21 = {
 	.imx = true,
-	.imx21regs = true,
 	.offline_config = true,
 	.sisr_write_mask = 0,
 };
@@ -573,12 +586,8 @@ static void fsl_ssi_setup_ac97(struct fsl_ssi_private *ssi_private)
 	 */
 	regmap_write(regs, CCSR_SSI_SACNT,
 			CCSR_SSI_SACNT_AC97EN | CCSR_SSI_SACNT_FV);
-
-	/* no SACC{ST,EN,DIS} regs on imx21-class SSI */
-	if (!ssi_private->soc->imx21regs) {
-		regmap_write(regs, CCSR_SSI_SACCDIS, 0xff);
-		regmap_write(regs, CCSR_SSI_SACCEN, 0x300);
-	}
+	regmap_write(regs, CCSR_SSI_SACCDIS, 0xff);
+	regmap_write(regs, CCSR_SSI_SACCEN, 0x300);
 
 	/*
 	 * Enable SSI, Transmit and Receive. AC97 has to communicate with the
@@ -1388,7 +1397,6 @@ static int fsl_ssi_probe(struct platform_device *pdev)
 	struct resource *res;
 	void __iomem *iomem;
 	char name[64];
-	struct regmap_config regconfig = fsl_ssi_regconfig;
 
 	of_id = of_match_device(fsl_ssi_ids, &pdev->dev);
 	if (!of_id || !of_id->data)
@@ -1436,25 +1444,15 @@ static int fsl_ssi_probe(struct platform_device *pdev)
 		return PTR_ERR(iomem);
 	ssi_private->ssi_phys = res->start;
 
-	if (ssi_private->soc->imx21regs) {
-		/*
-		 * According to datasheet imx21-class SSI
-		 * don't have SACC{ST,EN,DIS} regs.
-		 */
-		regconfig.max_register = CCSR_SSI_SRMSK;
-		regconfig.num_reg_defaults_raw =
-			CCSR_SSI_SRMSK / sizeof(uint32_t) + 1;
-	}
-
 	ret = of_property_match_string(np, "clock-names", "ipg");
 	if (ret < 0) {
 		ssi_private->has_ipg_clk_name = false;
 		ssi_private->regs = devm_regmap_init_mmio(&pdev->dev, iomem,
-			&regconfig);
+			&fsl_ssi_regconfig);
 	} else {
 		ssi_private->has_ipg_clk_name = true;
 		ssi_private->regs = devm_regmap_init_mmio_clk(&pdev->dev,
-			"ipg", iomem, &regconfig);
+			"ipg", iomem, &fsl_ssi_regconfig);
 	}
 	if (IS_ERR(ssi_private->regs)) {
 		dev_err(&pdev->dev, "Failed to init register map\n");
-- 
2.7.0


[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
  2016-02-22  2:59 ` Mark Brown
@ 2016-03-07  0:11   ` Fabio Estevam
  2016-03-07  2:20     ` Mark Brown
  0 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2016-03-07  0:11 UTC (permalink / raw)
  To: Mark Brown
  Cc: Nicolin Chen, Fabio Estevam, Maciej S. Szmigiero,
	Mika Penttilä,
	alsa-devel

Hi Mark,

On Sun, Feb 21, 2016 at 11:59 PM, Mark Brown <broonie@kernel.org> wrote:

> There's no problem adding it back for v4.6 for that matter, the changes
> will all have long enough to soak (and have already been soaking for a
> little while).  I'll do that.

I see you applied this one as 56e5fd8feb286ab7 ("ASoC: fsl_ssi: Go
back to explicit register defaults") into your fix/fsl-ssi branch, but
it is still not present in 4.5-rc7.

Any plans to make this one into 4.5 final?

Thanks

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults"
  2016-03-07  0:11   ` Fabio Estevam
@ 2016-03-07  2:20     ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2016-03-07  2:20 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Nicolin Chen, Fabio Estevam, Maciej S. Szmigiero,
	Mika Penttilä,
	alsa-devel


[-- Attachment #1.1: Type: text/plain, Size: 585 bytes --]

On Sun, Mar 06, 2016 at 09:11:56PM -0300, Fabio Estevam wrote:
> On Sun, Feb 21, 2016 at 11:59 PM, Mark Brown <broonie@kernel.org> wrote:

> > There's no problem adding it back for v4.6 for that matter, the changes
> > will all have long enough to soak (and have already been soaking for a
> > little while).  I'll do that.

> I see you applied this one as 56e5fd8feb286ab7 ("ASoC: fsl_ssi: Go
> back to explicit register defaults") into your fix/fsl-ssi branch, but
> it is still not present in 4.5-rc7.

> Any plans to make this one into 4.5 final?

It'll go next time I send fixes.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-03-07  2:25 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-21 14:35 [PATCH] Revert "ASoC: fsl_ssi: remove explicit register defaults" Fabio Estevam
2016-02-21 19:13 ` Maciej S. Szmigiero
2016-02-21 21:41   ` Fabio Estevam
2016-02-22  2:59 ` Mark Brown
2016-03-07  0:11   ` Fabio Estevam
2016-03-07  2:20     ` Mark Brown
2016-02-22  3:14 ` Applied "ASoC: fsl_ssi: Go back to explicit register defaults" to the asoc tree Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.