Merge tag 'vfio-v4.5-rc7' of git://github.com/awilliam/linux-vfio
[linux-2.6-block.git] / drivers / clk / versatile / clk-icst.h
CommitLineData
91b87a47
LW
1#include <asm/hardware/icst.h>
2
7a9ad671
LW
3/**
4 * struct clk_icst_desc - descriptor for the ICST VCO
5 * @params: ICST parameters
6 * @vco_offset: offset to the ICST VCO from the provided memory base
7 * @lock_offset: offset to the ICST VCO locking register from the provided
8 * memory base
9 */
91b87a47
LW
10struct clk_icst_desc {
11 const struct icst_params *params;
7a9ad671
LW
12 u32 vco_offset;
13 u32 lock_offset;
91b87a47
LW
14};
15
16struct clk *icst_clk_register(struct device *dev,
7a9ad671 17 const struct clk_icst_desc *desc,
ae6e694e 18 const char *name,
bf6edb4b 19 const char *parent_name,
7a9ad671 20 void __iomem *base);