* [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
@ 2014-08-18 8:56 Xiubo Li
2014-08-18 9:51 ` Mark Rutland
[not found] ` <1408352215-12014-1-git-send-email-Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
0 siblings, 2 replies; 6+ messages in thread
From: Xiubo Li @ 2014-08-18 8:56 UTC (permalink / raw)
To: broonie-DgEjT+Ai2ygdnm+yROfE0A, lgirdwood-Re5JQEeQqe8AvxtiuMwx3w,
tiwai-l3A5Bk7waGM, perex-/Fr2/VpizcU,
varkabhadram-Re5JQEeQqe8AvxtiuMwx3w,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, Xiubo Li
Signed-off-by: Xiubo Li <Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
---
This is depended on the following regmap framework patches, which have
just been merged into linux-next tree:
https://lkml.org/lkml/2014/7/15/6
https://lkml.org/lkml/2014/7/15/5
https://lkml.org/lkml/2014/7/15/7
Documentation/devicetree/bindings/sound/fsl,asrc.txt | 10 +++++++---
sound/soc/fsl/fsl_asrc.c | 6 +-----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Documentation/devicetree/bindings/sound/fsl,asrc.txt b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
index b93362a..791f372 100644
--- a/Documentation/devicetree/bindings/sound/fsl,asrc.txt
+++ b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
@@ -26,9 +26,12 @@ Required properties:
"ipg" Peripheral clock to driver module.
"asrck_<0-f>" Clock sources for input and output clock.
- - big-endian : If this property is absent, the little endian mode
- will be in use as default. Otherwise, the big endian
- mode will be in use for all the device registers.
+ - big-endian : If this property is absent, the native endian mode
+ (same with CPU) will be in use as default. Otherwise,
+ the big endian mode will be in use for all the device
+ registers.
+ See Documentation/devicetree/bindings/regmap/regmap.txt
+ for more detail.
- fsl,asrc-rate : Defines a mutual sample rate used by DPCM Back Ends.
@@ -56,5 +59,6 @@ asrc: asrc@02034000 {
"txa", "txb", "txc";
fsl,asrc-rate = <48000>;
fsl,asrc-width = <16>;
+ big-endian;
status = "okay";
};
diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
index 8221104..3b14531 100644
--- a/sound/soc/fsl/fsl_asrc.c
+++ b/sound/soc/fsl/fsl_asrc.c
@@ -684,7 +684,7 @@ static bool fsl_asrc_writeable_reg(struct device *dev, unsigned int reg)
}
}
-static struct regmap_config fsl_asrc_regmap_config = {
+static const struct regmap_config fsl_asrc_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
@@ -802,10 +802,6 @@ static int fsl_asrc_probe(struct platform_device *pdev)
asrc_priv->paddr = res->start;
- /* Register regmap and let it prepare core clock */
- if (of_property_read_bool(np, "big-endian"))
- fsl_asrc_regmap_config.val_format_endian = REGMAP_ENDIAN_BIG;
-
asrc_priv->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "mem", regs,
&fsl_asrc_regmap_config);
if (IS_ERR(asrc_priv->regmap)) {
--
1.8.5
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
2014-08-18 8:56 [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method Xiubo Li
@ 2014-08-18 9:51 ` Mark Rutland
2014-08-18 12:03 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
[not found] ` <1408352215-12014-1-git-send-email-Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
1 sibling, 1 reply; 6+ messages in thread
From: Mark Rutland @ 2014-08-18 9:51 UTC (permalink / raw)
To: Xiubo Li
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
tiwai@suse.de, varkabhadram@gmail.com, lgirdwood@gmail.com,
broonie@kernel.org
On Mon, Aug 18, 2014 at 09:56:55AM +0100, Xiubo Li wrote:
> Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
> ---
>
> This is depended on the following regmap framework patches, which have
> just been merged into linux-next tree:
>
> https://lkml.org/lkml/2014/7/15/6
> https://lkml.org/lkml/2014/7/15/5
> https://lkml.org/lkml/2014/7/15/7
>
>
>
>
>
>
> Documentation/devicetree/bindings/sound/fsl,asrc.txt | 10 +++++++---
> sound/soc/fsl/fsl_asrc.c | 6 +-----
> 2 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/sound/fsl,asrc.txt b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> index b93362a..791f372 100644
> --- a/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> +++ b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> @@ -26,9 +26,12 @@ Required properties:
> "ipg" Peripheral clock to driver module.
> "asrck_<0-f>" Clock sources for input and output clock.
>
> - - big-endian : If this property is absent, the little endian mode
> - will be in use as default. Otherwise, the big endian
> - mode will be in use for all the device registers.
> + - big-endian : If this property is absent, the native endian mode
> + (same with CPU) will be in use as default. Otherwise,
> + the big endian mode will be in use for all the device
> + registers.
> + See Documentation/devicetree/bindings/regmap/regmap.txt
> + for more detail.
Why does this have to change the semantics of the DT binding?
Mark.
>
> - fsl,asrc-rate : Defines a mutual sample rate used by DPCM Back Ends.
>
> @@ -56,5 +59,6 @@ asrc: asrc@02034000 {
> "txa", "txb", "txc";
> fsl,asrc-rate = <48000>;
> fsl,asrc-width = <16>;
> + big-endian;
> status = "okay";
> };
> diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
> index 8221104..3b14531 100644
> --- a/sound/soc/fsl/fsl_asrc.c
> +++ b/sound/soc/fsl/fsl_asrc.c
> @@ -684,7 +684,7 @@ static bool fsl_asrc_writeable_reg(struct device *dev, unsigned int reg)
> }
> }
>
> -static struct regmap_config fsl_asrc_regmap_config = {
> +static const struct regmap_config fsl_asrc_regmap_config = {
> .reg_bits = 32,
> .reg_stride = 4,
> .val_bits = 32,
> @@ -802,10 +802,6 @@ static int fsl_asrc_probe(struct platform_device *pdev)
>
> asrc_priv->paddr = res->start;
>
> - /* Register regmap and let it prepare core clock */
> - if (of_property_read_bool(np, "big-endian"))
> - fsl_asrc_regmap_config.val_format_endian = REGMAP_ENDIAN_BIG;
> -
> asrc_priv->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "mem", regs,
> &fsl_asrc_regmap_config);
> if (IS_ERR(asrc_priv->regmap)) {
> --
> 1.8.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
2014-08-18 9:51 ` Mark Rutland
@ 2014-08-18 12:03 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
2014-08-18 12:21 ` Mark Rutland
0 siblings, 1 reply; 6+ messages in thread
From: Li.Xiubo-KZfg59tc24xl57MIdRCFDg @ 2014-08-18 12:03 UTC (permalink / raw)
To: Mark Rutland
Cc: broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
tiwai-l3A5Bk7waGM@public.gmane.org,
perex-/Fr2/VpizcU@public.gmane.org,
varkabhadram-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Documentation/devicetree/bindings/sound/fsl,asrc.txt | 10 +++++++---
>> sound/soc/fsl/fsl_asrc.c | 6 +-----
>> 2 files changed, 8 insertions(+), 8 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/sound/fsl,asrc.txt b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
>> index b93362a..791f372 100644
>> --- a/Documentation/devicetree/bindings/sound/fsl,asrc.txt
>> +++ b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
>> @@ -26,9 +26,12 @@ Required properties:
>> "ipg" Peripheral clock to driver module.
>> "asrck_<0-f>" Clock sources for input and output clock.
>>
>> - - big-endian : If this property is absent, the little endian mode
>>- will be in use as default. Otherwise, the big endian
>> - mode will be in use for all the device registers.
>> + - big-endian : If this property is absent, the native endian mode
>> + (same with CPU) will be in use as default. Otherwise,
>> + the big endian mode will be in use for all the device
>> + registers.
>> + See Documentation/devicetree/bindings/regmap/regmap.txt
>> + for more detail.
>
>Why does this have to change the semantics of the DT binding?
>
I'm thinking that maybe in the late fulture, this device will be applied to some PowerPC SoC,
from the regmap framework code, we can see that the 'big-endian' property could be ignored.
So,in this case, if it is absent, the default endian mode should be used as defualt or native as
the regmap framework said.
Thanks,
BRs
Xiubo
>
>
>Mark.
>
>>
>> - fsl,asrc-rate : Defines a mutual sample rate used by DPCM Back Ends.
>>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
2014-08-18 12:03 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
@ 2014-08-18 12:21 ` Mark Rutland
2014-08-18 12:43 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
0 siblings, 1 reply; 6+ messages in thread
From: Mark Rutland @ 2014-08-18 12:21 UTC (permalink / raw)
To: Li.Xiubo@freescale.com
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
tiwai@suse.de, varkabhadram@gmail.com, lgirdwood@gmail.com,
broonie@kernel.org
On Mon, Aug 18, 2014 at 01:03:14PM +0100, Li.Xiubo@freescale.com wrote:
> >> Documentation/devicetree/bindings/sound/fsl,asrc.txt | 10 +++++++---
> >> sound/soc/fsl/fsl_asrc.c | 6 +-----
> >> 2 files changed, 8 insertions(+), 8 deletions(-)
> >>
> >> diff --git a/Documentation/devicetree/bindings/sound/fsl,asrc.txt b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> >> index b93362a..791f372 100644
> >> --- a/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> >> +++ b/Documentation/devicetree/bindings/sound/fsl,asrc.txt
> >> @@ -26,9 +26,12 @@ Required properties:
> >> "ipg" Peripheral clock to driver module.
> >> "asrck_<0-f>" Clock sources for input and output clock.
> >>
> >> - - big-endian : If this property is absent, the little endian mode
> >>- will be in use as default. Otherwise, the big endian
> >> - mode will be in use for all the device registers.
> >> + - big-endian : If this property is absent, the native endian mode
> >> + (same with CPU) will be in use as default. Otherwise,
> >> + the big endian mode will be in use for all the device
> >> + registers.
> >> + See Documentation/devicetree/bindings/regmap/regmap.txt
> >> + for more detail.
> >
> >Why does this have to change the semantics of the DT binding?
> >
>
> I'm thinking that maybe in the late fulture, this device will be
> applied to some PowerPC SoC, from the regmap framework code, we can
> see that the 'big-endian' property could be ignored.
>
> So,in this case, if it is absent, the default endian mode should be
> used as defualt or native as the regmap framework said.
As I have mentioned in the past w.r.t. endianness bindings, there is no
such thing as a "default endianness" or "native endianness".
PowerPC and ARM can be Bi-endian, configured by the kernel.
The hardware's registers have a fixed endianness regardless of this
runtime configuration.
So describe that fixed property, as that does not vary with kernel
configuration (and is therefore a property of the HW rather than the
combination of HW + kernel).
Thanks,
Mark.
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
2014-08-18 12:21 ` Mark Rutland
@ 2014-08-18 12:43 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
0 siblings, 0 replies; 6+ messages in thread
From: Li.Xiubo-KZfg59tc24xl57MIdRCFDg @ 2014-08-18 12:43 UTC (permalink / raw)
To: Mark Rutland
Cc: broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
tiwai-l3A5Bk7waGM@public.gmane.org,
perex-/Fr2/VpizcU@public.gmane.org,
varkabhadram-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
[...]
>> >Why does this have to change the semantics of the DT binding?
>> >
>>
>> I'm thinking that maybe in the late fulture, this device will be
>> applied to some PowerPC SoC, from the regmap framework code, we can
>> see that the 'big-endian' property could be ignored.
>>
>> So,in this case, if it is absent, the default endian mode should be
>> used as defualt or native as the regmap framework said.
>
> As I have mentioned in the past w.r.t. endianness bindings, there is no
> such thing as a "default endianness" or "native endianness".
>
> PowerPC and ARM can be Bi-endian, configured by the kernel.
>
> The hardware's registers have a fixed endianness regardless of this
> runtime configuration.
>
> So describe that fixed property, as that does not vary with kernel
> configuration (and is therefore a property of the HW rather than the
> combination of HW + kernel).
>
Yeah, okay.
I'll remove the document binding's modification.
> Thanks,
> Mark.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <1408352215-12014-1-git-send-email-Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>]
* Re: [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method.
[not found] ` <1408352215-12014-1-git-send-email-Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
@ 2014-08-18 15:24 ` Varka Bhadram
0 siblings, 0 replies; 6+ messages in thread
From: Varka Bhadram @ 2014-08-18 15:24 UTC (permalink / raw)
To: Xiubo Li, broonie-DgEjT+Ai2ygdnm+yROfE0A,
lgirdwood-Re5JQEeQqe8AvxtiuMwx3w, tiwai-l3A5Bk7waGM,
perex-/Fr2/VpizcU, alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA
On Monday 18 August 2014 02:26 PM, Xiubo Li wrote:
> Signed-off-by: Xiubo Li <Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
> ---
>
> This is depended on the following regmap framework patches, which have
> just been merged into linux-next tree:
>
> https://lkml.org/lkml/2014/7/15/6
> https://lkml.org/lkml/2014/7/15/5
> https://lkml.org/lkml/2014/7/15/7
>
>
>
>
>
>
> Documentation/devicetree/bindings/sound/fsl,asrc.txt | 10 +++++++---
> sound/soc/fsl/fsl_asrc.c | 6 +-----
> 2 files changed, 8 insertions(+), 8 deletions(-)
>
Reviewed-by: Varka Bhadram <varkabhadram-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
--
Regards,
Varka Bhadram.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-08-18 15:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-18 8:56 [PATCH] ASoC: fsl-asrc: Convert to use regmap framework's endianness method Xiubo Li
2014-08-18 9:51 ` Mark Rutland
2014-08-18 12:03 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
2014-08-18 12:21 ` Mark Rutland
2014-08-18 12:43 ` Li.Xiubo-KZfg59tc24xl57MIdRCFDg
[not found] ` <1408352215-12014-1-git-send-email-Li.Xiubo-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2014-08-18 15:24 ` Varka Bhadram
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).