2021-08-10 21:29:54 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-11-08 12:40:16 +01:00
|
|
|
/*
|
|
|
|
|
* Device Tree support for Allwinner A1X SoCs
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2012 Maxime Ripard
|
|
|
|
|
*
|
|
|
|
|
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2013-10-05 14:53:48 +02:00
|
|
|
#include <linux/clocksource.h>
|
2014-06-29 15:48:53 +02:00
|
|
|
#include <linux/init.h>
|
2020-02-12 11:08:29 +01:00
|
|
|
#include <linux/of_clk.h>
|
2015-01-06 10:35:11 +08:00
|
|
|
#include <linux/platform_device.h>
|
2018-12-13 12:22:32 +01:00
|
|
|
#include <linux/reset/sunxi.h>
|
2012-11-08 12:40:16 +01:00
|
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
2018-05-04 21:05:40 +02:00
|
|
|
#include <asm/secure_cntvoff.h>
|
2013-03-11 20:21:11 +01:00
|
|
|
|
2012-11-08 12:40:16 +01:00
|
|
|
static const char * const sunxi_board_dt_compat[] = {
|
2012-12-18 15:17:12 +01:00
|
|
|
"allwinner,sun4i-a10",
|
2013-06-09 09:40:05 +02:00
|
|
|
"allwinner,sun5i-a10s",
|
2012-12-18 15:17:12 +01:00
|
|
|
"allwinner,sun5i-a13",
|
2015-06-09 19:38:04 +02:00
|
|
|
"allwinner,sun5i-r8",
|
2016-09-08 12:26:08 +02:00
|
|
|
"nextthing,gr8",
|
2012-11-08 12:40:16 +01:00
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
2015-06-09 19:38:04 +02:00
|
|
|
DT_MACHINE_START(SUNXI_DT, "Allwinner sun4i/sun5i Families")
|
2012-11-08 12:40:16 +01:00
|
|
|
.dt_compat = sunxi_board_dt_compat,
|
|
|
|
|
MACHINE_END
|
2013-08-11 14:35:08 +02:00
|
|
|
|
|
|
|
|
static const char * const sun6i_board_dt_compat[] = {
|
|
|
|
|
"allwinner,sun6i-a31",
|
2014-12-17 18:18:14 +01:00
|
|
|
"allwinner,sun6i-a31s",
|
2013-08-11 14:35:08 +02:00
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
2013-10-05 14:53:48 +02:00
|
|
|
static void __init sun6i_timer_init(void)
|
|
|
|
|
{
|
|
|
|
|
of_clk_init(NULL);
|
2014-05-26 17:14:57 +02:00
|
|
|
if (IS_ENABLED(CONFIG_RESET_CONTROLLER))
|
|
|
|
|
sun6i_reset_init();
|
2017-05-26 17:40:46 +02:00
|
|
|
timer_probe();
|
2013-10-05 14:53:48 +02:00
|
|
|
}
|
|
|
|
|
|
2013-08-11 14:35:08 +02:00
|
|
|
DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family")
|
2013-10-05 14:53:48 +02:00
|
|
|
.init_time = sun6i_timer_init,
|
2013-08-11 14:35:08 +02:00
|
|
|
.dt_compat = sun6i_board_dt_compat,
|
|
|
|
|
MACHINE_END
|
|
|
|
|
|
|
|
|
|
static const char * const sun7i_board_dt_compat[] = {
|
|
|
|
|
"allwinner,sun7i-a20",
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
DT_MACHINE_START(SUN7I_DT, "Allwinner sun7i (A20) Family")
|
|
|
|
|
.dt_compat = sun7i_board_dt_compat,
|
2012-11-08 12:40:16 +01:00
|
|
|
MACHINE_END
|
2014-06-20 22:52:50 +08:00
|
|
|
|
|
|
|
|
static const char * const sun8i_board_dt_compat[] = {
|
|
|
|
|
"allwinner,sun8i-a23",
|
2015-05-30 16:55:01 +02:00
|
|
|
"allwinner,sun8i-a33",
|
2016-12-02 23:05:12 +08:00
|
|
|
"allwinner,sun8i-h2-plus",
|
2015-05-15 18:38:55 +02:00
|
|
|
"allwinner,sun8i-h3",
|
2017-08-22 13:23:22 +08:00
|
|
|
"allwinner,sun8i-r40",
|
2020-10-31 19:21:29 +01:00
|
|
|
"allwinner,sun8i-v3",
|
2017-01-20 01:54:44 +08:00
|
|
|
"allwinner,sun8i-v3s",
|
2014-06-20 22:52:50 +08:00
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
2015-05-15 18:38:55 +02:00
|
|
|
DT_MACHINE_START(SUN8I_DT, "Allwinner sun8i Family")
|
|
|
|
|
.init_time = sun6i_timer_init,
|
2014-06-20 22:52:50 +08:00
|
|
|
.dt_compat = sun8i_board_dt_compat,
|
|
|
|
|
MACHINE_END
|
2014-10-08 21:02:52 +08:00
|
|
|
|
2018-05-04 21:05:40 +02:00
|
|
|
static void __init sun8i_a83t_cntvoff_init(void)
|
|
|
|
|
{
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
secure_cntvoff_init();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char * const sun8i_a83t_cntvoff_board_dt_compat[] = {
|
|
|
|
|
"allwinner,sun8i-a83t",
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
DT_MACHINE_START(SUN8I_A83T_CNTVOFF_DT, "Allwinner A83t board")
|
|
|
|
|
.init_early = sun8i_a83t_cntvoff_init,
|
|
|
|
|
.init_time = sun6i_timer_init,
|
|
|
|
|
.dt_compat = sun8i_a83t_cntvoff_board_dt_compat,
|
|
|
|
|
MACHINE_END
|
|
|
|
|
|
2014-10-08 21:02:52 +08:00
|
|
|
static const char * const sun9i_board_dt_compat[] = {
|
|
|
|
|
"allwinner,sun9i-a80",
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
DT_MACHINE_START(SUN9I_DT, "Allwinner sun9i Family")
|
|
|
|
|
.dt_compat = sun9i_board_dt_compat,
|
|
|
|
|
MACHINE_END
|
2018-12-02 23:23:37 +03:00
|
|
|
|
|
|
|
|
static const char * const suniv_board_dt_compat[] = {
|
|
|
|
|
"allwinner,suniv-f1c100s",
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
DT_MACHINE_START(SUNIV_DT, "Allwinner suniv Family")
|
|
|
|
|
.dt_compat = suniv_board_dt_compat,
|
|
|
|
|
MACHINE_END
|