2012-11-08 19:40:16 +08:00
|
|
|
/*
|
|
|
|
* Device Tree support for Allwinner A1X SoCs
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Maxime Ripard
|
|
|
|
*
|
|
|
|
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2. This program is licensed "as is" without any
|
|
|
|
* warranty of any kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
2013-10-05 20:53:48 +08:00
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <linux/clocksource.h>
|
2014-06-29 21:48:53 +08:00
|
|
|
#include <linux/init.h>
|
2015-01-06 10:35:11 +08:00
|
|
|
#include <linux/platform_device.h>
|
2018-12-13 19:22:32 +08:00
|
|
|
#include <linux/reset/sunxi.h>
|
2012-11-08 19:40:16 +08:00
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
2018-05-05 03:05:40 +08:00
|
|
|
#include <asm/secure_cntvoff.h>
|
2013-03-12 03:21:11 +08:00
|
|
|
|
2012-11-08 19:40:16 +08:00
|
|
|
static const char * const sunxi_board_dt_compat[] = {
|
2012-12-18 22:17:12 +08:00
|
|
|
"allwinner,sun4i-a10",
|
2013-06-09 15:40:05 +08:00
|
|
|
"allwinner,sun5i-a10s",
|
2012-12-18 22:17:12 +08:00
|
|
|
"allwinner,sun5i-a13",
|
2015-06-10 01:38:04 +08:00
|
|
|
"allwinner,sun5i-r8",
|
2016-09-08 18:26:08 +08:00
|
|
|
"nextthing,gr8",
|
2012-11-08 19:40:16 +08:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2015-06-10 01:38:04 +08:00
|
|
|
DT_MACHINE_START(SUNXI_DT, "Allwinner sun4i/sun5i Families")
|
2012-11-08 19:40:16 +08:00
|
|
|
.dt_compat = sunxi_board_dt_compat,
|
|
|
|
MACHINE_END
|
2013-08-11 20:35:08 +08:00
|
|
|
|
|
|
|
static const char * const sun6i_board_dt_compat[] = {
|
|
|
|
"allwinner,sun6i-a31",
|
2014-12-18 01:18:14 +08:00
|
|
|
"allwinner,sun6i-a31s",
|
2013-08-11 20:35:08 +08:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2013-10-05 20:53:48 +08:00
|
|
|
static void __init sun6i_timer_init(void)
|
|
|
|
{
|
|
|
|
of_clk_init(NULL);
|
2014-05-26 23:14:57 +08:00
|
|
|
if (IS_ENABLED(CONFIG_RESET_CONTROLLER))
|
|
|
|
sun6i_reset_init();
|
2017-05-26 23:40:46 +08:00
|
|
|
timer_probe();
|
2013-10-05 20:53:48 +08:00
|
|
|
}
|
|
|
|
|
2013-08-11 20:35:08 +08:00
|
|
|
DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family")
|
2013-10-05 20:53:48 +08:00
|
|
|
.init_time = sun6i_timer_init,
|
2013-08-11 20:35:08 +08: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 19:40:16 +08: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 22:55:01 +08:00
|
|
|
"allwinner,sun8i-a33",
|
2016-12-02 23:05:12 +08:00
|
|
|
"allwinner,sun8i-h2-plus",
|
2015-05-16 00:38:55 +08:00
|
|
|
"allwinner,sun8i-h3",
|
2017-08-22 13:23:22 +08:00
|
|
|
"allwinner,sun8i-r40",
|
2017-01-20 01:54:44 +08:00
|
|
|
"allwinner,sun8i-v3s",
|
2014-06-20 22:52:50 +08:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2015-05-16 00:38:55 +08: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-05 03:05:40 +08: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-03 04:23:37 +08: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
|