2013-03-20 23:39:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* The code contained herein is licensed under the GNU General Public
|
|
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
|
|
* Version 2 or later at the following locations:
|
|
|
|
*
|
|
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 12:20:41 +00:00
|
|
|
#include "common.h"
|
2013-08-13 06:59:43 +00:00
|
|
|
#include "hardware.h"
|
2013-03-20 23:39:42 +00:00
|
|
|
|
|
|
|
#define REG_SET 0x4
|
|
|
|
#define REG_CLR 0x8
|
|
|
|
|
2013-03-21 14:58:06 +00:00
|
|
|
#define ANADIG_REG_2P5 0x130
|
2013-03-20 23:39:42 +00:00
|
|
|
#define ANADIG_REG_CORE 0x140
|
2013-03-21 14:58:06 +00:00
|
|
|
#define ANADIG_ANA_MISC0 0x150
|
2013-03-20 23:39:42 +00:00
|
|
|
#define ANADIG_USB1_CHRG_DETECT 0x1b0
|
|
|
|
#define ANADIG_USB2_CHRG_DETECT 0x210
|
|
|
|
#define ANADIG_DIGPROG 0x260
|
2013-08-13 08:54:05 +00:00
|
|
|
#define ANADIG_DIGPROG_IMX6SL 0x280
|
2013-03-20 23:39:42 +00:00
|
|
|
|
2013-03-21 14:58:06 +00:00
|
|
|
#define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
|
2013-03-20 23:39:42 +00:00
|
|
|
#define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
|
2013-03-21 14:58:06 +00:00
|
|
|
#define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
|
2013-03-20 23:39:42 +00:00
|
|
|
#define BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B 0x80000
|
|
|
|
#define BM_ANADIG_USB_CHRG_DETECT_EN_B 0x100000
|
|
|
|
|
|
|
|
static struct regmap *anatop;
|
|
|
|
|
2013-03-21 14:58:06 +00: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-20 23:39:42 +00: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void imx_anatop_pre_suspend(void)
|
|
|
|
{
|
2013-03-21 14:58:06 +00:00
|
|
|
imx_anatop_enable_weak2p5(true);
|
2013-03-20 23:39:42 +00:00
|
|
|
imx_anatop_enable_fet_odrive(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void imx_anatop_post_resume(void)
|
|
|
|
{
|
|
|
|
imx_anatop_enable_fet_odrive(false);
|
2013-03-21 14:58:06 +00:00
|
|
|
imx_anatop_enable_weak2p5(false);
|
2013-03-20 23:39:42 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 03:40:56 +00:00
|
|
|
static void imx_anatop_usb_chrg_detect_disable(void)
|
2013-03-20 23:39:42 +00:00
|
|
|
{
|
|
|
|
regmap_write(anatop, ANADIG_USB1_CHRG_DETECT,
|
|
|
|
BM_ANADIG_USB_CHRG_DETECT_EN_B
|
|
|
|
| BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
|
|
|
|
regmap_write(anatop, ANADIG_USB2_CHRG_DETECT,
|
|
|
|
BM_ANADIG_USB_CHRG_DETECT_EN_B |
|
|
|
|
BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
|
|
|
|
}
|
|
|
|
|
2013-08-13 06:59:43 +00:00
|
|
|
void __init imx_init_revision_from_anatop(void)
|
2013-03-20 23:39:42 +00:00
|
|
|
{
|
2013-03-31 14:39:22 +00:00
|
|
|
struct device_node *np;
|
|
|
|
void __iomem *anatop_base;
|
2013-08-13 06:59:43 +00:00
|
|
|
unsigned int revision;
|
|
|
|
u32 digprog;
|
2013-08-13 08:54:05 +00:00
|
|
|
u16 offset = ANADIG_DIGPROG;
|
2013-03-31 14:39:22 +00:00
|
|
|
|
|
|
|
np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
|
|
|
|
anatop_base = of_iomap(np, 0);
|
|
|
|
WARN_ON(!anatop_base);
|
2013-08-13 08:54:05 +00:00
|
|
|
if (of_device_is_compatible(np, "fsl,imx6sl-anatop"))
|
|
|
|
offset = ANADIG_DIGPROG_IMX6SL;
|
|
|
|
digprog = readl_relaxed(anatop_base + offset);
|
2013-08-13 06:59:43 +00:00
|
|
|
iounmap(anatop_base);
|
|
|
|
|
|
|
|
switch (digprog & 0xff) {
|
|
|
|
case 0:
|
|
|
|
revision = IMX_CHIP_REVISION_1_0;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
revision = IMX_CHIP_REVISION_1_1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
revision = IMX_CHIP_REVISION_1_2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
revision = IMX_CHIP_REVISION_UNKNOWN;
|
|
|
|
}
|
2013-03-31 14:39:22 +00:00
|
|
|
|
2013-08-13 06:59:43 +00:00
|
|
|
mxc_set_cpu_type(digprog >> 16 & 0xff);
|
|
|
|
imx_set_soc_revision(revision);
|
2013-03-20 23:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init imx_anatop_init(void)
|
|
|
|
{
|
|
|
|
anatop = syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
|
|
|
|
if (IS_ERR(anatop)) {
|
|
|
|
pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
2013-08-14 03:40:56 +00:00
|
|
|
|
|
|
|
imx_anatop_usb_chrg_detect_disable();
|
2013-03-20 23:39:42 +00:00
|
|
|
}
|