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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c55dd58 was 06e1e95, checked in by Jakub Jermar <jakub@…>, 19 years ago

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[361635c]1/*
[10caad0]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
[06e1e95]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
38#include <arch/types.h>
39#include <config.h>
40
[22f7769]41/** Enable interrupts.
[10caad0]42 *
43 * Enable interrupts and return previous
44 * value of EE.
[22f7769]45 *
46 * @return Old interrupt priority level.
[10caad0]47 */
[cc35e88]48static inline ipl_t interrupts_enable(void)
49{
[16dad032]50 ipl_t v;
[22f7769]51 ipl_t tmp;
[fe56609d]52
[762a824]53 asm volatile (
[3de9e5e]54 "mfmsr %0\n"
[fe56609d]55 "mfmsr %1\n"
[edc89bd0]56 "ori %1, %1, 1 << 15\n"
[fe56609d]57 "mtmsr %1\n"
58 : "=r" (v), "=r" (tmp)
[10caad0]59 );
60 return v;
61}
62
[22f7769]63/** Disable interrupts.
[10caad0]64 *
65 * Disable interrupts and return previous
66 * value of EE.
[22f7769]67 *
68 * @return Old interrupt priority level.
[10caad0]69 */
[cc35e88]70static inline ipl_t interrupts_disable(void)
71{
[22f7769]72 ipl_t v;
73 ipl_t tmp;
[fe56609d]74
[762a824]75 asm volatile (
[3de9e5e]76 "mfmsr %0\n"
[fe56609d]77 "mfmsr %1\n"
78 "rlwinm %1, %1, 0, 17, 15\n"
79 "mtmsr %1\n"
80 : "=r" (v), "=r" (tmp)
[10caad0]81 );
82 return v;
83}
84
[22f7769]85/** Restore interrupt priority level.
[10caad0]86 *
87 * Restore EE.
[22f7769]88 *
89 * @param ipl Saved interrupt priority level.
[10caad0]90 */
[cc35e88]91static inline void interrupts_restore(ipl_t ipl)
92{
[22f7769]93 ipl_t tmp;
[fe56609d]94
[762a824]95 asm volatile (
[fe56609d]96 "mfmsr %1\n"
97 "rlwimi %0, %1, 0, 17, 15\n"
98 "cmpw 0, %0, %1\n"
[393f631]99 "beq 0f\n"
[3de9e5e]100 "mtmsr %0\n"
[393f631]101 "0:\n"
[22f7769]102 : "=r" (ipl), "=r" (tmp)
103 : "0" (ipl)
[cc35e88]104 : "cr0"
[10caad0]105 );
106}
107
[22f7769]108/** Return interrupt priority level.
[393f631]109 *
110 * Return EE.
[22f7769]111 *
112 * @return Current interrupt priority level.
[393f631]113 */
[cc35e88]114static inline ipl_t interrupts_read(void)
115{
[22f7769]116 ipl_t v;
[762a824]117
118 asm volatile (
[393f631]119 "mfmsr %0\n"
120 : "=r" (v)
121 );
122 return v;
123}
124
[82a80d3]125/** Return base address of current stack.
126 *
127 * Return the base address of the current stack.
128 * The stack is assumed to be STACK_SIZE bytes long.
129 * The stack must start on page boundary.
130 */
[7f1c620]131static inline uintptr_t get_stack_base(void)
[361635c]132{
[7f1c620]133 uintptr_t v;
[82a80d3]134
[762a824]135 asm volatile (
136 "and %0, %%sp, %1\n"
137 : "=r" (v)
138 : "r" (~(STACK_SIZE - 1))
139 );
[82a80d3]140 return v;
[361635c]141}
142
[8965838e]143static inline void cpu_sleep(void)
144{
145}
146
[fe56609d]147void cpu_halt(void);
[7f1c620]148void asm_delay_loop(uint32_t t);
[c5ae095]149
[7f1c620]150extern void userspace_asm(uintptr_t uspace_uarg, uintptr_t stack, uintptr_t entry);
[e692a27]151
[361635c]152#endif
[b45c443]153
[06e1e95]154/** @}
[b45c443]155 */
Note: See TracBrowser for help on using the repository browser.