File: rtl_sync.h

package info (click to toggle)
rtlinux 3.1pre3-2
  • links: PTS
  • area: non-free
  • in suites: sarge, woody
  • size: 4,892 kB
  • ctags: 4,228
  • sloc: ansic: 26,204; sh: 2,069; makefile: 1,414; perl: 855; tcl: 489; asm: 380; cpp: 42
file content (49 lines) | stat: -rw-r--r-- 1,205 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright (C) 1999-2001 FSM Labs (http://www.fsmlabs.com/)
 *  Written by Cort Dougan <cort@fsmlabs.com>
 *
 */
#ifndef __ARCH_RTL_SYNC__
#define __ARCH_RTL_SYNC__

#include <linux/version.h>

#include <asm/ptrace.h>
#include <asm/atomic.h>
#include <asm/hw_irq.h>

typedef unsigned long rtl_irqstate_t;

#define __rtl_hard_cli() __asm__ __volatile__ ( 	\
	"mfmsr	0\n\t"			\
	"rlwinm	0,0,0,17,15\n\t"	\
	"sync\n\t"			\
	"mtmsr	0\n\t"			\
	"sync\n\t" : /* output */ : /* input */ : "r0" )

#define __rtl_hard_sti() __asm__ __volatile__ ( 	\
	"mfmsr	3\n\t"			\
	"ori	3,3,%0\n\t"		\
	"sync\n\t"			\
	"mtmsr	3\n\t"			\
	"sync\n\t" : /* output */ : "i" (MSR_EE) : "r3" )

#define __rtl_hard_save_flags(x) __asm__ __volatile__ ( "mfmsr	%0" : "=r" (x) )

#define __rtl_hard_restore_flags(x) __asm__ __volatile__  ( \
	"mfmsr 	4\n\t"			\
	"rlwimi	%0,4,0,17,15\n\t"	\
	/*"cmpw	0,%0,4\n\t"*/		\
	/*"beq	10f\n\t"*/		\
	"1:sync\n\t"			\
	"mtmsr	%0\n\t"			\
	"sync\n10:\t" : /* output */ : "r" (x) : "r0", "r4")

#define __rtl_hard_savef_and_cli(x) __asm__ __volatile__ ( \
	"mfmsr	%0\n\t"			\
	"rlwinm	0,%0,0,17,15\n\t"	\
	"sync\n\t"			\
	"mtmsr	0\n\t"			\
	"sync\n\t" : "=r" (x) : /* input */ : "r0" )

#endif