blob: 78b07009f60a9d52c8042fc1c9124fef9d6a2f16 [file] [log] [blame]
David S. Millerd113fcd2007-11-16 03:06:07 -08001/* cache.h: Cache specific code for the Sparc. These include flushing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * and direct tag/data line access.
3 *
David S. Millerd113fcd2007-11-16 03:06:07 -08004 * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#ifndef _SPARC_CACHE_H
8#define _SPARC_CACHE_H
9
David S. Miller273fca02010-05-18 15:23:58 -070010#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#define L1_CACHE_SHIFT 5
13#define L1_CACHE_BYTES 32
14#define L1_CACHE_ALIGN(x) ((((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
David S. Millerd113fcd2007-11-16 03:06:07 -080016#ifdef CONFIG_SPARC32
17#define SMP_CACHE_BYTES_SHIFT 5
18#else
19#define SMP_CACHE_BYTES_SHIFT 6
20#endif
21
22#define SMP_CACHE_BYTES (1 << SMP_CACHE_BYTES_SHIFT)
23
24#define __read_mostly __attribute__((__section__(".data.read_mostly")))
25
26#ifdef CONFIG_SPARC32
27#include <asm/asi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/* Direct access to the instruction cache is provided through and
30 * alternate address space. The IDC bit must be off in the ICCR on
31 * HyperSparcs for these accesses to work. The code below does not do
32 * any checking, the caller must do so. These routines are for
33 * diagnostics only, but could end up being useful. Use with care.
34 * Also, you are asking for trouble if you execute these in one of the
35 * three instructions following a %asr/%psr access or modification.
36 */
37
38/* First, cache-tag access. */
Adrian Bunk31156242005-10-03 17:37:02 -070039static inline unsigned int get_icache_tag(int setnum, int tagnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 unsigned int vaddr, retval;
42
43 vaddr = ((setnum&1) << 12) | ((tagnum&0x7f) << 5);
44 __asm__ __volatile__("lda [%1] %2, %0\n\t" :
45 "=r" (retval) :
46 "r" (vaddr), "i" (ASI_M_TXTC_TAG));
47 return retval;
48}
49
Adrian Bunk31156242005-10-03 17:37:02 -070050static inline void put_icache_tag(int setnum, int tagnum, unsigned int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 unsigned int vaddr;
53
54 vaddr = ((setnum&1) << 12) | ((tagnum&0x7f) << 5);
55 __asm__ __volatile__("sta %0, [%1] %2\n\t" : :
56 "r" (entry), "r" (vaddr), "i" (ASI_M_TXTC_TAG) :
57 "memory");
58}
59
60/* Second cache-data access. The data is returned two-32bit quantities
61 * at a time.
62 */
Adrian Bunk31156242005-10-03 17:37:02 -070063static inline void get_icache_data(int setnum, int tagnum, int subblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 unsigned int *data)
65{
66 unsigned int value1, value2, vaddr;
67
68 vaddr = ((setnum&0x1) << 12) | ((tagnum&0x7f) << 5) |
69 ((subblock&0x3) << 3);
70 __asm__ __volatile__("ldda [%2] %3, %%g2\n\t"
71 "or %%g0, %%g2, %0\n\t"
72 "or %%g0, %%g3, %1\n\t" :
73 "=r" (value1), "=r" (value2) :
74 "r" (vaddr), "i" (ASI_M_TXTC_DATA) :
75 "g2", "g3");
76 data[0] = value1; data[1] = value2;
77}
78
Adrian Bunk31156242005-10-03 17:37:02 -070079static inline void put_icache_data(int setnum, int tagnum, int subblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned int *data)
81{
82 unsigned int value1, value2, vaddr;
83
84 vaddr = ((setnum&0x1) << 12) | ((tagnum&0x7f) << 5) |
85 ((subblock&0x3) << 3);
86 value1 = data[0]; value2 = data[1];
87 __asm__ __volatile__("or %%g0, %0, %%g2\n\t"
88 "or %%g0, %1, %%g3\n\t"
89 "stda %%g2, [%2] %3\n\t" : :
90 "r" (value1), "r" (value2),
91 "r" (vaddr), "i" (ASI_M_TXTC_DATA) :
92 "g2", "g3", "memory" /* no joke */);
93}
94
95/* Different types of flushes with the ICACHE. Some of the flushes
96 * affect both the ICACHE and the external cache. Others only clear
97 * the ICACHE entries on the cpu itself. V8's (most) allow
98 * granularity of flushes on the packet (element in line), whole line,
99 * and entire cache (ie. all lines) level. The ICACHE only flushes are
100 * ROSS HyperSparc specific and are in ross.h
101 */
102
103/* Flushes which clear out both the on-chip and external caches */
Adrian Bunk31156242005-10-03 17:37:02 -0700104static inline void flush_ei_page(unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
107 "r" (addr), "i" (ASI_M_FLUSH_PAGE) :
108 "memory");
109}
110
Adrian Bunk31156242005-10-03 17:37:02 -0700111static inline void flush_ei_seg(unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
114 "r" (addr), "i" (ASI_M_FLUSH_SEG) :
115 "memory");
116}
117
Adrian Bunk31156242005-10-03 17:37:02 -0700118static inline void flush_ei_region(unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
121 "r" (addr), "i" (ASI_M_FLUSH_REGION) :
122 "memory");
123}
124
Adrian Bunk31156242005-10-03 17:37:02 -0700125static inline void flush_ei_ctx(unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
128 "r" (addr), "i" (ASI_M_FLUSH_CTX) :
129 "memory");
130}
131
Adrian Bunk31156242005-10-03 17:37:02 -0700132static inline void flush_ei_user(unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 __asm__ __volatile__("sta %%g0, [%0] %1\n\t" : :
135 "r" (addr), "i" (ASI_M_FLUSH_USER) :
136 "memory");
137}
David S. Millerd113fcd2007-11-16 03:06:07 -0800138#endif /* CONFIG_SPARC32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140#endif /* !(_SPARC_CACHE_H) */