blob: de4b0e932f22e27278b494ad1a4207e143f80f9e [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
2 * Device Tree support for Allwinner A1X SoCs
3 *
4 * Copyright (C) 2012 Maxime Ripard
5 *
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
13#include <linux/clk-provider.h>
14#include <linux/clocksource.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17
18#include <asm/mach/arch.h>
19#include <asm/secure_cntvoff.h>
20
21static const char * const sunxi_board_dt_compat[] = {
22 "allwinner,sun4i-a10",
23 "allwinner,sun5i-a10s",
24 "allwinner,sun5i-a13",
25 "allwinner,sun5i-r8",
26 "nextthing,gr8",
27 NULL,
28};
29
30DT_MACHINE_START(SUNXI_DT, "Allwinner sun4i/sun5i Families")
31 .dt_compat = sunxi_board_dt_compat,
32MACHINE_END
33
34static const char * const sun6i_board_dt_compat[] = {
35 "allwinner,sun6i-a31",
36 "allwinner,sun6i-a31s",
37 NULL,
38};
39
40extern void __init sun6i_reset_init(void);
41static void __init sun6i_timer_init(void)
42{
43 of_clk_init(NULL);
44 if (IS_ENABLED(CONFIG_RESET_CONTROLLER))
45 sun6i_reset_init();
46 timer_probe();
47}
48
49DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family")
50 .init_time = sun6i_timer_init,
51 .dt_compat = sun6i_board_dt_compat,
52MACHINE_END
53
54static const char * const sun7i_board_dt_compat[] = {
55 "allwinner,sun7i-a20",
56 NULL,
57};
58
59DT_MACHINE_START(SUN7I_DT, "Allwinner sun7i (A20) Family")
60 .dt_compat = sun7i_board_dt_compat,
61MACHINE_END
62
63static const char * const sun8i_board_dt_compat[] = {
64 "allwinner,sun8i-a23",
65 "allwinner,sun8i-a33",
66 "allwinner,sun8i-h2-plus",
67 "allwinner,sun8i-h3",
68 "allwinner,sun8i-r40",
69 "allwinner,sun8i-v3s",
70 NULL,
71};
72
73DT_MACHINE_START(SUN8I_DT, "Allwinner sun8i Family")
74 .init_time = sun6i_timer_init,
75 .dt_compat = sun8i_board_dt_compat,
76MACHINE_END
77
78static void __init sun8i_a83t_cntvoff_init(void)
79{
80#ifdef CONFIG_SMP
81 secure_cntvoff_init();
82#endif
83}
84
85static const char * const sun8i_a83t_cntvoff_board_dt_compat[] = {
86 "allwinner,sun8i-a83t",
87 NULL,
88};
89
90DT_MACHINE_START(SUN8I_A83T_CNTVOFF_DT, "Allwinner A83t board")
91 .init_early = sun8i_a83t_cntvoff_init,
92 .init_time = sun6i_timer_init,
93 .dt_compat = sun8i_a83t_cntvoff_board_dt_compat,
94MACHINE_END
95
96static const char * const sun9i_board_dt_compat[] = {
97 "allwinner,sun9i-a80",
98 NULL,
99};
100
101DT_MACHINE_START(SUN9I_DT, "Allwinner sun9i Family")
102 .dt_compat = sun9i_board_dt_compat,
103MACHINE_END