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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since dbd4ae5 was da1bafb, checked in by Martin Decky <martin@…>, 16 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
RevLine 
[361635c]1/*
[df4ed85]2 * Copyright (c) 2005 Martin Decky
[361635c]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
[82474ef]29/** @addtogroup ppc32
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[06e1e95]35#ifndef KERN_ppc32_ASM_H_
36#define KERN_ppc32_ASM_H_
[361635c]37
[c22e964]38#include <typedefs.h>
[361635c]39#include <config.h>
[3500f75]40#include <arch/cpu.h>
[da1bafb]41#include <arch/mm/asid.h>
[3500f75]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}
[361635c]62
[da1bafb]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
[22f7769]97/** Enable interrupts.
[10caad0]98 *
99 * Enable interrupts and return previous
100 * value of EE.
[22f7769]101 *
102 * @return Old interrupt priority level.
[3500f75]103 *
[10caad0]104 */
[cc35e88]105static inline ipl_t interrupts_enable(void)
106{
[3500f75]107 ipl_t ipl = msr_read();
108 msr_write(ipl | MSR_EE);
109 return ipl;
[10caad0]110}
111
[22f7769]112/** Disable interrupts.
[10caad0]113 *
114 * Disable interrupts and return previous
115 * value of EE.
[22f7769]116 *
117 * @return Old interrupt priority level.
[3500f75]118 *
[10caad0]119 */
[cc35e88]120static inline ipl_t interrupts_disable(void)
121{
[3500f75]122 ipl_t ipl = msr_read();
123 msr_write(ipl & (~MSR_EE));
124 return ipl;
[10caad0]125}
126
[22f7769]127/** Restore interrupt priority level.
[10caad0]128 *
129 * Restore EE.
[22f7769]130 *
131 * @param ipl Saved interrupt priority level.
[3500f75]132 *
[10caad0]133 */
[cc35e88]134static inline void interrupts_restore(ipl_t ipl)
135{
[3500f75]136 msr_write((msr_read() & (~MSR_EE)) | (ipl & MSR_EE));
[10caad0]137}
138
[22f7769]139/** Return interrupt priority level.
[393f631]140 *
141 * Return EE.
[22f7769]142 *
143 * @return Current interrupt priority level.
[3500f75]144 *
[393f631]145 */
[cc35e88]146static inline ipl_t interrupts_read(void)
147{
[3500f75]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);
[393f631]159}
160
[82a80d3]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.
[3500f75]166 *
[82a80d3]167 */
[7f1c620]168static inline uintptr_t get_stack_base(void)
[361635c]169{
[3500f75]170 uintptr_t base;
[82a80d3]171
[762a824]172 asm volatile (
[3500f75]173 "and %[base], %%sp, %[mask]\n"
174 : [base] "=r" (base)
175 : [mask] "r" (~(STACK_SIZE - 1))
[762a824]176 );
[3500f75]177
178 return base;
[361635c]179}
180
[8965838e]181static inline void cpu_sleep(void)
182{
183}
184
[82474ef]185extern void cpu_halt(void) __attribute__((noreturn));
186extern void asm_delay_loop(uint32_t t);
[7f1c620]187extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
[e692a27]188
[7d60cf5]189static inline void pio_write_8(ioport8_t *port, uint8_t v)
[6da1013f]190{
[82474ef]191 *port = v;
[e78136a]192}
193
194static inline void pio_write_16(ioport16_t *port, uint16_t v)
195{
[82474ef]196 *port = v;
[e78136a]197}
198
199static inline void pio_write_32(ioport32_t *port, uint32_t v)
200{
[82474ef]201 *port = v;
[6da1013f]202}
203
[7d60cf5]204static inline uint8_t pio_read_8(ioport8_t *port)
[6da1013f]205{
[82474ef]206 return *port;
[e78136a]207}
208
209static inline uint16_t pio_read_16(ioport16_t *port)
210{
[82474ef]211 return *port;
[e78136a]212}
213
214static inline uint32_t pio_read_32(ioport32_t *port)
215{
[82474ef]216 return *port;
[6da1013f]217}
218
[361635c]219#endif
[b45c443]220
[06e1e95]221/** @}
[b45c443]222 */
Note: See TracBrowser for help on using the repository browser.