1/*
2 * Copyright 2014, General Dynamics C4 Systems
3 *
4 * This software may be distributed and modified according to the terms of
5 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
6 * See "LICENSE_GPLv2.txt" for details.
7 *
8 * @TAG(GD_GPL)
9 */
10
11#ifndef __ARCH_API_TYPES
12#define __ARCH_API_TYPES
13
14#include <api/objecttype.h>
15#include <config.h>
16#include <mode/api/objecttype.h>
17#include <arch/api/objecttype.h>
18
19#define pageType PageObject4K
20
21enum asidConstants {
22    asidInvalid = 0
23};
24
25#define asidMax (BIT(asidLowBits + asidHighBits) - 1)
26
27typedef word_t asid_t;
28
29#endif
30