1 /* 2 * Copyright (c) 2017-2020, STMicroelectronics - All Rights Reserved 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <stm32mp_shared_resources.h> 8 9 /* Currently allow full access by non-secure to platform clock services */ 10 bool stm32mp_nsec_can_access_clock(unsigned long clock_id) 11 { 12 return true; 13 } 14 15 /* Currently allow full access by non-secure to platform reset services */ 16 bool stm32mp_nsec_can_access_reset(unsigned int reset_id) 17 { 18 return true; 19 } 20