[patch 04/32] greybus: host driver framework

2016-09-16 Thread Greg KH

This is the Greybus host driver framework files and logic.

Signed-off-by: Greg Kroah-Hartman 
---
 drivers/greybus/hd.c |  257 +++
 drivers/greybus/hd.h |   90 +
 2 files changed, 347 insertions(+)

--- /dev/null
+++ b/drivers/greybus/hd.c
@@ -0,0 +1,257 @@
+/*
+ * Greybus Host Device
+ *
+ * Copyright 2014-2015 Google Inc.
+ * Copyright 2014-2015 Linaro Ltd.
+ *
+ * Released under the GPLv2 only.
+ */
+
+#include 
+#include 
+
+#include "greybus.h"
+#include "greybus_trace.h"
+
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_create);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_release);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_add);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_del);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_in);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_message_submit);
+
+static struct ida gb_hd_bus_id_map;
+
+int gb_hd_output(struct gb_host_device *hd, void *req, u16 size, u8 cmd,
+bool async)
+{
+   if (!hd || !hd->driver || !hd->driver->output)
+   return -EINVAL;
+   return hd->driver->output(hd, req, size, cmd, async);
+}
+EXPORT_SYMBOL_GPL(gb_hd_output);
+
+static ssize_t bus_id_show(struct device *dev,
+   struct device_attribute *attr, char *buf)
+{
+   struct gb_host_device *hd = to_gb_host_device(dev);
+
+   return sprintf(buf, "%d\n", hd->bus_id);
+}
+static DEVICE_ATTR_RO(bus_id);
+
+static struct attribute *bus_attrs[] = {
+   _attr_bus_id.attr,
+   NULL
+};
+ATTRIBUTE_GROUPS(bus);
+
+int gb_hd_cport_reserve(struct gb_host_device *hd, u16 cport_id)
+{
+   struct ida *id_map = >cport_id_map;
+   int ret;
+
+   ret = ida_simple_get(id_map, cport_id, cport_id + 1, GFP_KERNEL);
+   if (ret < 0) {
+   dev_err(>dev, "failed to reserve cport %u\n", cport_id);
+   return ret;
+   }
+
+   return 0;
+}
+EXPORT_SYMBOL_GPL(gb_hd_cport_reserve);
+
+void gb_hd_cport_release_reserved(struct gb_host_device *hd, u16 cport_id)
+{
+   struct ida *id_map = >cport_id_map;
+
+   ida_simple_remove(id_map, cport_id);
+}
+EXPORT_SYMBOL_GPL(gb_hd_cport_release_reserved);
+
+/* Locking: Caller guarantees serialisation */
+int gb_hd_cport_allocate(struct gb_host_device *hd, int cport_id,
+   unsigned long flags)
+{
+   struct ida *id_map = >cport_id_map;
+   int ida_start, ida_end;
+
+   if (hd->driver->cport_allocate)
+   return hd->driver->cport_allocate(hd, cport_id, flags);
+
+   if (cport_id < 0) {
+   ida_start = 0;
+   ida_end = hd->num_cports;
+   } else if (cport_id < hd->num_cports) {
+   ida_start = cport_id;
+   ida_end = cport_id + 1;
+   } else {
+   dev_err(>dev, "cport %d not available\n", cport_id);
+   return -EINVAL;
+   }
+
+   return ida_simple_get(id_map, ida_start, ida_end, GFP_KERNEL);
+}
+
+/* Locking: Caller guarantees serialisation */
+void gb_hd_cport_release(struct gb_host_device *hd, u16 cport_id)
+{
+   if (hd->driver->cport_release) {
+   hd->driver->cport_release(hd, cport_id);
+   return;
+   }
+
+   ida_simple_remove(>cport_id_map, cport_id);
+}
+
+static void gb_hd_release(struct device *dev)
+{
+   struct gb_host_device *hd = to_gb_host_device(dev);
+
+   trace_gb_hd_release(hd);
+
+   if (hd->svc)
+   gb_svc_put(hd->svc);
+   ida_simple_remove(_hd_bus_id_map, hd->bus_id);
+   ida_destroy(>cport_id_map);
+   kfree(hd);
+}
+
+struct device_type greybus_hd_type = {
+   .name   = "greybus_host_device",
+   .release= gb_hd_release,
+};
+
+struct gb_host_device *gb_hd_create(struct gb_hd_driver *driver,
+   struct device *parent,
+   size_t buffer_size_max,
+   size_t num_cports)
+{
+   struct gb_host_device *hd;
+   int ret;
+
+   /*
+* Validate that the driver implements all of the callbacks
+* so that we don't have to every time we make them.
+*/
+   if ((!driver->message_send) || (!driver->message_cancel)) {
+   dev_err(parent, "mandatory hd-callbacks missing\n");
+   return ERR_PTR(-EINVAL);
+   }
+
+   if (buffer_size_max < GB_OPERATION_MESSAGE_SIZE_MIN) {
+   dev_err(parent, "greybus host-device buffers too small\n");
+   return ERR_PTR(-EINVAL);
+   }
+
+   if (num_cports == 0 || num_cports > CPORT_ID_MAX + 1) {
+   dev_err(parent, "Invalid number of CPorts: %zu\n", num_cports);
+   return ERR_PTR(-EINVAL);
+   }
+
+   /*
+* Make sure to never allocate messages larger than what the Greybus
+* protocol supports.
+*/
+   if (buffer_size_max > GB_OPERATION_MESSAGE_SIZE_MAX) {
+ 

[patch 04/32] greybus: host driver framework

2016-09-16 Thread Greg KH

This is the Greybus host driver framework files and logic.

Signed-off-by: Greg Kroah-Hartman 
---
 drivers/greybus/hd.c |  257 +++
 drivers/greybus/hd.h |   90 +
 2 files changed, 347 insertions(+)

--- /dev/null
+++ b/drivers/greybus/hd.c
@@ -0,0 +1,257 @@
+/*
+ * Greybus Host Device
+ *
+ * Copyright 2014-2015 Google Inc.
+ * Copyright 2014-2015 Linaro Ltd.
+ *
+ * Released under the GPLv2 only.
+ */
+
+#include 
+#include 
+
+#include "greybus.h"
+#include "greybus_trace.h"
+
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_create);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_release);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_add);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_del);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_hd_in);
+EXPORT_TRACEPOINT_SYMBOL_GPL(gb_message_submit);
+
+static struct ida gb_hd_bus_id_map;
+
+int gb_hd_output(struct gb_host_device *hd, void *req, u16 size, u8 cmd,
+bool async)
+{
+   if (!hd || !hd->driver || !hd->driver->output)
+   return -EINVAL;
+   return hd->driver->output(hd, req, size, cmd, async);
+}
+EXPORT_SYMBOL_GPL(gb_hd_output);
+
+static ssize_t bus_id_show(struct device *dev,
+   struct device_attribute *attr, char *buf)
+{
+   struct gb_host_device *hd = to_gb_host_device(dev);
+
+   return sprintf(buf, "%d\n", hd->bus_id);
+}
+static DEVICE_ATTR_RO(bus_id);
+
+static struct attribute *bus_attrs[] = {
+   _attr_bus_id.attr,
+   NULL
+};
+ATTRIBUTE_GROUPS(bus);
+
+int gb_hd_cport_reserve(struct gb_host_device *hd, u16 cport_id)
+{
+   struct ida *id_map = >cport_id_map;
+   int ret;
+
+   ret = ida_simple_get(id_map, cport_id, cport_id + 1, GFP_KERNEL);
+   if (ret < 0) {
+   dev_err(>dev, "failed to reserve cport %u\n", cport_id);
+   return ret;
+   }
+
+   return 0;
+}
+EXPORT_SYMBOL_GPL(gb_hd_cport_reserve);
+
+void gb_hd_cport_release_reserved(struct gb_host_device *hd, u16 cport_id)
+{
+   struct ida *id_map = >cport_id_map;
+
+   ida_simple_remove(id_map, cport_id);
+}
+EXPORT_SYMBOL_GPL(gb_hd_cport_release_reserved);
+
+/* Locking: Caller guarantees serialisation */
+int gb_hd_cport_allocate(struct gb_host_device *hd, int cport_id,
+   unsigned long flags)
+{
+   struct ida *id_map = >cport_id_map;
+   int ida_start, ida_end;
+
+   if (hd->driver->cport_allocate)
+   return hd->driver->cport_allocate(hd, cport_id, flags);
+
+   if (cport_id < 0) {
+   ida_start = 0;
+   ida_end = hd->num_cports;
+   } else if (cport_id < hd->num_cports) {
+   ida_start = cport_id;
+   ida_end = cport_id + 1;
+   } else {
+   dev_err(>dev, "cport %d not available\n", cport_id);
+   return -EINVAL;
+   }
+
+   return ida_simple_get(id_map, ida_start, ida_end, GFP_KERNEL);
+}
+
+/* Locking: Caller guarantees serialisation */
+void gb_hd_cport_release(struct gb_host_device *hd, u16 cport_id)
+{
+   if (hd->driver->cport_release) {
+   hd->driver->cport_release(hd, cport_id);
+   return;
+   }
+
+   ida_simple_remove(>cport_id_map, cport_id);
+}
+
+static void gb_hd_release(struct device *dev)
+{
+   struct gb_host_device *hd = to_gb_host_device(dev);
+
+   trace_gb_hd_release(hd);
+
+   if (hd->svc)
+   gb_svc_put(hd->svc);
+   ida_simple_remove(_hd_bus_id_map, hd->bus_id);
+   ida_destroy(>cport_id_map);
+   kfree(hd);
+}
+
+struct device_type greybus_hd_type = {
+   .name   = "greybus_host_device",
+   .release= gb_hd_release,
+};
+
+struct gb_host_device *gb_hd_create(struct gb_hd_driver *driver,
+   struct device *parent,
+   size_t buffer_size_max,
+   size_t num_cports)
+{
+   struct gb_host_device *hd;
+   int ret;
+
+   /*
+* Validate that the driver implements all of the callbacks
+* so that we don't have to every time we make them.
+*/
+   if ((!driver->message_send) || (!driver->message_cancel)) {
+   dev_err(parent, "mandatory hd-callbacks missing\n");
+   return ERR_PTR(-EINVAL);
+   }
+
+   if (buffer_size_max < GB_OPERATION_MESSAGE_SIZE_MIN) {
+   dev_err(parent, "greybus host-device buffers too small\n");
+   return ERR_PTR(-EINVAL);
+   }
+
+   if (num_cports == 0 || num_cports > CPORT_ID_MAX + 1) {
+   dev_err(parent, "Invalid number of CPorts: %zu\n", num_cports);
+   return ERR_PTR(-EINVAL);
+   }
+
+   /*
+* Make sure to never allocate messages larger than what the Greybus
+* protocol supports.
+*/
+   if (buffer_size_max > GB_OPERATION_MESSAGE_SIZE_MAX) {
+   dev_warn(parent,