123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804 |
- /*
- * PS3 hvcall interface.
- *
- * Copyright (C) 2006 Sony Computer Entertainment Inc.
- * Copyright 2006 Sony Corp.
- * Copyright 2003, 2004 (c) MontaVista Software, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- #include <asm/processor.h>
- #include <asm/ppc_asm.h>
- #define lv1call .long 0x44000022; extsw r3, r3
- #define LV1_N_IN_0_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_0_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_1_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_2_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_3_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_4_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_5_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_6_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_7_IN_0_OUT LV1_N_IN_0_OUT
- #define LV1_0_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r3, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_0_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r3, -8(r1); \
- stdu r4, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_0_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r3, -8(r1); \
- std r4, -16(r1); \
- stdu r5, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_0_IN_7_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r3, -8(r1); \
- std r4, -16(r1); \
- std r5, -24(r1); \
- std r6, -32(r1); \
- std r7, -40(r1); \
- std r8, -48(r1); \
- stdu r9, -56(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 56; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- ld r11, -40(r1); \
- std r8, 0(r11); \
- ld r11, -48(r1); \
- std r9, 0(r11); \
- ld r11, -56(r1); \
- std r10, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r4, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- stdu r5, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- std r5, -16(r1); \
- stdu r6, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_4_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- std r5, -16(r1); \
- std r6, -24(r1); \
- stdu r7, -32(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 32; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_5_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- std r5, -16(r1); \
- std r6, -24(r1); \
- std r7, -32(r1); \
- stdu r8, -40(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 40; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- ld r11, -40(r1); \
- std r8, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_6_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- std r5, -16(r1); \
- std r6, -24(r1); \
- std r7, -32(r1); \
- std r8, -40(r1); \
- stdu r9, -48(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 48; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- ld r11, -40(r1); \
- std r8, 0(r11); \
- ld r11, -48(r1); \
- std r9, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_1_IN_7_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r4, -8(r1); \
- std r5, -16(r1); \
- std r6, -24(r1); \
- std r7, -32(r1); \
- std r8, -40(r1); \
- std r9, -48(r1); \
- stdu r10, -56(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 56; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- ld r11, -40(r1); \
- std r8, 0(r11); \
- ld r11, -48(r1); \
- std r9, 0(r11); \
- ld r11, -56(r1); \
- std r10, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_2_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r5, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_2_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r5, -8(r1); \
- stdu r6, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_2_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r5, -8(r1); \
- std r6, -16(r1); \
- stdu r7, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_2_IN_4_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r5, -8(r1); \
- std r6, -16(r1); \
- std r7, -24(r1); \
- stdu r8, -32(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 32; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_2_IN_5_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r5, -8(r1); \
- std r6, -16(r1); \
- std r7, -24(r1); \
- std r8, -32(r1); \
- stdu r9, -40(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 40; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- ld r11, -32(r1); \
- std r7, 0(r11); \
- ld r11, -40(r1); \
- std r8, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_3_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r6, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_3_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r6, -8(r1); \
- stdu r7, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_3_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r6, -8(r1); \
- std r7, -16(r1); \
- stdu r8, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_4_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r7, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_4_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r7, -8(r1); \
- stdu r8, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_4_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r7, -8(r1); \
- std r8, -16(r1); \
- stdu r9, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_5_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r8, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_5_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r8, -8(r1); \
- stdu r9, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_5_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r8, -8(r1); \
- std r9, -16(r1); \
- stdu r10, -24(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 24; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, -24(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_6_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r9, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_6_IN_2_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r9, -8(r1); \
- stdu r10, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_6_IN_3_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r9, -8(r1); \
- stdu r10, -16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 16; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- ld r11, -16(r1); \
- std r5, 0(r11); \
- ld r11, 48+8*8(r1); \
- std r6, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_7_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- stdu r10, -8(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- addi r1, r1, 8; \
- ld r11, -8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_7_IN_6_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- std r10, 48+8*7(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- ld r11, 48+8*7(r1); \
- std r4, 0(r11); \
- ld r11, 48+8*8(r1); \
- std r5, 0(r11); \
- ld r11, 48+8*9(r1); \
- std r6, 0(r11); \
- ld r11, 48+8*10(r1); \
- std r7, 0(r11); \
- ld r11, 48+8*11(r1); \
- std r8, 0(r11); \
- ld r11, 48+8*12(r1); \
- std r9, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- #define LV1_8_IN_1_OUT(API_NAME, API_NUMBER) \
- _GLOBAL(_##API_NAME) \
- \
- mflr r0; \
- std r0, 16(r1); \
- \
- li r11, API_NUMBER; \
- lv1call; \
- \
- ld r11, 48+8*8(r1); \
- std r4, 0(r11); \
- \
- ld r0, 16(r1); \
- mtlr r0; \
- blr
- .text
- /* the lv1 underscored call definitions expand here */
- #define LV1_CALL(name, in, out, num) LV1_##in##_IN_##out##_OUT(lv1_##name, num)
- #include <asm/lv1call.h>
|