blob: f83768883e983ec67ac6d6394fca4d90560d789f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* cpudata.h: Per-cpu parameters.
2 *
David S. Miller56fb4df2006-02-26 23:24:22 -08003 * Copyright (C) 2003, 2005, 2006 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#ifndef _SPARC64_CPUDATA_H
7#define _SPARC64_CPUDATA_H
8
David S. Miller56fb4df2006-02-26 23:24:22 -08009#ifndef __ASSEMBLY__
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/percpu.h>
David S. Miller56fb4df2006-02-26 23:24:22 -080012#include <linux/threads.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14typedef struct {
15 /* Dcache line 1 */
David S. Millerd7ce78f2005-08-29 22:46:43 -070016 unsigned int __softirq_pending; /* must be 1st, see rtrap.S */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 unsigned int multiplier;
18 unsigned int counter;
19 unsigned int idle_volume;
20 unsigned long clock_tick; /* %tick's per second */
21 unsigned long udelay_val;
22
David S. Miller3c936462006-01-31 18:30:27 -080023 /* Dcache line 2, rarely used */
David S. Miller80dc0d62005-09-26 00:32:17 -070024 unsigned int dcache_size;
25 unsigned int dcache_line_size;
26 unsigned int icache_size;
27 unsigned int icache_line_size;
28 unsigned int ecache_size;
29 unsigned int ecache_line_size;
David S. Miller80dc0d62005-09-26 00:32:17 -070030 unsigned int __pad3;
David S. Miller05e28f92006-01-31 18:30:13 -080031 unsigned int __pad4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032} cpuinfo_sparc;
33
34DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
35#define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
36#define local_cpu_data() __get_cpu_var(__cpu_data)
37
David S. Miller56fb4df2006-02-26 23:24:22 -080038/* Trap handling code needs to get at a few critical values upon
39 * trap entry and to process TSB misses. These cannot be in the
40 * per_cpu() area as we really need to lock them into the TLB and
41 * thus make them part of the main kernel image. As a result we
42 * try to make this as small as possible.
43 *
44 * This is padded out and aligned to 64-bytes to avoid false sharing
45 * on SMP.
46 */
47
48/* If you modify the size of this structure, please update
49 * TRAP_BLOCK_SZ_SHIFT below.
50 */
51struct thread_info;
52struct trap_per_cpu {
53/* D-cache line 1 */
54 struct thread_info *thread;
55 unsigned long pgd_paddr;
56 unsigned long __pad1[2];
57
58/* D-cache line 2 */
59 unsigned long __pad2[4];
60} __attribute__((aligned(64)));
61extern struct trap_per_cpu trap_block[NR_CPUS];
62extern void init_cur_cpu_trap(void);
63extern void per_cpu_patch(void);
David S. Millera8b900d2006-01-31 18:33:37 -080064extern void setup_tba(void);
David S. Miller56fb4df2006-02-26 23:24:22 -080065
66#endif /* !(__ASSEMBLY__) */
67
68#define TRAP_PER_CPU_THREAD 0x00
69#define TRAP_PER_CPU_PGD_PADDR 0x08
70
71#define TRAP_BLOCK_SZ_SHIFT 6
72
73/* Clobbers %g1, loads %g6 with local processor's cpuid */
74#define __GET_CPUID \
75 ba,pt %xcc, __get_cpu_id; \
76 rd %pc, %g1;
77
78/* Clobbers %g1, current address space PGD phys address into %g7. */
79#define TRAP_LOAD_PGD_PHYS \
80 __GET_CPUID \
81 sllx %g6, TRAP_BLOCK_SZ_SHIFT, %g6; \
82 sethi %hi(trap_block), %g7; \
83 or %g7, %lo(trap_block), %g7; \
84 add %g7, %g6, %g7; \
85 ldx [%g7 + TRAP_PER_CPU_PGD_PADDR], %g7;
86
87/* Clobbers %g1, loads local processor's IRQ work area into %g6. */
88#define TRAP_LOAD_IRQ_WORK \
89 __GET_CPUID \
90 sethi %hi(__irq_work), %g1; \
91 sllx %g6, 6, %g6; \
92 or %g1, %lo(__irq_work), %g1; \
93 add %g1, %g6, %g6;
94
95/* Clobbers %g1, loads %g6 with current thread info pointer. */
96#define TRAP_LOAD_THREAD_REG \
97 __GET_CPUID \
98 sllx %g6, TRAP_BLOCK_SZ_SHIFT, %g6; \
99 sethi %hi(trap_block), %g1; \
100 or %g1, %lo(trap_block), %g1; \
101 ldx [%g1 + %g6], %g6;
102
103/* Given the current thread info pointer in %g6, load the per-cpu
David S. Miller86b81862006-01-31 18:34:51 -0800104 * area base of the current processor into %g5. REG1, REG2, and REG3 are
David S. Miller56fb4df2006-02-26 23:24:22 -0800105 * clobbered.
David S. Miller86b81862006-01-31 18:34:51 -0800106 *
107 * You absolutely cannot use %g5 as a temporary in this code. The
108 * reason is that traps can happen during execution, and return from
109 * trap will load the fully resolved %g5 per-cpu base. This can corrupt
110 * the calculations done by the macro mid-stream.
David S. Miller56fb4df2006-02-26 23:24:22 -0800111 */
112#ifdef CONFIG_SMP
David S. Miller86b81862006-01-31 18:34:51 -0800113#define LOAD_PER_CPU_BASE(REG1, REG2, REG3) \
David S. Miller56fb4df2006-02-26 23:24:22 -0800114 ldub [%g6 + TI_CPU], REG1; \
David S. Miller86b81862006-01-31 18:34:51 -0800115 sethi %hi(__per_cpu_shift), REG3; \
David S. Miller56fb4df2006-02-26 23:24:22 -0800116 sethi %hi(__per_cpu_base), REG2; \
David S. Miller86b81862006-01-31 18:34:51 -0800117 ldx [REG3 + %lo(__per_cpu_shift)], REG3; \
David S. Miller56fb4df2006-02-26 23:24:22 -0800118 ldx [REG2 + %lo(__per_cpu_base)], REG2; \
David S. Miller86b81862006-01-31 18:34:51 -0800119 sllx REG1, REG3, REG3; \
120 add REG3, REG2, %g5;
David S. Miller56fb4df2006-02-26 23:24:22 -0800121#else
David S. Miller86b81862006-01-31 18:34:51 -0800122#define LOAD_PER_CPU_BASE(REG1, REG2, REG3)
David S. Miller56fb4df2006-02-26 23:24:22 -0800123#endif
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif /* _SPARC64_CPUDATA_H */