Unable to detect the FPVIOL flag when trying to erase/write a FLASH protected block on HCS08GT60A

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

Unable to detect the FPVIOL flag when trying to erase/write a FLASH protected block on HCS08GT60A

3,714 Views
Johan_SOMFY
Contributor I
 Hello,
 
 I have a problem to detect the FPVIOL flag in the FSTAT register when I try to erase or write a protected FLASH block on a HCS08GT60A chip.
 
 My FLASH register configuration is the following:
 FOPT = 0x42 (No Backdoor key, No vector redirection, Unsecured mode)
 FPROT = 0xA0 (FLASH blocks from 0xE000 to 0xFFFF are protected)
 
In my test, I try to erase or programm the 0xF000 address with the algorithm decribed in the Data sheet. The Erase or Write action is not executed (no changes in the FLASH) but the FPVIOL flag is not set ???
 
Has anybody already seen this ?
 
Thanks a lot
Labels (1)
0 Kudos
9 Replies

778 Views
Ake
Contributor II
Hi,
The FOPT and FPROT are read-only registers and cannot be changed.
Use the NVOPT and NVPROT registers instead and us
 
const byte NVPROT_INIT @0x0000FFBD = 0x42; 
const byte NVOPT_INIT @0x0000FFBF = 0xa0;
 
to initialize the registers instead.
They will be copied into the FOPT and the FPROT registers at power up.
 
If you don't put any value to the NVPROT and the NVOPT, you will get no protection at all.
 
Regards,
Ake
0 Kudos

778 Views
Johan_SOMFY
Contributor I
Hi,
 
 Thanks a lot for your help.
 
 My NVOPT and NVPROT regs was OK, but I found my problem.
 
 My FLASH driver is written in C language and in the algorithm provided in the data sheet , we have to clear the FCBEF bit in the FSTAT register to launch the required command on the FLASH. In my FLASH driver, this was done by setting to 1 the FCBEF like "FSTAT_FCBEF = TRUE" with FSTAT_FCBEF is equivalent to the MSB of a bit field. With this code, the compiler gets the FSTAT value, does an OR with 0x80 and writes the result to FSTAT. Doing this, if the FPVIOL or the FACCERR bits of the FSTAT are set, they are reset by the las write to FSTAT (if they are set, with the OR, they stay to 1 and then they are written to one which leads to resetting them), so it is not possible to detects them ....
 
 So I replace the "FSTAT_FCBEF = TRUE" by "FSTAT = 0x80" and all is working well.
 
By,
 
Johan
0 Kudos

778 Views
Ake
Contributor II
Johan,
Quite interesting. I will save your message for the future.
 
Regards,
Ake
0 Kudos

778 Views
JCC
Contributor I
Hello Johan.
 
Interresting what you say regarding the FACCERR & FPVIOL bits. I was under the impression that these bits were set  only after the command was registered by writing to the FCBEF bit.
 
I look at the SpSub code (reproduced below, this code is from the reference manual & monitor program), and the FCBEF bit is set by a STA instruction which would overwrite all other bits in FSTAT.
 
When the program returns to DoOnStack A is shifted left 1 bit which would normally put FPVIOL & FACCERR at bits 7 & 6 repectively. If what you say is true, then a check for these error flags should be done immediately after storing the data to the flash address (sta   ,x).
 
Can anyone confirm or deny this?
 
JC
 
;********************************************************************************
;* SpSub - This variation of SpSub performs all of the steps for
;* programming or erasing flash from RAM. SpSub is copied onto the
;* stack, SP is copied to H:X, and then the copy of SpSub in RAM is
;* called using a JSR 0,X instruction.
;*
;* At the time SpSub is called, the data to be programmed (dummy data
;* for an erase command), is in A and the flash address is on the
;* stack above SpSub. After return, PVIOL and ACCERR flags are in bits
;* 6 and 5 of A. If A is shifted left by one bit after return, it
;* should be zero unless there was a flash error.
;*
;* Uses 24 bytes on stack + 2 bytes if a BSR/JSR calls it
;********************************************************************************
           
SpSub:      ldhx  <SpSubSize+4,sp      ;get flash address from stack
            sta   ,x                                       ;write to flash; latch addr and data
            lda   SpSubSize+3,sp              ;get flash command
            sta   FCMD                               ;write the flash command
            lda   #mFCBEF                        ;mask to initiate command
            sta   FSTAT                              ;[pwpp] register command
            nop                                           ;[p] want min 4~ from w cycle to r
ChkDone:    lda   FSTAT                      ;[prpp] so FCCF is valid
            lsla                                            ;FCCF now in MSB
            bpl   ChkDone                          ;loop if FCCF = 0
SpSubEnd:   rts                                   ;back into DoOnStack in flash
SpSubSize:  equ   (*-SpSub)
;********************************************************************************
0 Kudos

778 Views
Johan_SOMFY
Contributor I
 Hi JCC,
 
 The FPVIOL and FACCERR are really set only after the FCBEF bit writing. Your SpSub code is right because even if the STA instruction overwrite all other bits in the FSTAT register, these bits are overwritten with a null value ("mFCBEF:     equ   %10000000").
 
If you look at the datasheet you will see that writing with a null value to all FSTAT bits except FCBEF have no effect (the FPVIOL and FACCERR are not modified by this write).
 
So I think your code is OK.
 
best regards
 
Johan
0 Kudos

778 Views
bigmac
Specialist III
Hello,
 
This is another instance where side effects have been caused by the use of a read-modify-write sequence.  Unfortunately, in this case the data sheet does not give a specific warning for the FSTAT register.  The same warning would also apply to any other register that contains bits that are cleared by writing a one.
 
As Johan has observed, FSTAT_FCBEF = 1 is such a sequence, although this fact may not be immediately obvious.  A possible drawback with programming in C, versus assembler.
 
Regards,
Mac
 
0 Kudos

778 Views
Bruce_andrew
Contributor I
Perhaps CodeWarrior should cope with this requirement. So that the user doesn't have to be thinking assembler.

FYI, I often disassemble the C code, just to see what the compiler has done. Sometimes the results are quite interesting.
0 Kudos

778 Views
bigmac
Specialist III
Hello Bruce_,
 
If you think about it, the setting or clearing of a single bit would always be read-modify-write, since a read is first required to determine the state of the other (unaltered) bits in the register.  Since this is a problem only for certain hardware registers that contain flags, it is really up to the programmer to realize each special case, where operations on a single bit may cause problems.  The compiler has no knowledge of such cases, since it does not know anything about operation of the hardware.
 
Regards,
Mac
 
0 Kudos

778 Views
Johan_SOMFY
Contributor I
Hello Bruce and Bigmac,
 
 I think you're right, each time a problem occurs really close to hardware it is a good practice to look at disassembly of the code. The more compilers are complicated the more we lose sight of the hardware target we use :smileywink: .
 
Best regards !
 
Johan 
0 Kudos