hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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
/* SPDX-License-Identifier: GPL-2.0 */
 
#ifndef __CLK_EXYNOS5_SUBCMU_H
#define __CLK_EXYNOS5_SUBCMU_H
 
struct exynos5_subcmu_reg_dump {
   u32 offset;
   u32 value;
   u32 mask;
   u32 save;
};
 
struct exynos5_subcmu_info {
   const struct samsung_div_clock *div_clks;
   unsigned int nr_div_clks;
   const struct samsung_gate_clock *gate_clks;
   unsigned int nr_gate_clks;
   struct exynos5_subcmu_reg_dump *suspend_regs;
   unsigned int nr_suspend_regs;
   const char *pd_name;
};
 
void exynos5_subcmus_init(struct samsung_clk_provider *ctx, int nr_cmus,
             const struct exynos5_subcmu_info **cmu);
 
#endif