Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * TI DaVinci CPUFreq platform support.
0004  *
0005  * Copyright (C) 2009 Texas Instruments, Inc. https://www.ti.com/
0006  */
0007 
0008 #ifndef _MACH_DAVINCI_CPUFREQ_H
0009 #define _MACH_DAVINCI_CPUFREQ_H
0010 
0011 #include <linux/cpufreq.h>
0012 
0013 struct davinci_cpufreq_config {
0014     struct cpufreq_frequency_table *freq_table;
0015     int (*set_voltage)(unsigned int index);
0016     int (*init)(void);
0017 };
0018 
0019 #endif /* _MACH_DAVINCI_CPUFREQ_H */