29 lines · c
1/* SPDX-License-Identifier: GPL-2.02 *3 * Copyright 2018 HabanaLabs, Ltd.4 * All Rights Reserved.5 *6 */7 8#ifndef INCLUDE_MMU_V1_1_H_9#define INCLUDE_MMU_V1_1_H_10 11#define MMU_V1_1_HOP0_MASK 0x3000000000000ull12#define MMU_V1_1_HOP1_MASK 0x0FF8000000000ull13#define MMU_V1_1_HOP2_MASK 0x0007FC0000000ull14#define MMU_V1_1_HOP3_MASK 0x000003FE00000ull15#define MMU_V1_1_HOP4_MASK 0x00000001FF000ull16 17#define MMU_V1_1_HOP0_SHIFT 4818#define MMU_V1_1_HOP1_SHIFT 3919#define MMU_V1_1_HOP2_SHIFT 3020#define MMU_V1_1_HOP3_SHIFT 2121#define MMU_V1_1_HOP4_SHIFT 1222 23#define MMU_ASID 0xC1200424#define MMU_HOP0_PA43_12 0xC1200825#define MMU_HOP0_PA49_44 0xC1200C26#define MMU_BUSY 0xC1200027 28#endif /* INCLUDE_MMU_V1_1_H_ */29