blob: 5aa54319d2efe70b8939004ff2aa277f3867c1b9 [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
Chris Metcalf051168d2013-09-03 14:45:52 -040018#include <arch/chip.h>
19
Chris Metcalf867e3592010-05-28 23:09:12 -040020#ifndef __ASSEMBLY__
21
22/*
23 * NOTE: we don't include <linux/ptrace.h> or <linux/percpu.h> as one
24 * normally would, due to #include dependencies.
25 */
Chris Metcalf9f9c0382010-06-25 17:00:56 -040026#include <linux/types.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040027#include <asm/ptrace.h>
28#include <asm/percpu.h>
29
Chris Metcalf867e3592010-05-28 23:09:12 -040030#include <arch/spr_def.h>
31
32struct task_struct;
33struct thread_struct;
Chris Metcalf867e3592010-05-28 23:09:12 -040034
35typedef struct {
36 unsigned long seg;
37} mm_segment_t;
38
39/*
40 * Default implementation of macro that returns current
41 * instruction pointer ("program counter").
42 */
43void *current_text_addr(void);
44
45#if CHIP_HAS_TILE_DMA()
46/* Capture the state of a suspended DMA. */
47struct tile_dma_state {
48 int enabled;
49 unsigned long src;
50 unsigned long dest;
51 unsigned long strides;
52 unsigned long chunk_size;
53 unsigned long src_chunk;
54 unsigned long dest_chunk;
55 unsigned long byte;
56 unsigned long status;
57};
58
59/*
60 * A mask of the DMA status register for selecting only the 'running'
61 * and 'done' bits.
62 */
63#define DMA_STATUS_MASK \
64 (SPR_DMA_STATUS__RUNNING_MASK | SPR_DMA_STATUS__DONE_MASK)
65#endif
66
67/*
68 * Track asynchronous TLB events (faults and access violations)
69 * that occur while we are in kernel mode from DMA or the SN processor.
70 */
71struct async_tlb {
72 short fault_num; /* original fault number; 0 if none */
73 char is_fault; /* was it a fault (vs an access violation) */
74 char is_write; /* for fault: was it caused by a write? */
75 unsigned long address; /* what address faulted? */
76};
77
Chris Metcalf9f9c0382010-06-25 17:00:56 -040078#ifdef CONFIG_HARDWALL
79struct hardwall_info;
Chris Metcalfb8ace082012-03-30 16:01:48 -040080struct hardwall_task {
81 /* Which hardwall is this task tied to? (or NULL if none) */
82 struct hardwall_info *info;
83 /* Chains this task into the list at info->task_head. */
84 struct list_head list;
85};
86#ifdef __tilepro__
87#define HARDWALL_TYPES 1 /* udn */
88#else
89#define HARDWALL_TYPES 3 /* udn, idn, and ipi */
90#endif
Chris Metcalf9f9c0382010-06-25 17:00:56 -040091#endif
Chris Metcalf867e3592010-05-28 23:09:12 -040092
93struct thread_struct {
94 /* kernel stack pointer */
95 unsigned long ksp;
96 /* kernel PC */
97 unsigned long pc;
98 /* starting user stack pointer (for page migration) */
99 unsigned long usp0;
100 /* pid of process that created this one */
101 pid_t creator_pid;
102#if CHIP_HAS_TILE_DMA()
103 /* DMA info for suspended threads (byte == 0 means no DMA state) */
104 struct tile_dma_state tile_dma_state;
105#endif
106 /* User EX_CONTEXT registers */
107 unsigned long ex_context[2];
108 /* User SYSTEM_SAVE registers */
109 unsigned long system_save[4];
110 /* User interrupt mask */
111 unsigned long long interrupt_mask;
112 /* User interrupt-control 0 state */
113 unsigned long intctrl_0;
Chris Metcalf3ef23112013-08-06 16:10:23 -0400114 /* Is this task currently doing a backtrace? */
115 bool in_backtrace;
Chris Metcalf867e3592010-05-28 23:09:12 -0400116#if CHIP_HAS_PROC_STATUS_SPR()
117 /* Any other miscellaneous processor state bits */
118 unsigned long proc_status;
119#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400120#if !CHIP_HAS_FIXED_INTVEC_BASE()
121 /* Interrupt base for PL0 interrupts */
122 unsigned long interrupt_vector_base;
123#endif
124#if CHIP_HAS_TILE_RTF_HWM()
125 /* Tile cache retry fifo high-water mark */
126 unsigned long tile_rtf_hwm;
127#endif
128#if CHIP_HAS_DSTREAM_PF()
129 /* Data stream prefetch control */
130 unsigned long dstream_pf;
131#endif
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400132#ifdef CONFIG_HARDWALL
Chris Metcalfb8ace082012-03-30 16:01:48 -0400133 /* Hardwall information for various resources. */
134 struct hardwall_task hardwall[HARDWALL_TYPES];
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400135#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400136#if CHIP_HAS_TILE_DMA()
137 /* Async DMA TLB fault information */
138 struct async_tlb dma_async_tlb;
139#endif
140#if CHIP_HAS_SN_PROC()
141 /* Was static network processor when we were switched out? */
142 int sn_proc_running;
143 /* Async SNI TLB fault information */
144 struct async_tlb sn_async_tlb;
145#endif
146};
147
148#endif /* !__ASSEMBLY__ */
149
150/*
151 * Start with "sp" this many bytes below the top of the kernel stack.
Chris Metcalf35f05972013-08-10 12:35:02 -0400152 * This allows us to be cache-aware when handling the initial save
153 * of the pt_regs value to the stack.
Chris Metcalf867e3592010-05-28 23:09:12 -0400154 */
Chris Metcalf35f05972013-08-10 12:35:02 -0400155#define STACK_TOP_DELTA 64
Chris Metcalf867e3592010-05-28 23:09:12 -0400156
157/*
158 * When entering the kernel via a fault, start with the top of the
159 * pt_regs structure this many bytes below the top of the page.
160 * This aligns the pt_regs structure optimally for cache-line access.
161 */
162#ifdef __tilegx__
163#define KSTK_PTREGS_GAP 48
164#else
165#define KSTK_PTREGS_GAP 56
166#endif
167
168#ifndef __ASSEMBLY__
169
170#ifdef __tilegx__
Chris Metcalfacbde1d2013-09-03 14:41:36 -0400171#define TASK_SIZE_MAX (_AC(1, UL) << (MAX_VA_WIDTH - 1))
Chris Metcalf867e3592010-05-28 23:09:12 -0400172#else
173#define TASK_SIZE_MAX PAGE_OFFSET
174#endif
175
176/* TASK_SIZE and related variables are always checked in "current" context. */
177#ifdef CONFIG_COMPAT
178#define COMPAT_TASK_SIZE (1UL << 31)
179#define TASK_SIZE ((current_thread_info()->status & TS_COMPAT) ?\
180 COMPAT_TASK_SIZE : TASK_SIZE_MAX)
181#else
182#define TASK_SIZE TASK_SIZE_MAX
183#endif
184
Chris Metcalf4a556f42013-08-07 15:33:32 -0400185#define VDSO_BASE ((unsigned long)current->active_mm->context.vdso_base)
186#define VDSO_SYM(x) (VDSO_BASE + (unsigned long)(x))
Chris Metcalf867e3592010-05-28 23:09:12 -0400187
Chris Metcalf4a556f42013-08-07 15:33:32 -0400188#define STACK_TOP TASK_SIZE
Chris Metcalf867e3592010-05-28 23:09:12 -0400189
190/* STACK_TOP_MAX is used temporarily in execve and should not check COMPAT. */
191#define STACK_TOP_MAX TASK_SIZE_MAX
192
193/*
194 * This decides where the kernel will search for a free chunk of vm
195 * space during mmap's, if it is using bottom-up mapping.
196 */
197#define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
198
199#define HAVE_ARCH_PICK_MMAP_LAYOUT
200
201#define INIT_THREAD { \
202 .ksp = (unsigned long)init_stack + THREAD_SIZE - STACK_TOP_DELTA, \
203 .interrupt_mask = -1ULL \
204}
205
206/* Kernel stack top for the task that first boots on this cpu. */
207DECLARE_PER_CPU(unsigned long, boot_sp);
208
209/* PC to boot from on this cpu. */
210DECLARE_PER_CPU(unsigned long, boot_pc);
211
212/* Do necessary setup to start up a newly executed thread. */
213static inline void start_thread(struct pt_regs *regs,
214 unsigned long pc, unsigned long usp)
215{
216 regs->pc = pc;
217 regs->sp = usp;
Al Viro53055062012-10-20 13:14:08 -0400218 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400219}
220
221/* Free all resources held by a thread. */
222static inline void release_thread(struct task_struct *dead_task)
223{
224 /* Nothing for now */
225}
226
Chris Metcalf313ce672011-05-02 14:50:06 -0400227extern int do_work_pending(struct pt_regs *regs, u32 flags);
228
Chris Metcalf867e3592010-05-28 23:09:12 -0400229
230/*
231 * Return saved (kernel) PC of a blocked thread.
Viresh Kumar0a0fca92013-06-04 13:10:24 +0530232 * Only used in a printk() in kernel/sched/core.c, so don't work too hard.
Chris Metcalf867e3592010-05-28 23:09:12 -0400233 */
234#define thread_saved_pc(t) ((t)->thread.pc)
235
236unsigned long get_wchan(struct task_struct *p);
237
238/* Return initial ksp value for given task. */
Chris Metcalf35f05972013-08-10 12:35:02 -0400239#define task_ksp0(task) \
240 ((unsigned long)(task)->stack + THREAD_SIZE - STACK_TOP_DELTA)
Chris Metcalf867e3592010-05-28 23:09:12 -0400241
242/* Return some info about the user process TASK. */
Chris Metcalf867e3592010-05-28 23:09:12 -0400243#define task_pt_regs(task) \
Chris Metcalf35f05972013-08-10 12:35:02 -0400244 ((struct pt_regs *)(task_ksp0(task) - KSTK_PTREGS_GAP) - 1)
Al Viro733deca2012-10-20 13:13:11 -0400245#define current_pt_regs() \
Chris Metcalf35f05972013-08-10 12:35:02 -0400246 ((struct pt_regs *)((stack_pointer | (THREAD_SIZE - 1)) - \
247 STACK_TOP_DELTA - (KSTK_PTREGS_GAP - 1)) - 1)
Chris Metcalf867e3592010-05-28 23:09:12 -0400248#define task_sp(task) (task_pt_regs(task)->sp)
249#define task_pc(task) (task_pt_regs(task)->pc)
250/* Aliases for pc and sp (used in fs/proc/array.c) */
251#define KSTK_EIP(task) task_pc(task)
252#define KSTK_ESP(task) task_sp(task)
253
Chris Metcalf2f9ac292013-08-06 16:04:13 -0400254/* Fine-grained unaligned JIT support */
255#define GET_UNALIGN_CTL(tsk, adr) get_unalign_ctl((tsk), (adr))
256#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
257
258extern int get_unalign_ctl(struct task_struct *tsk, unsigned long adr);
259extern int set_unalign_ctl(struct task_struct *tsk, unsigned int val);
260
Chris Metcalf867e3592010-05-28 23:09:12 -0400261/* Standard format for printing registers and other word-size data. */
262#ifdef __tilegx__
263# define REGFMT "0x%016lx"
264#else
265# define REGFMT "0x%08lx"
266#endif
267
268/*
269 * Do some slow action (e.g. read a slow SPR).
270 * Note that this must also have compiler-barrier semantics since
271 * it may be used in a busy loop reading memory.
272 */
273static inline void cpu_relax(void)
274{
275 __insn_mfspr(SPR_PASS);
276 barrier();
277}
278
Chris Metcalf9f9c0382010-06-25 17:00:56 -0400279/* Info on this processor (see fs/proc/cpuinfo.c) */
280struct seq_operations;
281extern const struct seq_operations cpuinfo_op;
282
Chris Metcalf867e3592010-05-28 23:09:12 -0400283/* Provide information about the chip model. */
284extern char chip_model[64];
285
286/* Data on which physical memory controller corresponds to which NUMA node. */
287extern int node_controller[];
288
Chris Metcalf867e3592010-05-28 23:09:12 -0400289#if CHIP_HAS_CBOX_HOME_MAP()
290/* Does the heap allocator return hash-for-home pages by default? */
291extern int hash_default;
292
293/* Should kernel stack pages be hash-for-home? */
294extern int kstack_hash;
Chris Metcalfef06f552010-07-02 14:19:35 -0400295
296/* Does MAP_ANONYMOUS return hash-for-home pages by default? */
297#define uheap_hash hash_default
298
Chris Metcalf867e3592010-05-28 23:09:12 -0400299#else
300#define hash_default 0
301#define kstack_hash 0
Chris Metcalfef06f552010-07-02 14:19:35 -0400302#define uheap_hash 0
Chris Metcalf867e3592010-05-28 23:09:12 -0400303#endif
304
305/* Are we using huge pages in the TLB for kernel data? */
306extern int kdata_huge;
307
Chris Metcalfe5a06932010-11-01 17:00:37 -0400308/* Support standard Linux prefetching. */
309#define ARCH_HAS_PREFETCH
310#define prefetch(x) __builtin_prefetch(x)
Chris Metcalfef06f552010-07-02 14:19:35 -0400311#define PREFETCH_STRIDE CHIP_L2_LINE_SIZE()
Chris Metcalf867e3592010-05-28 23:09:12 -0400312
Chris Metcalfe5a06932010-11-01 17:00:37 -0400313/* Bring a value into the L1D, faulting the TLB if necessary. */
314#ifdef __tilegx__
315#define prefetch_L1(x) __insn_prefetch_l1_fault((void *)(x))
316#else
317#define prefetch_L1(x) __insn_prefetch_L1((void *)(x))
318#endif
319
Chris Metcalf867e3592010-05-28 23:09:12 -0400320#else /* __ASSEMBLY__ */
321
322/* Do some slow action (e.g. read a slow SPR). */
323#define CPU_RELAX mfspr zero, SPR_PASS
324
325#endif /* !__ASSEMBLY__ */
326
327/* Assembly code assumes that the PL is in the low bits. */
328#if SPR_EX_CONTEXT_1_1__PL_SHIFT != 0
329# error Fix assembly assumptions about PL
330#endif
331
332/* We sometimes use these macros for EX_CONTEXT_0_1 as well. */
333#if SPR_EX_CONTEXT_1_1__PL_SHIFT != SPR_EX_CONTEXT_0_1__PL_SHIFT || \
334 SPR_EX_CONTEXT_1_1__PL_RMASK != SPR_EX_CONTEXT_0_1__PL_RMASK || \
335 SPR_EX_CONTEXT_1_1__ICS_SHIFT != SPR_EX_CONTEXT_0_1__ICS_SHIFT || \
336 SPR_EX_CONTEXT_1_1__ICS_RMASK != SPR_EX_CONTEXT_0_1__ICS_RMASK
337# error Fix assumptions that EX1 macros work for both PL0 and PL1
338#endif
339
340/* Allow pulling apart and recombining the PL and ICS bits in EX_CONTEXT. */
341#define EX1_PL(ex1) \
342 (((ex1) >> SPR_EX_CONTEXT_1_1__PL_SHIFT) & SPR_EX_CONTEXT_1_1__PL_RMASK)
343#define EX1_ICS(ex1) \
344 (((ex1) >> SPR_EX_CONTEXT_1_1__ICS_SHIFT) & SPR_EX_CONTEXT_1_1__ICS_RMASK)
345#define PL_ICS_EX1(pl, ics) \
346 (((pl) << SPR_EX_CONTEXT_1_1__PL_SHIFT) | \
347 ((ics) << SPR_EX_CONTEXT_1_1__ICS_SHIFT))
348
349/*
350 * Provide symbolic constants for PLs.
Chris Metcalf867e3592010-05-28 23:09:12 -0400351 */
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 */