blob: c89128d897f4662e1bd2861435b5e8cb43e355b4 [file] [log] [blame]
Kshitij Sisodiada2ec062022-04-01 14:43:53 +01001/*
2 * Copyright (c) 2022 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010017#include "hal_pmu.h"
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010018#include "platform_drivers.h"
19
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010020void hal_pmu_init(void)
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010021{
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010022 platform_reset_counters();
23}
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010024
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010025void hal_pmu_reset(void)
26{
27 platform_reset_counters();
28}
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010029
Kshitij Sisodia4cc40212022-04-08 09:54:53 +010030void hal_pmu_get_counters(pmu_counters* counters)
31{
32 platform_get_counters(counters);
Kshitij Sisodiada2ec062022-04-01 14:43:53 +010033}