2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2008-08-02 10:55:55 +01:00
|
|
|
* arch/arm/include/asm/cpu.h
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
|
|
|
|
* Copyright (C) 2004-2005 ARM Ltd.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __ASM_ARM_CPU_H
|
|
|
|
|
#define __ASM_ARM_CPU_H
|
|
|
|
|
|
|
|
|
|
#include <linux/percpu.h>
|
2010-01-10 09:21:53 +01:00
|
|
|
#include <linux/cpu.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
struct cpuinfo_arm {
|
|
|
|
|
struct cpu cpu;
|
2012-11-06 11:57:43 +00:00
|
|
|
u32 cpuid;
|
2005-04-16 15:20:36 -07:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
unsigned int loops_per_jiffy;
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
DECLARE_PER_CPU(struct cpuinfo_arm, cpu_data);
|
|
|
|
|
|
|
|
|
|
#endif
|