After looking into my problem I found two ways of writing to the connected flash, either with IP commands or using the AHB bus. Using the AHB bus would ofcourse be the best solution here, because I'd be able to create an EEPROM struct and locate it in the right position, creating a perfect way of reading and writing this part of the flash.
After doing some testing, I found out this was not so easy. Reading does work, but writing seem to result in an AHBCMDERRCODE of value 3 (There is unkown instruction opcode in the sequence), with AHBCMDERRID containing a value of 0x9 (the write page command LUT index).
I double checked this value in the Flash Configuration Block (0x60000400) on offset 0x80 the LUT begins, and every LUT contains 16 bytes, so index 9 would be at offset 0x90 and the value is equal to the value set in evkmimxrt1010_flexspi_nor_config.c (duh). But in here no strange opcodes are found.
After running into this trouble, I tried ip commands, but then got the same result, only in IPCMDERRCODE and IPCMDERRID registers.
What could be the issue here?
Thanks!
Marcel