1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef NRFS_DVFS_REQS_H 8 #define NRFS_DVFS_REQS_H 9 10 #include "nrfs_reqs_common.h" 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 enum { 17 NRFS_DVFS_REQ_INIT_PREPARE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_DVFS, 0x01), 18 NRFS_DVFS_REQ_INIT_COMPLETE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_DVFS, 0x02), 19 NRFS_DVFS_REQ_OPPOINT = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_DVFS, 0x03), 20 NRFS_DVFS_REQ_READY_TO_SCALE = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_DVFS, 0x04), 21 }; 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif /* NRFS_DVFS_REQS_H */ 28