Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 1 | /* |
| 2 | * V4L2 clock service |
| 3 | * |
| 4 | * Copyright (C) 2012-2013, Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * ATTENTION: This is a temporary API and it shall be replaced by the generic |
| 11 | * clock API, when the latter becomes widely available. |
| 12 | */ |
| 13 | |
| 14 | #ifndef MEDIA_V4L2_CLK_H |
| 15 | #define MEDIA_V4L2_CLK_H |
| 16 | |
| 17 | #include <linux/atomic.h> |
Guennadi Liakhovetski | cf326df | 2013-08-28 10:28:26 -0300 | [diff] [blame] | 18 | #include <linux/export.h> |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 19 | #include <linux/list.h> |
| 20 | #include <linux/mutex.h> |
| 21 | |
| 22 | struct module; |
| 23 | struct device; |
| 24 | |
Guennadi Liakhovetski | 4f528af | 2015-02-01 08:12:33 -0300 | [diff] [blame] | 25 | struct clk; |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 26 | struct v4l2_clk { |
| 27 | struct list_head list; |
| 28 | const struct v4l2_clk_ops *ops; |
| 29 | const char *dev_id; |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 30 | int enable; |
| 31 | struct mutex lock; /* Protect the enable count */ |
| 32 | atomic_t use_count; |
Guennadi Liakhovetski | 4f528af | 2015-02-01 08:12:33 -0300 | [diff] [blame] | 33 | struct clk *clk; |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 34 | void *priv; |
| 35 | }; |
| 36 | |
| 37 | struct v4l2_clk_ops { |
| 38 | struct module *owner; |
| 39 | int (*enable)(struct v4l2_clk *clk); |
| 40 | void (*disable)(struct v4l2_clk *clk); |
| 41 | unsigned long (*get_rate)(struct v4l2_clk *clk); |
| 42 | int (*set_rate)(struct v4l2_clk *clk, unsigned long); |
| 43 | }; |
| 44 | |
| 45 | struct v4l2_clk *v4l2_clk_register(const struct v4l2_clk_ops *ops, |
| 46 | const char *dev_name, |
Guennadi Liakhovetski | a37462b | 2015-01-31 20:21:32 -0300 | [diff] [blame] | 47 | void *priv); |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 48 | void v4l2_clk_unregister(struct v4l2_clk *clk); |
| 49 | struct v4l2_clk *v4l2_clk_get(struct device *dev, const char *id); |
| 50 | void v4l2_clk_put(struct v4l2_clk *clk); |
| 51 | int v4l2_clk_enable(struct v4l2_clk *clk); |
| 52 | void v4l2_clk_disable(struct v4l2_clk *clk); |
| 53 | unsigned long v4l2_clk_get_rate(struct v4l2_clk *clk); |
| 54 | int v4l2_clk_set_rate(struct v4l2_clk *clk, unsigned long rate); |
| 55 | |
Guennadi Liakhovetski | cf326df | 2013-08-28 10:28:26 -0300 | [diff] [blame] | 56 | struct module; |
| 57 | |
| 58 | struct v4l2_clk *__v4l2_clk_register_fixed(const char *dev_id, |
Guennadi Liakhovetski | a37462b | 2015-01-31 20:21:32 -0300 | [diff] [blame] | 59 | unsigned long rate, struct module *owner); |
Guennadi Liakhovetski | cf326df | 2013-08-28 10:28:26 -0300 | [diff] [blame] | 60 | void v4l2_clk_unregister_fixed(struct v4l2_clk *clk); |
| 61 | |
| 62 | static inline struct v4l2_clk *v4l2_clk_register_fixed(const char *dev_id, |
Guennadi Liakhovetski | cf326df | 2013-08-28 10:28:26 -0300 | [diff] [blame] | 63 | unsigned long rate) |
| 64 | { |
Guennadi Liakhovetski | a37462b | 2015-01-31 20:21:32 -0300 | [diff] [blame] | 65 | return __v4l2_clk_register_fixed(dev_id, rate, THIS_MODULE); |
Guennadi Liakhovetski | cf326df | 2013-08-28 10:28:26 -0300 | [diff] [blame] | 66 | } |
| 67 | |
Guennadi Liakhovetski | 774cc4c | 2013-08-28 10:28:27 -0300 | [diff] [blame] | 68 | #define v4l2_clk_name_i2c(name, size, adap, client) snprintf(name, size, \ |
| 69 | "%d-%04x", adap, client) |
| 70 | |
Guennadi Liakhovetski | ff5430d | 2012-12-04 07:42:15 -0300 | [diff] [blame] | 71 | #endif |