blob: 9e92cb205e656e61d1b47a3aed9268dd343db205 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/proc-fns.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1997-1999 Russell King
5 * Copyright (C) 2000 Deep Blue Solutions Ltd
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef __ASM_PROCFNS_H
12#define __ASM_PROCFNS_H
13
14#ifdef __KERNEL__
15
Russell King753790e2011-02-06 15:32:24 +000016#include <asm/glue-proc.h>
17#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#ifndef __ASSEMBLY__
20
Russell King753790e2011-02-06 15:32:24 +000021struct mm_struct;
22
23/*
24 * Don't change this structure - ASM code relies on it.
25 */
26extern struct processor {
27 /* MISC
28 * get data abort address/flags
29 */
30 void (*_data_abort)(unsigned long pc);
31 /*
32 * Retrieve prefetch fault address
33 */
34 unsigned long (*_prefetch_abort)(unsigned long lr);
35 /*
36 * Set up any processor specifics
37 */
38 void (*_proc_init)(void);
39 /*
40 * Disable any processor specifics
41 */
42 void (*_proc_fin)(void);
43 /*
44 * Special stuff for a reset
45 */
46 void (*reset)(unsigned long addr) __attribute__((noreturn));
47 /*
48 * Idle the processor
49 */
50 int (*_do_idle)(void);
51 /*
52 * Processor architecture specific
53 */
54 /*
55 * clean a virtual address range from the
56 * D-cache without flushing the cache.
57 */
58 void (*dcache_clean_area)(void *addr, int size);
59
60 /*
61 * Set the page table
62 */
63 void (*switch_mm)(unsigned long pgd_phys, struct mm_struct *mm);
64 /*
65 * Set a possibly extended PTE. Non-extended PTEs should
66 * ignore 'ext'.
67 */
68 void (*set_pte_ext)(pte_t *ptep, pte_t pte, unsigned int ext);
Russell Kingf6b0fa02011-02-06 15:48:39 +000069
70 /* Suspend/resume */
71 unsigned int suspend_size;
72 void (*do_suspend)(void *);
73 void (*do_resume)(void *);
Russell King753790e2011-02-06 15:32:24 +000074} processor;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#ifndef MULTI_CPU
Russell King753790e2011-02-06 15:32:24 +000077extern void cpu_proc_init(void);
78extern void cpu_proc_fin(void);
79extern int cpu_do_idle(void);
80extern void cpu_dcache_clean_area(void *, int);
81extern void cpu_do_switch_mm(unsigned long pgd_phys, struct mm_struct *mm);
82extern void cpu_set_pte_ext(pte_t *ptep, pte_t pte, unsigned int ext);
83extern void cpu_reset(unsigned long addr) __attribute__((noreturn));
Russell Kingabda1bd2011-09-01 11:52:33 +010084
85/* These three are private to arch/arm/kernel/suspend.c */
86extern void cpu_do_suspend(void *);
87extern void cpu_do_resume(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#else
Will Deaconeca5dc22011-07-01 14:37:08 +010089#define cpu_proc_init processor._proc_init
90#define cpu_proc_fin processor._proc_fin
91#define cpu_reset processor.reset
92#define cpu_do_idle processor._do_idle
93#define cpu_dcache_clean_area processor.dcache_clean_area
94#define cpu_set_pte_ext processor.set_pte_ext
95#define cpu_do_switch_mm processor.switch_mm
Russell Kingabda1bd2011-09-01 11:52:33 +010096
97/* These three are private to arch/arm/kernel/suspend.c */
98#define cpu_do_suspend processor.do_suspend
99#define cpu_do_resume processor.do_resume
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101
Russell Kingf6b0fa02011-02-06 15:48:39 +0000102extern void cpu_resume(void);
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <asm/memory.h>
105
Russell King002547b2006-06-20 20:46:52 +0100106#ifdef CONFIG_MMU
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define cpu_switch_mm(pgd,mm) cpu_do_switch_mm(virt_to_phys(pgd),mm)
109
110#define cpu_get_pgd() \
111 ({ \
112 unsigned long pg; \
113 __asm__("mrc p15, 0, %0, c2, c0, 0" \
114 : "=r" (pg) : : "cc"); \
115 pg &= ~0x3fff; \
116 (pgd_t *)phys_to_virt(pg); \
117 })
118
Russell King002547b2006-06-20 20:46:52 +0100119#endif
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif /* __ASSEMBLY__ */
122#endif /* __KERNEL__ */
123#endif /* __ASM_PROCFNS_H */