blob: 230b830e94d4a01188eadb39d849e0e4e9ffae6b [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 */
14
15#ifndef _ASM_TILE_PROCESSOR_H
16#define _ASM_TILE_PROCESSOR_H
17
18#ifndef __ASSEMBLY__
19
20/*
21 * NOTE: we don't include <linux/ptrace.h> or <linux/percpu.h> as one
22 * normally would, due to #include dependencies.
23 */
Chris Metcalf9f9c0382010-06-25 17:00:56 -040024#include <linux/types.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040025#include <asm/ptrace.h>
26#include <asm/percpu.h>
27
28#include <arch/chip.h>
29#include <arch/spr_def.h>
30
31struct task_struct;
32struct thread_struct;
Chris Metcalf867e3592010-05-28 23:09:12 -040033
34typedef struct {
35 unsigned long seg;
36} mm_segment_t;
37
38/*
39 * Default implementation of macro that returns current
40 * instruction pointer ("program counter").
41 */
42void *current_text_addr(void);
43
44#if CHIP_HAS_TILE_DMA()
45/* Capture the state of a suspended DMA. */
46struct tile_dma_state {
47 int enabled;
48 unsigned long src;
49 unsigned long dest;
50 unsigned long strides;
51 unsigned long chunk_size;
52 unsigned long src_chunk;
53 unsigned long dest_chunk;
54 unsigned long byte;
55 unsigned long status;
56};
57
58/*
59 * A mask of the DMA status register for selecting only the 'running'
60 * and 'done' bits.
61 */
62#define DMA_STATUS_MASK \
63 (SPR_DMA_STATUS__RUNNING_MASK | SPR_DMA_STATUS__DONE_MASK)
64#endif
65
66/*
67 * Track asynchronous TLB events (faults and access violations)
68 * that occur while we are in kernel mode from DMA or the SN processor.
69 */
70struct async_tlb {
71 short fault_num; /* original fault number; 0 if none */
72 char is_fault; /* was it a fault (vs an access violation) */
73 char is_write; /* for fault: was it caused by a write? */
74 unsigned long address; /* what address faulted? */
75};
76
Chris Metcalf9f9c0382010-06-25 17:00:56 -040077#ifdef CONFIG_HARDWALL
78struct hardwall_info;
Chris Metcalfb8ace082012-03-30 16:01:48 -040079struct hardwall_task {
80 /* Which hardwall is this task tied to? (or NULL if none) */
81 struct hardwall_info *info;
82 /* Chains this task into the list at info->task_head. */
83 struct list_head list;
84};
85#ifdef __tilepro__
86#define HARDWALL_TYPES 1 /* udn */
87#else
88#define HARDWALL_TYPES 3 /* udn, idn, and ipi */
89#endif
Chris Metcalf9f9c0382010-06-25 17:00:56 -040090#endif
Chris Metcalf867e3592010-05-28 23:09:12 -040091
92struct thread_struct {
93 /* kernel stack pointer */
94 unsigned long ksp;
95 /* kernel PC */
96 unsigned long pc;
97 /* starting user stack pointer (for page migration) */
98 unsigned long usp0;
99 /* pid of process that created this one */
100 pid_t creator_pid;
101#if CHIP_HAS_TILE_DMA()
102 /* DMA info for suspended threads (byte == 0 means no DMA state) */
103 struct tile_dma_state tile_dma_state;
104#endif
105 /* User EX_CONTEXT registers */
106 unsigned long ex_context[2];
107 /* User SYSTEM_SAVE registers */
108 unsigned long system_save[4];
109 /* User interrupt mask */
110 unsigned long long interrupt_mask;
111 /* User interrupt-control 0 state */
112 unsigned long intctrl_0;
Chris Metcalf3ef23112013-08-06 16:10:23 -0400113 /* Is this task currently doing a backtrace? */
114 bool in_backtrace;
Chris Metcalf867e3592010-05-28 23:09:12 -0400115#if CHIP_HAS_PROC_STATUS_SPR()
116 /* Any other miscellaneous processor state bits */
117 unsigned long proc_status;
118#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400119#if !CHIP_HAS_FIXED_INTVEC_BASE()
120 /* Interrupt base for PL0 interrupts */
121 unsigned long interrupt_vector_base;
122#endif
123#if CHIP_HAS_TILE_RTF_HWM()
124 /* Tile cache retry fifo high-water mark */
125 unsigned long tile_rtf_hwm;
126#endif
127#if CHIP_HAS_DSTREAM_PF()
128 /* Data stream prefetch control */
129 unsigned long dstream_pf;
130#endif
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400131#ifdef CONFIG_HARDWALL
Chris Metcalfb8ace082012-03-30 16:01:48 -0400132 /* Hardwall information for various resources. */
133 struct hardwall_task hardwall[HARDWALL_TYPES];
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400134#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400135#if CHIP_HAS_TILE_DMA()
136 /* Async DMA TLB fault information */
137 struct async_tlb dma_async_tlb;
138#endif
139#if CHIP_HAS_SN_PROC()
140 /* Was static network processor when we were switched out? */
141 int sn_proc_running;
142 /* Async SNI TLB fault information */
143 struct async_tlb sn_async_tlb;
144#endif
145};
146
147#endif /* !__ASSEMBLY__ */
148
149/*
150 * Start with "sp" this many bytes below the top of the kernel stack.
Chris Metcalf35f05972013-08-10 12:35:02 -0400151 * This allows us to be cache-aware when handling the initial save
152 * of the pt_regs value to the stack.
Chris Metcalf867e3592010-05-28 23:09:12 -0400153 */
Chris Metcalf35f05972013-08-10 12:35:02 -0400154#define STACK_TOP_DELTA 64
Chris Metcalf867e3592010-05-28 23:09:12 -0400155
156/*
157 * When entering the kernel via a fault, start with the top of the
158 * pt_regs structure this many bytes below the top of the page.
159 * This aligns the pt_regs structure optimally for cache-line access.
160 */
161#ifdef __tilegx__
162#define KSTK_PTREGS_GAP 48
163#else
164#define KSTK_PTREGS_GAP 56
165#endif
166
167#ifndef __ASSEMBLY__
168
169#ifdef __tilegx__
170#define TASK_SIZE_MAX (MEM_LOW_END + 1)
171#else
172#define TASK_SIZE_MAX PAGE_OFFSET
173#endif
174
175/* TASK_SIZE and related variables are always checked in "current" context. */
176#ifdef CONFIG_COMPAT
177#define COMPAT_TASK_SIZE (1UL << 31)
178#define TASK_SIZE ((current_thread_info()->status & TS_COMPAT) ?\
179 COMPAT_TASK_SIZE : TASK_SIZE_MAX)
180#else
181#define TASK_SIZE TASK_SIZE_MAX
182#endif
183
Chris Metcalf4a556f42013-08-07 15:33:32 -0400184#define VDSO_BASE ((unsigned long)current->active_mm->context.vdso_base)
185#define VDSO_SYM(x) (VDSO_BASE + (unsigned long)(x))
Chris Metcalf867e3592010-05-28 23:09:12 -0400186
Chris Metcalf4a556f42013-08-07 15:33:32 -0400187#define STACK_TOP TASK_SIZE
Chris Metcalf867e3592010-05-28 23:09:12 -0400188
189/* STACK_TOP_MAX is used temporarily in execve and should not check COMPAT. */
190#define STACK_TOP_MAX TASK_SIZE_MAX
191
192/*
193 * This decides where the kernel will search for a free chunk of vm
194 * space during mmap's, if it is using bottom-up mapping.
195 */
196#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
197
198#define HAVE_ARCH_PICK_MMAP_LAYOUT
199
200#define INIT_THREAD { \
201 .ksp = (unsigned long)init_stack + THREAD_SIZE - STACK_TOP_DELTA, \
202 .interrupt_mask = -1ULL \
203}
204
205/* Kernel stack top for the task that first boots on this cpu. */
206DECLARE_PER_CPU(unsigned long, boot_sp);
207
208/* PC to boot from on this cpu. */
209DECLARE_PER_CPU(unsigned long, boot_pc);
210
211/* Do necessary setup to start up a newly executed thread. */
212static inline void start_thread(struct pt_regs *regs,
213 unsigned long pc, unsigned long usp)
214{
215 regs->pc = pc;
216 regs->sp = usp;
Al Viro53055062012-10-20 13:14:08 -0400217 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400218}
219
220/* Free all resources held by a thread. */
221static inline void release_thread(struct task_struct *dead_task)
222{
223 /* Nothing for now */
224}
225
Chris Metcalf313ce672011-05-02 14:50:06 -0400226extern int do_work_pending(struct pt_regs *regs, u32 flags);
227
Chris Metcalf867e3592010-05-28 23:09:12 -0400228
229/*
230 * Return saved (kernel) PC of a blocked thread.
Viresh Kumar0a0fca92013-06-04 13:10:24 +0530231 * Only used in a printk() in kernel/sched/core.c, so don't work too hard.
Chris Metcalf867e3592010-05-28 23:09:12 -0400232 */
233#define thread_saved_pc(t) ((t)->thread.pc)
234
235unsigned long get_wchan(struct task_struct *p);
236
237/* Return initial ksp value for given task. */
Chris Metcalf35f05972013-08-10 12:35:02 -0400238#define task_ksp0(task) \
239 ((unsigned long)(task)->stack + THREAD_SIZE - STACK_TOP_DELTA)
Chris Metcalf867e3592010-05-28 23:09:12 -0400240
241/* Return some info about the user process TASK. */
Chris Metcalf867e3592010-05-28 23:09:12 -0400242#define task_pt_regs(task) \
Chris Metcalf35f05972013-08-10 12:35:02 -0400243 ((struct pt_regs *)(task_ksp0(task) - KSTK_PTREGS_GAP) - 1)
Al Viro733deca2012-10-20 13:13:11 -0400244#define current_pt_regs() \
Chris Metcalf35f05972013-08-10 12:35:02 -0400245 ((struct pt_regs *)((stack_pointer | (THREAD_SIZE - 1)) - \
246 STACK_TOP_DELTA - (KSTK_PTREGS_GAP - 1)) - 1)
Chris Metcalf867e3592010-05-28 23:09:12 -0400247#define task_sp(task) (task_pt_regs(task)->sp)
248#define task_pc(task) (task_pt_regs(task)->pc)
249/* Aliases for pc and sp (used in fs/proc/array.c) */
250#define KSTK_EIP(task) task_pc(task)
251#define KSTK_ESP(task) task_sp(task)
252
Chris Metcalf2f9ac292013-08-06 16:04:13 -0400253/* Fine-grained unaligned JIT support */
254#define GET_UNALIGN_CTL(tsk, adr) get_unalign_ctl((tsk), (adr))
255#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
256
257extern int get_unalign_ctl(struct task_struct *tsk, unsigned long adr);
258extern int set_unalign_ctl(struct task_struct *tsk, unsigned int val);
259
Chris Metcalf867e3592010-05-28 23:09:12 -0400260/* Standard format for printing registers and other word-size data. */
261#ifdef __tilegx__
262# define REGFMT "0x%016lx"
263#else
264# define REGFMT "0x%08lx"
265#endif
266
267/*
268 * Do some slow action (e.g. read a slow SPR).
269 * Note that this must also have compiler-barrier semantics since
270 * it may be used in a busy loop reading memory.
271 */
272static inline void cpu_relax(void)
273{
274 __insn_mfspr(SPR_PASS);
275 barrier();
276}
277
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400278/* Info on this processor (see fs/proc/cpuinfo.c) */
279struct seq_operations;
280extern const struct seq_operations cpuinfo_op;
281
Chris Metcalf867e3592010-05-28 23:09:12 -0400282/* Provide information about the chip model. */
283extern char chip_model[64];
284
285/* Data on which physical memory controller corresponds to which NUMA node. */
286extern int node_controller[];
287
Chris Metcalf867e3592010-05-28 23:09:12 -0400288#if CHIP_HAS_CBOX_HOME_MAP()
289/* Does the heap allocator return hash-for-home pages by default? */
290extern int hash_default;
291
292/* Should kernel stack pages be hash-for-home? */
293extern int kstack_hash;
Chris Metcalfef06f552010-07-02 14:19:35 -0400294
295/* Does MAP_ANONYMOUS return hash-for-home pages by default? */
296#define uheap_hash hash_default
297
Chris Metcalf867e3592010-05-28 23:09:12 -0400298#else
299#define hash_default 0
300#define kstack_hash 0
Chris Metcalfef06f552010-07-02 14:19:35 -0400301#define uheap_hash 0
Chris Metcalf867e3592010-05-28 23:09:12 -0400302#endif
303
304/* Are we using huge pages in the TLB for kernel data? */
305extern int kdata_huge;
306
Chris Metcalfe5a06932010-11-01 17:00:37 -0400307/* Support standard Linux prefetching. */
308#define ARCH_HAS_PREFETCH
309#define prefetch(x) __builtin_prefetch(x)
Chris Metcalfef06f552010-07-02 14:19:35 -0400310#define PREFETCH_STRIDE CHIP_L2_LINE_SIZE()
Chris Metcalf867e3592010-05-28 23:09:12 -0400311
Chris Metcalfe5a06932010-11-01 17:00:37 -0400312/* Bring a value into the L1D, faulting the TLB if necessary. */
313#ifdef __tilegx__
314#define prefetch_L1(x) __insn_prefetch_l1_fault((void *)(x))
315#else
316#define prefetch_L1(x) __insn_prefetch_L1((void *)(x))
317#endif
318
Chris Metcalf867e3592010-05-28 23:09:12 -0400319#else /* __ASSEMBLY__ */
320
321/* Do some slow action (e.g. read a slow SPR). */
322#define CPU_RELAX mfspr zero, SPR_PASS
323
324#endif /* !__ASSEMBLY__ */
325
326/* Assembly code assumes that the PL is in the low bits. */
327#if SPR_EX_CONTEXT_1_1__PL_SHIFT != 0
328# error Fix assembly assumptions about PL
329#endif
330
331/* We sometimes use these macros for EX_CONTEXT_0_1 as well. */
332#if SPR_EX_CONTEXT_1_1__PL_SHIFT != SPR_EX_CONTEXT_0_1__PL_SHIFT || \
333 SPR_EX_CONTEXT_1_1__PL_RMASK != SPR_EX_CONTEXT_0_1__PL_RMASK || \
334 SPR_EX_CONTEXT_1_1__ICS_SHIFT != SPR_EX_CONTEXT_0_1__ICS_SHIFT || \
335 SPR_EX_CONTEXT_1_1__ICS_RMASK != SPR_EX_CONTEXT_0_1__ICS_RMASK
336# error Fix assumptions that EX1 macros work for both PL0 and PL1
337#endif
338
339/* Allow pulling apart and recombining the PL and ICS bits in EX_CONTEXT. */
340#define EX1_PL(ex1) \
341 (((ex1) >> SPR_EX_CONTEXT_1_1__PL_SHIFT) & SPR_EX_CONTEXT_1_1__PL_RMASK)
342#define EX1_ICS(ex1) \
343 (((ex1) >> SPR_EX_CONTEXT_1_1__ICS_SHIFT) & SPR_EX_CONTEXT_1_1__ICS_RMASK)
344#define PL_ICS_EX1(pl, ics) \
345 (((pl) << SPR_EX_CONTEXT_1_1__PL_SHIFT) | \
346 ((ics) << SPR_EX_CONTEXT_1_1__ICS_SHIFT))
347
348/*
349 * Provide symbolic constants for PLs.
350 * Note that assembly code assumes that USER_PL is zero.
351 */
352#define USER_PL 0
Chris Metcalfa78c9422010-10-14 16:23:03 -0400353#if CONFIG_KERNEL_PL == 2
354#define GUEST_PL 1
355#endif
356#define KERNEL_PL CONFIG_KERNEL_PL
Chris Metcalf867e3592010-05-28 23:09:12 -0400357
Chris Metcalfa78c9422010-10-14 16:23:03 -0400358/* SYSTEM_SAVE_K_0 holds the current cpu number ORed with ksp0. */
Chris Metcalf35f05972013-08-10 12:35:02 -0400359#ifdef __tilegx__
360#define CPU_SHIFT 48
361#if CHIP_VA_WIDTH() > CPU_SHIFT
362# error Too many VA bits!
Chris Metcalf867e3592010-05-28 23:09:12 -0400363#endif
Chris Metcalf35f05972013-08-10 12:35:02 -0400364#define MAX_CPU_ID ((1 << (64 - CPU_SHIFT)) - 1)
Chris Metcalf867e3592010-05-28 23:09:12 -0400365#define raw_smp_processor_id() \
Chris Metcalf35f05972013-08-10 12:35:02 -0400366 ((int)(__insn_mfspr(SPR_SYSTEM_SAVE_K_0) >> CPU_SHIFT))
Chris Metcalf867e3592010-05-28 23:09:12 -0400367#define get_current_ksp0() \
Chris Metcalf35f05972013-08-10 12:35:02 -0400368 ((unsigned long)(((long)__insn_mfspr(SPR_SYSTEM_SAVE_K_0) << \
369 (64 - CPU_SHIFT)) >> (64 - CPU_SHIFT)))
370#define next_current_ksp0(task) ({ \
371 unsigned long __ksp0 = task_ksp0(task) & ((1UL << CPU_SHIFT) - 1); \
372 unsigned long __cpu = (long)raw_smp_processor_id() << CPU_SHIFT; \
373 __ksp0 | __cpu; \
374})
375#else
376#define LOG2_NR_CPU_IDS 6
377#define MAX_CPU_ID ((1 << LOG2_NR_CPU_IDS) - 1)
378#define raw_smp_processor_id() \
379 ((int)__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & MAX_CPU_ID)
380#define get_current_ksp0() \
381 (__insn_mfspr(SPR_SYSTEM_SAVE_K_0) & ~MAX_CPU_ID)
Chris Metcalf867e3592010-05-28 23:09:12 -0400382#define next_current_ksp0(task) ({ \
383 unsigned long __ksp0 = task_ksp0(task); \
384 int __cpu = raw_smp_processor_id(); \
Chris Metcalf35f05972013-08-10 12:35:02 -0400385 BUG_ON(__ksp0 & MAX_CPU_ID); \
Chris Metcalf867e3592010-05-28 23:09:12 -0400386 __ksp0 | __cpu; \
387})
Chris Metcalf35f05972013-08-10 12:35:02 -0400388#endif
389#if CONFIG_NR_CPUS > (MAX_CPU_ID + 1)
390# error Too many cpus!
391#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400392
393#endif /* _ASM_TILE_PROCESSOR_H */