blob: 45d618abf26b77fda2572346d0329cfb1e2dc3d2 [file] [log] [blame]
Anson Huange95dddb2013-03-20 19:39:42 -04001/*
Anson Huang5739b912015-05-08 01:35:55 +08002 * Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
Bai Ping261b3502018-02-02 16:06:27 +08003 * Copyright 2017-2018 NXP.
Anson Huange95dddb2013-03-20 19:39:42 -04004 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
13#include <linux/err.h>
14#include <linux/io.h>
15#include <linux/of.h>
16#include <linux/of_address.h>
17#include <linux/mfd/syscon.h>
18#include <linux/regmap.h>
Fabio Estevamfcc4f9f2013-03-25 09:20:41 -030019#include "common.h"
Shawn Guof1c6f312013-08-13 14:59:43 +080020#include "hardware.h"
Anson Huange95dddb2013-03-20 19:39:42 -040021
22#define REG_SET 0x4
23#define REG_CLR 0x8
24
Anson Huang263475d2013-03-21 10:58:06 -040025#define ANADIG_REG_2P5 0x130
Anson Huange95dddb2013-03-20 19:39:42 -040026#define ANADIG_REG_CORE 0x140
Anson Huang263475d2013-03-21 10:58:06 -040027#define ANADIG_ANA_MISC0 0x150
Anson Huange95dddb2013-03-20 19:39:42 -040028#define ANADIG_USB1_CHRG_DETECT 0x1b0
29#define ANADIG_USB2_CHRG_DETECT 0x210
30#define ANADIG_DIGPROG 0x260
Shawn Guod8ce8232013-08-13 16:54:05 +080031#define ANADIG_DIGPROG_IMX6SL 0x280
Anson Huang5739b912015-05-08 01:35:55 +080032#define ANADIG_DIGPROG_IMX7D 0x800
Anson Huange95dddb2013-03-20 19:39:42 -040033
Anson Huangc90dec02018-09-30 11:32:26 +080034#define SRC_SBMR2 0x1c
35
Anson Huang263475d2013-03-21 10:58:06 -040036#define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
Anson Huangbc4abc32014-09-17 11:11:46 +080037#define BM_ANADIG_REG_2P5_ENABLE_PULLDOWN 0x8
Anson Huange95dddb2013-03-20 19:39:42 -040038#define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
Anson Huang263475d2013-03-21 10:58:06 -040039#define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
Anson Huangbc4abc32014-09-17 11:11:46 +080040/* Below MISC0_DISCON_HIGH_SNVS is only for i.MX6SL */
41#define BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS 0x2000
Anson Huange95dddb2013-03-20 19:39:42 -040042#define BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B 0x80000
43#define BM_ANADIG_USB_CHRG_DETECT_EN_B 0x100000
44
45static struct regmap *anatop;
46
Anson Huang263475d2013-03-21 10:58:06 -040047static void imx_anatop_enable_weak2p5(bool enable)
48{
49 u32 reg, val;
50
51 regmap_read(anatop, ANADIG_ANA_MISC0, &val);
52
53 /* can only be enabled when stop_mode_config is clear. */
54 reg = ANADIG_REG_2P5;
55 reg += (enable && (val & BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG) == 0) ?
56 REG_SET : REG_CLR;
57 regmap_write(anatop, reg, BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG);
58}
59
Anson Huange95dddb2013-03-20 19:39:42 -040060static void imx_anatop_enable_fet_odrive(bool enable)
61{
62 regmap_write(anatop, ANADIG_REG_CORE + (enable ? REG_SET : REG_CLR),
63 BM_ANADIG_REG_CORE_FET_ODRIVE);
64}
65
Anson Huangbc4abc32014-09-17 11:11:46 +080066static inline void imx_anatop_enable_2p5_pulldown(bool enable)
67{
68 regmap_write(anatop, ANADIG_REG_2P5 + (enable ? REG_SET : REG_CLR),
69 BM_ANADIG_REG_2P5_ENABLE_PULLDOWN);
70}
71
72static inline void imx_anatop_disconnect_high_snvs(bool enable)
73{
74 regmap_write(anatop, ANADIG_ANA_MISC0 + (enable ? REG_SET : REG_CLR),
75 BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS);
76}
77
Anson Huange95dddb2013-03-20 19:39:42 -040078void imx_anatop_pre_suspend(void)
79{
Anson Huangbc4abc32014-09-17 11:11:46 +080080 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
81 imx_anatop_enable_2p5_pulldown(true);
82 else
83 imx_anatop_enable_weak2p5(true);
84
Anson Huange95dddb2013-03-20 19:39:42 -040085 imx_anatop_enable_fet_odrive(true);
Anson Huangbc4abc32014-09-17 11:11:46 +080086
87 if (cpu_is_imx6sl())
88 imx_anatop_disconnect_high_snvs(true);
Anson Huange95dddb2013-03-20 19:39:42 -040089}
90
91void imx_anatop_post_resume(void)
92{
Anson Huangbc4abc32014-09-17 11:11:46 +080093 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
94 imx_anatop_enable_2p5_pulldown(false);
95 else
96 imx_anatop_enable_weak2p5(false);
97
Anson Huange95dddb2013-03-20 19:39:42 -040098 imx_anatop_enable_fet_odrive(false);
Anson Huangbc4abc32014-09-17 11:11:46 +080099
100 if (cpu_is_imx6sl())
101 imx_anatop_disconnect_high_snvs(false);
102
Anson Huange95dddb2013-03-20 19:39:42 -0400103}
104
Peter Chenddcb9aa2013-08-14 11:40:56 +0800105static void imx_anatop_usb_chrg_detect_disable(void)
Anson Huange95dddb2013-03-20 19:39:42 -0400106{
107 regmap_write(anatop, ANADIG_USB1_CHRG_DETECT,
108 BM_ANADIG_USB_CHRG_DETECT_EN_B
109 | BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
110 regmap_write(anatop, ANADIG_USB2_CHRG_DETECT,
111 BM_ANADIG_USB_CHRG_DETECT_EN_B |
112 BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
113}
114
Shawn Guof1c6f312013-08-13 14:59:43 +0800115void __init imx_init_revision_from_anatop(void)
Anson Huange95dddb2013-03-20 19:39:42 -0400116{
Shawn Guo7006ba22013-03-31 22:39:22 +0800117 struct device_node *np;
118 void __iomem *anatop_base;
Shawn Guof1c6f312013-08-13 14:59:43 +0800119 unsigned int revision;
120 u32 digprog;
Shawn Guod8ce8232013-08-13 16:54:05 +0800121 u16 offset = ANADIG_DIGPROG;
Bai Ping261b3502018-02-02 16:06:27 +0800122 u8 major_part, minor_part;
Shawn Guo7006ba22013-03-31 22:39:22 +0800123
124 np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
125 anatop_base = of_iomap(np, 0);
126 WARN_ON(!anatop_base);
Shawn Guod8ce8232013-08-13 16:54:05 +0800127 if (of_device_is_compatible(np, "fsl,imx6sl-anatop"))
128 offset = ANADIG_DIGPROG_IMX6SL;
Anson Huang5739b912015-05-08 01:35:55 +0800129 if (of_device_is_compatible(np, "fsl,imx7d-anatop"))
130 offset = ANADIG_DIGPROG_IMX7D;
Shawn Guod8ce8232013-08-13 16:54:05 +0800131 digprog = readl_relaxed(anatop_base + offset);
Shawn Guof1c6f312013-08-13 14:59:43 +0800132 iounmap(anatop_base);
Shawn Guo7006ba22013-03-31 22:39:22 +0800133
Bai Ping261b3502018-02-02 16:06:27 +0800134 /*
135 * On i.MX7D digprog value match linux version format, so
136 * it needn't map again and we can use register value directly.
137 */
138 if (of_device_is_compatible(np, "fsl,imx7d-anatop")) {
Frank Lie914ece2016-01-05 11:17:17 -0600139 revision = digprog & 0xff;
Bai Ping261b3502018-02-02 16:06:27 +0800140 } else {
141 /*
142 * MAJOR: [15:8], the major silicon revison;
143 * MINOR: [7: 0], the minor silicon revison;
144 *
145 * please refer to the i.MX RM for the detailed
146 * silicon revison bit define.
147 * format the major part and minor part to match the
148 * linux kernel soc version format.
149 */
150 major_part = (digprog >> 8) & 0xf;
151 minor_part = digprog & 0xf;
152 revision = ((major_part + 1) << 4) | minor_part;
Anson Huangc90dec02018-09-30 11:32:26 +0800153
154 if ((digprog >> 16) == MXC_CPU_IMX6ULL) {
155 void __iomem *src_base;
156 u32 sbmr2;
157
158 np = of_find_compatible_node(NULL, NULL,
159 "fsl,imx6ul-src");
160 src_base = of_iomap(np, 0);
161 WARN_ON(!src_base);
162 sbmr2 = readl_relaxed(src_base + SRC_SBMR2);
163 iounmap(src_base);
164
165 /* src_sbmr2 bit 6 is to identify if it is i.MX6ULZ */
166 if (sbmr2 & (1 << 6)) {
167 digprog &= ~(0xff << 16);
168 digprog |= (MXC_CPU_IMX6ULZ << 16);
169 }
170 }
Shawn Guof1c6f312013-08-13 14:59:43 +0800171 }
172
173 mxc_set_cpu_type(digprog >> 16 & 0xff);
174 imx_set_soc_revision(revision);
Anson Huange95dddb2013-03-20 19:39:42 -0400175}
176
177void __init imx_anatop_init(void)
178{
179 anatop = syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
180 if (IS_ERR(anatop)) {
181 pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
182 return;
183 }
Peter Chenddcb9aa2013-08-14 11:40:56 +0800184
185 imx_anatop_usb_chrg_detect_disable();
Anson Huange95dddb2013-03-20 19:39:42 -0400186}