Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
70417740
Commit
70417740
authored
Jan 18, 2004
by
Andrew Morton
Committed by
Linus Torvalds
Jan 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] ppc64: add hcall interface
From: Anton Blanchard <anton@samba.org> add hcall interface
parent
a62f6a53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
arch/ppc64/kernel/pSeries_hvCall.S
arch/ppc64/kernel/pSeries_hvCall.S
+36
-0
include/asm-ppc64/hvcall.h
include/asm-ppc64/hvcall.h
+18
-0
No files found.
arch/ppc64/kernel/pSeries_hvCall.S
View file @
70417740
...
...
@@ -67,3 +67,39 @@ _GLOBAL(plpar_hcall_norets)
ld
r0
,-
8
(
r1
)
mtcrf
0xff
,
r0
blr
/*
return
r3
=
status
*/
/*
long
plpar_hcall_8arg_2ret
(
unsigned
long
opcode
,
R3
unsigned
long
arg1
,
R4
unsigned
long
arg2
,
R5
unsigned
long
arg3
,
R6
unsigned
long
arg4
,
R7
unsigned
long
arg5
,
R8
unsigned
long
arg6
,
R9
unsigned
long
arg7
,
R10
unsigned
long
arg8
,
112
(
R1
)
unsigned
long
*
out1
)
; 120(R1)
*/
.
text
_GLOBAL
(
plpar_hcall_8arg_2ret
)
mfcr
r0
ld
r11
,
112
(
r1
)
/*
put
arg8
and
out1
in
R11
and
R12
*/
ld
r12
,
120
(
r1
)
std
r0
,-
8
(
r1
)
stdu
r1
,-
32
(
r1
)
std
r12
,-
8
(
r1
)
/*
Save
out
ptr
*/
HSC
/*
invoke
the
hypervisor
*/
ld
r10
,-
8
(
r1
)
/*
Fetch
r4
ret
arg
*/
std
r4
,
0
(
r10
)
ld
r1
,
0
(
r1
)
ld
r0
,-
8
(
r1
)
mtcrf
0xff
,
r0
blr
/*
return
r3
=
status
*/
include/asm-ppc64/hvcall.h
View file @
70417740
...
...
@@ -103,3 +103,21 @@ long plpar_hcall(unsigned long opcode,
* other than status. Slightly more efficient.
*/
long
plpar_hcall_norets
(
unsigned
long
opcode
,
...);
/*
* Special hcall interface for ibmveth support.
* Takes 8 input parms. Returns a rc and stores the
* R4 return value in *out1.
*/
long
plpar_hcall_8arg_2ret
(
unsigned
long
opcode
,
unsigned
long
arg1
,
unsigned
long
arg2
,
unsigned
long
arg3
,
unsigned
long
arg4
,
unsigned
long
arg5
,
unsigned
long
arg6
,
unsigned
long
arg7
,
unsigned
long
arg8
,
unsigned
long
*
out1
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment