linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1
@ 2019-09-02 16:00 Olivier Moysan
  2019-09-02 16:00 ` [PATCH 1/4] ARM: multi_v7_defconfig: enable stm32 sai support Olivier Moysan
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Olivier Moysan @ 2019-09-02 16:00 UTC (permalink / raw)
  To: alexandre.torgue, olof, horms+renesas, arnd, krzk,
	yannick.fertre, tony, m.szyprowski, fabrice.gasnier,
	enric.balletbo, linux-arm-kernel, linux-kernel, linux-stm32
  Cc: olivier.moysan

This patchset adds audio support for stm32mp157a-dk1 board.

Olivier Moysan (4):
  ARM: multi_v7_defconfig: enable stm32 sai support
  ARM: multi_v7_defconfig: enable stm32 i2s support
  ARM: multi_v7_defconfig: enable cs42l51 codec support
  ARM: multi_v7_defconfig: enable audio graph card support

 arch/arm/configs/multi_v7_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.7.4


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

* [PATCH 1/4] ARM: multi_v7_defconfig: enable stm32 sai support
  2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
@ 2019-09-02 16:00 ` Olivier Moysan
  2019-09-02 16:00 ` [PATCH 2/4] ARM: multi_v7_defconfig: enable stm32 i2s support Olivier Moysan
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Olivier Moysan @ 2019-09-02 16:00 UTC (permalink / raw)
  To: alexandre.torgue, olof, horms+renesas, arnd, krzk,
	yannick.fertre, tony, m.szyprowski, fabrice.gasnier,
	enric.balletbo, linux-arm-kernel, linux-kernel, linux-stm32
  Cc: olivier.moysan

Enable support for SAI on STM32MP1.

Signed-off-by: Olivier Moysan <olivier.moysan@st.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index c5d37dfafe98..929d13842171 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -699,6 +699,7 @@ CONFIG_SND_SOC_ODROID=m
 CONFIG_SND_SOC_SH4_FSI=m
 CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_STI=m
+CONFIG_SND_SOC_STM32_SAI=m
 CONFIG_SND_SUN4I_CODEC=m
 CONFIG_SND_SOC_TEGRA=m
 CONFIG_SND_SOC_TEGRA20_I2S=m
-- 
2.7.4


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

* [PATCH 2/4] ARM: multi_v7_defconfig: enable stm32 i2s support
  2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
  2019-09-02 16:00 ` [PATCH 1/4] ARM: multi_v7_defconfig: enable stm32 sai support Olivier Moysan
@ 2019-09-02 16:00 ` Olivier Moysan
  2019-09-02 16:00 ` [PATCH 3/4] ARM: multi_v7_defconfig: enable cs42l51 codec support Olivier Moysan
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Olivier Moysan @ 2019-09-02 16:00 UTC (permalink / raw)
  To: alexandre.torgue, olof, horms+renesas, arnd, krzk,
	yannick.fertre, tony, m.szyprowski, fabrice.gasnier,
	enric.balletbo, linux-arm-kernel, linux-kernel, linux-stm32
  Cc: olivier.moysan

Enable support for I2S on STM32MP1.

Signed-off-by: Olivier Moysan <olivier.moysan@st.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 929d13842171..02265e195e50 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -700,6 +700,7 @@ CONFIG_SND_SOC_SH4_FSI=m
 CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_STI=m
 CONFIG_SND_SOC_STM32_SAI=m
+CONFIG_SND_SOC_STM32_I2S=m
 CONFIG_SND_SUN4I_CODEC=m
 CONFIG_SND_SOC_TEGRA=m
 CONFIG_SND_SOC_TEGRA20_I2S=m
-- 
2.7.4


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

* [PATCH 3/4] ARM: multi_v7_defconfig: enable cs42l51 codec support
  2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
  2019-09-02 16:00 ` [PATCH 1/4] ARM: multi_v7_defconfig: enable stm32 sai support Olivier Moysan
  2019-09-02 16:00 ` [PATCH 2/4] ARM: multi_v7_defconfig: enable stm32 i2s support Olivier Moysan
@ 2019-09-02 16:00 ` Olivier Moysan
  2019-09-02 16:00 ` [PATCH 4/4] ARM: multi_v7_defconfig: enable audio graph card support Olivier Moysan
  2019-09-02 16:42 ` [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Arnd Bergmann
  4 siblings, 0 replies; 7+ messages in thread
From: Olivier Moysan @ 2019-09-02 16:00 UTC (permalink / raw)
  To: alexandre.torgue, olof, horms+renesas, arnd, krzk,
	yannick.fertre, tony, m.szyprowski, fabrice.gasnier,
	enric.balletbo, linux-arm-kernel, linux-kernel, linux-stm32
  Cc: olivier.moysan

Enable Cirrus CS42L51 audio codec for stm32mp157a-dk1 board.

Signed-off-by: Olivier Moysan <olivier.moysan@st.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 02265e195e50..03a4d93df8c4 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -714,6 +714,7 @@ CONFIG_SND_SOC_TEGRA_ALC5632=m
 CONFIG_SND_SOC_TEGRA_MAX98090=m
 CONFIG_SND_SOC_AK4642=m
 CONFIG_SND_SOC_CPCAP=m
+CONFIG_SND_SOC_CS42L51_I2C=m
 CONFIG_SND_SOC_SGTL5000=m
 CONFIG_SND_SOC_SPDIF=m
 CONFIG_SND_SOC_STI_SAS=m
-- 
2.7.4


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

* [PATCH 4/4] ARM: multi_v7_defconfig: enable audio graph card support
  2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
                   ` (2 preceding siblings ...)
  2019-09-02 16:00 ` [PATCH 3/4] ARM: multi_v7_defconfig: enable cs42l51 codec support Olivier Moysan
@ 2019-09-02 16:00 ` Olivier Moysan
  2019-09-02 16:42 ` [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Arnd Bergmann
  4 siblings, 0 replies; 7+ messages in thread
From: Olivier Moysan @ 2019-09-02 16:00 UTC (permalink / raw)
  To: alexandre.torgue, olof, horms+renesas, arnd, krzk,
	yannick.fertre, tony, m.szyprowski, fabrice.gasnier,
	enric.balletbo, linux-arm-kernel, linux-kernel, linux-stm32
  Cc: olivier.moysan

Enable audio graph card support for stm32mp157a-dk1 board.

Signed-off-by: Olivier Moysan <olivier.moysan@st.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 03a4d93df8c4..c7104a1c1687 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -719,6 +719,7 @@ CONFIG_SND_SOC_SGTL5000=m
 CONFIG_SND_SOC_SPDIF=m
 CONFIG_SND_SOC_STI_SAS=m
 CONFIG_SND_SOC_WM8978=m
+CONFIG_SND_AUDIO_GRAPH_CARD=m
 CONFIG_USB=y
 CONFIG_USB_OTG=y
 CONFIG_USB_XHCI_HCD=y
-- 
2.7.4


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

* Re: [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1
  2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
                   ` (3 preceding siblings ...)
  2019-09-02 16:00 ` [PATCH 4/4] ARM: multi_v7_defconfig: enable audio graph card support Olivier Moysan
@ 2019-09-02 16:42 ` Arnd Bergmann
  2019-10-03  9:47   ` Alexandre Torgue
  4 siblings, 1 reply; 7+ messages in thread
From: Arnd Bergmann @ 2019-09-02 16:42 UTC (permalink / raw)
  To: Olivier Moysan
  Cc: Alexandre Torgue, Olof Johansson, Simon Horman,
	Krzysztof Kozlowski, Yannick Fertre, Tony Lindgren,
	Marek Szyprowski, Fabrice Gasnier, Enric Balletbo i Serra,
	Linux ARM, linux-kernel, linux-stm32

On Mon, Sep 2, 2019 at 6:01 PM Olivier Moysan <olivier.moysan@st.com> wrote:
>
> This patchset adds audio support for stm32mp157a-dk1 board.
>
> Olivier Moysan (4):
>   ARM: multi_v7_defconfig: enable stm32 sai support
>   ARM: multi_v7_defconfig: enable stm32 i2s support
>   ARM: multi_v7_defconfig: enable cs42l51 codec support
>   ARM: multi_v7_defconfig: enable audio graph card support

The changes are ok, and I expect Alexandre will pick them up and forward
to the soc tree.

However, I would prefer these to just be a single patch, as there is little
use in splitting the intended change up into one line per patch.

       Arnd

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

* Re: [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1
  2019-09-02 16:42 ` [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Arnd Bergmann
@ 2019-10-03  9:47   ` Alexandre Torgue
  0 siblings, 0 replies; 7+ messages in thread
From: Alexandre Torgue @ 2019-10-03  9:47 UTC (permalink / raw)
  To: Olivier Moysan
  Cc: Arnd Bergmann, Olof Johansson, Simon Horman, Krzysztof Kozlowski,
	Yannick Fertre, Tony Lindgren, Marek Szyprowski, Fabrice Gasnier,
	Enric Balletbo i Serra, Linux ARM, linux-kernel, linux-stm32

Hi Olivier,

On 9/2/19 6:42 PM, Arnd Bergmann wrote:
> On Mon, Sep 2, 2019 at 6:01 PM Olivier Moysan <olivier.moysan@st.com> wrote:
>>
>> This patchset adds audio support for stm32mp157a-dk1 board.
>>
>> Olivier Moysan (4):
>>    ARM: multi_v7_defconfig: enable stm32 sai support
>>    ARM: multi_v7_defconfig: enable stm32 i2s support
>>    ARM: multi_v7_defconfig: enable cs42l51 codec support
>>    ARM: multi_v7_defconfig: enable audio graph card support
>  > The changes are ok, and I expect Alexandre will pick them up and forward
> to the soc tree.
>

Those changes have been applied on stm32-next (squashed in only one commit).

Thanks
Alex



> However, I would prefer these to just be a single patch, as there is little
> use in splitting the intended change up into one line per patch.
> 
>         Arnd
> 




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

end of thread, other threads:[~2019-10-03  9:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-02 16:00 [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Olivier Moysan
2019-09-02 16:00 ` [PATCH 1/4] ARM: multi_v7_defconfig: enable stm32 sai support Olivier Moysan
2019-09-02 16:00 ` [PATCH 2/4] ARM: multi_v7_defconfig: enable stm32 i2s support Olivier Moysan
2019-09-02 16:00 ` [PATCH 3/4] ARM: multi_v7_defconfig: enable cs42l51 codec support Olivier Moysan
2019-09-02 16:00 ` [PATCH 4/4] ARM: multi_v7_defconfig: enable audio graph card support Olivier Moysan
2019-09-02 16:42 ` [PATCH 0/4] ARM: multi_v7_defconfig: add audio support for stm32mp157a-dk1 Arnd Bergmann
2019-10-03  9:47   ` Alexandre Torgue

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).