]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/blackfin/include/asm/cpu.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
[mirror_ubuntu-zesty-kernel.git] / arch / blackfin / include / asm / cpu.h
CommitLineData
6b3087c6 1/*
96f1050d
RG
2 * Copyright 2007-2009 Analog Devices Inc.
3 * Philippe Gerum <rpm@xenomai.org>
6b3087c6 4 *
96f1050d 5 * Licensed under the GPL-2 or later.
6b3087c6
GY
6 */
7
8#ifndef __ASM_BLACKFIN_CPU_H
9#define __ASM_BLACKFIN_CPU_H
10
11#include <linux/percpu.h>
12
13struct task_struct;
14
15struct blackfin_cpudata {
16 struct cpu cpu;
17 struct task_struct *idle;
6b3087c6
GY
18 unsigned int imemctl;
19 unsigned int dmemctl;
6b3087c6 20 unsigned long dcache_invld_count;
47e9dedb 21 unsigned long icache_invld_count;
6b3087c6
GY
22};
23
24DECLARE_PER_CPU(struct blackfin_cpudata, cpu_data);
25
26#endif