when i debug the DCSM of 280049, I find in " f28004x_dcsm_z1otp.asm" , the flash bank0 has password as follow:
.sect "b0_dcsm_zsel_z1"
;; .long 0xFFFFFFFF ;B0_Z1OTP_EXEONLYRAM
;; .long 0xFFFFFFFF ;B0_Z1OTP_EXEONLYSECT
;; .long 0xFFFFFFFF ;B0_Z1OTP_GRABRAM
;; .long 0xFFFFFFFF ;B0_Z1OTP_GRABSECT
;; .long 0xFFFFFFFF ;B0_Z1OTP_CSMPSWD0 (LSW of 128-bit password)
;; .long 0xFFFFFFFF ;B0_Z1OTP_CSMPSWD1
;; .long 0xFFFFFFFF ;B0_Z1OTP_CSMPSWD2
;; .long 0xFFFFFFFF ;B0_Z1OTP_CSMPSWD3 (MSW of 128-bit password)
but the bank 1 has no password, you only can set the EXEONLYSECT and GRABSECT
.sect "b1_dcsm_zsel_z1"
;; .long 0xFFFFFFFF ;Reserved
;; .long 0xFFFFFFFF ;B1_Z1OTP_EXEONLYSECT
;; .long 0xFFFFFFFF ;Reserved
;; .long 0xFFFFFFFF ;B1_Z1OTP_GRABSECT
;; .long 0xFFFFFFFF ;Reserved
;; .long 0xFFFFFFFF ;Reserved
;; .long 0xFFFFFFFF ;Reserved
;; .long 0xFFFFFFFF ;Reserved
so my question is: what's the password of bank1, if i want bank0 and bank1 have a same password, how should i set it??