Blame view

kernel/linux-imx6_3.14.28/drivers/clk/versatile/clk-icst.h 528 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #include <asm/hardware/icst.h>
  
  /**
   * struct clk_icst_desc - descriptor for the ICST VCO
   * @params: ICST parameters
   * @vco_offset: offset to the ICST VCO from the provided memory base
   * @lock_offset: offset to the ICST VCO locking register from the provided
   *	memory base
   */
  struct clk_icst_desc {
  	const struct icst_params *params;
  	u32 vco_offset;
  	u32 lock_offset;
  };
  
  struct clk *icst_clk_register(struct device *dev,
  			      const struct clk_icst_desc *desc,
  			      const char *name,
  			      void __iomem *base);