1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
4 * Copyright 2017-2018 NXP.
10 #include <linux/of_address.h>
11 #include <linux/mfd/syscon.h>
12 #include <linux/regmap.h>
19 #define ANADIG_REG_2P5 0x130
20 #define ANADIG_REG_CORE 0x140
21 #define ANADIG_ANA_MISC0 0x150
22 #define ANADIG_DIGPROG 0x260
23 #define ANADIG_DIGPROG_IMX6SL 0x280
24 #define ANADIG_DIGPROG_IMX7D 0x800
26 #define SRC_SBMR2 0x1c
28 #define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
29 #define BM_ANADIG_REG_2P5_ENABLE_PULLDOWN 0x8
30 #define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
31 #define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
32 /* Below MISC0_DISCON_HIGH_SNVS is only for i.MX6SL */
33 #define BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS 0x2000
35 static struct regmap
*anatop
;
37 static void imx_anatop_enable_weak2p5(bool enable
)
41 regmap_read(anatop
, ANADIG_ANA_MISC0
, &val
);
43 /* can only be enabled when stop_mode_config is clear. */
45 reg
+= (enable
&& (val
& BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG
) == 0) ?
47 regmap_write(anatop
, reg
, BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG
);
50 static void imx_anatop_enable_fet_odrive(bool enable
)
52 regmap_write(anatop
, ANADIG_REG_CORE
+ (enable
? REG_SET
: REG_CLR
),
53 BM_ANADIG_REG_CORE_FET_ODRIVE
);
56 static inline void imx_anatop_enable_2p5_pulldown(bool enable
)
58 regmap_write(anatop
, ANADIG_REG_2P5
+ (enable
? REG_SET
: REG_CLR
),
59 BM_ANADIG_REG_2P5_ENABLE_PULLDOWN
);
62 static inline void imx_anatop_disconnect_high_snvs(bool enable
)
64 regmap_write(anatop
, ANADIG_ANA_MISC0
+ (enable
? REG_SET
: REG_CLR
),
65 BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS
);
68 void imx_anatop_pre_suspend(void)
70 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2
)
71 imx_anatop_enable_2p5_pulldown(true);
73 imx_anatop_enable_weak2p5(true);
75 imx_anatop_enable_fet_odrive(true);
78 imx_anatop_disconnect_high_snvs(true);
81 void imx_anatop_post_resume(void)
83 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2
)
84 imx_anatop_enable_2p5_pulldown(false);
86 imx_anatop_enable_weak2p5(false);
88 imx_anatop_enable_fet_odrive(false);
91 imx_anatop_disconnect_high_snvs(false);
94 void __init
imx_init_revision_from_anatop(void)
96 struct device_node
*np
, *src_np
;
97 void __iomem
*anatop_base
;
98 unsigned int revision
;
100 u16 offset
= ANADIG_DIGPROG
;
101 u8 major_part
, minor_part
;
103 np
= of_find_compatible_node(NULL
, NULL
, "fsl,imx6q-anatop");
104 anatop_base
= of_iomap(np
, 0);
105 WARN_ON(!anatop_base
);
106 if (of_device_is_compatible(np
, "fsl,imx6sl-anatop"))
107 offset
= ANADIG_DIGPROG_IMX6SL
;
108 if (of_device_is_compatible(np
, "fsl,imx7d-anatop"))
109 offset
= ANADIG_DIGPROG_IMX7D
;
110 digprog
= readl_relaxed(anatop_base
+ offset
);
111 iounmap(anatop_base
);
114 * On i.MX7D digprog value match linux version format, so
115 * it needn't map again and we can use register value directly.
117 if (of_device_is_compatible(np
, "fsl,imx7d-anatop")) {
118 revision
= digprog
& 0xff;
121 * MAJOR: [15:8], the major silicon revison;
122 * MINOR: [7: 0], the minor silicon revison;
124 * please refer to the i.MX RM for the detailed
125 * silicon revison bit define.
126 * format the major part and minor part to match the
127 * linux kernel soc version format.
129 major_part
= (digprog
>> 8) & 0xf;
130 minor_part
= digprog
& 0xf;
131 revision
= ((major_part
+ 1) << 4) | minor_part
;
133 if ((digprog
>> 16) == MXC_CPU_IMX6ULL
) {
134 void __iomem
*src_base
;
137 src_np
= of_find_compatible_node(NULL
, NULL
,
139 src_base
= of_iomap(np
, 0);
142 sbmr2
= readl_relaxed(src_base
+ SRC_SBMR2
);
145 /* src_sbmr2 bit 6 is to identify if it is i.MX6ULZ */
146 if (sbmr2
& (1 << 6)) {
147 digprog
&= ~(0xff << 16);
148 digprog
|= (MXC_CPU_IMX6ULZ
<< 16);
154 mxc_set_cpu_type(digprog
>> 16 & 0xff);
155 imx_set_soc_revision(revision
);
158 void __init
imx_anatop_init(void)
160 anatop
= syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
162 pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__
);