Path: blob/master/arch/arm/mach-davinci/include/mach/cpufreq.h
17613 views
/*1* TI DaVinci CPUFreq platform support.2*3* Copyright (C) 2009 Texas Instruments, Inc. http://www.ti.com/4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public License as7* published by the Free Software Foundation version 2.8*9* This program is distributed "as is" WITHOUT ANY WARRANTY of any10* kind, whether express or implied; without even the implied warranty11* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.13*/14#ifndef _MACH_DAVINCI_CPUFREQ_H15#define _MACH_DAVINCI_CPUFREQ_H1617#include <linux/cpufreq.h>1819struct davinci_cpufreq_config {20struct cpufreq_frequency_table *freq_table;21int (*set_voltage) (unsigned int index);22int (*init) (void);23};2425#endif262728