blob: 7bb47eb3fc07b16fd9b6ae0d114dd21b64e8e747 [file] [log] [blame]
Thomas Gleixnerfcaf2032019-05-27 08:55:08 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Anson Huange95dddb2013-03-20 19:39:42 -04002/*
Anson Huang5739b912015-05-08 01:35:55 +08003 * Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
Bai Ping261b3502018-02-02 16:06:27 +08004 * Copyright 2017-2018 NXP.
Anson Huange95dddb2013-03-20 19:39:42 -04005 */
6
7#include <linux/err.h>
8#include <linux/io.h>
9#include <linux/of.h>
10#include <linux/of_address.h>
11#include <linux/mfd/syscon.h>
12#include <linux/regmap.h>
Fabio Estevamfcc4f9f2013-03-25 09:20:41 -030013#include "common.h"
Shawn Guof1c6f312013-08-13 14:59:43 +080014#include "hardware.h"
Anson Huange95dddb2013-03-20 19:39:42 -040015
16#define REG_SET 0x4
17#define REG_CLR 0x8
18
Anson Huang263475d2013-03-21 10:58:06 -040019#define ANADIG_REG_2P5 0x130
Anson Huange95dddb2013-03-20 19:39:42 -040020#define ANADIG_REG_CORE 0x140
Anson Huang263475d2013-03-21 10:58:06 -040021#define ANADIG_ANA_MISC0 0x150
Anson Huange95dddb2013-03-20 19:39:42 -040022#define ANADIG_DIGPROG 0x260
Shawn Guod8ce8232013-08-13 16:54:05 +080023#define ANADIG_DIGPROG_IMX6SL 0x280
Anson Huang5739b912015-05-08 01:35:55 +080024#define ANADIG_DIGPROG_IMX7D 0x800
Anson Huange95dddb2013-03-20 19:39:42 -040025
Anson Huangc90dec02018-09-30 11:32:26 +080026#define SRC_SBMR2 0x1c
27
Anson Huang263475d2013-03-21 10:58:06 -040028#define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
Anson Huangbc4abc32014-09-17 11:11:46 +080029#define BM_ANADIG_REG_2P5_ENABLE_PULLDOWN 0x8
Anson Huange95dddb2013-03-20 19:39:42 -040030#define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
Anson Huang263475d2013-03-21 10:58:06 -040031#define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
Anson Huangbc4abc32014-09-17 11:11:46 +080032/* Below MISC0_DISCON_HIGH_SNVS is only for i.MX6SL */
33#define BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS 0x2000
Anson Huange95dddb2013-03-20 19:39:42 -040034
35static struct regmap *anatop;
36
Anson Huang263475d2013-03-21 10:58:06 -040037static void imx_anatop_enable_weak2p5(bool enable)
38{
39 u32 reg, val;
40
41 regmap_read(anatop, ANADIG_ANA_MISC0, &val);
42
43 /* can only be enabled when stop_mode_config is clear. */
44 reg = ANADIG_REG_2P5;
45 reg += (enable && (val & BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG) == 0) ?
46 REG_SET : REG_CLR;
47 regmap_write(anatop, reg, BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG);
48}
49
Anson Huange95dddb2013-03-20 19:39:42 -040050static void imx_anatop_enable_fet_odrive(bool enable)
51{
52 regmap_write(anatop, ANADIG_REG_CORE + (enable ? REG_SET : REG_CLR),
53 BM_ANADIG_REG_CORE_FET_ODRIVE);
54}
55
Anson Huangbc4abc32014-09-17 11:11:46 +080056static inline void imx_anatop_enable_2p5_pulldown(bool enable)
57{
58 regmap_write(anatop, ANADIG_REG_2P5 + (enable ? REG_SET : REG_CLR),
59 BM_ANADIG_REG_2P5_ENABLE_PULLDOWN);
60}
61
62static inline void imx_anatop_disconnect_high_snvs(bool enable)
63{
64 regmap_write(anatop, ANADIG_ANA_MISC0 + (enable ? REG_SET : REG_CLR),
65 BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS);
66}
67
Anson Huange95dddb2013-03-20 19:39:42 -040068void imx_anatop_pre_suspend(void)
69{
Anson Huangbc4abc32014-09-17 11:11:46 +080070 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
71 imx_anatop_enable_2p5_pulldown(true);
72 else
73 imx_anatop_enable_weak2p5(true);
74
Anson Huange95dddb2013-03-20 19:39:42 -040075 imx_anatop_enable_fet_odrive(true);
Anson Huangbc4abc32014-09-17 11:11:46 +080076
77 if (cpu_is_imx6sl())
78 imx_anatop_disconnect_high_snvs(true);
Anson Huange95dddb2013-03-20 19:39:42 -040079}
80
81void imx_anatop_post_resume(void)
82{
Anson Huangbc4abc32014-09-17 11:11:46 +080083 if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
84 imx_anatop_enable_2p5_pulldown(false);
85 else
86 imx_anatop_enable_weak2p5(false);
87
Anson Huange95dddb2013-03-20 19:39:42 -040088 imx_anatop_enable_fet_odrive(false);
Anson Huangbc4abc32014-09-17 11:11:46 +080089
90 if (cpu_is_imx6sl())
91 imx_anatop_disconnect_high_snvs(false);
Anson Huange95dddb2013-03-20 19:39:42 -040092}
93
Shawn Guof1c6f312013-08-13 14:59:43 +080094void __init imx_init_revision_from_anatop(void)
Anson Huange95dddb2013-03-20 19:39:42 -040095{
Anson Huang4a4fb662020-02-13 16:35:33 +080096 struct device_node *np, *src_np;
Shawn Guo7006ba22013-03-31 22:39:22 +080097 void __iomem *anatop_base;
Shawn Guof1c6f312013-08-13 14:59:43 +080098 unsigned int revision;
99 u32 digprog;
Shawn Guod8ce8232013-08-13 16:54:05 +0800100 u16 offset = ANADIG_DIGPROG;
Bai Ping261b3502018-02-02 16:06:27 +0800101 u8 major_part, minor_part;
Shawn Guo7006ba22013-03-31 22:39:22 +0800102
103 np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
104 anatop_base = of_iomap(np, 0);
105 WARN_ON(!anatop_base);
Shawn Guod8ce8232013-08-13 16:54:05 +0800106 if (of_device_is_compatible(np, "fsl,imx6sl-anatop"))
107 offset = ANADIG_DIGPROG_IMX6SL;
Anson Huang5739b912015-05-08 01:35:55 +0800108 if (of_device_is_compatible(np, "fsl,imx7d-anatop"))
109 offset = ANADIG_DIGPROG_IMX7D;
Shawn Guod8ce8232013-08-13 16:54:05 +0800110 digprog = readl_relaxed(anatop_base + offset);
Shawn Guof1c6f312013-08-13 14:59:43 +0800111 iounmap(anatop_base);
Shawn Guo7006ba22013-03-31 22:39:22 +0800112
Bai Ping261b3502018-02-02 16:06:27 +0800113 /*
114 * On i.MX7D digprog value match linux version format, so
115 * it needn't map again and we can use register value directly.
116 */
117 if (of_device_is_compatible(np, "fsl,imx7d-anatop")) {
Frank Lie914ece2016-01-05 11:17:17 -0600118 revision = digprog & 0xff;
Bai Ping261b3502018-02-02 16:06:27 +0800119 } else {
120 /*
121 * MAJOR: [15:8], the major silicon revison;
122 * MINOR: [7: 0], the minor silicon revison;
123 *
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.
128 */
129 major_part = (digprog >> 8) & 0xf;
130 minor_part = digprog & 0xf;
131 revision = ((major_part + 1) << 4) | minor_part;
Anson Huangc90dec02018-09-30 11:32:26 +0800132
133 if ((digprog >> 16) == MXC_CPU_IMX6ULL) {
134 void __iomem *src_base;
135 u32 sbmr2;
136
Anson Huang4a4fb662020-02-13 16:35:33 +0800137 src_np = of_find_compatible_node(NULL, NULL,
Anson Huangc90dec02018-09-30 11:32:26 +0800138 "fsl,imx6ul-src");
Robert Karszniewicz70e734f2020-11-20 18:51:24 +0100139 src_base = of_iomap(src_np, 0);
Anson Huang4a4fb662020-02-13 16:35:33 +0800140 of_node_put(src_np);
Anson Huangc90dec02018-09-30 11:32:26 +0800141 WARN_ON(!src_base);
142 sbmr2 = readl_relaxed(src_base + SRC_SBMR2);
143 iounmap(src_base);
144
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);
149 }
150 }
Shawn Guof1c6f312013-08-13 14:59:43 +0800151 }
Anson Huang4a4fb662020-02-13 16:35:33 +0800152 of_node_put(np);
Shawn Guof1c6f312013-08-13 14:59:43 +0800153
154 mxc_set_cpu_type(digprog >> 16 & 0xff);
155 imx_set_soc_revision(revision);
Anson Huange95dddb2013-03-20 19:39:42 -0400156}
157
158void __init imx_anatop_init(void)
159{
160 anatop = syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
Andrey Smirnov427fca62019-10-21 21:14:45 -0700161 if (IS_ERR(anatop))
Anson Huange95dddb2013-03-20 19:39:42 -0400162 pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
Anson Huange95dddb2013-03-20 19:39:42 -0400163}