summaryrefslogtreecommitdiffstats
path: root/drivers/nxp/pmu/pmu.c
blob: 2a907c8ce0269345f70acacb9e802f0cf70a8f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Copyright 2021 NXP
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#include <arch.h>
#include <arch_helpers.h>
#include <common/debug.h>
#include <dcfg.h>
#include <lib/mmio.h>
#include <pmu.h>

void enable_timer_base_to_cluster(uintptr_t nxp_pmu_addr)
{
	uint32_t *cltbenr = NULL;
	uint32_t cltbenr_val = 0U;

	cltbenr = (uint32_t *)(nxp_pmu_addr
				+ CLUST_TIMER_BASE_ENBL_OFFSET);

	cltbenr_val = mmio_read_32((uintptr_t)cltbenr);

	cltbenr_val = cltbenr_val
			| (1 << MPIDR_AFFLVL1_VAL(read_mpidr_el1()));

	mmio_write_32((uintptr_t)cltbenr, cltbenr_val);

	VERBOSE("Enable cluster time base\n");
}

/*
 * Enable core timebase.  In certain Layerscape SoCs, the clock for each core's
 * has an enable bit in the PMU Physical Core Time Base Enable
 * Register (PCTBENR), which allows the watchdog to operate.
 */

void enable_core_tb(uintptr_t nxp_pmu_addr)
{
	uint32_t *pctbenr = (uint32_t *) (nxp_pmu_addr +
					  CORE_TIMEBASE_ENBL_OFFSET);

	mmio_write_32((uintptr_t)pctbenr, 0xff);
}