[PATCH] ASoC: Intel: sst: only use sst-firmware when DW DMAC is available

2015-10-21 Thread Jie Yang
xt+0xd7b38): undefined reference to `dw_dma_probe' sound/built-in.o: In function `sst_dma_free': (.text+0xd7c0a): undefined reference to `dw_dma_remove' Here we only compile sst-firmware when CONFIG_DW_DMAC_CORE is selected, to fix the linking error issue. Reported-by: Randy D

[PATCH v2] ASoC: Intel: sst: only use sst-firmware when DW DMAC is available

2015-10-21 Thread Jie Yang
xt+0xd7b38): undefined reference to `dw_dma_probe' sound/built-in.o: In function `sst_dma_free': (.text+0xd7c0a): undefined reference to `dw_dma_remove' Here we only compile sst-firmware when CONFIG_DW_DMAC_CORE is selected, to fix the linking error issue. Reported-by: Randy D

RE: [PATCH] soc: intel: sst-haswell-ipc: Remove some unused functions

2015-01-03 Thread Jie, Yang
om: Rickard Strandqvist [mailto:rickard_strandqv...@spectrumdigital.se] > Sent: Sunday, January 04, 2015 8:35 AM > To: Liam Girdwood; Mark Brown > Cc: Rickard Strandqvist; Jaroslav Kysela; Takashi Iwai; Jie, Yang; Jarkko > Nikula; > Dan Carpenter; Christian Engelmayer; Piskorski

RE: [PATCH v2 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-26 Thread Jie, Yang
> -Original Message- > From: Sudip Mukherjee [mailto:sudipm.mukher...@gmail.com] > Sent: Wednesday, May 27, 2015 12:50 PM > To: Jie, Yang > Cc: ti...@suse.de; broo...@kernel.org; alsa-de...@alsa-project.org; linux- > ker...@vger.kernel.org; Girdwood, Liam R; Zhang, Vi

RE: [PATCH v2 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-27 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Wednesday, May 27, 2015 2:19 PM > To: Jie, Yang > Cc: Sudip Mukherjee; broo...@kernel.org; alsa-de...@alsa-project.org; > linux-kernel@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subje

RE: [PATCH v2 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-27 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Wednesday, May 27, 2015 3:23 PM > To: Jie, Yang > Cc: Sudip Mukherjee; broo...@kernel.org; alsa-de...@alsa-project.org; > linux-kernel@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subje

RE: [PATCH v2 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-27 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Wednesday, May 27, 2015 3:46 PM > To: Jie, Yang > Cc: Sudip Mukherjee; broo...@kernel.org; alsa-de...@alsa-project.org; > linux-kernel@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subje

[PATCH v3 0/2] reducing memory footprint of ALSA

2015-05-27 Thread Jie Yang
. move the configure into sound/core/Kconfig; 3. Add missing Signed-off-by for PATCH 2/2. Changes in v2: 1. Prompt "Sound Proc FS Support" appears only when SND_REDUCED_MEMORY_FOOTPRINT is true. Jie Yang (2): ALSA: Kconfig: add config item SND_PROC_FS for expert ALSA: replace CONFIG_PR

[PATCH v3 2/2] ALSA: replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS

2015-05-27 Thread Jie Yang
We may disable proc fs only for sound part, to reduce ALSA memory footprint. So add CONFIG_SND_PROC_FS and replace the old CONFIG_PROC_FSs in alsa code. With sound proc fs disabled, we can save about 9KB memory size on X86_64 platform. Signed-off-by: Jie Yang --- include/sound/info.h

[PATCH v3 1/2] ALSA: Kconfig: add config item SND_PROC_FS for expert

2015-05-27 Thread Jie Yang
-off-by: Jie Yang --- sound/core/Kconfig | 9 + 1 file changed, 9 insertions(+) diff --git a/sound/core/Kconfig b/sound/core/Kconfig index 63cc2e9..4542554 100644 --- a/sound/core/Kconfig +++ b/sound/core/Kconfig @@ -225,4 +225,13 @@ config SND_DMA_SGBUF def_bool y depends on

RE: [PATCH v3 1/2] ALSA: Kconfig: add config item SND_PROC_FS for expert

2015-05-27 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Wednesday, May 27, 2015 5:56 PM > To: Jie, Yang > Cc: broo...@kernel.org; alsa-de...@alsa-project.org; linux- > ker...@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subject: Re: [PATCH v3 1/

[PATCH RESEND v3 0/2] reducing memory footprint of ALSA

2015-05-27 Thread Jie Yang
. move the configure into sound/core/Kconfig; 3. Add missing Signed-off-by for PATCH 2/2. Changes in v2: 1. Prompt "Sound Proc FS Support" appears only when SND_REDUCED_MEMORY_FOOTPRINT is true. Jie Yang (2): ALSA: Kconfig: add config item SND_PROC_FS for expert ALSA: replace CONFIG_PR

[PATCH RESEND v3 2/2] ALSA: replace CONFIG_PROC_FS with CONFIG_SND_PROC_FS

2015-05-27 Thread Jie Yang
We may disable proc fs only for sound part, to reduce ALSA memory footprint. So add CONFIG_SND_PROC_FS and replace the old CONFIG_PROC_FSs in alsa code. With sound proc fs disabled, we can save about 9KB memory size on X86_64 platform. Signed-off-by: Jie Yang --- include/sound/info.h

[PATCH RESEND v3 1/2] ALSA: Kconfig: add config item SND_PROC_FS for expert

2015-05-27 Thread Jie Yang
-off-by: Jie Yang --- sound/core/Kconfig | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sound/core/Kconfig b/sound/core/Kconfig index 63cc2e9..88e0bc4 100644 --- a/sound/core/Kconfig +++ b/sound/core/Kconfig @@ -176,9 +176,18 @@ config SND_SUPPORT_OLD_API

[PATCH] ACPI / LPSS: add lpss device for wpt

2014-07-31 Thread Jie Yang
Add lpss device "INT3438" for wpt, which also require clock before the dma engine who is built in ADSP probing. Otherwise, the probing may faild. Signed-off-by: Jie Yang --- drivers/acpi/acpi_lpss.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/acpi/acp

[PATCH v2] ACPI / LPSS: add lpss device for Wildcat Point PCH

2014-07-31 Thread Jie Yang
r Wildcat Point PCH, to provide clock for its ADSP DMA engine probing. Signed-off-by: Jie Yang --- drivers/acpi/acpi_lpss.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c index 9cb65b0..ce06149 100644 --- a/drivers/acpi/acpi_lpss.

RE: Problems loading firmware using built-in drivers with kernels that use initramfs.

2015-08-25 Thread Jie, Yang
> -Original Message- > From: Dmitry Torokhov [mailto:dmitry.torok...@gmail.com] > Sent: Wednesday, August 26, 2015 3:58 AM > To: Takashi Iwai > Cc: Luis R. Rodriguez; Girdwood, Liam R; Jie, Yang; > joonas.lahti...@linux.intel.com; Tom Gundersen; Ming Lei; Al Viro; Greg &g

RE: Problems loading firmware using built-in drivers with kernels that use initramfs.

2015-08-25 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Wednesday, August 26, 2015 1:33 PM > To: Jie, Yang > Cc: Dmitry Torokhov; Luis R. Rodriguez; Girdwood, Liam R; > joonas.lahti...@linux.intel.com; Tom Gundersen; Ming Lei; Al Viro; Greg > Kroah

RE: Problems loading firmware using built-in drivers with kernels that use initramfs.

2015-08-26 Thread Jie, Yang
> -Original Message- > From: Liam Girdwood [mailto:liam.r.girdw...@linux.intel.com] > Sent: Wednesday, August 26, 2015 4:07 PM > To: Jie, Yang > Cc: Takashi Iwai; Dmitry Torokhov; Luis R. Rodriguez; > joonas.lahti...@linux.intel.com; Tom Gundersen; Ming Lei; Al Viro; Gr

Do you know who maintains firmware upstreaming for linux now?

2014-11-28 Thread Jie, Yang
Hi, All, Could someone clarify who maintains firmware upstreaming to Linux at the moment? We are working on upstream a firmware binary and its license to git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git, We've sent the patch to linux-firmw...@kernel.org but got no repl

RE: Do you know who maintains firmware upstreaming for linux now?

2014-11-30 Thread Jie, Yang
> -Original Message- > From: Kyle McMartin [mailto:k...@infradead.org] > Sent: Monday, December 01, 2014 9:41 AM > To: Jie, Yang > Cc: linux-firmw...@kernel.org; linux-kernel@vger.kernel.org; > b...@decadent.org.uk; k...@infradead.org; Woodhouse, David; > k...@kernel.

[PATCH 0/2] reducing memory footprint of ALSA

2015-05-26 Thread Jie Yang
Kconfig, and disable ALSA proc FS once reducing memory footprint is selected, which can save about 9KB code size on x86_64 platform. Changes in v2: Prompt "Sound Proc FS Support" appears only when SND_REDUCED_MEMORY_FOOTPRINT is true. Jie Yang (2): ALSA: Kconfig: add config menu for redu

RE: [PATCH 1/2] ALSA: Kconfig: add config menu for reduced memory footprint

2015-05-26 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Tuesday, May 26, 2015 7:05 PM > To: Jie, Yang > Cc: broo...@kernel.org; alsa-de...@alsa-project.org; linux- > ker...@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subject: Re: [PATCH 1/

RE: [PATCH 1/2] ALSA: Kconfig: add config menu for reduced memory footprint

2015-05-26 Thread Jie, Yang
> -Original Message- > From: Takashi Iwai [mailto:ti...@suse.de] > Sent: Tuesday, May 26, 2015 8:39 PM > To: Jie, Yang > Cc: broo...@kernel.org; alsa-de...@alsa-project.org; linux- > ker...@vger.kernel.org; Girdwood, Liam R; Zhang, Vivian > Subject: Re: [PATCH 1/

[PATCH v2 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-26 Thread Jie Yang
Disable sound proc fs, when CONFIG_SND_NO_PROC_FS is selected, which can save about 9KB memory size for reducing memory footprint purpose. --- include/sound/info.h | 8 sound/core/Makefile| 2 +- sound/core/hwdep.c | 6 +++--- sound/core/init.

[PATCH v2 1/2] ALSA: Kconfig: add config menu for reduced memory footprint

2015-05-26 Thread Jie Yang
-off-by: Jie Yang --- sound/Kconfig | 16 1 file changed, 16 insertions(+) diff --git a/sound/Kconfig b/sound/Kconfig index 5a240e0..84c9e58 100644 --- a/sound/Kconfig +++ b/sound/Kconfig @@ -68,6 +68,22 @@ menuconfig SND if SND +menuconfig SND_REDUCED_MEMORY_FOOTPRINT

[PATCH 0/2] reducing memory footprint of ALSA

2015-05-26 Thread Jie Yang
Kconfig, and disable ALSA proc FS once reducing memory footprint is selected, which can save about 9KB code size on x86_64 platform. Comments are welcomed. ~Keyon Jie Yang (2): ALSA: Kconfig: add config menu for reduced memory footprint ALSA: set no sound proc fs for reduced memory footprint

[PATCH 1/2] ALSA: Kconfig: add config menu for reduced memory footprint

2015-05-26 Thread Jie Yang
-off-by: Jie Yang --- sound/Kconfig | 16 1 file changed, 16 insertions(+) diff --git a/sound/Kconfig b/sound/Kconfig index 5a240e0..6760dfa 100644 --- a/sound/Kconfig +++ b/sound/Kconfig @@ -68,6 +68,22 @@ menuconfig SND if SND +menuconfig SND_REDUCED_MEMORY_FOOTPRINT

[PATCH 2/2] ALSA: set no sound proc fs for reduced memory footprint

2015-05-26 Thread Jie Yang
Disable sound proc fs, when CONFIG_SND_NO_PROC_FS is selected, which can save about 9KB memory size for reducing memory footprint purpose. --- include/sound/info.h | 8 sound/core/Makefile| 2 +- sound/core/hwdep.c | 6 +++--- sound/core/init.

RE: [PATCH 2/6] MAINTAINERS: Update sound soc intel patterns

2015-05-05 Thread Jie, Yang
> -Original Message- > From: Joe Perches [mailto:j...@perches.com] > Sent: Wednesday, May 06, 2015 12:33 AM > To: Andrew Morton; linux-kernel@vger.kernel.org > Cc: Jie, Yang > Subject: [PATCH 2/6] MAINTAINERS: Update sound soc intel patterns > > commit 2106241a68

[PATCH] linux-firmware: update firmware for Intel Broadwell SST DSP

2015-02-05 Thread Jie Yang
Update firmware intel/IntcSST2.bin from Version 8.4.1.68 to 8.4.1.77 Fix for freeing capture stream just after resetting it. Signed-off-by: Jie Yang --- WHENCE | 1 + intel/IntcSST2.bin | Bin 260256 -> 260320 bytes 2 files changed, 1 insertion(+) diff --git a/WHENCE b/WHE

RE: question about sound/soc/intel/boards/mfld_machine.c

2016-11-20 Thread Jie, Yang
> -Original Message- > From: Julia Lawall [mailto:julia.law...@lip6.fr] > Sent: Sunday, November 20, 2016 1:34 AM > To: lgirdw...@gmail.com; broo...@kernel.org; pe...@perex.cz; > ti...@suse.com; Jie, Yang > Cc: alsa-de...@alsa-project.org; linux-kernel@vger.kernel.org &

RE: undefined reference to `snd_timer_interrupt'

2016-01-26 Thread Jie, Yang
>-Original Message- >From: Takashi Iwai [mailto:ti...@suse.de] >Sent: Wednesday, January 27, 2016 2:14 PM >To: Wu, Fengguang >Cc: Jie, Yang; kbuild-...@01.org; linux-kernel@vger.kernel.org >Subject: Re: undefined reference to `snd_timer_interrupt' > >On Tu