S32K148: Flash Erase Block Problem

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

S32K148: Flash Erase Block Problem

Jump to solution
3,284 Views
michael_kirches
Contributor III

Hello,

I am experimenting with the S32K148 internal flash and ran into problems. 

What I want to achieve is the following:

Partition the flash area which can be used to emulate EEProm such that it is available as 512K D-Flash partition (compare page 773 in chip's reference manual). After partitioning I want to write a little data at the beginning of this flash partition. From the memory map document attached to the reference manual this partition starts at address 0x1000_0000. 

My problem is, that when I try to erase a flash block, I can see the access error bit set in status register of the flash controler. As I switched off memory protection (I set FTFC->FDPROT = 0b11111111; before I call my method Partition_Flash; compare to section 36.4.4.1.9 in chips reference manual) and used an address relative to the start of the flash partition, I do not understand, how this could lead to access error situations.

Here are some details on my problem.

My approach to achieve this goal is:

  1. Partition the flash
  2. Erase a flash block
  3. Write data using the program phrase command

My clock settings are: 160 MHz SPLL, 80 MHz core clock, 40 MHz bus clock, 26,6 MHz flash clock.

This is how I partition the flash area:

void Partition_Flash() {


 while (((FTFC->FSTAT & FTFC_FSTAT_CCIF_MASK) >> FTFC_FSTAT_CCIF_SHIFT) == 0)
 ;

 // wait for CCIF == 1
 uint8_t accerr = (FTFC->FSTAT & FTFC_FSTAT_ACCERR_MASK) >> FTFC_FSTAT_ACCERR_SHIFT;
 uint8_t fpviol = (FTFC->FSTAT & FTFC_FSTAT_FPVIOL_MASK)
 >> FTFC_FSTAT_FPVIOL_SHIFT;
 if (accerr == 1 || fpviol == 1) {
 FTFC->FSTAT = 0x30; // Clear old errors
 }
 // partition flash: see 36.5.11.14 Program Partition command p838ff RM
 FTFC->FCCOB[0] = 0x80;
 FTFC->FCCOB[1] = 0x0;
 FTFC->FCCOB[2] = 0x0;
 FTFC->FCCOB[3] = 0x1;
 FTFC->FCCOB[4] = 0xF;
 FTFC->FCCOB[5] = 0;

 FTFC->FSTAT = 0x80; // launch command

 while (((FTFC->FSTAT & FTFC_FSTAT_CCIF_MASK) >> FTFC_FSTAT_CCIF_SHIFT) == 0)
 ;
 // wait for CCIF == 1


}

When debugging, the register view in S32 Design Studio does not show any error after the partition command has been  executed. FSTAT_AFTER_PARTITION_FLASH.png

Next step is to erase a flash block using the following code:

void EraseBlock()
{
 // Erase flash block
 while (((FTFC->FSTAT & FTFC_FSTAT_CCIF_MASK) >> FTFC_FSTAT_CCIF_SHIFT) == 0);

 // wait for CCIF == 1
 uint8_t accerr = (FTFC->FSTAT & FTFC_FSTAT_ACCERR_MASK) >> FTFC_FSTAT_ACCERR_SHIFT;
 uint8_t fpviol = (FTFC->FSTAT & FTFC_FSTAT_FPVIOL_MASK) >> FTFC_FSTAT_FPVIOL_SHIFT;
 if (accerr == 1 || fpviol == 1) {
 FTFC->FSTAT = 0x30; // Clear old errors
 }

 FTFC->FCCOB[0] = 0x08;

 // from my understanding this should be the first flash block
 FTFC->FCCOB[1] = 0;
 FTFC->FCCOB[2] = 0;
 FTFC->FCCOB[3] = 0;

 FTFC->FSTAT = 0x80; // launch command

 while (((FTFC->FSTAT & FTFC_FSTAT_CCIF_MASK) >> FTFC_FSTAT_CCIF_SHIFT) == 0);
}

Howver, right after writing value 0x80 into FTFC->FSTAT, in the register view the access error bit in register FSTAT is set.

FSTAT_AFTER_0x80_IN_ERASE_BLOCK.png

Now my questions are

  • Why does the access error occur?
  • Is there any step missing in my approach?

Any help would be appreciated.

Best Regards,

Michael

Tags (3)
1 Solution
2,733 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hello Michael,

As you can see in Section 36.5.11 RM rev.9

When required by the command, address bit 23 selects between program flash memory (=0) and data flash memory (=1).

FTFC->FCCOB[3] = 0x08; // FCCOB0 ERSBLK
FTFC->FCCOB[2] = 0x80; // Flash address [23:16] of 0x1000_0000
FTFC->FCCOB[1] = 0x00; // Flash address [15:8]
FTFC->FCCOB[1] = 0x00; // Flash address [7:0]

Regards,

Daniel

View solution in original post

3 Replies
2,734 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hello Michael,

As you can see in Section 36.5.11 RM rev.9

When required by the command, address bit 23 selects between program flash memory (=0) and data flash memory (=1).

FTFC->FCCOB[3] = 0x08; // FCCOB0 ERSBLK
FTFC->FCCOB[2] = 0x80; // Flash address [23:16] of 0x1000_0000
FTFC->FCCOB[1] = 0x00; // Flash address [15:8]
FTFC->FCCOB[1] = 0x00; // Flash address [7:0]

Regards,

Daniel

2,734 Views
michael_kirches
Contributor III

Hello Daniel,

I found this comment in the RM, so thank you for this hint. 

Your code snippet works for me, only three more questions on that topic:

  1. Line 4 of your snippet should be FTFC->FCCOB[0] = 0x0, correct?
  2. RM section 36.4.4.1.6.4 Fields states "The individual registers that compose the FCCOB data set can be written in any order, but you must provide all needed values, which vary from command to command." But you start to compose the command by writing FCCOB3 first. Is this because of the offsets stated in RM section 36.4.4.1.6.1 Offset ?
  3. Does the command byte always go to FTFC->FCCOB[3]? In the command descriptions the command byte is always mentioned to be written in FCCOB Number 0. This confuses me a bit.

Best Regards,

Michael

0 Kudos
2,734 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hello Michael,

1. Sorry, just a typo.

2. It really does not matter. 

3. It is FCCOB0 which is offset by 3, that means FTFC->FCCOB[3]. Yes, it is confusing.

BR, Daniel

0 Kudos