[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170314134819.19476-3-andrew.smirnov@gmail.com>
Date: Tue, 14 Mar 2017 06:48:19 -0700
From: Andrey Smirnov <andrew.smirnov@...il.com>
To: Rob Herring <robh@...nel.org>
Cc: Andrey Smirnov <andrew.smirnov@...il.com>, cphealy@...il.com,
Guenter Roeck <linux@...ck-us.net>,
linux-serial@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 2/2] serdev: Add minimal bus locking API
Add minimal bus locking API which is useful for serial devices that
implement request-reply protocol
Cc: cphealy@...il.com
Cc: Guenter Roeck <linux@...ck-us.net>
Cc: linux-serial@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
Signed-off-by: Andrey Smirnov <andrew.smirnov@...il.com>
---
drivers/tty/serdev/core.c | 1 +
include/linux/serdev.h | 11 +++++++++++
2 files changed, 12 insertions(+)
diff --git a/drivers/tty/serdev/core.c b/drivers/tty/serdev/core.c
index 759e834..20ca231 100644
--- a/drivers/tty/serdev/core.c
+++ b/drivers/tty/serdev/core.c
@@ -269,6 +269,7 @@ struct serdev_device *serdev_device_alloc(struct serdev_controller *ctrl)
serdev->dev.type = &serdev_device_type;
init_completion(&serdev->write_wakeup);
mutex_init(&serdev->write_lock);
+ mutex_init(&serdev->bus_lock);
return serdev;
}
EXPORT_SYMBOL_GPL(serdev_device_alloc);
diff --git a/include/linux/serdev.h b/include/linux/serdev.h
index 8f7aa35..6b73a79 100644
--- a/include/linux/serdev.h
+++ b/include/linux/serdev.h
@@ -48,6 +48,7 @@ struct serdev_device {
const struct serdev_device_ops *ops;
struct completion write_wakeup;
struct mutex write_lock;
+ struct mutex bus_lock;
};
static inline struct serdev_device *to_serdev_device(struct device *d)
@@ -55,6 +56,16 @@ static inline struct serdev_device *to_serdev_device(struct device *d)
return container_of(d, struct serdev_device, dev);
}
+static inline void serdev_device_bus_lock(struct serdev_device *serdev)
+{
+ mutex_lock(&serdev->bus_lock);
+}
+
+static inline void serdev_device_bus_unlock(struct serdev_device *serdev)
+{
+ mutex_unlock(&serdev->bus_lock);
+}
+
/**
* struct serdev_device_driver - serdev slave device driver
* @driver: serdev device drivers should initialize name field of this
--
2.9.3
Powered by blists - more mailing lists