2019-05-29 01:10:04 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2012-11-20 07:41:20 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2015-09-28 22:49:15 +08:00
|
|
|
#include <linux/acpi.h>
|
2012-11-20 07:41:20 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/of.h>
|
2013-03-19 22:38:50 +08:00
|
|
|
#include <linux/clocksource.h>
|
2012-11-20 07:41:20 +08:00
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
extern struct of_device_id __timer_of_table[];
|
2012-11-20 07:41:20 +08:00
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
static const struct of_device_id __timer_of_table_sentinel
|
2020-10-22 10:36:07 +08:00
|
|
|
__used __section("__timer_of_table_end");
|
2012-11-20 07:41:20 +08:00
|
|
|
|
2017-05-26 23:40:46 +08:00
|
|
|
void __init timer_probe(void)
|
2012-11-20 07:41:20 +08:00
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
const struct of_device_id *match;
|
2016-05-31 22:25:59 +08:00
|
|
|
of_init_fn_1_ret init_func_ret;
|
2017-05-27 00:33:27 +08:00
|
|
|
unsigned timers = 0;
|
2016-05-31 22:25:59 +08:00
|
|
|
int ret;
|
2012-11-20 07:41:20 +08:00
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
for_each_matching_node_and_match(np, __timer_of_table, &match) {
|
2013-09-26 08:08:17 +08:00
|
|
|
if (!of_device_is_available(np))
|
|
|
|
continue;
|
|
|
|
|
2016-05-31 22:25:59 +08:00
|
|
|
init_func_ret = match->data;
|
|
|
|
|
|
|
|
ret = init_func_ret(np);
|
|
|
|
if (ret) {
|
2019-08-21 23:02:41 +08:00
|
|
|
if (ret != -EPROBE_DEFER)
|
|
|
|
pr_err("Failed to initialize '%pOF': %d\n", np,
|
|
|
|
ret);
|
2016-05-31 22:25:59 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
timers++;
|
2016-05-31 22:25:59 +08:00
|
|
|
}
|
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
timers += acpi_probe_device_table(timer);
|
2015-09-28 22:49:15 +08:00
|
|
|
|
2017-05-27 00:33:27 +08:00
|
|
|
if (!timers)
|
|
|
|
pr_crit("%s: no matching timers found\n", __func__);
|
2012-11-20 07:41:20 +08:00
|
|
|
}
|