blob: 8274a01e4ce1a73d4b5d18face5b0d417c4bfb7c (
plain)
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
|
/* arch/arm/mach-s5pv210/include/mach/cpu-freq-v210.h
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
*
* S5PV210/S5PC110 CPU frequency scaling support
*
* 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 __ASM_ARCH_CPU_FREQ_H
#define __ASM_ARCH_CPU_FREQ_H
#include <linux/cpufreq.h>
/* For cpu-freq driver */
struct s5pv210_cpufreq_voltage {
unsigned int freq; /* kHz */
unsigned long varm; /* uV */
unsigned long vint; /* uV */
};
struct s5pv210_cpufreq_data {
struct s5pv210_cpufreq_voltage *volt;
unsigned int size;
};
extern void s5pv210_cpufreq_set_platdata(struct s5pv210_cpufreq_data *pdata);
#endif /* __ASM_ARCH_CPU_FREQ_H */
|