blob: 006f577c9591423bbeb0d442ff2ebc6d9e222b45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/fiq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Support for FIQ on ARM architectures.
5 * Written by Philip Blundell <philb@gnu.org>, 1998
6 * Re-written by Russell King
Dave Martin2846d842011-05-24 12:11:48 +01007 *
8 * NOTE: The FIQ mode registers are not magically preserved across
9 * suspend/resume.
10 *
11 * Drivers which require these registers to be preserved across power
12 * management operations must implement appropriate suspend/resume handlers to
13 * save and restore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16#ifndef __ASM_FIQ_H
17#define __ASM_FIQ_H
18
19#include <asm/ptrace.h>
20
21struct fiq_handler {
22 struct fiq_handler *next;
23 /* Name
24 */
25 const char *name;
26 /* Called to ask driver to relinquish/
27 * reacquire FIQ
28 * return zero to accept, or -<errno>
29 */
30 int (*fiq_op)(void *, int relinquish);
31 /* data for the relinquish/reacquire functions
32 */
33 void *dev_id;
34};
35
Rohit Vaswanieb81fb32012-01-13 15:53:12 -080036#ifdef CONFIG_FIQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070037extern int claim_fiq(struct fiq_handler *f);
38extern void release_fiq(struct fiq_handler *f);
39extern void set_fiq_handler(void *start, unsigned int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040extern void enable_fiq(int fiq);
41extern void disable_fiq(int fiq);
Taniya Das1c01ace2012-08-24 20:15:24 +053042extern void fiq_set_type(int fiq, unsigned int type);
Rohit Vaswanieb81fb32012-01-13 15:53:12 -080043#else
44static inline int claim_fiq(struct fiq_handler *f)
45{
46 return 0;
47}
48static inline void release_fiq(struct fiq_handler *f) { }
49static inline void set_fiq_handler(void *start, unsigned int length) { }
50static inline void enable_fiq(int fiq) { }
51static inline void disable_fiq(int fiq) { }
Taniya Das1c01ace2012-08-24 20:15:24 +053052static inline void fiq_set_type(int fiq, unsigned int type) { }
Rohit Vaswanieb81fb32012-01-13 15:53:12 -080053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dave Martindc2eb922011-05-23 12:22:10 +010055/* helpers defined in fiqasm.S: */
56extern void __set_fiq_regs(unsigned long const *regs);
57extern void __get_fiq_regs(unsigned long *regs);
58
59static inline void set_fiq_regs(struct pt_regs const *regs)
60{
61 __set_fiq_regs(&regs->ARM_r8);
62}
63
64static inline void get_fiq_regs(struct pt_regs *regs)
65{
66 __get_fiq_regs(&regs->ARM_r8);
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif