diff options
author | Alexandre Bailon <abailon@baylibre.com> | 2017-04-05 19:17:50 +0200 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2017-04-11 19:50:53 +0530 |
commit | 398dbc776a8f7dfdee7c38ad003e66abd31b3b0a (patch) | |
tree | ea113859ef0cc040e6f5bf1620ea7a27128bf9de /arch/arm/mach-davinci/da850.c | |
parent | 28d4d1d0e49b4ac4d12861a64f45101f36fbfab8 (diff) | |
download | blackbird-obmc-linux-398dbc776a8f7dfdee7c38ad003e66abd31b3b0a.tar.gz blackbird-obmc-linux-398dbc776a8f7dfdee7c38ad003e66abd31b3b0a.zip |
ARM: davinci: Add clock for CPPI 4.1 DMA engine
The CPPI 4.1 DMA in USB subsystem shares its clock with the
USB OTG, and most of the time, the clock will be enabled by
USB. But during the init of the DMA, USB is not enabled
(waiting for DMA), and then we must enable the DMA clock
before doing anything.
Add clock for the CPPI 4.1 DMA engine.
Signed-off-by: Alexandre Bailon <abailon@baylibre.com>
[nsekhar@ti.com: minor commit message tweaks]
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/da850.c')
-rw-r--r-- | arch/arm/mach-davinci/da850.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index ccad2f99dfc9..07d6f0eb8c82 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c @@ -401,6 +401,11 @@ static struct clk usb20_clk = { .gpsc = 1, }; +static struct clk cppi41_clk = { + .name = "cppi41", + .parent = &usb20_clk, +}; + static struct clk spi0_clk = { .name = "spi0", .parent = &pll0_sysclk2, @@ -560,6 +565,7 @@ static struct clk_lookup da850_clks[] = { CLK("davinci-nand.0", "aemif", &aemif_nand_clk), CLK("ohci-da8xx", "usb11", &usb11_clk), CLK("musb-da8xx", "usb20", &usb20_clk), + CLK("cppi41-dmaengine", NULL, &cppi41_clk), CLK("spi_davinci.0", NULL, &spi0_clk), CLK("spi_davinci.1", NULL, &spi1_clk), CLK("vpif", NULL, &vpif_clk), |