1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
5 #ifndef __ASM_PREFETCH_H
6 #define __ASM_PREFETCH_H
13 .macro __pref hint addr
14 #ifdef CONFIG_CPU_HAS_PREFETCH
20 __pref Pref_Load
, \addr
23 .macro pref_store addr
24 __pref Pref_Store
, \addr
29 #endif /* __ASM_PREFETCH_H */