162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifndef __ASM_SET_MEMORY_H 362306a36Sopenharmony_ci#define __ASM_SET_MEMORY_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci/* 662306a36Sopenharmony_ci * Functions to change memory attributes. 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ciint set_memory_ro(unsigned long addr, int numpages); 962306a36Sopenharmony_ciint set_memory_rw(unsigned long addr, int numpages); 1062306a36Sopenharmony_ciint set_memory_x(unsigned long addr, int numpages); 1162306a36Sopenharmony_ciint set_memory_nx(unsigned long addr, int numpages); 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#endif 14