1/*
2 * Copyright (c) 2012-2013 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28
29#ifndef _ATM_ATM_TYPES_H_
30#define _ATM_ATM_TYPES_H_
31
32#include <stdint.h>
33#include <mach/mach_types.h>
34
35#define MACH_VOUCHER_ATTR_ATM_NULL ((mach_voucher_attr_recipe_command_t)501)
36#define MACH_VOUCHER_ATTR_ATM_CREATE ((mach_voucher_attr_recipe_command_t)510)
37#define MACH_VOUCHER_ATTR_ATM_REGISTER ((mach_voucher_attr_recipe_command_t)511)
38
39typedef uint32_t atm_action_t;
40#define ATM_ACTION_DISCARD 0x1
41#define ATM_ACTION_COLLECT 0x2
42#define ATM_ACTION_LOGFAIL 0x3
43#define ATM_FIND_MIN_SUB_AID 0x4
44#define ATM_ACTION_UNREGISTER 0x5
45#define ATM_ACTION_REGISTER 0x6
46#define ATM_ACTION_GETSUBAID 0x7
47
48typedef uint64_t atm_guard_t;
49typedef uint64_t aid_t;
50
51/* Deprecated. will be removed soon */
52typedef uint64_t subaid_t;
53typedef uint64_t mailbox_offset_t;
54#define SUB_AID_MAX (UINT64_MAX)
55
56typedef uint64_t atm_aid_t;
57typedef uint32_t atm_subaid32_t;
58typedef uint64_t mach_atm_subaid_t; /* Used for mach based apis. */
59typedef uint64_t atm_mailbox_offset_t;
60
61
62typedef mach_port_t atm_memory_descriptor_t;
63typedef atm_memory_descriptor_t *atm_memory_descriptor_array_t;
64typedef uint64_t *atm_memory_size_array_t;
65
66#define ATM_SUBAID32_MAX (UINT32_MAX)
67#define ATM_TRACE_DISABLE (0x0100) /* OS_TRACE_MODE_DISABLE - Do not initialize the new logging*/
68#define ATM_TRACE_OFF (0x0400) /* OS_TRACE_MODE_OFF - Don't drop log messages to new log buffers */
69#define ATM_ENABLE_LEGACY_LOGGING (0x20000000) /* OS_TRACE_SYSTEMMODE_LEGACY_LOGGING - Enable legacy logging */
70
71#endif /* _ATM_ATM_TYPES_H_ */
72
73