diff options
Diffstat (limited to 'arch/sparc/include/asm')
-rw-r--r-- | arch/sparc/include/asm/Kbuild | 1 | ||||
-rw-r--r-- | arch/sparc/include/asm/atomic_32.h | 2 | ||||
-rw-r--r-- | arch/sparc/include/asm/atomic_64.h | 3 | ||||
-rw-r--r-- | arch/sparc/include/asm/byteorder.h | 46 | ||||
-rw-r--r-- | arch/sparc/include/asm/swab.h | 45 | ||||
-rw-r--r-- | arch/sparc/include/asm/timer_64.h | 2 | ||||
-rw-r--r-- | arch/sparc/include/asm/types.h | 2 |
7 files changed, 50 insertions, 51 deletions
diff --git a/arch/sparc/include/asm/Kbuild b/arch/sparc/include/asm/Kbuild index deeb0fba8029..95e38a43dff0 100644 --- a/arch/sparc/include/asm/Kbuild +++ b/arch/sparc/include/asm/Kbuild | |||
@@ -17,3 +17,4 @@ header-y += traps.h | |||
17 | header-y += uctx.h | 17 | header-y += uctx.h |
18 | header-y += utrap.h | 18 | header-y += utrap.h |
19 | header-y += watchdog.h | 19 | header-y += watchdog.h |
20 | header-y += swab.h | ||
diff --git a/arch/sparc/include/asm/atomic_32.h b/arch/sparc/include/asm/atomic_32.h index 5c944b5a8040..ce465975a6a5 100644 --- a/arch/sparc/include/asm/atomic_32.h +++ b/arch/sparc/include/asm/atomic_32.h | |||
@@ -13,8 +13,6 @@ | |||
13 | 13 | ||
14 | #include <linux/types.h> | 14 | #include <linux/types.h> |
15 | 15 | ||
16 | typedef struct { volatile int counter; } atomic_t; | ||
17 | |||
18 | #ifdef __KERNEL__ | 16 | #ifdef __KERNEL__ |
19 | 17 | ||
20 | #define ATOMIC_INIT(i) { (i) } | 18 | #define ATOMIC_INIT(i) { (i) } |
diff --git a/arch/sparc/include/asm/atomic_64.h b/arch/sparc/include/asm/atomic_64.h index 5982c5ae7f07..a0a706492696 100644 --- a/arch/sparc/include/asm/atomic_64.h +++ b/arch/sparc/include/asm/atomic_64.h | |||
@@ -10,9 +10,6 @@ | |||
10 | #include <linux/types.h> | 10 | #include <linux/types.h> |
11 | #include <asm/system.h> | 11 | #include <asm/system.h> |
12 | 12 | ||
13 | typedef struct { volatile int counter; } atomic_t; | ||
14 | typedef struct { volatile __s64 counter; } atomic64_t; | ||
15 | |||
16 | #define ATOMIC_INIT(i) { (i) } | 13 | #define ATOMIC_INIT(i) { (i) } |
17 | #define ATOMIC64_INIT(i) { (i) } | 14 | #define ATOMIC64_INIT(i) { (i) } |
18 | 15 | ||
diff --git a/arch/sparc/include/asm/byteorder.h b/arch/sparc/include/asm/byteorder.h index 738414b26558..48a047cd6fa9 100644 --- a/arch/sparc/include/asm/byteorder.h +++ b/arch/sparc/include/asm/byteorder.h | |||
@@ -1,49 +1,7 @@ | |||
1 | #ifndef _SPARC_BYTEORDER_H | 1 | #ifndef _SPARC_BYTEORDER_H |
2 | #define _SPARC_BYTEORDER_H | 2 | #define _SPARC_BYTEORDER_H |
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <asm/swab.h> |
5 | #include <asm/asi.h> | 5 | #include <linux/byteorder/big_endian.h> |
6 | |||
7 | #define __BIG_ENDIAN | ||
8 | |||
9 | #if defined(__sparc__) && defined(__arch64__) | ||
10 | static inline __u16 __arch_swab16p(const __u16 *addr) | ||
11 | { | ||
12 | __u16 ret; | ||
13 | |||
14 | __asm__ __volatile__ ("lduha [%1] %2, %0" | ||
15 | : "=r" (ret) | ||
16 | : "r" (addr), "i" (ASI_PL)); | ||
17 | return ret; | ||
18 | } | ||
19 | #define __arch_swab16p __arch_swab16p | ||
20 | |||
21 | static inline __u32 __arch_swab32p(const __u32 *addr) | ||
22 | { | ||
23 | __u32 ret; | ||
24 | |||
25 | __asm__ __volatile__ ("lduwa [%1] %2, %0" | ||
26 | : "=r" (ret) | ||
27 | : "r" (addr), "i" (ASI_PL)); | ||
28 | return ret; | ||
29 | } | ||
30 | #define __arch_swab32p __arch_swab32p | ||
31 | |||
32 | static inline __u64 __arch_swab64p(const __u64 *addr) | ||
33 | { | ||
34 | __u64 ret; | ||
35 | |||
36 | __asm__ __volatile__ ("ldxa [%1] %2, %0" | ||
37 | : "=r" (ret) | ||
38 | : "r" (addr), "i" (ASI_PL)); | ||
39 | return ret; | ||
40 | } | ||
41 | #define __arch_swab64p __arch_swab64p | ||
42 | |||
43 | #else | ||
44 | #define __SWAB_64_THRU_32__ | ||
45 | #endif /* defined(__sparc__) && defined(__arch64__) */ | ||
46 | |||
47 | #include <linux/byteorder.h> | ||
48 | 6 | ||
49 | #endif /* _SPARC_BYTEORDER_H */ | 7 | #endif /* _SPARC_BYTEORDER_H */ |
diff --git a/arch/sparc/include/asm/swab.h b/arch/sparc/include/asm/swab.h new file mode 100644 index 000000000000..a34ad079487e --- /dev/null +++ b/arch/sparc/include/asm/swab.h | |||
@@ -0,0 +1,45 @@ | |||
1 | #ifndef _SPARC_SWAB_H | ||
2 | #define _SPARC_SWAB_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | #include <asm/asi.h> | ||
6 | |||
7 | #if defined(__sparc__) && defined(__arch64__) | ||
8 | static inline __u16 __arch_swab16p(const __u16 *addr) | ||
9 | { | ||
10 | __u16 ret; | ||
11 | |||
12 | __asm__ __volatile__ ("lduha [%1] %2, %0" | ||
13 | : "=r" (ret) | ||
14 | : "r" (addr), "i" (ASI_PL)); | ||
15 | return ret; | ||
16 | } | ||
17 | #define __arch_swab16p __arch_swab16p | ||
18 | |||
19 | static inline __u32 __arch_swab32p(const __u32 *addr) | ||
20 | { | ||
21 | __u32 ret; | ||
22 | |||
23 | __asm__ __volatile__ ("lduwa [%1] %2, %0" | ||
24 | : "=r" (ret) | ||
25 | : "r" (addr), "i" (ASI_PL)); | ||
26 | return ret; | ||
27 | } | ||
28 | #define __arch_swab32p __arch_swab32p | ||
29 | |||
30 | static inline __u64 __arch_swab64p(const __u64 *addr) | ||
31 | { | ||
32 | __u64 ret; | ||
33 | |||
34 | __asm__ __volatile__ ("ldxa [%1] %2, %0" | ||
35 | : "=r" (ret) | ||
36 | : "r" (addr), "i" (ASI_PL)); | ||
37 | return ret; | ||
38 | } | ||
39 | #define __arch_swab64p __arch_swab64p | ||
40 | |||
41 | #else | ||
42 | #define __SWAB_64_THRU_32__ | ||
43 | #endif /* defined(__sparc__) && defined(__arch64__) */ | ||
44 | |||
45 | #endif /* _SPARC_SWAB_H */ | ||
diff --git a/arch/sparc/include/asm/timer_64.h b/arch/sparc/include/asm/timer_64.h index 5b779fd1f788..ef3c3682debf 100644 --- a/arch/sparc/include/asm/timer_64.h +++ b/arch/sparc/include/asm/timer_64.h | |||
@@ -10,7 +10,7 @@ | |||
10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
11 | 11 | ||
12 | struct sparc64_tick_ops { | 12 | struct sparc64_tick_ops { |
13 | unsigned long (*get_tick)(void); | 13 | unsigned long long (*get_tick)(void); |
14 | int (*add_compare)(unsigned long); | 14 | int (*add_compare)(unsigned long); |
15 | unsigned long softint_mask; | 15 | unsigned long softint_mask; |
16 | void (*disable_irq)(void); | 16 | void (*disable_irq)(void); |
diff --git a/arch/sparc/include/asm/types.h b/arch/sparc/include/asm/types.h index 8c28fde5eaa2..2237118825d0 100644 --- a/arch/sparc/include/asm/types.h +++ b/arch/sparc/include/asm/types.h | |||
@@ -11,7 +11,7 @@ | |||
11 | #if defined(__sparc__) && defined(__arch64__) | 11 | #if defined(__sparc__) && defined(__arch64__) |
12 | 12 | ||
13 | /*** SPARC 64 bit ***/ | 13 | /*** SPARC 64 bit ***/ |
14 | #include <asm-generic/int-l64.h> | 14 | #include <asm-generic/int-ll64.h> |
15 | 15 | ||
16 | #ifndef __ASSEMBLY__ | 16 | #ifndef __ASSEMBLY__ |
17 | 17 | ||