diff options
| author | Robin Murphy <[email protected]> | 2017-07-25 11:55:42 +0100 |
|---|---|---|
| committer | Catalin Marinas <[email protected]> | 2017-08-09 12:15:45 +0100 |
| commit | d50e071fdaa33c1b399c764c44fa1ce879881185 (patch) | |
| tree | c0af7e49c8f4124195159e1d6380d521bea435d3 /arch/arm64/include/asm/assembler.h | |
| parent | e1bc5d1b8e0547c258e65dd97a03560f4d69e635 (diff) | |
arm64: Implement pmem API support
Add a clean-to-point-of-persistence cache maintenance helper, and wire
up the basic architectural support for the pmem driver based on it.
Reviewed-by: Will Deacon <[email protected]>
Signed-off-by: Robin Murphy <[email protected]>
[[email protected]: move arch_*_pmem() functions to arch/arm64/mm/flush.c]
[[email protected]: change dmb(sy) to dmb(osh)]
Signed-off-by: Catalin Marinas <[email protected]>
Diffstat (limited to 'arch/arm64/include/asm/assembler.h')
| -rw-r--r-- | arch/arm64/include/asm/assembler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/assembler.h b/arch/arm64/include/asm/assembler.h index 1b67c3782d00..5d8903c45031 100644 --- a/arch/arm64/include/asm/assembler.h +++ b/arch/arm64/include/asm/assembler.h @@ -353,6 +353,12 @@ alternative_if_not ARM64_WORKAROUND_CLEAN_CACHE alternative_else dc civac, \kaddr alternative_endif + .elseif (\op == cvap) +alternative_if ARM64_HAS_DCPOP + sys 3, c7, c12, 1, \kaddr // dc cvap +alternative_else + dc cvac, \kaddr +alternative_endif .else dc \op, \kaddr .endif |