Subversion Repositories HelenOS-historic

Rev

Rev 1078 | Rev 1295 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
59 jermar 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
 
919 jermar 29
#include <arch/register.h>
30
 
59 jermar 31
.text
32
 
1288 jermar 33
/** Copy memory from/to userspace.
34
 *
35
 * @param in0 Destination address.
36
 * @param in1 Source address.
37
 * @param in2 Number of byte to copy.
38
 */
59 jermar 39
.global memcpy
1288 jermar 40
.global memcpy_from_uspace
41
.global memcpy_to_uspace
42
.global memcpy_from_uspace_failover_address
43
.global memcpy_to_uspace_failover_address
59 jermar 44
memcpy:
1288 jermar 45
memcpy_from_uspace:
46
memcpy_to_uspace:
205 jermar 47
	br _memcpy
1288 jermar 48
 
49
memcpy_from_uspace_failover_address:
50
memcpy_to_uspace_failover_address:
51
	br memcpy_from_uspace_failover_address
81 jermar 52
 
102 jermar 53
.global memsetb
54
memsetb:
55
	br _memsetb
56
 
57
.global cpu_halt
58
cpu_halt:
59
	br cpu_halt
60
 
61
.global panic_printf
62
panic_printf:
63
	{
64
		br.call.sptk.many b0=printf
65
	}
736 jermar 66
	br halt
919 jermar 67
 
68
/** Switch to userspace - low level code.
69
 *
70
 * @param in0 Userspace entry point address.
71
 * @param in1 Userspace stack pointer address.
72
 * @param in2 Userspace register stack pointer address.
1078 jermar 73
 * @param in3 Userspace address of thread uspace_arg_t structure.
74
 * @param in4 Value to be stored in IPSR.
75
 * @param in5 Value to be stored in RSC.
919 jermar 76
 */
77
.global switch_to_userspace
78
switch_to_userspace:
1078 jermar 79
	alloc loc0 = ar.pfs, 6, 3, 0, 0
993 jermar 80
	rsm (PSR_IC_MASK | PSR_I_MASK)		/* disable interruption collection and interrupts */
919 jermar 81
	srlz.d ;;
82
	srlz.i ;;
83
 
1078 jermar 84
	mov cr.ipsr = in4
919 jermar 85
	mov cr.iip = in0
86
	mov r12 = in1
87
 
88
	xor r1 = r1, r1
89
 
90
	mov loc1 = cr.ifs
91
	movl loc2 = PFM_MASK ;;
92
	and loc1 = loc2, loc1 ;;
93
	mov cr.ifs = loc1 ;;			/* prevent decrementing BSP by rfi */
94
 
95
	invala
96
 
97
	mov loc1 = ar.rsc ;;
98
	and loc1 = ~3, loc1 ;;			
99
	mov ar.rsc = loc1 ;;			/* put RSE into enforced lazy mode */
100
 
101
	flushrs ;;
102
 
103
	mov ar.bspstore = in2 ;;
1078 jermar 104
	mov ar.rsc = in5 ;;
919 jermar 105
 
1078 jermar 106
	mov r8 = in3
107
 
919 jermar 108
	rfi ;;