summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-k3/common.c
blob: 7c2375d3ec3bc51bf4b99df8d5827f41cde0d82b (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
// SPDX-License-Identifier: GPL-2.0-only
#include <of.h>
#include <deep-probe.h>
#include <init.h>
#include <pm_domain.h>

static const struct of_device_id k3_of_match[] = {
	{
		.compatible = "ti,am625",
	},
	{ /* sentinel */ },
};
BAREBOX_DEEP_PROBE_ENABLE(k3_of_match);

static int am625_init(void)
{
	if (!of_machine_is_compatible("ti,am625"))
		return 0;

	genpd_activate();

	return 0;
}
postcore_initcall(am625_init);