interrupt_props.h 644 Bytes
Newer Older
1
2
3
4
5
6
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef INTERRUPT_PROPS_H
#define INTERRUPT_PROPS_H
9

10
#ifndef __ASSEMBLER__
11
12
13
14

/* Create an interrupt property descriptor from various interrupt properties */
#define INTR_PROP_DESC(num, pri, grp, cfg) \
	{ \
15
16
17
18
		.intr_num = (num), \
		.intr_pri = (pri), \
		.intr_grp = (grp), \
		.intr_cfg = (cfg), \
19
20
21
22
23
24
25
26
27
	}

typedef struct interrupt_prop {
	unsigned int intr_num:10;
	unsigned int intr_pri:8;
	unsigned int intr_grp:2;
	unsigned int intr_cfg:2;
} interrupt_prop_t;

28
#endif /* __ASSEMBLER__ */
29
#endif /* INTERRUPT_PROPS_H */