source: mainline/kernel/arch/sparc64/include/trap/trap_table.h@ 2277e03

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2277e03 was 819a768, checked in by Jakub Jermar <jakub@…>, 15 years ago

On sparc64, we have a problem with determining the end of the kernel stack
because the preemptible trap handler cannot easily terminate the stack trace by
writing -STACK_BIAS to %fp as that %fp is unfortunatelly an %sp of the previous
context (user or kernel).

Without sacrifying performance via the FLUSHW instruction, we simply have to
stop tracing when we see the stack frame with %sp created by the SAVE
instruction inside the preemptible trap handler.

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/*
2 * Copyright (c) 2005 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup sparc64interrupt
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_sparc64_TRAP_TABLE_H_
36#define KERN_sparc64_TRAP_TABLE_H_
37
38#include <arch/stack.h>
39
40#define TRAP_TABLE_ENTRY_COUNT 1024
41#define TRAP_TABLE_ENTRY_SIZE 32
42#define TRAP_TABLE_SIZE (TRAP_TABLE_ENTRY_COUNT * TRAP_TABLE_ENTRY_SIZE)
43
44/*
45 * The following needs to be in sync with the definition of the istate
46 * structure. The one STACK_ITEM_SIZE is counted for space holding the 7th
47 * argument to syscall_handler (i.e. syscall number) and the other
48 * STACK_ITEM_SIZE is counted because of the required alignment.
49 */
50#define PREEMPTIBLE_HANDLER_STACK_FRAME_SIZE \
51 (STACK_WINDOW_SAVE_AREA_SIZE + STACK_ARG_SAVE_AREA_SIZE + \
52 (2 * STACK_ITEM_SIZE) + (12 * 8))
53#define SAVED_TSTATE -(1 * 8)
54#define SAVED_TPC -(2 * 8)
55#define SAVED_TNPC -(3 * 8) /* <-- istate_t begins here */
56#define SAVED_Y -(4 * 8)
57#define SAVED_I0 -(5 * 8)
58#define SAVED_I1 -(6 * 8)
59#define SAVED_I2 -(7 * 8)
60#define SAVED_I3 -(8 * 8)
61#define SAVED_I4 -(9 * 8)
62#define SAVED_I5 -(10 * 8)
63#define SAVED_I6 -(11 * 8)
64#define SAVED_I7 -(12 * 8)
65
66#ifndef __ASM__
67
68#include <typedefs.h>
69
70struct trap_table_entry {
71 uint8_t octets[TRAP_TABLE_ENTRY_SIZE];
72} __attribute__ ((packed));
73
74typedef struct trap_table_entry trap_table_entry_t;
75
76extern trap_table_entry_t trap_table[TRAP_TABLE_ENTRY_COUNT];
77extern trap_table_entry_t trap_table_save[TRAP_TABLE_ENTRY_COUNT];
78#endif /* !__ASM__ */
79
80#ifdef __ASM__
81.macro SAVE_GLOBALS
82 mov %g1, %l1
83 mov %g2, %l2
84 mov %g3, %l3
85 mov %g4, %l4
86 mov %g5, %l5
87 mov %g6, %l6
88 mov %g7, %l7
89.endm
90
91.macro RESTORE_GLOBALS
92 mov %l1, %g1
93 mov %l2, %g2
94 mov %l3, %g3
95 mov %l4, %g4
96 mov %l5, %g5
97 mov %l6, %g6
98 mov %l7, %g7
99.endm
100
101.macro PREEMPTIBLE_HANDLER f
102 sethi %hi(\f), %g1
103 ba %xcc, preemptible_handler
104 or %g1, %lo(\f), %g1
105.endm
106
107#endif /* __ASM__ */
108
109#endif
110
111/** @}
112 */
Note: See TracBrowser for help on using the repository browser.