aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nios2/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-02-17 17:23:42 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2015-02-17 17:23:42 -0500
commitb0f0c26a2ed49eccf98a011b86fe24fb9f2b35f6 (patch)
treead2efaa0ab0459257948127c56d4a7747cbefa11 /arch/nios2/include
parent99fa0ad92c4fd8b529c89b3640b42323984be761 (diff)
parentd16d2be111a61baf3a4696f07bfc7a8e36697cec (diff)
Merge tag 'nios2-v3.20-rc1' of git://git.rocketboards.org/linux-socfpga-next
Pull arch/nios2 update from Ley Foon Tan: "Here is the nios2 update for 3.20: - add early printk support - add kgdb support - add compressed kernel support - bugfixes" * tag 'nios2-v3.20-rc1' of git://git.rocketboards.org/linux-socfpga-next: nios2: add kgdb support MAINTAINERS: update arch/nios2 git tree nios2: default CONFIG_NIOS2_BOOT_LINK_OFFSET to 8MB nios2: Add support for compressed kernel nios2: add early printk support nios2: Port OOM changes to do_page_fault() nios2: Remove unused prepare_to_copy()
Diffstat (limited to 'arch/nios2/include')
-rw-r--r--arch/nios2/include/asm/kgdb.h93
-rw-r--r--arch/nios2/include/asm/processor.h3
-rw-r--r--arch/nios2/include/asm/prom.h22
3 files changed, 115 insertions, 3 deletions
diff --git a/arch/nios2/include/asm/kgdb.h b/arch/nios2/include/asm/kgdb.h
new file mode 100644
index 000000000000..8fd5e3b66c57
--- /dev/null
+++ b/arch/nios2/include/asm/kgdb.h
@@ -0,0 +1,93 @@
1/*
2 * Copyright (C) 2015 Altera Corporation
3 * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch>
4 *
5 * Based on the code posted by Kazuyasu on the Altera Forum at:
6 * http://www.alteraforum.com/forum/showpost.php?p=77003&postcount=20
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#ifndef _ASM_NIOS2_KGDB_H
24#define _ASM_NIOS2_KGDB_H
25
26#define CACHE_FLUSH_IS_SAFE 1
27#define BUFMAX 2048
28
29enum regnames {
30 GDB_R0 = 0,
31 GDB_AT,
32 GDB_R2,
33 GDB_R3,
34 GDB_R4,
35 GDB_R5,
36 GDB_R6,
37 GDB_R7,
38 GDB_R8,
39 GDB_R9,
40 GDB_R10,
41 GDB_R11,
42 GDB_R12,
43 GDB_R13,
44 GDB_R14,
45 GDB_R15,
46 GDB_R16,
47 GDB_R17,
48 GDB_R18,
49 GDB_R19,
50 GDB_R20,
51 GDB_R21,
52 GDB_R22,
53 GDB_R23,
54 GDB_ET,
55 GDB_BT,
56 GDB_GP,
57 GDB_SP,
58 GDB_FP,
59 GDB_EA,
60 GDB_BA,
61 GDB_RA,
62 GDB_PC,
63 GDB_STATUS,
64 GDB_ESTATUS,
65 GDB_BSTATUS,
66 GDB_IENABLE,
67 GDB_IPENDING,
68 GDB_CPUID,
69 GDB_CTL6,
70 GDB_EXCEPTION,
71 GDB_PTEADDR,
72 GDB_TLBACC,
73 GDB_TLBMISC,
74 GDB_ECCINJ,
75 GDB_BADADDR,
76 GDB_CONFIG,
77 GDB_MPUBASE,
78 GDB_MPUACC,
79 /* do not change the last entry or anything below! */
80 GDB_NUMREGBYTES /* number of registers */
81};
82
83#define GDB_SIZEOF_REG sizeof(u32)
84#define DBG_MAX_REG_NUM (49)
85#define NUMREGBYTES (DBG_MAX_REG_NUM * sizeof(GDB_SIZEOF_REG))
86
87#define BREAK_INSTR_SIZE 4
88static inline void arch_kgdb_breakpoint(void)
89{
90 __asm__ __volatile__("trap 30\n");
91}
92
93#endif /* _ASM_NIOS2_KGDB_H */
diff --git a/arch/nios2/include/asm/processor.h b/arch/nios2/include/asm/processor.h
index 3bd349473b06..c2ba45c159c7 100644
--- a/arch/nios2/include/asm/processor.h
+++ b/arch/nios2/include/asm/processor.h
@@ -85,9 +85,6 @@ static inline void exit_thread(void)
85 85
86extern unsigned long get_wchan(struct task_struct *p); 86extern unsigned long get_wchan(struct task_struct *p);
87 87
88/* Prepare to copy thread state - unlazy all lazy status */
89#define prepare_to_copy(tsk) do { } while (0)
90
91#define task_pt_regs(p) \ 88#define task_pt_regs(p) \
92 ((struct pt_regs *)(THREAD_SIZE + task_stack_page(p)) - 1) 89 ((struct pt_regs *)(THREAD_SIZE + task_stack_page(p)) - 1)
93 90
diff --git a/arch/nios2/include/asm/prom.h b/arch/nios2/include/asm/prom.h
new file mode 100644
index 000000000000..75fffb42cfa5
--- /dev/null
+++ b/arch/nios2/include/asm/prom.h
@@ -0,0 +1,22 @@
1/*
2 * Copyright Altera Corporation (C) <2015>. All rights reserved
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef __ASM_NIOS2_PROM_H__
18#define __ASM_NIOS2_PROM_H__
19
20extern unsigned long __init of_early_console(void);
21
22#endif