Hi All,
To blow fuses, you must use u-boot command "imxotp blow --force <index> <value>".
From Table 5-4. SATA Boot Fusemap in i.MX 6Dual 6Quad Applications Processor Reference Manual.pdf
you get the address of fuses to setup boot from SATA, then you need to calculate the fuse index and then use command above.
To calculate the index, use formula shown below:
Fuse Index = (Fuse Address - 0x400) * 0x10
The value is determine by your needs.
For example to setup boot from NOR, the index will be 5 as shown below:
fuse address = 0x450
index = (0x450 - 0x400) * 0x10
index = 5
then,
imxotp blow --force <index> <value>"
u-boot> imxotp blow --force 5 0x18000030