aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp/api/plat/event_inline_types.h
blob: caa075871cf209d526169d5fcd7d2b49faf18b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* Copyright (c) 2018, Linaro Limited
 * Copyright (c) 2022, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#ifndef ODP_PLAT_EVENT_INLINE_TYPES_H_
#define ODP_PLAT_EVENT_INLINE_TYPES_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

/** @cond _ODP_HIDE_FROM_DOXYGEN_ */

/* Event header field accessors */
#define _odp_event_hdr_field(event_hdr, cast, field) \
	(*(cast *)(uintptr_t)((uint8_t *)event_hdr + \
	 _odp_event_inline_offset.field))
#define _odp_event_hdr_ptr(event_hdr, cast, field) \
	((cast *)(uintptr_t)((uint8_t *)event_hdr + \
	_odp_event_inline_offset.field))

/* Event header field offsets for inline functions */
typedef struct _odp_event_inline_offset_t {
	uint16_t event_type;
	uint16_t base_data;
	uint16_t flow_id;
	uint16_t pool;

} _odp_event_inline_offset_t;

extern const _odp_event_inline_offset_t _odp_event_inline_offset;

/** @endcond */

#ifdef __cplusplus
}
#endif

#endif