u-boot otp

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

u-boot otp

1,292 Views
niklasmolin
Senior Contributor I

Hi.

I'm running the u-boot generated from the Yocto project (2014).

I'm trying to see what values the OTPs have (check the speed grade etc.) and I saw a another post that mentioned imxotp command.

But it seems like it's not in this u-boot version.

Is there a config settings (when compiling) I need to do to enable this or is there another way in this u-boot version?

Thanks,

Niklas

Labels (2)
0 Kudos
1 Reply

665 Views
fabio_estevam
NXP Employee
NXP Employee

If you use the latest boot you can activate the fuse API by adding the following options in your config file:

#define CONFIG_CMD_FUSE

#ifdef CONFIG_CMD_FUSE

#define CONFIG_MXC_OCOTP

#endif

You can look at mx6sabre_common.h as reference.

These following docs are also helpful to understand how the fuse api works:

doc/README.mxc_ocotp

doc/README.imx6

0 Kudos