All of lore.kernel.org
 help / color / mirror / Atom feed
From: vinod.koul@intel.com (Vinod Koul)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 02/32] dmaengine: ste_dma40: Move default memcpy configs into the driver
Date: Mon, 22 Apr 2013 14:51:53 +0530	[thread overview]
Message-ID: <20130422092153.GA24632@intel.com> (raw)
In-Reply-To: <1366279934-30761-3-git-send-email-lee.jones@linaro.org>

On Thu, Apr 18, 2013 at 11:11:44AM +0100, Lee Jones wrote:
> There are only two default memcpy configurations used for the DMA40
> driver; one for physical memcpy and one for logical memcpy. Instead
> of invariably passing the same configurations though platform data,
> we're moving them into the driver instead.
> 
> Cc: Vinod Koul <vinod.koul@intel.com>
> Cc: Dan Williams <djbw@fb.com>
> Cc: Per Forlin <per.forlin@stericsson.com>
> Cc: Rabin Vincent <rabin@rab.in>
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Vinod Koul <vnod.koul@intel.com>

--
~Vinod
> ---
>  arch/arm/mach-ux500/devices-db8500.c        |   28 -----------------------
>  drivers/dma/ste_dma40.c                     |   32 +++++++++++++++++++++++++--
>  include/linux/platform_data/dma-ste-dma40.h |    4 ----
>  3 files changed, 30 insertions(+), 34 deletions(-)
> 
> diff --git a/arch/arm/mach-ux500/devices-db8500.c b/arch/arm/mach-ux500/devices-db8500.c
> index 9b09683..5b1f1f7 100644
> --- a/arch/arm/mach-ux500/devices-db8500.c
> +++ b/arch/arm/mach-ux500/devices-db8500.c
> @@ -42,32 +42,6 @@ static struct resource dma40_resources[] = {
>  	}
>  };
>  
> -/* Default configuration for physcial memcpy */
> -struct stedma40_chan_cfg dma40_memcpy_conf_phy = {
> -	.mode = STEDMA40_MODE_PHYSICAL,
> -	.dir = STEDMA40_MEM_TO_MEM,
> -
> -	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.src_info.psize = STEDMA40_PSIZE_PHY_1,
> -	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -
> -	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.dst_info.psize = STEDMA40_PSIZE_PHY_1,
> -	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -};
> -/* Default configuration for logical memcpy */
> -struct stedma40_chan_cfg dma40_memcpy_conf_log = {
> -	.dir = STEDMA40_MEM_TO_MEM,
> -
> -	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.src_info.psize = STEDMA40_PSIZE_LOG_1,
> -	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -
> -	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.dst_info.psize = STEDMA40_PSIZE_LOG_1,
> -	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -};
> -
>  /*
>   * Mapping between destination event lines and physical device address.
>   * The event line is tied to a device and therefore the address is constant.
> @@ -150,8 +124,6 @@ static struct stedma40_platform_data dma40_plat_data = {
>  	.dev_len = DB8500_DMA_NR_DEV,
>  	.dev_rx = dma40_rx_map,
>  	.dev_tx = dma40_tx_map,
> -	.memcpy_conf_phy = &dma40_memcpy_conf_phy,
> -	.memcpy_conf_log = &dma40_memcpy_conf_log,
>  	.disabled_channels = {-1},
>  };
>  
> diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c
> index 12de79e..3b83dee 100644
> --- a/drivers/dma/ste_dma40.c
> +++ b/drivers/dma/ste_dma40.c
> @@ -58,6 +58,34 @@
>  /* Reserved event lines for memcpy only. */
>  static int dma40_memcpy_channels[] = { 56, 57, 58, 59, 60 };
>  
> +/* Default configuration for physcial memcpy */
> +struct stedma40_chan_cfg dma40_memcpy_conf_phy = {
> +	.mode = STEDMA40_MODE_PHYSICAL,
> +	.dir = STEDMA40_MEM_TO_MEM,
> +
> +	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.src_info.psize = STEDMA40_PSIZE_PHY_1,
> +	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +
> +	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.dst_info.psize = STEDMA40_PSIZE_PHY_1,
> +	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +};
> +
> +/* Default configuration for logical memcpy */
> +struct stedma40_chan_cfg dma40_memcpy_conf_log = {
> +	.mode = STEDMA40_MODE_LOGICAL,
> +	.dir = STEDMA40_MEM_TO_MEM,
> +
> +	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.src_info.psize = STEDMA40_PSIZE_LOG_1,
> +	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +
> +	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.dst_info.psize = STEDMA40_PSIZE_LOG_1,
> +	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +};
> +
>  /**
>   * enum 40_command - The different commands and/or statuses.
>   *
> @@ -2015,13 +2043,13 @@ static int d40_config_memcpy(struct d40_chan *d40c)
>  	dma_cap_mask_t cap = d40c->chan.device->cap_mask;
>  
>  	if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
> -		d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_log;
> +		d40c->dma_cfg = dma40_memcpy_conf_log;
>  		d40c->dma_cfg.src_dev_type = STEDMA40_DEV_SRC_MEMORY;
>  		d40c->dma_cfg.dst_dev_type = dma40_memcpy_channels[d40c->chan.chan_id];
>  
>  	} else if (dma_has_cap(DMA_MEMCPY, cap) &&
>  		   dma_has_cap(DMA_SLAVE, cap)) {
> -		d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_phy;
> +		d40c->dma_cfg = dma40_memcpy_conf_phy;
>  	} else {
>  		chan_err(d40c, "No memcpy\n");
>  		return -EINVAL;
> diff --git a/include/linux/platform_data/dma-ste-dma40.h b/include/linux/platform_data/dma-ste-dma40.h
> index a808784..869c571 100644
> --- a/include/linux/platform_data/dma-ste-dma40.h
> +++ b/include/linux/platform_data/dma-ste-dma40.h
> @@ -141,8 +141,6 @@ struct stedma40_chan_cfg {
>   * @dev_len: length of dev_tx and dev_rx
>   * @dev_tx: mapping between destination event line and io address
>   * @dev_rx: mapping between source event line and io address
> - * @memcpy_conf_phy: default configuration of physical channel memcpy
> - * @memcpy_conf_log: default configuration of logical channel memcpy
>   * @disabled_channels: A vector, ending with -1, that marks physical channels
>   * that are for different reasons not available for the driver.
>   * @soft_lli_chans: A vector, that marks physical channels will use LLI by SW
> @@ -160,8 +158,6 @@ struct stedma40_platform_data {
>  	u32				 dev_len;
>  	const dma_addr_t		*dev_tx;
>  	const dma_addr_t		*dev_rx;
> -	struct stedma40_chan_cfg	*memcpy_conf_phy;
> -	struct stedma40_chan_cfg	*memcpy_conf_log;
>  	int				 disabled_channels[STEDMA40_MAX_PHYS];
>  	int				*soft_lli_chans;
>  	int				 num_of_soft_lli_chans;
> -- 
> 1.7.10.4
> 

WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vinod.koul@intel.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, arnd@arndb.de,
	linus.walleij@stericsson.com, Dan Williams <djbw@fb.com>,
	Per Forlin <per.forlin@stericsson.com>,
	Rabin Vincent <rabin@rab.in>
Subject: Re: [PATCH 02/32] dmaengine: ste_dma40: Move default memcpy configs into the driver
Date: Mon, 22 Apr 2013 14:51:53 +0530	[thread overview]
Message-ID: <20130422092153.GA24632@intel.com> (raw)
In-Reply-To: <1366279934-30761-3-git-send-email-lee.jones@linaro.org>

On Thu, Apr 18, 2013 at 11:11:44AM +0100, Lee Jones wrote:
> There are only two default memcpy configurations used for the DMA40
> driver; one for physical memcpy and one for logical memcpy. Instead
> of invariably passing the same configurations though platform data,
> we're moving them into the driver instead.
> 
> Cc: Vinod Koul <vinod.koul@intel.com>
> Cc: Dan Williams <djbw@fb.com>
> Cc: Per Forlin <per.forlin@stericsson.com>
> Cc: Rabin Vincent <rabin@rab.in>
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Vinod Koul <vnod.koul@intel.com>

--
~Vinod
> ---
>  arch/arm/mach-ux500/devices-db8500.c        |   28 -----------------------
>  drivers/dma/ste_dma40.c                     |   32 +++++++++++++++++++++++++--
>  include/linux/platform_data/dma-ste-dma40.h |    4 ----
>  3 files changed, 30 insertions(+), 34 deletions(-)
> 
> diff --git a/arch/arm/mach-ux500/devices-db8500.c b/arch/arm/mach-ux500/devices-db8500.c
> index 9b09683..5b1f1f7 100644
> --- a/arch/arm/mach-ux500/devices-db8500.c
> +++ b/arch/arm/mach-ux500/devices-db8500.c
> @@ -42,32 +42,6 @@ static struct resource dma40_resources[] = {
>  	}
>  };
>  
> -/* Default configuration for physcial memcpy */
> -struct stedma40_chan_cfg dma40_memcpy_conf_phy = {
> -	.mode = STEDMA40_MODE_PHYSICAL,
> -	.dir = STEDMA40_MEM_TO_MEM,
> -
> -	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.src_info.psize = STEDMA40_PSIZE_PHY_1,
> -	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -
> -	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.dst_info.psize = STEDMA40_PSIZE_PHY_1,
> -	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -};
> -/* Default configuration for logical memcpy */
> -struct stedma40_chan_cfg dma40_memcpy_conf_log = {
> -	.dir = STEDMA40_MEM_TO_MEM,
> -
> -	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.src_info.psize = STEDMA40_PSIZE_LOG_1,
> -	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -
> -	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> -	.dst_info.psize = STEDMA40_PSIZE_LOG_1,
> -	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> -};
> -
>  /*
>   * Mapping between destination event lines and physical device address.
>   * The event line is tied to a device and therefore the address is constant.
> @@ -150,8 +124,6 @@ static struct stedma40_platform_data dma40_plat_data = {
>  	.dev_len = DB8500_DMA_NR_DEV,
>  	.dev_rx = dma40_rx_map,
>  	.dev_tx = dma40_tx_map,
> -	.memcpy_conf_phy = &dma40_memcpy_conf_phy,
> -	.memcpy_conf_log = &dma40_memcpy_conf_log,
>  	.disabled_channels = {-1},
>  };
>  
> diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c
> index 12de79e..3b83dee 100644
> --- a/drivers/dma/ste_dma40.c
> +++ b/drivers/dma/ste_dma40.c
> @@ -58,6 +58,34 @@
>  /* Reserved event lines for memcpy only. */
>  static int dma40_memcpy_channels[] = { 56, 57, 58, 59, 60 };
>  
> +/* Default configuration for physcial memcpy */
> +struct stedma40_chan_cfg dma40_memcpy_conf_phy = {
> +	.mode = STEDMA40_MODE_PHYSICAL,
> +	.dir = STEDMA40_MEM_TO_MEM,
> +
> +	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.src_info.psize = STEDMA40_PSIZE_PHY_1,
> +	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +
> +	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.dst_info.psize = STEDMA40_PSIZE_PHY_1,
> +	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +};
> +
> +/* Default configuration for logical memcpy */
> +struct stedma40_chan_cfg dma40_memcpy_conf_log = {
> +	.mode = STEDMA40_MODE_LOGICAL,
> +	.dir = STEDMA40_MEM_TO_MEM,
> +
> +	.src_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.src_info.psize = STEDMA40_PSIZE_LOG_1,
> +	.src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +
> +	.dst_info.data_width = STEDMA40_BYTE_WIDTH,
> +	.dst_info.psize = STEDMA40_PSIZE_LOG_1,
> +	.dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL,
> +};
> +
>  /**
>   * enum 40_command - The different commands and/or statuses.
>   *
> @@ -2015,13 +2043,13 @@ static int d40_config_memcpy(struct d40_chan *d40c)
>  	dma_cap_mask_t cap = d40c->chan.device->cap_mask;
>  
>  	if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
> -		d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_log;
> +		d40c->dma_cfg = dma40_memcpy_conf_log;
>  		d40c->dma_cfg.src_dev_type = STEDMA40_DEV_SRC_MEMORY;
>  		d40c->dma_cfg.dst_dev_type = dma40_memcpy_channels[d40c->chan.chan_id];
>  
>  	} else if (dma_has_cap(DMA_MEMCPY, cap) &&
>  		   dma_has_cap(DMA_SLAVE, cap)) {
> -		d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_phy;
> +		d40c->dma_cfg = dma40_memcpy_conf_phy;
>  	} else {
>  		chan_err(d40c, "No memcpy\n");
>  		return -EINVAL;
> diff --git a/include/linux/platform_data/dma-ste-dma40.h b/include/linux/platform_data/dma-ste-dma40.h
> index a808784..869c571 100644
> --- a/include/linux/platform_data/dma-ste-dma40.h
> +++ b/include/linux/platform_data/dma-ste-dma40.h
> @@ -141,8 +141,6 @@ struct stedma40_chan_cfg {
>   * @dev_len: length of dev_tx and dev_rx
>   * @dev_tx: mapping between destination event line and io address
>   * @dev_rx: mapping between source event line and io address
> - * @memcpy_conf_phy: default configuration of physical channel memcpy
> - * @memcpy_conf_log: default configuration of logical channel memcpy
>   * @disabled_channels: A vector, ending with -1, that marks physical channels
>   * that are for different reasons not available for the driver.
>   * @soft_lli_chans: A vector, that marks physical channels will use LLI by SW
> @@ -160,8 +158,6 @@ struct stedma40_platform_data {
>  	u32				 dev_len;
>  	const dma_addr_t		*dev_tx;
>  	const dma_addr_t		*dev_rx;
> -	struct stedma40_chan_cfg	*memcpy_conf_phy;
> -	struct stedma40_chan_cfg	*memcpy_conf_log;
>  	int				 disabled_channels[STEDMA40_MAX_PHYS];
>  	int				*soft_lli_chans;
>  	int				 num_of_soft_lli_chans;
> -- 
> 1.7.10.4
> 

  reply	other threads:[~2013-04-22  9:21 UTC|newest]

Thread overview: 336+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-18 10:11 [PATCH 00/32] dmaengine: Refactor the DMA40 driver Lee Jones
2013-04-18 10:11 ` Lee Jones
2013-04-18 10:11 ` [PATCH 01/32] dmaengine: ste_dma40: Assign memcpy channels in the driver Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-22  9:22   ` Vinod Koul
2013-04-22  9:22     ` Vinod Koul
2013-04-25  9:20   ` Linus Walleij
2013-04-25  9:20     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 02/32] dmaengine: ste_dma40: Move default memcpy configs into " Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-22  9:21   ` Vinod Koul [this message]
2013-04-22  9:21     ` Vinod Koul
2013-04-24 14:44   ` Linus Walleij
2013-04-24 14:44     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 03/32] dmaengine: ste_dma40: Use the BIT macro to replace ugly '(1 << x)'s Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:43   ` Russell King - ARM Linux
2013-04-18 10:43     ` Russell King - ARM Linux
2013-04-18 11:00     ` Lee Jones
2013-04-18 11:00       ` Lee Jones
2013-04-18 12:16   ` [PATCH 03/32 v2] " Lee Jones
2013-04-18 12:16     ` Lee Jones
2013-04-22 10:13     ` Vinod Koul
2013-04-22 10:13       ` Vinod Koul
2013-04-24 14:54     ` Linus Walleij
2013-04-24 14:54       ` Linus Walleij
2013-04-24 15:08       ` Lee Jones
2013-04-24 15:08         ` Lee Jones
2013-04-24 15:09   ` [PATCH 03/32] " Lee Jones
2013-04-24 15:09     ` Lee Jones
2013-04-24 15:11   ` [PATCH 03/32 v3] " Lee Jones
2013-04-24 15:11     ` Lee Jones
2013-04-24 19:24     ` Rabin Vincent
2013-04-24 19:24       ` Rabin Vincent
2013-04-25  8:13       ` Lee Jones
2013-04-25  8:13         ` Lee Jones
2013-04-26 11:39   ` [PATCH 03/32 v4] " Lee Jones
2013-04-26 11:39     ` Lee Jones
2013-04-26 15:04     ` Linus Walleij
2013-04-26 15:04       ` Linus Walleij
2013-04-18 10:11 ` [PATCH 04/32] dmaengine: ste_dma40: Amalgamate DMA source and destination channel numbers Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-25  8:06   ` Linus Walleij
2013-04-25  8:06     ` Linus Walleij
2013-04-25  8:36     ` Arnd Bergmann
2013-04-25  8:36       ` Arnd Bergmann
2013-04-25  8:55       ` Linus Walleij
2013-04-25  8:55         ` Linus Walleij
2013-04-25  9:06     ` Lee Jones
2013-04-25  9:06       ` Lee Jones
2013-04-25 12:43       ` Linus Walleij
2013-04-25 12:43         ` Linus Walleij
2013-04-25 13:09         ` Russell King - ARM Linux
2013-04-25 13:09           ` Russell King - ARM Linux
2013-04-25 13:21           ` Linus Walleij
2013-04-25 13:21             ` Linus Walleij
2013-04-25 13:20         ` Lee Jones
2013-04-25 13:20           ` Lee Jones
2013-04-25 13:24           ` Linus Walleij
2013-04-25 13:24             ` Linus Walleij
2013-04-26 14:28             ` Lee Jones
2013-04-26 14:28               ` Lee Jones
2013-04-18 10:11 ` [PATCH 05/32] dmaengine: ste_dma40: Supply macros to resolve 'src' and 'dst' directions Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:50   ` Arnd Bergmann
2013-04-18 10:50     ` Arnd Bergmann
2013-04-22  9:42   ` Vinod Koul
2013-04-22  9:42     ` Vinod Koul
2013-04-22 10:27     ` Lee Jones
2013-04-22 10:27       ` Lee Jones
2013-04-22 10:19       ` Vinod Koul
2013-04-22 10:19         ` Vinod Koul
2013-04-24  8:53       ` Lee Jones
2013-04-24  8:53         ` Lee Jones
2013-04-25  8:22   ` Linus Walleij
2013-04-25  8:22     ` Linus Walleij
2013-04-25  9:19     ` Lee Jones
2013-04-25  9:19       ` Lee Jones
2013-04-18 10:11 ` [PATCH 06/32] ARM: ux500: Strip out duplicate USB DMA configuration Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:51   ` Arnd Bergmann
2013-04-18 10:51     ` Arnd Bergmann
2013-04-25  8:24   ` Linus Walleij
2013-04-25  8:24     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 07/32] ARM: ux500: Supply address location names for the DMA40 DMA controller Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:48   ` Arnd Bergmann
2013-04-18 10:48     ` Arnd Bergmann
2013-04-18 11:01     ` Lee Jones
2013-04-18 11:01       ` Lee Jones
2013-04-18 11:09     ` Lee Jones
2013-04-18 11:09       ` Lee Jones
2013-04-25  8:26   ` Linus Walleij
2013-04-25  8:26     ` Linus Walleij
2013-04-25  9:17     ` Lee Jones
2013-04-25  9:17       ` Lee Jones
2013-04-25 12:45       ` Linus Walleij
2013-04-25 12:45         ` Linus Walleij
2013-04-18 10:11 ` [PATCH 08/32] dmaengine: ste_dma40: Optimise local MAX() macro Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:46   ` Arnd Bergmann
2013-04-18 10:46     ` Arnd Bergmann
2013-04-18 11:00     ` Russell King - ARM Linux
2013-04-18 11:00       ` Russell King - ARM Linux
2013-04-18 11:19       ` Arnd Bergmann
2013-04-18 11:19         ` Arnd Bergmann
2013-04-22 10:10   ` Vinod Koul
2013-04-22 10:10     ` Vinod Koul
2013-04-22 10:53     ` Lee Jones
2013-04-22 10:53       ` Lee Jones
2013-04-24  8:49   ` [PATCH 08/32 v2] dmaengine: ste_dma40: Remove home-brew " Lee Jones
2013-04-24  8:49     ` Lee Jones
2013-04-25 12:48     ` Linus Walleij
2013-04-25 12:48       ` Linus Walleij
2013-05-01 14:28       ` Lee Jones
2013-05-01 14:28         ` Lee Jones
2013-04-25  8:36   ` [PATCH 08/32] dmaengine: ste_dma40: Optimise local " Linus Walleij
2013-04-25  8:36     ` Linus Walleij
2013-04-25  9:15     ` Lee Jones
2013-04-25  9:15       ` Lee Jones
2013-04-18 10:11 ` [PATCH 09/32] ARM: ux500: Remove unused 'data_width' attributes from SDI DMA configs Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-25  8:44   ` Linus Walleij
2013-04-25  8:44     ` Linus Walleij
2013-04-25  9:14     ` Lee Jones
2013-04-25  9:14       ` Lee Jones
2013-04-25 12:49       ` Linus Walleij
2013-04-25 12:49         ` Linus Walleij
2013-04-25 13:13         ` Lee Jones
2013-04-25 13:13           ` Lee Jones
2013-04-18 10:11 ` [PATCH 10/32] ARM: ux500: Remove unused 'data_width' attributes from SSP " Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-25  8:45   ` Linus Walleij
2013-04-25  8:45     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 11/32] ARM: ux500: Remove unused 'data_width' attributes from UART " Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-25  8:45   ` Linus Walleij
2013-04-25  8:45     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 12/32] ARM: ux500: Remove superfluous 'psize' attribute from Audio platform data Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-25  9:00   ` Linus Walleij
2013-04-25  9:00     ` Linus Walleij
2013-05-01 14:42   ` Lee Jones
2013-05-01 14:42     ` Lee Jones
2013-05-02  8:38     ` Lee Jones
2013-05-02  8:38       ` Lee Jones
2013-05-03 13:57       ` Linus Walleij
2013-05-03 13:57         ` Linus Walleij
2013-06-10  9:04         ` Lee Jones
2013-06-10  9:04           ` Lee Jones
2013-06-10  9:12           ` Lee Jones
2013-06-10  9:12             ` Lee Jones
2013-04-18 10:11 ` [PATCH 13/32] dmaengine: ste_dma40: Calculate number of logical channels from physical ones Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-22  9:23   ` Vinod Koul
2013-04-22  9:23     ` Vinod Koul
2013-04-22 10:11     ` Lee Jones
2013-04-22 10:11       ` Lee Jones
2013-04-25  9:13   ` Linus Walleij
2013-04-25  9:13     ` Linus Walleij
2013-04-25  9:29     ` Lee Jones
2013-04-25  9:29       ` Lee Jones
2013-04-25 12:51       ` Linus Walleij
2013-04-25 12:51         ` Linus Walleij
2013-04-18 10:11 ` [PATCH 14/32] dmaengine: ste_dma40: Remove 'always true' checking Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:53   ` Arnd Bergmann
2013-04-18 10:53     ` Arnd Bergmann
2013-04-22  9:44   ` Vinod Koul
2013-04-22  9:44     ` Vinod Koul
2013-04-25  9:17   ` Linus Walleij
2013-04-25  9:17     ` Linus Walleij
2013-04-25  9:24     ` Lee Jones
2013-04-25  9:24       ` Lee Jones
2013-04-18 10:11 ` [PATCH 15/32] dmaengine: ste_dma40: Separate Logical Global Interrupt Mask (GIM) unmasking Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:45   ` Russell King - ARM Linux
2013-04-18 10:45     ` Russell King - ARM Linux
2013-04-18 10:54   ` Arnd Bergmann
2013-04-18 10:54     ` Arnd Bergmann
2013-04-22  9:51   ` Vinod Koul
2013-04-22  9:51     ` Vinod Koul
2013-04-22 10:40     ` Lee Jones
2013-04-22 10:40       ` Lee Jones
2013-04-24  8:51       ` Lee Jones
2013-04-24  8:51         ` Lee Jones
2013-04-25 11:00   ` Linus Walleij
2013-04-25 11:00     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 16/32] dmaengine: ste_dma40: Remove unnecessary call to d40_phy_cfg() Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-18 10:55   ` Arnd Bergmann
2013-04-18 10:55     ` Arnd Bergmann
2013-04-22  9:52   ` Vinod Koul
2013-04-22  9:52     ` Vinod Koul
2013-04-25 11:09   ` Linus Walleij
2013-04-25 11:09     ` Linus Walleij
2013-04-18 10:11 ` [PATCH 17/32] dmaengine: ste_dma40: Remove redundant argument from d40_phy_cfg() Lee Jones
2013-04-18 10:11   ` Lee Jones
2013-04-22  9:34   ` Vinod Koul
2013-04-22  9:34     ` Vinod Koul
2013-04-22 10:18     ` Lee Jones
2013-04-22 10:18       ` Lee Jones
2013-04-25 11:14       ` Linus Walleij
2013-04-25 11:14         ` Linus Walleij
2013-04-24  8:55     ` Lee Jones
2013-04-24  8:55       ` Lee Jones
2013-04-25 11:12   ` Linus Walleij
2013-04-25 11:12     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 18/32] dmaengine: ste_dma40: Don't configure runtime configurable setup during allocate Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:15   ` Linus Walleij
2013-04-25 11:15     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 19/32] dmaengine: ste_dma40: Move more setup into the configuration routines Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-22  9:37   ` Vinod Koul
2013-04-22  9:37     ` Vinod Koul
2013-04-25 11:17   ` Linus Walleij
2013-04-25 11:17     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 20/32] dmaengine: ste_dma40: Move rev error-check up to revision acquisition Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-22  9:41   ` Vinod Koul
2013-04-22  9:41     ` Vinod Koul
2013-04-25 11:17   ` Linus Walleij
2013-04-25 11:17     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 21/32] dmaengine: ste_dma40: Also report the number of logical channels Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-22  9:36   ` Vinod Koul
2013-04-22  9:36     ` Vinod Koul
2013-04-22 10:14     ` Lee Jones
2013-04-22 10:14       ` Lee Jones
2013-04-22  9:48       ` Vinod Koul
2013-04-22  9:48         ` Vinod Koul
2013-04-22 10:37         ` Lee Jones
2013-04-22 10:37           ` Lee Jones
2013-04-22 10:23           ` Vinod Koul
2013-04-22 10:23             ` Vinod Koul
2013-04-22 10:52           ` Russell King - ARM Linux
2013-04-22 10:52             ` Russell King - ARM Linux
2013-04-24  8:35             ` Lee Jones
2013-04-24  8:35               ` Lee Jones
2013-04-24  8:39   ` [PATCH 21/32 v2] " Lee Jones
2013-04-24  8:39     ` Lee Jones
2013-04-25 11:20     ` Linus Walleij
2013-04-25 11:20       ` Linus Walleij
2013-04-18 10:12 ` [PATCH 22/32] dmaengine: ste_dma40: Allocate plat_data on declaration Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-22  9:38   ` Vinod Koul
2013-04-22  9:38     ` Vinod Koul
2013-04-22  9:40   ` Vinod Koul
2013-04-22  9:40     ` Vinod Koul
2013-04-25 11:22   ` Linus Walleij
2013-04-25 11:22     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 23/32] dmaengine: ste_dma40: Allow driver to be probe()able when DT is enabled Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-18 10:58   ` Arnd Bergmann
2013-04-18 10:58     ` Arnd Bergmann
2013-04-22 10:02   ` Vinod Koul
2013-04-22 10:02     ` Vinod Koul
2013-04-25 11:24   ` Linus Walleij
2013-04-25 11:24     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 24/32] dmaengine: ste_dma40: Supply full Device Tree parsing support Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-18 11:06   ` Arnd Bergmann
2013-04-18 11:06     ` Arnd Bergmann
2013-04-18 11:31     ` Lee Jones
2013-04-18 11:31       ` Lee Jones
2013-04-18 11:37       ` Arnd Bergmann
2013-04-18 11:37         ` Arnd Bergmann
2013-04-18 11:47         ` Lee Jones
2013-04-18 11:47           ` Lee Jones
2013-04-18 12:23           ` Arnd Bergmann
2013-04-18 12:23             ` Arnd Bergmann
2013-04-18 11:07   ` Arnd Bergmann
2013-04-18 11:07     ` Arnd Bergmann
2013-04-18 12:12   ` [PATCH 24/32 v2] " Lee Jones
2013-04-18 12:12     ` Lee Jones
2013-04-18 12:32     ` Arnd Bergmann
2013-04-18 12:32       ` Arnd Bergmann
2013-04-18 13:43       ` Lee Jones
2013-04-18 13:43         ` Lee Jones
2013-04-18 14:17     ` [PATCH 24/32 v3] " Lee Jones
2013-04-18 14:17       ` Lee Jones
2013-04-18 21:53       ` Arnd Bergmann
2013-04-18 21:53         ` Arnd Bergmann
2013-04-22 10:18       ` Vinod Koul
2013-04-22 10:18         ` Vinod Koul
2013-04-25 11:33       ` Linus Walleij
2013-04-25 11:33         ` Linus Walleij
2013-04-22 10:17     ` [PATCH 24/32 v2] " Vinod Koul
2013-04-22 10:17       ` Vinod Koul
2013-04-22 10:16   ` [PATCH 24/32] " Vinod Koul
2013-04-22 10:16     ` Vinod Koul
2013-04-18 10:12 ` [PATCH 25/32] ARM: ux500: Setup the DMA40 driver's DT node using the new DMA API Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-18 11:08   ` Arnd Bergmann
2013-04-18 11:08     ` Arnd Bergmann
2013-04-25 11:35   ` Linus Walleij
2013-04-25 11:35     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 26/32] ARM: ux500: Supply UART's DMA configuration via Device Tree Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:36   ` Linus Walleij
2013-04-25 11:36     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 27/32] ARM: ux500: Stop registering DMA40 from platform data when DT is enabled Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:37   ` Linus Walleij
2013-04-25 11:37     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 28/32] ARM: ux500: Pass remnant platform data though to DMA40 driver Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-18 11:11   ` Arnd Bergmann
2013-04-18 11:11     ` Arnd Bergmann
2013-04-25 11:39   ` Linus Walleij
2013-04-25 11:39     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 29/32] ARM: ux500: Stop passing UART's platform data for Device Tree boots Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:41   ` Linus Walleij
2013-04-25 11:41     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 30/32] ARM: ux500: Supply MMC DMA configuration via Device Tree Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:43   ` Linus Walleij
2013-04-25 11:43     ` Linus Walleij
2013-04-25 11:49     ` Lee Jones
2013-04-25 11:49       ` Lee Jones
2013-04-25 12:56       ` Linus Walleij
2013-04-25 12:56         ` Linus Walleij
2013-04-25 13:11         ` Lee Jones
2013-04-25 13:11           ` Lee Jones
2013-04-18 10:12 ` [PATCH 31/32] ARM: ux500: Stop passing MMC's platform data for Device Tree boots Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:44   ` Linus Walleij
2013-04-25 11:44     ` Linus Walleij
2013-04-18 10:12 ` [PATCH 32/32] ARM: ux500: Move SDI (MMC) and UART devices under more descriptive heading Lee Jones
2013-04-18 10:12   ` Lee Jones
2013-04-25 11:46   ` Linus Walleij
2013-04-25 11:46     ` Linus Walleij
2013-04-26 13:42     ` Lee Jones
2013-04-26 13:42       ` Lee Jones

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130422092153.GA24632@intel.com \
    --to=vinod.koul@intel.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.