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 >
*
* 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 14:53:48 +02:00
# include <linux/clk-provider.h>
# include <linux/clocksource.h>
2014-06-29 15:48:53 +02:00
# include <linux/init.h>
2015-01-06 10:35:11 +08:00
# include <linux/platform_device.h>
2012-11-08 12:40:16 +01:00
# include <asm/mach/arch.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
extern void __init sun6i_reset_init ( void ) ;
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 ( ) ;
2015-09-28 15:49:18 +01:00
clocksource_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-01-06 21:11:52 +08:00
" allwinner,sun8i-a83t " ,
2016-12-02 23:05:12 +08:00
" allwinner,sun8i-h2-plus " ,
2015-05-15 18:38:55 +02:00
" allwinner,sun8i-h3 " ,
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
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