lin
2025-04-23 399353eb5dc7e9c1db94cc97c380dc7f66c51a4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * linux/include/linux/sunxi-cpufreq.h
 *
 * (C) Copyright 2017-2020
 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
 * lsh <liush@allwinnertech.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef _LINUX_SUNXI_CPUFREQ_H
#define _LINUX_SUNXI_CPUFREQ_H
 
/* dvfs config */
#define DVFS_VF_TABLE_MAX         (16)
struct cpufreq_dvfs_table {
   u32 freq;
   u32 voltage;
   u32 axi_div;
};
#endif /* _LINUX_SUNXI_CPUFREQ_H*/