Changeset 46fc2f9 in mainline for generic/include/ipc/ipc.h


Ignore:
Timestamp:
2006-05-27T22:57:21Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6212095
Parents:
00b595b
Message:

Added 256K slab, so that AMD can boot (until ELF loader is fixed).
Added AS_AREA_RECV so that the caller can receive AS_AREA.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ipc/ipc.h

    r00b595b r46fc2f9  
    4343                                        * userspace, will be discarded */
    4444#define IPC_CALL_FORWARDED      (1<<3) /* Call was forwarded */
    45 #define IPC_CALL_CONN_ME_TO     (1<<4) /* Identify connect_me_to */
     45#define IPC_CALL_CONN_ME_TO     (1<<4) /* Identify connect_me_to answer */
    4646#define IPC_CALL_NOTIF          (1<<5) /* Interrupt notification */
    4747
     
    120120/** Interrupt notification */
    121121#define IPC_M_INTERRUPT         4
     122
    122123/** Send as_area over IPC
    123  * - ARG2 - src base address
    124  * - ARG3 - size of src as(filled automatically by kernel)
     124 * - ARG1 - src base address
     125 * - ARG2 - size of src as(filled automatically by kernel)
     126 * - ARG3 - flags of the area being sent
    125127 * - on answer ARG1 - dst base adress
    126128 */
    127129#define IPC_M_AS_AREA_SEND      5
     130
     131/** Get as_area over IPC
     132 * - ARG1 - Where the area will be mapped
     133 * - ARG2 - Expected size of area
     134 * - ARG3 - Requested rights for the area
     135 * on answer - the server sets ARG1 as src as address of the as_area
     136 * to be shared
     137 *
     138 *
     139 */
     140#define IPC_M_AS_AREA_RECV      6
    128141
    129142
Note: See TracChangeset for help on using the changeset viewer.