hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
 *
 * Common Clock Framework support for all PLL's in Samsung platforms
*/
 
#ifndef __SAMSUNG_CLK_CPU_H
#define __SAMSUNG_CLK_CPU_H
 
#include "clk.h"
 
/**
 * struct exynos_cpuclk_data: config data to setup cpu clocks.
 * @prate: frequency of the primary parent clock (in KHz).
 * @div0: value to be programmed in the div_cpu0 register.
 * @div1: value to be programmed in the div_cpu1 register.
 *
 * This structure holds the divider configuration data for dividers in the CPU
 * clock domain. The parent frequency at which these divider values are valid is
 * specified in @prate. The @prate is the frequency of the primary parent clock.
 * For CPU clock domains that do not have a DIV1 register, the @div1 member
 * value is not used.
 */
struct exynos_cpuclk_cfg_data {
   unsigned long    prate;
   unsigned long    div0;
   unsigned long    div1;
};
 
/**
 * struct exynos_cpuclk: information about clock supplied to a CPU core.
 * @hw:    handle between CCF and CPU clock.
 * @alt_parent: alternate parent clock to use when switching the speed
 *    of the primary parent clock.
 * @ctrl_base:    base address of the clock controller.
 * @lock: cpu clock domain register access lock.
 * @cfg: cpu clock rate configuration data.
 * @num_cfgs: number of array elements in @cfg array.
 * @clk_nb: clock notifier registered for changes in clock speed of the
 *    primary parent clock.
 * @flags: configuration flags for the CPU clock.
 *
 * This structure holds information required for programming the CPU clock for
 * various clock speeds.
 */
struct exynos_cpuclk {
   struct clk_hw                hw;
   const struct clk_hw            *alt_parent;
   void __iomem                *ctrl_base;
   spinlock_t                *lock;
   const struct exynos_cpuclk_cfg_data    *cfg;
   const unsigned long            num_cfgs;
   struct notifier_block            clk_nb;
   unsigned long                flags;
 
/* The CPU clock registers have DIV1 configuration register */
#define CLK_CPU_HAS_DIV1        (1 << 0)
/* When ALT parent is active, debug clocks need safe divider values */
#define CLK_CPU_NEEDS_DEBUG_ALT_DIV    (1 << 1)
/* The CPU clock registers have Exynos5433-compatible layout */
#define CLK_CPU_HAS_E5433_REGS_LAYOUT    (1 << 2)
};
 
int __init exynos_register_cpu_clock(struct samsung_clk_provider *ctx,
           unsigned int lookup_id, const char *name,
           const struct clk_hw *parent, const struct clk_hw *alt_parent,
           unsigned long offset,
           const struct exynos_cpuclk_cfg_data *cfg,
           unsigned long num_cfgs, unsigned long flags);
 
#endif /* __SAMSUNG_CLK_CPU_H */