2019-05-27 09:55:08 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2013-03-21 03:39:42 +04:00
/*
2015-05-07 20:35:55 +03:00
* Copyright ( C ) 2013 - 2015 Freescale Semiconductor , Inc .
2018-02-02 11:06:27 +03:00
* Copyright 2017 - 2018 NXP .
2013-03-21 03:39:42 +04:00
*/
# include <linux/err.h>
# include <linux/io.h>
# include <linux/of.h>
# include <linux/of_address.h>
# include <linux/mfd/syscon.h>
# include <linux/regmap.h>
2013-03-25 16:20:41 +04:00
# include "common.h"
2013-08-13 10:59:43 +04:00
# include "hardware.h"
2013-03-21 03:39:42 +04:00
# define REG_SET 0x4
# define REG_CLR 0x8
2013-03-21 18:58:06 +04:00
# define ANADIG_REG_2P5 0x130
2013-03-21 03:39:42 +04:00
# define ANADIG_REG_CORE 0x140
2013-03-21 18:58:06 +04:00
# define ANADIG_ANA_MISC0 0x150
2013-03-21 03:39:42 +04:00
# define ANADIG_DIGPROG 0x260
2013-08-13 12:54:05 +04:00
# define ANADIG_DIGPROG_IMX6SL 0x280
2015-05-07 20:35:55 +03:00
# define ANADIG_DIGPROG_IMX7D 0x800
2013-03-21 03:39:42 +04:00
2018-09-30 06:32:26 +03:00
# define SRC_SBMR2 0x1c
2013-03-21 18:58:06 +04:00
# define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
2014-09-17 07:11:46 +04:00
# define BM_ANADIG_REG_2P5_ENABLE_PULLDOWN 0x8
2013-03-21 03:39:42 +04:00
# define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
2013-03-21 18:58:06 +04:00
# define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
2014-09-17 07:11:46 +04:00
/* Below MISC0_DISCON_HIGH_SNVS is only for i.MX6SL */
# define BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS 0x2000
2013-03-21 03:39:42 +04:00
static struct regmap * anatop ;
2013-03-21 18:58:06 +04:00
static void imx_anatop_enable_weak2p5 ( bool enable )
{
u32 reg , val ;
regmap_read ( anatop , ANADIG_ANA_MISC0 , & val ) ;
/* can only be enabled when stop_mode_config is clear. */
reg = ANADIG_REG_2P5 ;
reg + = ( enable & & ( val & BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG ) = = 0 ) ?
REG_SET : REG_CLR ;
regmap_write ( anatop , reg , BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG ) ;
}
2013-03-21 03:39:42 +04:00
static void imx_anatop_enable_fet_odrive ( bool enable )
{
regmap_write ( anatop , ANADIG_REG_CORE + ( enable ? REG_SET : REG_CLR ) ,
BM_ANADIG_REG_CORE_FET_ODRIVE ) ;
}
2014-09-17 07:11:46 +04:00
static inline void imx_anatop_enable_2p5_pulldown ( bool enable )
{
regmap_write ( anatop , ANADIG_REG_2P5 + ( enable ? REG_SET : REG_CLR ) ,
BM_ANADIG_REG_2P5_ENABLE_PULLDOWN ) ;
}
static inline void imx_anatop_disconnect_high_snvs ( bool enable )
{
regmap_write ( anatop , ANADIG_ANA_MISC0 + ( enable ? REG_SET : REG_CLR ) ,
BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS ) ;
}
2013-03-21 03:39:42 +04:00
void imx_anatop_pre_suspend ( void )
{
2014-09-17 07:11:46 +04:00
if ( imx_mmdc_get_ddr_type ( ) = = IMX_DDR_TYPE_LPDDR2 )
imx_anatop_enable_2p5_pulldown ( true ) ;
else
imx_anatop_enable_weak2p5 ( true ) ;
2013-03-21 03:39:42 +04:00
imx_anatop_enable_fet_odrive ( true ) ;
2014-09-17 07:11:46 +04:00
if ( cpu_is_imx6sl ( ) )
imx_anatop_disconnect_high_snvs ( true ) ;
2013-03-21 03:39:42 +04:00
}
void imx_anatop_post_resume ( void )
{
2014-09-17 07:11:46 +04:00
if ( imx_mmdc_get_ddr_type ( ) = = IMX_DDR_TYPE_LPDDR2 )
imx_anatop_enable_2p5_pulldown ( false ) ;
else
imx_anatop_enable_weak2p5 ( false ) ;
2013-03-21 03:39:42 +04:00
imx_anatop_enable_fet_odrive ( false ) ;
2014-09-17 07:11:46 +04:00
if ( cpu_is_imx6sl ( ) )
imx_anatop_disconnect_high_snvs ( false ) ;
2013-03-21 03:39:42 +04:00
}
2013-08-13 10:59:43 +04:00
void __init imx_init_revision_from_anatop ( void )
2013-03-21 03:39:42 +04:00
{
2020-02-13 11:35:33 +03:00
struct device_node * np , * src_np ;
2013-03-31 18:39:22 +04:00
void __iomem * anatop_base ;
2013-08-13 10:59:43 +04:00
unsigned int revision ;
u32 digprog ;
2013-08-13 12:54:05 +04:00
u16 offset = ANADIG_DIGPROG ;
2018-02-02 11:06:27 +03:00
u8 major_part , minor_part ;
2013-03-31 18:39:22 +04:00
np = of_find_compatible_node ( NULL , NULL , " fsl,imx6q-anatop " ) ;
anatop_base = of_iomap ( np , 0 ) ;
WARN_ON ( ! anatop_base ) ;
2013-08-13 12:54:05 +04:00
if ( of_device_is_compatible ( np , " fsl,imx6sl-anatop " ) )
offset = ANADIG_DIGPROG_IMX6SL ;
2015-05-07 20:35:55 +03:00
if ( of_device_is_compatible ( np , " fsl,imx7d-anatop " ) )
offset = ANADIG_DIGPROG_IMX7D ;
2013-08-13 12:54:05 +04:00
digprog = readl_relaxed ( anatop_base + offset ) ;
2013-08-13 10:59:43 +04:00
iounmap ( anatop_base ) ;
2018-02-02 11:06:27 +03:00
/*
* On i . MX7D digprog value match linux version format , so
* it needn ' t map again and we can use register value directly .
*/
if ( of_device_is_compatible ( np , " fsl,imx7d-anatop " ) ) {
revision = digprog & 0xff ;
} else {
2016-01-05 20:17:17 +03:00
/*
2018-02-02 11:06:27 +03:00
* MAJOR : [ 15 : 8 ] , the major silicon revison ;
* MINOR : [ 7 : 0 ] , the minor silicon revison ;
*
* please refer to the i . MX RM for the detailed
* silicon revison bit define .
* format the major part and minor part to match the
* linux kernel soc version format .
2016-01-05 20:17:17 +03:00
*/
2018-02-02 11:06:27 +03:00
major_part = ( digprog > > 8 ) & 0xf ;
minor_part = digprog & 0xf ;
revision = ( ( major_part + 1 ) < < 4 ) | minor_part ;
2018-09-30 06:32:26 +03:00
if ( ( digprog > > 16 ) = = MXC_CPU_IMX6ULL ) {
void __iomem * src_base ;
u32 sbmr2 ;
2020-02-13 11:35:33 +03:00
src_np = of_find_compatible_node ( NULL , NULL ,
2018-09-30 06:32:26 +03:00
" fsl,imx6ul-src " ) ;
2020-11-20 20:51:24 +03:00
src_base = of_iomap ( src_np , 0 ) ;
2020-02-13 11:35:33 +03:00
of_node_put ( src_np ) ;
2018-09-30 06:32:26 +03:00
WARN_ON ( ! src_base ) ;
sbmr2 = readl_relaxed ( src_base + SRC_SBMR2 ) ;
iounmap ( src_base ) ;
/* src_sbmr2 bit 6 is to identify if it is i.MX6ULZ */
if ( sbmr2 & ( 1 < < 6 ) ) {
digprog & = ~ ( 0xff < < 16 ) ;
digprog | = ( MXC_CPU_IMX6ULZ < < 16 ) ;
}
}
2013-08-13 10:59:43 +04:00
}
2020-02-13 11:35:33 +03:00
of_node_put ( np ) ;
2013-03-31 18:39:22 +04:00
2013-08-13 10:59:43 +04:00
mxc_set_cpu_type ( digprog > > 16 & 0xff ) ;
imx_set_soc_revision ( revision ) ;
2013-03-21 03:39:42 +04:00
}
void __init imx_anatop_init ( void )
{
anatop = syscon_regmap_lookup_by_compatible ( " fsl,imx6q-anatop " ) ;
2019-10-22 07:14:45 +03:00
if ( IS_ERR ( anatop ) )
2013-03-21 03:39:42 +04:00
pr_err ( " %s: failed to find imx6q-anatop regmap! \n " , __func__ ) ;
}