source: mainline/kernel/arch/abs32le/include/asm.h@ c82047d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c82047d was 7a0359b, checked in by Martin Decky <martin@…>, 15 years ago

improve kernel function tracing

  • add support for more generic kernel sources
  • replace attribute((no_instrument_function)) with NO_TRACE macro (shorter and for future compatibility with different compilers)
  • to be on the safe side, do not instrument most of the inline and static functions (plus some specific non-static functions)

collateral code cleanup (no change in functionality)

  • Property mode set to 100644
File size: 4.6 KB
Line 
1/*
2 * Copyright (c) 2010 Martin Decky
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 abs32le
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_abs32le_ASM_H_
36#define KERN_abs32le_ASM_H_
37
38#include <typedefs.h>
39#include <config.h>
40#include <trace.h>
41
42NO_TRACE static inline void asm_delay_loop(uint32_t usec)
43{
44}
45
46NO_TRACE static inline __attribute__((noreturn)) void cpu_halt(void)
47{
48 /* On real hardware this should stop processing further
49 instructions on the CPU (and possibly putting it into
50 low-power mode) without any possibility of exitting
51 this function. */
52
53 while (true);
54}
55
56NO_TRACE static inline void cpu_sleep(void)
57{
58 /* On real hardware this should put the CPU into low-power
59 mode. However, the CPU is free to continue processing
60 futher instructions any time. The CPU also wakes up
61 upon an interrupt. */
62}
63
64NO_TRACE static inline void pio_write_8(ioport8_t *port, uint8_t val)
65{
66}
67
68/** Word to port
69 *
70 * Output word to port
71 *
72 * @param port Port to write to
73 * @param val Value to write
74 *
75 */
76NO_TRACE static inline void pio_write_16(ioport16_t *port, uint16_t val)
77{
78}
79
80/** Double word to port
81 *
82 * Output double word to port
83 *
84 * @param port Port to write to
85 * @param val Value to write
86 *
87 */
88NO_TRACE static inline void pio_write_32(ioport32_t *port, uint32_t val)
89{
90}
91
92/** Byte from port
93 *
94 * Get byte from port
95 *
96 * @param port Port to read from
97 * @return Value read
98 *
99 */
100NO_TRACE static inline uint8_t pio_read_8(ioport8_t *port)
101{
102 return 0;
103}
104
105/** Word from port
106 *
107 * Get word from port
108 *
109 * @param port Port to read from
110 * @return Value read
111 *
112 */
113NO_TRACE static inline uint16_t pio_read_16(ioport16_t *port)
114{
115 return 0;
116}
117
118/** Double word from port
119 *
120 * Get double word from port
121 *
122 * @param port Port to read from
123 * @return Value read
124 *
125 */
126NO_TRACE static inline uint32_t pio_read_32(ioport32_t *port)
127{
128 return 0;
129}
130
131NO_TRACE static inline ipl_t interrupts_enable(void)
132{
133 /*
134 * On real hardware this unconditionally enables preemption
135 * by internal and external interrupts.
136 *
137 * The return value stores the previous interrupt level.
138 */
139
140 return 0;
141}
142
143NO_TRACE static inline ipl_t interrupts_disable(void)
144{
145 /*
146 * On real hardware this disables preemption by the usual
147 * set of internal and external interrupts. This does not
148 * apply to special non-maskable interrupts and sychronous
149 * CPU exceptions.
150 *
151 * The return value stores the previous interrupt level.
152 */
153
154 return 0;
155}
156
157NO_TRACE static inline void interrupts_restore(ipl_t ipl)
158{
159 /*
160 * On real hardware this either enables or disables preemption
161 * according to the interrupt level value from the argument.
162 */
163}
164
165NO_TRACE static inline ipl_t interrupts_read(void)
166{
167 /*
168 * On real hardware the return value stores the current interrupt
169 * level.
170 */
171
172 return 0;
173}
174
175NO_TRACE static inline bool interrupts_disabled(void)
176{
177 /*
178 * On real hardware the return value is true iff interrupts are
179 * disabled.
180 */
181
182 return false;
183}
184
185NO_TRACE static inline uintptr_t get_stack_base(void)
186{
187 /*
188 * On real hardware this returns the address of the bottom
189 * of the current CPU stack. The the_t structure is stored
190 * on the bottom of stack and this is used to identify the
191 * current CPU, current task, current thread and current
192 * address space.
193 */
194
195 return 0;
196}
197
198#endif
199
200/** @}
201 */
Note: See TracBrowser for help on using the repository browser.