[PATCH v3 07/20] remoteproc: core: Add RSC_VDEV support to rproc_request_resource

2016-10-12 Thread Loic Pallardy
Add the possibility for platform specific driver to submit resource
request related to VDEV.

Signed-off-by: Loic Pallardy 
---
 drivers/remoteproc/remoteproc_core.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/drivers/remoteproc/remoteproc_core.c 
b/drivers/remoteproc/remoteproc_core.c
index 4c6314e..ce62546 100644
--- a/drivers/remoteproc/remoteproc_core.c
+++ b/drivers/remoteproc/remoteproc_core.c
@@ -874,6 +874,7 @@ int rproc_request_resource(struct rproc *rproc, u32 type, 
u32 action, void *reso
 {
struct device *dev = >dev;
struct rproc_request_resource *request;
+   struct fw_rsc_vdev *v;
int size;
 
request = devm_kzalloc(dev, sizeof(*request), GFP_KERNEL);
@@ -893,6 +894,12 @@ int rproc_request_resource(struct rproc *rproc, u32 type, 
u32 action, void *reso
case RSC_TRACE:
size = sizeof(struct fw_rsc_trace);
break;
+   case RSC_VDEV:
+   v = resource;
+   size = sizeof(struct fw_rsc_vdev);
+   size += v->num_of_vrings * sizeof(struct fw_rsc_vdev_vring);
+   size += v->config_len;
+   break;
default:
dev_err(dev, "Unsupported resource type: %d\n", type);
return -EINVAL;
-- 
1.9.1



[PATCH v3 07/20] remoteproc: core: Add RSC_VDEV support to rproc_request_resource

2016-10-12 Thread Loic Pallardy
Add the possibility for platform specific driver to submit resource
request related to VDEV.

Signed-off-by: Loic Pallardy 
---
 drivers/remoteproc/remoteproc_core.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/drivers/remoteproc/remoteproc_core.c 
b/drivers/remoteproc/remoteproc_core.c
index 4c6314e..ce62546 100644
--- a/drivers/remoteproc/remoteproc_core.c
+++ b/drivers/remoteproc/remoteproc_core.c
@@ -874,6 +874,7 @@ int rproc_request_resource(struct rproc *rproc, u32 type, 
u32 action, void *reso
 {
struct device *dev = >dev;
struct rproc_request_resource *request;
+   struct fw_rsc_vdev *v;
int size;
 
request = devm_kzalloc(dev, sizeof(*request), GFP_KERNEL);
@@ -893,6 +894,12 @@ int rproc_request_resource(struct rproc *rproc, u32 type, 
u32 action, void *reso
case RSC_TRACE:
size = sizeof(struct fw_rsc_trace);
break;
+   case RSC_VDEV:
+   v = resource;
+   size = sizeof(struct fw_rsc_vdev);
+   size += v->num_of_vrings * sizeof(struct fw_rsc_vdev_vring);
+   size += v->config_len;
+   break;
default:
dev_err(dev, "Unsupported resource type: %d\n", type);
return -EINVAL;
-- 
1.9.1