• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: BSD-3-Clause
2 /*
3  * Copyright 2020-2021, 2023-2024 NXP
4  */
5 #ifndef S32CC_MC_ME_H
6 #define S32CC_MC_ME_H
7 
8 #include <stdbool.h>
9 #include <stdint.h>
10 
11 int mc_me_enable_partition(uintptr_t mc_me, uintptr_t mc_rgm, uintptr_t rdc,
12 			   uint32_t part);
13 void mc_me_enable_part_cofb(uintptr_t mc_me, uint32_t partition_n, uint32_t block,
14 			    bool check_status);
15 
16 #endif /* S32CC_MC_ME_H */
17