diff options
author | Robert Tivy <rtivy@ti.com> | 2013-03-29 02:41:47 +0100 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2013-04-17 18:30:09 +0200 |
commit | 5428813499ea1302f032e0063e4e2d4a56b36221 (patch) | |
tree | e8ff06c51f8e8d245bf569e82e1584d6f80cf7bd /arch/arm/mach-davinci/board-omapl138-hawk.c | |
parent | ARM: davinci: ensure global variables are declared (diff) | |
download | linux-5428813499ea1302f032e0063e4e2d4a56b36221.tar.xz linux-5428813499ea1302f032e0063e4e2d4a56b36221.zip |
ARM: davinci: da850 board: add remoteproc support
Add .reserve function for reserving CMA memory block to MACHINE_START.
Add call to remoteproc platform device registration function during init.
Signed-off-by: Robert Tivy <rtivy@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/board-omapl138-hawk.c')
-rw-r--r-- | arch/arm/mach-davinci/board-omapl138-hawk.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/board-omapl138-hawk.c b/arch/arm/mach-davinci/board-omapl138-hawk.c index 328dbd8a37f5..b8c20de10ca2 100644 --- a/arch/arm/mach-davinci/board-omapl138-hawk.c +++ b/arch/arm/mach-davinci/board-omapl138-hawk.c @@ -310,6 +310,11 @@ static __init void omapl138_hawk_init(void) if (ret) pr_warn("%s: watchdog registration failed: %d\n", __func__, ret); + + ret = da8xx_register_rproc(); + if (ret) + pr_warn("%s: dsp/rproc registration failed: %d\n", + __func__, ret); } #ifdef CONFIG_SERIAL_8250_CONSOLE @@ -337,4 +342,5 @@ MACHINE_START(OMAPL138_HAWKBOARD, "AM18x/OMAP-L138 Hawkboard") .init_late = davinci_init_late, .dma_zone_size = SZ_128M, .restart = da8xx_restart, + .reserve = da8xx_rproc_reserve_cma, MACHINE_END |