linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v2 0/8] ARM: s3c64xx: Let amba-pl08x driver handle DMA
       [not found]   ` <20131017102201.GK2443-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
@ 2013-10-20 21:04     ` Kukjin Kim
       [not found]       ` <52644563.1000203-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Kukjin Kim @ 2013-10-20 21:04 UTC (permalink / raw)
  To: Mark Brown
  Cc: Tomasz Figa, alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
	linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA, Mike Turquette,
	Arnd Bergmann, Padmavathi Venna, Sachin Kamat, Takashi Iwai,
	Liam Girdwood, linux-spi-u79uwXL29TY76Z2rM5mHXA, Sangbeom Kim,
	Kukjin Kim, Ben Dooks, Russell King, Jaroslav Kysela,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On 10/17/13 19:22, Mark Brown wrote:
> On Wed, Oct 16, 2013 at 09:10:51PM +0200, Tomasz Figa wrote:
>> Since the patches extending support of amba-pl08x DMA engine driver to
>> PL080S DMA engine (PL080 modified by Samsung) found in Samsung S3C64xx
>> SoCs got merged into Linux 3.12, it is a good time to migrate the
>> platform to use this driver and drop the legacy DMA code.
>
Tomasz, very nice :-) Thanks.

> Tested-by: Mark Brown<broonie-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>
Mark, thanks for your test.

Applied this whole series.

- Kukjin
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" 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] 5+ messages in thread

* Re: [PATCH v2 4/8] clk: samsung: s3c64xx: Add aliases for DMA clocks
       [not found] ` <1381950659-12703-5-git-send-email-tomasz.figa@gmail.com>
@ 2013-10-21 12:11   ` Mike Turquette
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Turquette @ 2013-10-21 12:11 UTC (permalink / raw)
  To: Tomasz Figa, linux-samsung-soc
  Cc: linux-arm-kernel, alsa-devel, linux-spi, Arnd Bergmann, Ben Dooks,
	Jaroslav Kysela, Kukjin Kim, Liam Girdwood, Mark Brown,
	Padmavathi Venna, Russell King, Sachin Kamat, Sangbeom Kim,
	Takashi Iwai, Tomasz Figa

Quoting Tomasz Figa (2013-10-16 12:10:55)
> This patch adds clkdev aliases for clocks used by PL08x DMA driver.
> 
> Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>

Acked-by: Mike Turquette <mturquette@linaro.org>

> ---
>  drivers/clk/samsung/clk-s3c64xx.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/clk/samsung/clk-s3c64xx.c b/drivers/clk/samsung/clk-s3c64xx.c
> index 7d2c842..06cf105 100644
> --- a/drivers/clk/samsung/clk-s3c64xx.c
> +++ b/drivers/clk/samsung/clk-s3c64xx.c
> @@ -332,7 +332,9 @@ static struct samsung_clock_alias s3c64xx_clock_aliases[] = {
>         ALIAS(HCLK_HSMMC0, "s3c-sdhci.0", "hsmmc"),
>         ALIAS(HCLK_HSMMC0, "s3c-sdhci.0", "mmc_busclk.0"),
>         ALIAS(HCLK_DMA1, NULL, "dma1"),
> +       ALIAS(HCLK_DMA1, "dma-pl080s.1", "apb_pclk"),
>         ALIAS(HCLK_DMA0, NULL, "dma0"),
> +       ALIAS(HCLK_DMA0, "dma-pl080s.0", "apb_pclk"),
>         ALIAS(HCLK_CAMIF, "s3c-camif", "camif"),
>         ALIAS(HCLK_LCD, "s3c-fb", "lcd"),
>         ALIAS(PCLK_SPI1, "s3c6410-spi.1", "spi"),
> -- 
> 1.8.3.2

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

* Re: [PATCH v2 6/8] clk: samsung: s3c64xx: Remove clock aliases of old DMA driver
       [not found]   ` <1381950659-12703-7-git-send-email-tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-10-21 12:12     ` Mike Turquette
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Turquette @ 2013-10-21 12:12 UTC (permalink / raw)
  To: Tomasz Figa, linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
	linux-spi-u79uwXL29TY76Z2rM5mHXA, Arnd Bergmann, Ben Dooks,
	Jaroslav Kysela, Kukjin Kim, Liam Girdwood, Mark Brown,
	Padmavathi Venna, Russell King, Sachin Kamat, Sangbeom Kim,
	Takashi Iwai, Tomasz Figa

Quoting Tomasz Figa (2013-10-16 12:10:57)
> Since the old DMA driver got removed, these aliases are no longer
> necessary.
> 
> Signed-off-by: Tomasz Figa <tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Acked-by: Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

> ---
>  drivers/clk/samsung/clk-s3c64xx.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/clk/samsung/clk-s3c64xx.c b/drivers/clk/samsung/clk-s3c64xx.c
> index 06cf105..8e27aee 100644
> --- a/drivers/clk/samsung/clk-s3c64xx.c
> +++ b/drivers/clk/samsung/clk-s3c64xx.c
> @@ -331,9 +331,7 @@ static struct samsung_clock_alias s3c64xx_clock_aliases[] = {
>         ALIAS(HCLK_HSMMC1, "s3c-sdhci.1", "mmc_busclk.0"),
>         ALIAS(HCLK_HSMMC0, "s3c-sdhci.0", "hsmmc"),
>         ALIAS(HCLK_HSMMC0, "s3c-sdhci.0", "mmc_busclk.0"),
> -       ALIAS(HCLK_DMA1, NULL, "dma1"),
>         ALIAS(HCLK_DMA1, "dma-pl080s.1", "apb_pclk"),
> -       ALIAS(HCLK_DMA0, NULL, "dma0"),
>         ALIAS(HCLK_DMA0, "dma-pl080s.0", "apb_pclk"),
>         ALIAS(HCLK_CAMIF, "s3c-camif", "camif"),
>         ALIAS(HCLK_LCD, "s3c-fb", "lcd"),
> -- 
> 1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" 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] 5+ messages in thread

* Re: [PATCH v2 0/8] ARM: s3c64xx: Let amba-pl08x driver handle DMA
       [not found]       ` <52644563.1000203-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
@ 2013-11-20 12:31         ` Mark Brown
       [not found]           ` <20131120123152.GZ2674-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Brown @ 2013-11-20 12:31 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
	linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA, Mike Turquette,
	Arnd Bergmann, Padmavathi Venna, Sachin Kamat, Sangbeom Kim,
	Tomasz Figa, Liam Girdwood, Takashi Iwai, Ben Dooks,
	Jaroslav Kysela, Russell King, linux-spi-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

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

On Mon, Oct 21, 2013 at 06:04:35AM +0900, Kukjin Kim wrote:

> Applied this whole series.

This didn't seem to make it into -next or your tree, it'd be really
helpful to be able to merge into both ASoC and SPI so they can be used
for some framework work (I already have some patches for ASoC).  Would
it be possible to get the changes published on a separate branch or
signed tag so I can pull it into those subsystems for the next merge
window?

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH v2 0/8] ARM: s3c64xx: Let amba-pl08x driver handle DMA
       [not found]           ` <20131120123152.GZ2674-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
@ 2013-12-04 21:39             ` Olof Johansson
  0 siblings, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2013-12-04 21:39 UTC (permalink / raw)
  To: Mark Brown
  Cc: Kukjin Kim, alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
	linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Mike Turquette, Arnd Bergmann, Padmavathi Venna, Sachin Kamat,
	Sangbeom Kim, Tomasz Figa, Liam Girdwood, Takashi Iwai, Ben Dooks,
	Jaroslav Kysela, Russell King, linux-spi-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org

On Wed, Nov 20, 2013 at 4:31 AM, Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> On Mon, Oct 21, 2013 at 06:04:35AM +0900, Kukjin Kim wrote:
>
>> Applied this whole series.
>
> This didn't seem to make it into -next or your tree, it'd be really
> helpful to be able to merge into both ASoC and SPI so they can be used
> for some framework work (I already have some patches for ASoC).  Would
> it be possible to get the changes published on a separate branch or
> signed tag so I can pull it into those subsystems for the next merge
> window?

Following up here too: I've merged this branch into arm-soc directly now.


-Olof
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" 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] 5+ messages in thread

end of thread, other threads:[~2013-12-04 21:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1381950659-12703-1-git-send-email-tomasz.figa@gmail.com>
     [not found] ` <20131017102201.GK2443@sirena.org.uk>
     [not found]   ` <20131017102201.GK2443-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-10-20 21:04     ` [PATCH v2 0/8] ARM: s3c64xx: Let amba-pl08x driver handle DMA Kukjin Kim
     [not found]       ` <52644563.1000203-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2013-11-20 12:31         ` Mark Brown
     [not found]           ` <20131120123152.GZ2674-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2013-12-04 21:39             ` Olof Johansson
     [not found] ` <1381950659-12703-5-git-send-email-tomasz.figa@gmail.com>
2013-10-21 12:11   ` [PATCH v2 4/8] clk: samsung: s3c64xx: Add aliases for DMA clocks Mike Turquette
     [not found] ` <1381950659-12703-7-git-send-email-tomasz.figa@gmail.com>
     [not found]   ` <1381950659-12703-7-git-send-email-tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-21 12:12     ` [PATCH v2 6/8] clk: samsung: s3c64xx: Remove clock aliases of old DMA driver Mike Turquette

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