blob: 4890ff0332202d408ec971a2438a1efbbb4a45c6 [file] [log] [blame]
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +01001/*
2 * include/linux/clkdev.h
3 *
4 * Copyright (C) 2008 Russell King.
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 * Helper for the clk API to assist looking up a struct clk.
11 */
12#ifndef __CLKDEV_H
13#define __CLKDEV_H
14
Stephen Boyd0d4e3d02018-01-02 15:47:07 -080015#include <linux/slab.h>
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010016
17struct clk;
Stephen Boyde4f1b492016-02-08 14:59:49 -080018struct clk_hw;
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010019struct device;
20
21struct clk_lookup {
22 struct list_head node;
23 const char *dev_id;
24 const char *con_id;
25 struct clk *clk;
Russell Kingd5622a92015-03-02 15:45:41 +000026 struct clk_hw *clk_hw;
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010027};
28
Padmavathi Venna196a57c2011-10-13 12:56:32 +010029#define CLKDEV_INIT(d, n, c) \
30 { \
31 .dev_id = d, \
32 .con_id = n, \
33 .clk = c, \
34 }
35
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010036struct clk_lookup *clkdev_alloc(struct clk *clk, const char *con_id,
Nicolas Iooss8db14862015-07-17 16:23:42 -070037 const char *dev_fmt, ...) __printf(3, 4);
Stephen Boyde4f1b492016-02-08 14:59:49 -080038struct clk_lookup *clkdev_hw_alloc(struct clk_hw *hw, const char *con_id,
39 const char *dev_fmt, ...) __printf(3, 4);
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010040
41void clkdev_add(struct clk_lookup *cl);
42void clkdev_drop(struct clk_lookup *cl);
43
Russell King25689992015-03-02 15:40:29 +000044struct clk_lookup *clkdev_create(struct clk *clk, const char *con_id,
Nicolas Iooss8db14862015-07-17 16:23:42 -070045 const char *dev_fmt, ...) __printf(3, 4);
Stephen Boyde4f1b492016-02-08 14:59:49 -080046struct clk_lookup *clkdev_hw_create(struct clk_hw *hw, const char *con_id,
47 const char *dev_fmt, ...) __printf(3, 4);
Russell King25689992015-03-02 15:40:29 +000048
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010049void clkdev_add_table(struct clk_lookup *, size_t);
Russell Kingb3d8d7e2015-03-09 10:43:04 +000050int clk_add_alias(const char *, const char *, const char *, struct device *);
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010051
Kees Cook416dd132016-01-26 01:21:26 +010052int clk_register_clkdev(struct clk *, const char *, const char *);
Stephen Boyde4f1b492016-02-08 14:59:49 -080053int clk_hw_register_clkdev(struct clk_hw *, const char *, const char *);
Russell Kinge9d7f402012-05-02 09:30:32 +010054
Jean-Christop PLAGNIOL-VILLARD6d803ba2010-11-17 10:04:33 +010055#endif