-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 62458 b: refs/heads/master c: 32231a6 h: refs/heads/master v: v3
- Loading branch information
Al Viro
authored and
David S. Miller
committed
Jul 22, 2007
1 parent
6cc0048
commit d12a0fb
Showing
13 changed files
with
152 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 196bffa5dc3181897bd32e41415ec0db8dbab5e7 | ||
refs/heads/master: 32231a66b4e1b649c346dc76b7d191f7e64a663a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#include <asm/btfixup.h> | ||
|
||
BTFIXUPDEF_CALL(void, disable_pil_irq, unsigned int) | ||
BTFIXUPDEF_CALL(void, enable_pil_irq, unsigned int) | ||
BTFIXUPDEF_CALL(void, clear_clock_irq, void) | ||
BTFIXUPDEF_CALL(void, clear_profile_irq, int) | ||
BTFIXUPDEF_CALL(void, load_profile_irq, int, unsigned int) | ||
|
||
static inline void disable_pil_irq(unsigned int irq) | ||
{ | ||
BTFIXUP_CALL(disable_pil_irq)(irq); | ||
} | ||
|
||
static inline void enable_pil_irq(unsigned int irq) | ||
{ | ||
BTFIXUP_CALL(enable_pil_irq)(irq); | ||
} | ||
|
||
static inline void clear_clock_irq(void) | ||
{ | ||
BTFIXUP_CALL(clear_clock_irq)(); | ||
} | ||
|
||
static inline void clear_profile_irq(int irq) | ||
{ | ||
BTFIXUP_CALL(clear_profile_irq)(irq); | ||
} | ||
|
||
static inline void load_profile_irq(int cpu, int limit) | ||
{ | ||
BTFIXUP_CALL(load_profile_irq)(cpu, limit); | ||
} | ||
|
||
extern void (*sparc_init_timers)(irq_handler_t lvl10_irq); | ||
|
||
extern void claim_ticker14(irq_handler_t irq_handler, | ||
int irq, | ||
unsigned int timeout); | ||
|
||
#ifdef CONFIG_SMP | ||
BTFIXUPDEF_CALL(void, set_cpu_int, int, int) | ||
BTFIXUPDEF_CALL(void, clear_cpu_int, int, int) | ||
BTFIXUPDEF_CALL(void, set_irq_udt, int) | ||
|
||
#define set_cpu_int(cpu,level) BTFIXUP_CALL(set_cpu_int)(cpu,level) | ||
#define clear_cpu_int(cpu,level) BTFIXUP_CALL(clear_cpu_int)(cpu,level) | ||
#define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu) | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters