2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-04-23 10:17:44 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013 ADVANSEE
|
|
|
|
* Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
|
|
|
|
*
|
|
|
|
* Based on Dirk Behme's
|
|
|
|
* https://github.com/dirkbehme/u-boot-imx6/blob/28b17e9/drivers/misc/imx_otp.c,
|
|
|
|
* which is based on Freescale's
|
|
|
|
* http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/tree/drivers/misc/imx_otp.c?h=imx_v2009.08_1.1.0&id=9aa74e6,
|
|
|
|
* which is:
|
|
|
|
* Copyright (C) 2011 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <fuse.h>
|
2016-09-21 02:28:55 +00:00
|
|
|
#include <linux/errno.h>
|
2013-04-23 10:17:44 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/imx-regs.h>
|
2017-06-29 08:16:06 +00:00
|
|
|
#include <asm/mach-imx/sys_proto.h>
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
#define BO_CTRL_WR_UNLOCK 16
|
|
|
|
#define BM_CTRL_WR_UNLOCK 0xffff0000
|
|
|
|
#define BV_CTRL_WR_UNLOCK_KEY 0x3e77
|
|
|
|
#define BM_CTRL_ERROR 0x00000200
|
|
|
|
#define BM_CTRL_BUSY 0x00000100
|
|
|
|
#define BO_CTRL_ADDR 0
|
2015-08-11 16:19:52 +00:00
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
#define BM_CTRL_ADDR 0x0000000f
|
|
|
|
#define BM_CTRL_RELOAD 0x00000400
|
2017-02-22 08:21:46 +00:00
|
|
|
#elif defined(CONFIG_MX7ULP)
|
|
|
|
#define BM_CTRL_ADDR 0x000000FF
|
|
|
|
#define BM_CTRL_RELOAD 0x00000400
|
|
|
|
#define BM_OUT_STATUS_DED 0x00000400
|
|
|
|
#define BM_OUT_STATUS_LOCKED 0x00000800
|
|
|
|
#define BM_OUT_STATUS_PROGFAIL 0x00001000
|
2018-11-20 10:19:25 +00:00
|
|
|
#elif defined(CONFIG_IMX8M)
|
2018-01-10 05:20:39 +00:00
|
|
|
#define BM_CTRL_ADDR 0x000000ff
|
2015-08-11 16:19:52 +00:00
|
|
|
#else
|
2013-04-23 10:17:44 +00:00
|
|
|
#define BM_CTRL_ADDR 0x0000007f
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
#define BO_TIMING_FSOURCE 12
|
|
|
|
#define BM_TIMING_FSOURCE 0x0007f000
|
|
|
|
#define BV_TIMING_FSOURCE_NS 1001
|
|
|
|
#define BO_TIMING_PROG 0
|
|
|
|
#define BM_TIMING_PROG 0x00000fff
|
|
|
|
#define BV_TIMING_PROG_US 10
|
|
|
|
#else
|
2013-04-23 10:17:44 +00:00
|
|
|
#define BO_TIMING_STROBE_READ 16
|
|
|
|
#define BM_TIMING_STROBE_READ 0x003f0000
|
|
|
|
#define BV_TIMING_STROBE_READ_NS 37
|
|
|
|
#define BO_TIMING_RELAX 12
|
|
|
|
#define BM_TIMING_RELAX 0x0000f000
|
|
|
|
#define BV_TIMING_RELAX_NS 17
|
|
|
|
#define BO_TIMING_STROBE_PROG 0
|
|
|
|
#define BM_TIMING_STROBE_PROG 0x00000fff
|
|
|
|
#define BV_TIMING_STROBE_PROG_US 10
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
#define BM_READ_CTRL_READ_FUSE 0x00000001
|
|
|
|
|
|
|
|
#define BF(value, field) (((value) << BO_##field) & BM_##field)
|
|
|
|
|
|
|
|
#define WRITE_POSTAMBLE_US 2
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
#if defined(CONFIG_MX6) || defined(CONFIG_VF610)
|
|
|
|
#define FUSE_BANK_SIZE 0x80
|
|
|
|
#ifdef CONFIG_MX6SL
|
|
|
|
#define FUSE_BANKS 8
|
2016-12-11 11:24:33 +00:00
|
|
|
#elif defined(CONFIG_MX6ULL) || defined(CONFIG_MX6SLL)
|
2016-08-11 06:02:41 +00:00
|
|
|
#define FUSE_BANKS 9
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
#else
|
|
|
|
#define FUSE_BANKS 16
|
|
|
|
#endif
|
|
|
|
#elif defined CONFIG_MX7
|
|
|
|
#define FUSE_BANK_SIZE 0x40
|
|
|
|
#define FUSE_BANKS 16
|
2017-02-22 08:21:46 +00:00
|
|
|
#elif defined(CONFIG_MX7ULP)
|
|
|
|
#define FUSE_BANK_SIZE 0x80
|
|
|
|
#define FUSE_BANKS 31
|
2018-11-20 10:19:25 +00:00
|
|
|
#elif defined(CONFIG_IMX8M)
|
2018-01-10 05:20:39 +00:00
|
|
|
#define FUSE_BANK_SIZE 0x40
|
|
|
|
#define FUSE_BANKS 64
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
#else
|
|
|
|
#error "Unsupported architecture\n"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_MX6)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There is a hole in shadow registers address map of size 0x100
|
2016-08-11 06:02:41 +00:00
|
|
|
* between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX,
|
2016-12-11 11:24:33 +00:00
|
|
|
* iMX6UL, i.MX6ULL and i.MX6SLL.
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
* Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
|
|
|
|
* we should account for this hole in address space.
|
|
|
|
*
|
|
|
|
* Similar hole exists between bank 14 and bank 15 of size
|
|
|
|
* 0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
|
|
|
|
* Note: iMX6SL has only 0-7 banks and there is no hole.
|
|
|
|
* Note: iMX6UL doesn't have this one.
|
|
|
|
*
|
|
|
|
* This function is to covert user input to physical bank index.
|
|
|
|
* Only needed when read fuse, because we use register offset, so
|
|
|
|
* need to calculate real register offset.
|
|
|
|
* When write, no need to consider hole, always use the bank/word
|
|
|
|
* index from fuse map.
|
|
|
|
*/
|
|
|
|
u32 fuse_bank_physical(int index)
|
|
|
|
{
|
|
|
|
u32 phy_index;
|
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
if (is_mx6sl() || is_mx7ulp()) {
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
phy_index = index;
|
2016-12-11 11:24:33 +00:00
|
|
|
} else if (is_mx6ul() || is_mx6ull() || is_mx6sll()) {
|
|
|
|
if ((is_mx6ull() || is_mx6sll()) && index == 8)
|
2016-08-11 06:02:41 +00:00
|
|
|
index = 7;
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
if (index >= 6)
|
|
|
|
phy_index = fuse_bank_physical(5) + (index - 6) + 3;
|
|
|
|
else
|
|
|
|
phy_index = index;
|
|
|
|
} else {
|
|
|
|
if (index >= 15)
|
|
|
|
phy_index = fuse_bank_physical(14) + (index - 15) + 2;
|
|
|
|
else if (index >= 6)
|
|
|
|
phy_index = fuse_bank_physical(5) + (index - 6) + 3;
|
|
|
|
else
|
|
|
|
phy_index = index;
|
|
|
|
}
|
|
|
|
return phy_index;
|
|
|
|
}
|
2016-08-11 06:02:41 +00:00
|
|
|
|
|
|
|
u32 fuse_word_physical(u32 bank, u32 word_index)
|
|
|
|
{
|
2016-12-11 11:24:33 +00:00
|
|
|
if (is_mx6ull() || is_mx6sll()) {
|
2016-08-11 06:02:41 +00:00
|
|
|
if (bank == 8)
|
|
|
|
word_index = word_index + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return word_index;
|
|
|
|
}
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
#else
|
|
|
|
u32 fuse_bank_physical(int index)
|
|
|
|
{
|
|
|
|
return index;
|
|
|
|
}
|
2016-08-11 06:02:41 +00:00
|
|
|
|
|
|
|
u32 fuse_word_physical(u32 bank, u32 word_index)
|
|
|
|
{
|
|
|
|
return word_index;
|
|
|
|
}
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
static void wait_busy(struct ocotp_regs *regs, unsigned int delay_us)
|
|
|
|
{
|
|
|
|
while (readl(®s->ctrl) & BM_CTRL_BUSY)
|
|
|
|
udelay(delay_us);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clear_error(struct ocotp_regs *regs)
|
|
|
|
{
|
|
|
|
writel(BM_CTRL_ERROR, ®s->ctrl_clr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int prepare_access(struct ocotp_regs **regs, u32 bank, u32 word,
|
|
|
|
int assert, const char *caller)
|
|
|
|
{
|
|
|
|
*regs = (struct ocotp_regs *)OCOTP_BASE_ADDR;
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
if (bank >= FUSE_BANKS ||
|
|
|
|
word >= ARRAY_SIZE((*regs)->bank[0].fuse_regs) >> 2 ||
|
|
|
|
!assert) {
|
2013-04-23 10:17:44 +00:00
|
|
|
printf("mxc_ocotp %s(): Invalid argument\n", caller);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2016-12-11 11:24:33 +00:00
|
|
|
if (is_mx6ull() || is_mx6sll()) {
|
2016-08-11 06:02:41 +00:00
|
|
|
if ((bank == 7 || bank == 8) &&
|
|
|
|
word >= ARRAY_SIZE((*regs)->bank[0].fuse_regs) >> 3) {
|
2016-12-11 11:24:33 +00:00
|
|
|
printf("mxc_ocotp %s(): Invalid argument\n", caller);
|
2016-08-11 06:02:41 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
enable_ocotp_clk(1);
|
|
|
|
|
|
|
|
wait_busy(*regs, 1);
|
|
|
|
clear_error(*regs);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int finish_access(struct ocotp_regs *regs, const char *caller)
|
|
|
|
{
|
|
|
|
u32 err;
|
|
|
|
|
|
|
|
err = !!(readl(®s->ctrl) & BM_CTRL_ERROR);
|
|
|
|
clear_error(regs);
|
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
/* Need to power down the OTP memory */
|
|
|
|
writel(1, ®s->pdn);
|
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
if (err) {
|
|
|
|
printf("mxc_ocotp %s(): Access protect error\n", caller);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int prepare_read(struct ocotp_regs **regs, u32 bank, u32 word, u32 *val,
|
|
|
|
const char *caller)
|
|
|
|
{
|
|
|
|
return prepare_access(regs, bank, word, val != NULL, caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_read(u32 bank, u32 word, u32 *val)
|
|
|
|
{
|
|
|
|
struct ocotp_regs *regs;
|
|
|
|
int ret;
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
u32 phy_bank;
|
2016-08-11 06:02:41 +00:00
|
|
|
u32 phy_word;
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
ret = prepare_read(®s, bank, word, val, __func__);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
phy_bank = fuse_bank_physical(bank);
|
2016-08-11 06:02:41 +00:00
|
|
|
phy_word = fuse_word_physical(bank, word);
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
|
2016-08-11 06:02:41 +00:00
|
|
|
*val = readl(®s->bank[phy_bank].fuse_regs[phy_word << 2]);
|
2013-04-23 10:17:44 +00:00
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
if (readl(®s->out_status) & BM_OUT_STATUS_DED) {
|
|
|
|
writel(BM_OUT_STATUS_DED, ®s->out_status_clr);
|
|
|
|
printf("mxc_ocotp %s(): fuse read wrong\n", __func__);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
return finish_access(regs, __func__);
|
|
|
|
}
|
|
|
|
|
2015-08-11 16:19:52 +00:00
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
static void set_timing(struct ocotp_regs *regs)
|
|
|
|
{
|
|
|
|
u32 ipg_clk;
|
|
|
|
u32 fsource, prog;
|
|
|
|
u32 timing;
|
|
|
|
|
|
|
|
ipg_clk = mxc_get_clock(MXC_IPG_CLK);
|
|
|
|
|
|
|
|
fsource = DIV_ROUND_UP((ipg_clk / 1000) * BV_TIMING_FSOURCE_NS,
|
|
|
|
+ 1000000) + 1;
|
|
|
|
prog = DIV_ROUND_CLOSEST(ipg_clk * BV_TIMING_PROG_US, 1000000) + 1;
|
|
|
|
|
|
|
|
timing = BF(fsource, TIMING_FSOURCE) | BF(prog, TIMING_PROG);
|
|
|
|
|
|
|
|
clrsetbits_le32(®s->timing, BM_TIMING_FSOURCE | BM_TIMING_PROG,
|
|
|
|
timing);
|
|
|
|
}
|
2017-02-22 08:21:46 +00:00
|
|
|
#elif defined(CONFIG_MX7ULP)
|
|
|
|
static void set_timing(struct ocotp_regs *regs)
|
|
|
|
{
|
|
|
|
/* No timing set for MX7ULP */
|
|
|
|
}
|
|
|
|
|
2015-08-11 16:19:52 +00:00
|
|
|
#else
|
2013-04-23 10:17:44 +00:00
|
|
|
static void set_timing(struct ocotp_regs *regs)
|
|
|
|
{
|
|
|
|
u32 ipg_clk;
|
|
|
|
u32 relax, strobe_read, strobe_prog;
|
|
|
|
u32 timing;
|
|
|
|
|
|
|
|
ipg_clk = mxc_get_clock(MXC_IPG_CLK);
|
|
|
|
|
|
|
|
relax = DIV_ROUND_UP(ipg_clk * BV_TIMING_RELAX_NS, 1000000000) - 1;
|
|
|
|
strobe_read = DIV_ROUND_UP(ipg_clk * BV_TIMING_STROBE_READ_NS,
|
|
|
|
1000000000) + 2 * (relax + 1) - 1;
|
2014-11-06 18:03:26 +00:00
|
|
|
strobe_prog = DIV_ROUND_CLOSEST(ipg_clk * BV_TIMING_STROBE_PROG_US,
|
|
|
|
1000000) + 2 * (relax + 1) - 1;
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
timing = BF(strobe_read, TIMING_STROBE_READ) |
|
|
|
|
BF(relax, TIMING_RELAX) |
|
|
|
|
BF(strobe_prog, TIMING_STROBE_PROG);
|
|
|
|
|
|
|
|
clrsetbits_le32(®s->timing, BM_TIMING_STROBE_READ | BM_TIMING_RELAX |
|
|
|
|
BM_TIMING_STROBE_PROG, timing);
|
|
|
|
}
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
static void setup_direct_access(struct ocotp_regs *regs, u32 bank, u32 word,
|
|
|
|
int write)
|
|
|
|
{
|
|
|
|
u32 wr_unlock = write ? BV_CTRL_WR_UNLOCK_KEY : 0;
|
2015-08-11 16:19:52 +00:00
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
u32 addr = bank;
|
2018-11-20 10:19:25 +00:00
|
|
|
#elif defined CONFIG_IMX8M
|
2018-01-10 05:20:39 +00:00
|
|
|
u32 addr = bank << 2 | word;
|
2015-08-11 16:19:52 +00:00
|
|
|
#else
|
2016-08-11 06:02:41 +00:00
|
|
|
u32 addr;
|
|
|
|
/* Bank 7 and Bank 8 only supports 4 words each for i.MX6ULL */
|
2016-12-11 11:24:33 +00:00
|
|
|
if ((is_mx6ull() || is_mx6sll()) && (bank > 7)) {
|
2016-08-11 06:02:41 +00:00
|
|
|
bank = bank - 1;
|
|
|
|
word += 4;
|
|
|
|
}
|
|
|
|
addr = bank << 3 | word;
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
set_timing(regs);
|
|
|
|
clrsetbits_le32(®s->ctrl, BM_CTRL_WR_UNLOCK | BM_CTRL_ADDR,
|
|
|
|
BF(wr_unlock, CTRL_WR_UNLOCK) |
|
|
|
|
BF(addr, CTRL_ADDR));
|
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_sense(u32 bank, u32 word, u32 *val)
|
|
|
|
{
|
|
|
|
struct ocotp_regs *regs;
|
|
|
|
int ret;
|
|
|
|
|
2019-04-17 09:41:23 +00:00
|
|
|
if (is_imx8mq() && is_soc_rev(CHIP_REV_2_1)) {
|
|
|
|
printf("mxc_ocotp %s(): fuse sense is disabled\n", __func__);
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
ret = prepare_read(®s, bank, word, val, __func__);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
setup_direct_access(regs, bank, word, false);
|
|
|
|
writel(BM_READ_CTRL_READ_FUSE, ®s->read_ctrl);
|
|
|
|
wait_busy(regs, 1);
|
2015-08-11 16:19:52 +00:00
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
*val = readl((®s->read_fuse_data0) + (word << 2));
|
|
|
|
#else
|
2013-04-23 10:17:44 +00:00
|
|
|
*val = readl(®s->read_fuse_data);
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
if (readl(®s->out_status) & BM_OUT_STATUS_DED) {
|
|
|
|
writel(BM_OUT_STATUS_DED, ®s->out_status_clr);
|
|
|
|
printf("mxc_ocotp %s(): fuse read wrong\n", __func__);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
return finish_access(regs, __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int prepare_write(struct ocotp_regs **regs, u32 bank, u32 word,
|
|
|
|
const char *caller)
|
|
|
|
{
|
2018-01-02 07:51:20 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
u32 val;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Only bank 0 and 1 are redundancy mode, others are ECC mode */
|
|
|
|
if (bank != 0 && bank != 1) {
|
2019-04-17 09:41:20 +00:00
|
|
|
if ((soc_rev() < CHIP_REV_2_0) ||
|
|
|
|
((soc_rev() >= CHIP_REV_2_0) &&
|
|
|
|
bank != 9 && bank != 10 && bank != 28)) {
|
|
|
|
ret = fuse_sense(bank, word, &val);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (val != 0) {
|
|
|
|
printf("mxc_ocotp: The word has been programmed, no more write\n");
|
|
|
|
return -EPERM;
|
|
|
|
}
|
2018-01-02 07:51:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
return prepare_access(regs, bank, word, true, caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_prog(u32 bank, u32 word, u32 val)
|
|
|
|
{
|
|
|
|
struct ocotp_regs *regs;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = prepare_write(®s, bank, word, __func__);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
setup_direct_access(regs, bank, word, true);
|
2015-08-11 16:19:52 +00:00
|
|
|
#ifdef CONFIG_MX7
|
|
|
|
switch (word) {
|
|
|
|
case 0:
|
|
|
|
writel(0, ®s->data1);
|
|
|
|
writel(0, ®s->data2);
|
|
|
|
writel(0, ®s->data3);
|
|
|
|
writel(val, ®s->data0);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
writel(val, ®s->data1);
|
|
|
|
writel(0, ®s->data2);
|
|
|
|
writel(0, ®s->data3);
|
|
|
|
writel(0, ®s->data0);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
writel(0, ®s->data1);
|
|
|
|
writel(val, ®s->data2);
|
|
|
|
writel(0, ®s->data3);
|
|
|
|
writel(0, ®s->data0);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
writel(0, ®s->data1);
|
|
|
|
writel(0, ®s->data2);
|
|
|
|
writel(val, ®s->data3);
|
|
|
|
writel(0, ®s->data0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
wait_busy(regs, BV_TIMING_PROG_US);
|
|
|
|
#else
|
2013-04-23 10:17:44 +00:00
|
|
|
writel(val, ®s->data);
|
|
|
|
wait_busy(regs, BV_TIMING_STROBE_PROG_US);
|
2015-08-11 16:19:52 +00:00
|
|
|
#endif
|
2013-04-23 10:17:44 +00:00
|
|
|
udelay(WRITE_POSTAMBLE_US);
|
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
if (readl(®s->out_status) & (BM_OUT_STATUS_PROGFAIL | BM_OUT_STATUS_LOCKED)) {
|
|
|
|
writel((BM_OUT_STATUS_PROGFAIL | BM_OUT_STATUS_LOCKED), ®s->out_status_clr);
|
|
|
|
printf("mxc_ocotp %s(): fuse write is failed\n", __func__);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
return finish_access(regs, __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_override(u32 bank, u32 word, u32 val)
|
|
|
|
{
|
|
|
|
struct ocotp_regs *regs;
|
|
|
|
int ret;
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
u32 phy_bank;
|
2016-08-11 06:02:41 +00:00
|
|
|
u32 phy_word;
|
2013-04-23 10:17:44 +00:00
|
|
|
|
|
|
|
ret = prepare_write(®s, bank, word, __func__);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
phy_bank = fuse_bank_physical(bank);
|
2016-08-11 06:02:41 +00:00
|
|
|
phy_word = fuse_word_physical(bank, word);
|
mxc: ocotp fix hole in shadow registers
There is a hole in shadow registers address map of size 0x100
between bank 5 and bank 6 on iMX6QP, iMX6DQ, iMX6SDL, iMX6SX and iMX6UL.
Bank 5 ends at 0x6F0 and Bank 6 starts at 0x800. When reading the fuses,
we should account for this hole in address space.
Similar hole exists between bank 14 and bank 15 of size
0x80 on iMX6QP, iMX6DQ, iMX6SDL and iMX6SX.
Note: iMX6SL has only 0-7 banks and there is no hole.
Note: iMX6UL doesn't have this one.
When reading, we use register offset, so need to account for holes
to get the correct address.
When writing, we use bank/word index, there is no need to account
for holes, always use bank/word index from fuse map.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
2015-08-26 07:40:47 +00:00
|
|
|
|
2016-08-11 06:02:41 +00:00
|
|
|
writel(val, ®s->bank[phy_bank].fuse_regs[phy_word << 2]);
|
2013-04-23 10:17:44 +00:00
|
|
|
|
2017-02-22 08:21:46 +00:00
|
|
|
#ifdef CONFIG_MX7ULP
|
|
|
|
if (readl(®s->out_status) & (BM_OUT_STATUS_PROGFAIL | BM_OUT_STATUS_LOCKED)) {
|
|
|
|
writel((BM_OUT_STATUS_PROGFAIL | BM_OUT_STATUS_LOCKED), ®s->out_status_clr);
|
|
|
|
printf("mxc_ocotp %s(): fuse write is failed\n", __func__);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-23 10:17:44 +00:00
|
|
|
return finish_access(regs, __func__);
|
|
|
|
}
|