Blame view

kernel/linux-imx6_3.14.28/drivers/clk/mvebu/common.h 1.12 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  /*
   * Marvell EBU SoC common clock handling
   *
   * Copyright (C) 2012 Marvell
   *
   * Gregory CLEMENT <gregory.clement@free-electrons.com>
   * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
   * Andrew Lunn <andrew@lunn.ch>
   *
   * This file is licensed under the terms of the GNU General Public
   * License version 2. This program is licensed "as is" without any
   * warranty of any kind, whether express or implied.
   */
  
  #ifndef __CLK_MVEBU_COMMON_H_
  #define __CLK_MVEBU_COMMON_H_
  
  #include <linux/kernel.h>
  
  struct device_node;
  
  struct coreclk_ratio {
  	int id;
  	const char *name;
  };
  
  struct coreclk_soc_desc {
  	u32 (*get_tclk_freq)(void __iomem *sar);
  	u32 (*get_cpu_freq)(void __iomem *sar);
  	void (*get_clk_ratio)(void __iomem *sar, int id, int *mult, int *div);
  	const struct coreclk_ratio *ratios;
  	int num_ratios;
  };
  
  struct clk_gating_soc_desc {
  	const char *name;
  	const char *parent;
  	int bit_idx;
  	unsigned long flags;
  };
  
  void __init mvebu_coreclk_setup(struct device_node *np,
  				const struct coreclk_soc_desc *desc);
  
  void __init mvebu_clk_gating_setup(struct device_node *np,
  				   const struct clk_gating_soc_desc *desc);
  
  #endif