cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

cpufreq.h (471B)


      1/* SPDX-License-Identifier: GPL-2.0-or-later */
      2/*
      3 * Copyright (c) 2014 Zhang, Keguang <keguang.zhang@gmail.com>
      4 *
      5 * Loongson 1 CPUFreq platform support.
      6 */
      7
      8#ifndef __ASM_MACH_LOONGSON32_CPUFREQ_H
      9#define __ASM_MACH_LOONGSON32_CPUFREQ_H
     10
     11struct plat_ls1x_cpufreq {
     12	const char	*clk_name;	/* CPU clk */
     13	const char	*osc_clk_name;	/* OSC clk */
     14	unsigned int	max_freq;	/* in kHz */
     15	unsigned int	min_freq;	/* in kHz */
     16};
     17
     18#endif /* __ASM_MACH_LOONGSON32_CPUFREQ_H */