blob: 8050f381f51812113143c462536dca3343562baf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* cif.S: PROM entry/exit assembler trampolines.
2 *
David S. Miller45fec052006-02-05 22:27:28 -08003 * Copyright (C) 1996, 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
4 * Copyright (C) 2005, 2006 David S. Miller <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#include <asm/pstate.h>
David S. Miller45fec052006-02-05 22:27:28 -08008#include <asm/cpudata.h>
9#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11 .text
David S. Miller25edd692010-08-23 23:10:57 -070012 .globl prom_cif_direct
13prom_cif_direct:
David S. Milleref3e0352014-10-23 12:58:13 -070014 save %sp, -192, %sp
David S. Miller25edd692010-08-23 23:10:57 -070015 sethi %hi(p1275buf), %o1
16 or %o1, %lo(p1275buf), %o1
David S. Milleref3e0352014-10-23 12:58:13 -070017 ldx [%o1 + 0x0008], %l2 ! prom_cif_handler
David S. Miller45fec052006-02-05 22:27:28 -080018 mov %g4, %l0
19 mov %g5, %l1
20 mov %g6, %l3
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 call %l2
David S. Miller25edd692010-08-23 23:10:57 -070022 mov %i0, %o0 ! prom_args
David S. Miller45fec052006-02-05 22:27:28 -080023 mov %l0, %g4
24 mov %l1, %g5
25 mov %l3, %g6
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 ret
27 restore
28
29 .globl prom_cif_callback
30prom_cif_callback:
31 sethi %hi(p1275buf), %o1
32 or %o1, %lo(p1275buf), %o1
David S. Miller45fec052006-02-05 22:27:28 -080033 save %sp, -192, %sp
34 TRAP_LOAD_THREAD_REG(%g6, %g1)
35 LOAD_PER_CPU_BASE(%g5, %g6, %g4, %g3, %o0)
36 ldx [%g6 + TI_TASK], %g4
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 call prom_world
David S. Miller45fec052006-02-05 22:27:28 -080038 mov 0, %o0
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 ldx [%i1 + 0x000], %l2
40 call %l2
41 mov %i0, %o0
42 mov %o0, %l1
43 call prom_world
David S. Miller45fec052006-02-05 22:27:28 -080044 mov 1, %o0
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 ret
46 restore %l1, 0, %o0
47