Kees Cook | eb367cb | 2013-01-16 18:53:51 -0800 | [diff] [blame] | 1 | menu "Remoteproc drivers" |
Ohad Ben-Cohen | 650d656 | 2011-12-14 13:01:59 +0200 | [diff] [blame] | 2 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 3 | # REMOTEPROC gets selected by whoever wants it |
| 4 | config REMOTEPROC |
| 5 | tristate |
Sjur Brændeland | a1a7e0a | 2012-09-13 20:03:58 +0200 | [diff] [blame] | 6 | depends on HAS_DMA |
Ohad Ben-Cohen | a2b950a | 2013-04-07 14:06:07 +0300 | [diff] [blame] | 7 | select CRC32 |
Robert Tivy | c7426bc | 2013-03-28 18:41:43 -0700 | [diff] [blame] | 8 | select FW_LOADER |
Ohad Ben-Cohen | 2ed6d29 | 2012-09-30 10:25:34 +0200 | [diff] [blame] | 9 | select VIRTIO |
Suman Anna | b977785 | 2013-04-21 16:29:38 +0300 | [diff] [blame] | 10 | select VIRTUALIZATION |
Ohad Ben-Cohen | 34ed5a3 | 2011-10-20 18:53:35 +0200 | [diff] [blame] | 11 | |
| 12 | config OMAP_REMOTEPROC |
| 13 | tristate "OMAP remoteproc support" |
Sjur Brændeland | a1a7e0a | 2012-09-13 20:03:58 +0200 | [diff] [blame] | 14 | depends on HAS_DMA |
Vincent Stehlé | e5bc029 | 2013-02-18 12:06:52 +0100 | [diff] [blame] | 15 | depends on ARCH_OMAP4 || SOC_OMAP5 |
Ohad Ben-Cohen | 9cd8eb4 | 2012-02-28 13:04:33 +0200 | [diff] [blame] | 16 | depends on OMAP_IOMMU |
Arnd Bergmann | 0bef6c9 | 2013-02-14 17:53:18 +0100 | [diff] [blame] | 17 | depends on OMAP_MBOX_FWK |
Ohad Ben-Cohen | 34ed5a3 | 2011-10-20 18:53:35 +0200 | [diff] [blame] | 18 | select REMOTEPROC |
Ohad Ben-Cohen | 34ed5a3 | 2011-10-20 18:53:35 +0200 | [diff] [blame] | 19 | select RPMSG |
Ohad Ben-Cohen | 34ed5a3 | 2011-10-20 18:53:35 +0200 | [diff] [blame] | 20 | help |
| 21 | Say y here to support OMAP's remote processors (dual M3 |
| 22 | and DSP on OMAP4) via the remote processor framework. |
| 23 | |
| 24 | Currently only supported on OMAP4. |
| 25 | |
| 26 | Usually you want to say y here, in order to enable multimedia |
| 27 | use-cases to run on your platform (multimedia codecs are |
| 28 | offloaded to remote DSP processors using this framework). |
| 29 | |
| 30 | It's safe to say n here if you're not interested in multimedia |
| 31 | offloading or just want a bare minimum kernel. |
Ohad Ben-Cohen | 650d656 | 2011-12-14 13:01:59 +0200 | [diff] [blame] | 32 | |
Sjur Brændeland | ec4d02d | 2012-09-20 18:32:56 +0200 | [diff] [blame] | 33 | config STE_MODEM_RPROC |
| 34 | tristate "STE-Modem remoteproc support" |
Sjur Brændeland | ec4d02d | 2012-09-20 18:32:56 +0200 | [diff] [blame] | 35 | depends on HAS_DMA |
| 36 | select REMOTEPROC |
| 37 | default n |
| 38 | help |
| 39 | Say y or m here to support STE-Modem shared memory driver. |
| 40 | This can be either built-in or a loadable module. |
| 41 | If unsure say N. |
| 42 | |
Robert Tivy | 13be543 | 2013-04-09 14:20:21 -0700 | [diff] [blame] | 43 | config DA8XX_REMOTEPROC |
| 44 | tristate "DA8xx/OMAP-L13x remoteproc support" |
| 45 | depends on ARCH_DAVINCI_DA8XX |
| 46 | select CMA |
| 47 | select REMOTEPROC |
| 48 | select RPMSG |
| 49 | help |
| 50 | Say y here to support DA8xx/OMAP-L13x remote processors via the |
| 51 | remote processor framework. |
| 52 | |
| 53 | You want to say y here in order to enable AMP |
| 54 | use-cases to run on your platform (multimedia codecs are |
| 55 | offloaded to remote DSP processors using this framework). |
| 56 | |
| 57 | This module controls the name of the firmware file that gets |
| 58 | loaded on the DSP. This file must reside in the /lib/firmware |
| 59 | directory. It can be specified via the module parameter |
| 60 | da8xx_fw_name=<filename>, and if not specified will default to |
| 61 | "rproc-dsp-fw". |
| 62 | |
| 63 | It's safe to say n here if you're not interested in multimedia |
| 64 | offloading. |
| 65 | |
Ohad Ben-Cohen | 650d656 | 2011-12-14 13:01:59 +0200 | [diff] [blame] | 66 | endmenu |