mirror of https://github.com/acidanthera/audk.git
20 lines
321 B
PHP
20 lines
321 B
PHP
|
/*
|
||
|
*
|
||
|
* RISC-V cache operation encoding.
|
||
|
* Copyright (c) 2023, Rivos Inc. All rights reserved.<BR>
|
||
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
.macro RISCVCMOFLUSH
|
||
|
.word 0x25200f
|
||
|
.endm
|
||
|
|
||
|
.macro RISCVCMOINVALIDATE
|
||
|
.word 0x05200f
|
||
|
.endm
|
||
|
|
||
|
.macro RISCVCMOCLEAN
|
||
|
.word 0x15200f
|
||
|
.endm
|