All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vignesh R <vigneshr@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [U-Boot PATCH v2 00/10] Enable edma support for ti-qspi
Date: Thu, 13 Aug 2015 11:51:25 +0530	[thread overview]
Message-ID: <55CC3765.8050909@ti.com> (raw)
In-Reply-To: <1438234483-3738-1-git-send-email-vigneshr@ti.com>



On 07/30/2015 11:04 AM, Vignesh R wrote:
> 
> This patch series enables DMA for QSPI on dra7xx and am43xx.
> Patch 1 and 2 make sure the buffers are mem aligned for dma operation.
> Patch 3-6 add support for enabling and disabling of edma3 clocks on
> am43xx and dra7xx. Patch 7-9 add dma functionality to ti_qspi driver.
> Patch 10 enable edma3 support in dra7xx config files.
> 
> Tested on DRA74 EVM: http://pastebin.ubuntu.com/11813977/
> 
> changes in v2:
> * Move edma related code to edma driver instead of handling it in
>   ti-qspi driver.
> 
> v1: https://www.mail-archive.com/u-boot at lists.denx.de/msg176479.html
> 
> 
> Kishon Vijay Abraham I (2):
>   ARM: AM43xx: Add support for disabling clocks in uboot
>   ARM: OMAP5: Add support for disabling clocks in uboot
> 
> Ravi Babu (2):
>   sf: allocate cache aligned buffers to copy from flash
>   env: use cache line aligned memory for flash read
> 
> Tom Rini (1):
>   sf: ops: Add spi_flash_copy_mmap function
> 
> Vignesh R (5):
>   ARM: OMAP5: Add functions to enable and disable EDMA3 clocks
>   ARM: AM43XX: Add functions to enable and disable EDMA3 clocks
>   dma: ti-edma3: Add helper function to support edma3 transfer
>   spi: ti_qspi: Use DMA to read from qspi flash
>   ARM: dra7xx_evm: Enable EDMA3 in SPL to support DMA on qspi

Gentle ping...
I haven't received any comments on this series.. Can these patches be
picked up, if there are no further comments?

> 
>  arch/arm/cpu/armv7/am33xx/clock.c              | 52 +++++++++++++++++
>  arch/arm/cpu/armv7/am33xx/clock_am43xx.c       | 36 ++++++++++++
>  arch/arm/cpu/armv7/omap-common/clocks-common.c | 53 +++++++++++++++++
>  arch/arm/cpu/armv7/omap5/hw_data.c             | 41 ++++++++++++++
>  arch/arm/cpu/armv7/omap5/prcm-regs.c           |  4 ++
>  arch/arm/include/asm/arch-am33xx/clock.h       |  1 +
>  arch/arm/include/asm/arch-omap5/hardware.h     |  5 ++
>  arch/arm/include/asm/omap_common.h             | 13 +++++
>  arch/arm/include/asm/ti-common/ti-edma3.h      |  2 +
>  common/cmd_sf.c                                |  6 +-
>  common/env_sf.c                                | 11 ++--
>  drivers/dma/ti-edma3.c                         | 78 ++++++++++++++++++++++++++
>  drivers/mtd/spi/sf_ops.c                       |  8 ++-
>  drivers/spi/ti_qspi.c                          | 23 ++++++++
>  include/configs/dra7xx_evm.h                   |  2 +
>  include/spi.h                                  |  3 +
>  16 files changed, 329 insertions(+), 9 deletions(-)
> 

-- 
Regards
Vignesh

  parent reply	other threads:[~2015-08-13  6:21 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-30  5:34 [U-Boot] [U-Boot PATCH v2 00/10] Enable edma support for ti-qspi Vignesh R
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 01/10] sf: allocate cache aligned buffers to copy from flash Vignesh R
2015-08-13 17:39   ` Jagan Teki
2015-08-13 17:53     ` Simon Glass
2015-08-13 18:02       ` Jagan Teki
2015-08-13 17:54     ` Tom Rini
2015-08-13 18:08       ` Jagan Teki
2015-08-13 18:23         ` Tom Rini
2015-08-13 18:38           ` Simon Glass
2015-08-13 18:53             ` Jagan Teki
2015-08-13 20:54             ` Tom Rini
2015-08-14 19:26               ` Simon Glass
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 02/10] env: use cache line aligned memory for flash read Vignesh R
2015-08-13 18:27   ` Tom Rini
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 03/10] ARM: AM43xx: Add support for disabling clocks in uboot Vignesh R
2015-08-13 19:00   ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 04/10] ARM: OMAP5: " Vignesh R
2015-08-13 18:58   ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 05/10] ARM: OMAP5: Add functions to enable and disable EDMA3 clocks Vignesh R
2015-08-13 18:26   ` Tom Rini
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 06/10] ARM: AM43XX: " Vignesh R
2015-08-13 18:26   ` Tom Rini
2015-08-13 19:09     ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 07/10] sf: ops: Add spi_flash_copy_mmap function Vignesh R
2015-08-13 17:57   ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 08/10] dma: ti-edma3: Add helper function to support edma3 transfer Vignesh R
2015-08-13 17:50   ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 09/10] spi: ti_qspi: Use DMA to read from qspi flash Vignesh R
2015-08-13 17:56   ` Jagan Teki
2015-07-30  5:34 ` [U-Boot] [U-Boot PATCH v2 10/10] ARM: dra7xx_evm: Enable EDMA3 in SPL to support DMA on qspi Vignesh R
2015-08-13 18:04   ` Jagan Teki
2015-08-13  6:21 ` Vignesh R [this message]
2015-08-13  7:05   ` [U-Boot] [U-Boot PATCH v2 00/10] Enable edma support for ti-qspi Jagan Teki

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=55CC3765.8050909@ti.com \
    --to=vigneshr@ti.com \
    --cc=u-boot@lists.denx.de \
    /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.