2012-11-08 11:40:16 +00: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 12:53:48 +00:00
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <linux/clocksource.h>
|
2012-11-08 11:40:16 +00:00
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
2013-03-11 19:21:11 +00:00
|
|
|
|
2012-11-08 11:40:16 +00:00
|
|
|
static const char * const sunxi_board_dt_compat[] = {
|
2012-12-18 14:17:12 +00:00
|
|
|
"allwinner,sun4i-a10",
|
2013-06-09 07:40:05 +00:00
|
|
|
"allwinner,sun5i-a10s",
|
2012-12-18 14:17:12 +00:00
|
|
|
"allwinner,sun5i-a13",
|
2012-11-08 11:40:16 +00:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
DT_MACHINE_START(SUNXI_DT, "Allwinner A1X (Device Tree)")
|
|
|
|
.dt_compat = sunxi_board_dt_compat,
|
|
|
|
MACHINE_END
|
2013-08-11 12:35:08 +00:00
|
|
|
|
|
|
|
static const char * const sun6i_board_dt_compat[] = {
|
|
|
|
"allwinner,sun6i-a31",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2013-10-05 12:53:48 +00:00
|
|
|
extern void __init sun6i_reset_init(void);
|
|
|
|
static void __init sun6i_timer_init(void)
|
|
|
|
{
|
|
|
|
of_clk_init(NULL);
|
2014-05-26 15:14:57 +00:00
|
|
|
if (IS_ENABLED(CONFIG_RESET_CONTROLLER))
|
|
|
|
sun6i_reset_init();
|
2013-10-05 12:53:48 +00:00
|
|
|
clocksource_of_init();
|
|
|
|
}
|
|
|
|
|
2013-08-11 12:35:08 +00:00
|
|
|
DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family")
|
2013-10-05 12:53:48 +00:00
|
|
|
.init_time = sun6i_timer_init,
|
2013-08-11 12:35:08 +00: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 11:40:16 +00:00
|
|
|
MACHINE_END
|