|
@@ -30,6 +30,7 @@ struct platform_device;
|
|
|
* @ops: start/stop rproc handlers
|
|
|
* @device_enable: omap-specific handler for enabling a device
|
|
|
* @device_shutdown: omap-specific handler for shutting down a device
|
|
|
+ * @set_bootaddr: omap-specific handler for setting the rproc boot address
|
|
|
*/
|
|
|
struct omap_rproc_pdata {
|
|
|
const char *name;
|
|
@@ -40,6 +41,7 @@ struct omap_rproc_pdata {
|
|
|
const struct rproc_ops *ops;
|
|
|
int (*device_enable) (struct platform_device *pdev);
|
|
|
int (*device_shutdown) (struct platform_device *pdev);
|
|
|
+ void(*set_bootaddr)(u32);
|
|
|
};
|
|
|
|
|
|
#if defined(CONFIG_OMAP_REMOTEPROC) || defined(CONFIG_OMAP_REMOTEPROC_MODULE)
|