blob: a68615298319c10ed548ba8ce67caf499fb39357 [file] [log] [blame]
Etienne Carriere47cf5d32019-12-08 08:14:03 +01001/*
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 */
10bool 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 */
16bool stm32mp_nsec_can_access_reset(unsigned int reset_id)
17{
18 return true;
19}