21 lines
251 B
ArmAsm
21 lines
251 B
ArmAsm
|
// SPDX-License-Identifier: GPL-2.0-only
|
||
|
// Copyright (C) 2021 ARM Limited.
|
||
|
|
||
|
#include "sme-inst.h"
|
||
|
|
||
|
.arch_extension sve
|
||
|
|
||
|
.globl rdvl_sve
|
||
|
rdvl_sve:
|
||
|
hint 34 // BTI C
|
||
|
rdvl x0, #1
|
||
|
ret
|
||
|
|
||
|
.globl rdvl_sme
|
||
|
rdvl_sme:
|
||
|
hint 34 // BTI C
|
||
|
|
||
|
rdsvl 0, 1
|
||
|
|
||
|
ret
|