2019-06-04 16:11:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2010-11-17 17:04:33 +08:00
|
|
|
/*
|
|
|
|
* include/linux/clkdev.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Russell King.
|
|
|
|
*
|
|
|
|
* Helper for the clk API to assist looking up a struct clk.
|
|
|
|
*/
|
|
|
|
#ifndef __CLKDEV_H
|
|
|
|
#define __CLKDEV_H
|
|
|
|
|
2018-01-03 07:47:07 +08:00
|
|
|
#include <linux/slab.h>
|
2010-11-17 17:04:33 +08:00
|
|
|
|
|
|
|
struct clk;
|
2016-02-09 06:59:49 +08:00
|
|
|
struct clk_hw;
|
2010-11-17 17:04:33 +08:00
|
|
|
struct device;
|
|
|
|
|
|
|
|
struct clk_lookup {
|
|
|
|
struct list_head node;
|
|
|
|
const char *dev_id;
|
|
|
|
const char *con_id;
|
|
|
|
struct clk *clk;
|
2015-03-02 23:45:41 +08:00
|
|
|
struct clk_hw *clk_hw;
|
2010-11-17 17:04:33 +08:00
|
|
|
};
|
|
|
|
|
2011-10-13 19:56:32 +08:00
|
|
|
#define CLKDEV_INIT(d, n, c) \
|
|
|
|
{ \
|
|
|
|
.dev_id = d, \
|
|
|
|
.con_id = n, \
|
|
|
|
.clk = c, \
|
|
|
|
}
|
|
|
|
|
2010-11-17 17:04:33 +08:00
|
|
|
struct clk_lookup *clkdev_alloc(struct clk *clk, const char *con_id,
|
2015-07-18 07:23:42 +08:00
|
|
|
const char *dev_fmt, ...) __printf(3, 4);
|
2016-02-09 06:59:49 +08:00
|
|
|
struct clk_lookup *clkdev_hw_alloc(struct clk_hw *hw, const char *con_id,
|
|
|
|
const char *dev_fmt, ...) __printf(3, 4);
|
2010-11-17 17:04:33 +08:00
|
|
|
|
|
|
|
void clkdev_add(struct clk_lookup *cl);
|
|
|
|
void clkdev_drop(struct clk_lookup *cl);
|
|
|
|
|
2015-03-02 23:40:29 +08:00
|
|
|
struct clk_lookup *clkdev_create(struct clk *clk, const char *con_id,
|
2015-07-18 07:23:42 +08:00
|
|
|
const char *dev_fmt, ...) __printf(3, 4);
|
2016-02-09 06:59:49 +08:00
|
|
|
struct clk_lookup *clkdev_hw_create(struct clk_hw *hw, const char *con_id,
|
|
|
|
const char *dev_fmt, ...) __printf(3, 4);
|
2015-03-02 23:40:29 +08:00
|
|
|
|
2010-11-17 17:04:33 +08:00
|
|
|
void clkdev_add_table(struct clk_lookup *, size_t);
|
2015-03-09 18:43:04 +08:00
|
|
|
int clk_add_alias(const char *, const char *, const char *, struct device *);
|
2010-11-17 17:04:33 +08:00
|
|
|
|
2016-01-26 08:21:26 +08:00
|
|
|
int clk_register_clkdev(struct clk *, const char *, const char *);
|
2016-02-09 06:59:49 +08:00
|
|
|
int clk_hw_register_clkdev(struct clk_hw *, const char *, const char *);
|
2012-05-02 16:30:32 +08:00
|
|
|
|
2018-12-07 19:09:39 +08:00
|
|
|
int devm_clk_hw_register_clkdev(struct device *dev, struct clk_hw *hw,
|
|
|
|
const char *con_id, const char *dev_id);
|
|
|
|
void devm_clk_release_clkdev(struct device *dev, const char *con_id,
|
|
|
|
const char *dev_id);
|
2010-11-17 17:04:33 +08:00
|
|
|
#endif
|