source: mainline/kernel/arch/ppc32/include/asm.h@ 2d03471

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

major code revision

  • replace spinlocks taken with interrupts disabled with irq_spinlocks
  • change spacing (not indendation) to be tab-size independent
  • use unsigned integer types where appropriate (especially bit flags)
  • visual separation
  • remove argument names in function prototypes
  • string changes
  • correct some formating directives
  • replace various cryptic single-character variables (t, a, m, c, b, etc.) with proper identifiers (thread, task, timeout, as, itm, itc, etc.)
  • unify some assembler constructs
  • unused page table levels are now optimized out in compile time
  • replace several ints (with boolean semantics) with bools
  • use specifically sized types instead of generic types where appropriate (size_t, uint32_t, btree_key_t)
  • improve comments
  • split asserts with conjuction into multiple independent asserts
  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * Copyright (c) 2005 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 ppc32
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_ppc32_ASM_H_
36#define KERN_ppc32_ASM_H_
37
38#include <typedefs.h>
39#include <config.h>
40#include <arch/cpu.h>
41#include <arch/mm/asid.h>
42
43static inline uint32_t msr_read(void)
44{
45 uint32_t msr;
46
47 asm volatile (
48 "mfmsr %[msr]\n"
49 : [msr] "=r" (msr)
50 );
51
52 return msr;
53}
54
55static inline void msr_write(uint32_t msr)
56{
57 asm volatile (
58 "mtmsr %[msr]\n"
59 :: [msr] "r" (msr)
60 );
61}
62
63static inline void sr_set(uint32_t flags, asid_t asid, uint32_t sr)
64{
65 asm volatile (
66 "mtsrin %[value], %[sr]\n"
67 :: [value] "r" ((flags << 16) + (asid << 4) + sr),
68 [sr] "r" (sr << 28)
69 );
70}
71
72static inline uint32_t sr_get(uint32_t vaddr)
73{
74 uint32_t vsid;
75
76 asm volatile (
77 "mfsrin %[vsid], %[vaddr]\n"
78 : [vsid] "=r" (vsid)
79 : [vaddr] "r" (vaddr)
80 );
81
82 return vsid;
83}
84
85static inline uint32_t sdr1_get(void)
86{
87 uint32_t sdr1;
88
89 asm volatile (
90 "mfsdr1 %[sdr1]\n"
91 : [sdr1] "=r" (sdr1)
92 );
93
94 return sdr1;
95}
96
97/** Enable interrupts.
98 *
99 * Enable interrupts and return previous
100 * value of EE.
101 *
102 * @return Old interrupt priority level.
103 *
104 */
105static inline ipl_t interrupts_enable(void)
106{
107 ipl_t ipl = msr_read();
108 msr_write(ipl | MSR_EE);
109 return ipl;
110}
111
112/** Disable interrupts.
113 *
114 * Disable interrupts and return previous
115 * value of EE.
116 *
117 * @return Old interrupt priority level.
118 *
119 */
120static inline ipl_t interrupts_disable(void)
121{
122 ipl_t ipl = msr_read();
123 msr_write(ipl & (~MSR_EE));
124 return ipl;
125}
126
127/** Restore interrupt priority level.
128 *
129 * Restore EE.
130 *
131 * @param ipl Saved interrupt priority level.
132 *
133 */
134static inline void interrupts_restore(ipl_t ipl)
135{
136 msr_write((msr_read() & (~MSR_EE)) | (ipl & MSR_EE));
137}
138
139/** Return interrupt priority level.
140 *
141 * Return EE.
142 *
143 * @return Current interrupt priority level.
144 *
145 */
146static inline ipl_t interrupts_read(void)
147{
148 return msr_read();
149}
150
151/** Check whether interrupts are disabled.
152 *
153 * @return True if interrupts are disabled.
154 *
155 */
156static inline bool interrupts_disabled(void)
157{
158 return ((msr_read() & MSR_EE) == 0);
159}
160
161/** Return base address of current stack.
162 *
163 * Return the base address of the current stack.
164 * The stack is assumed to be STACK_SIZE bytes long.
165 * The stack must start on page boundary.
166 *
167 */
168static inline uintptr_t get_stack_base(void)
169{
170 uintptr_t base;
171
172 asm volatile (
173 "and %[base], %%sp, %[mask]\n"
174 : [base] "=r" (base)
175 : [mask] "r" (~(STACK_SIZE - 1))
176 );
177
178 return base;
179}
180
181static inline void cpu_sleep(void)
182{
183}
184
185extern void cpu_halt(void) __attribute__((noreturn));
186extern void asm_delay_loop(uint32_t t);
187extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
188
189static inline void pio_write_8(ioport8_t *port, uint8_t v)
190{
191 *port = v;
192}
193
194static inline void pio_write_16(ioport16_t *port, uint16_t v)
195{
196 *port = v;
197}
198
199static inline void pio_write_32(ioport32_t *port, uint32_t v)
200{
201 *port = v;
202}
203
204static inline uint8_t pio_read_8(ioport8_t *port)
205{
206 return *port;
207}
208
209static inline uint16_t pio_read_16(ioport16_t *port)
210{
211 return *port;
212}
213
214static inline uint32_t pio_read_32(ioport32_t *port)
215{
216 return *port;
217}
218
219#endif
220
221/** @}
222 */
Note: See TracBrowser for help on using the repository browser.