I have an embedded system that is not cost effective to roll a custom PCB therefore my access to certain buses are limited. I had the idea of hooking my FPGA up to the unused NAND port of the system for high speed communications. I would need to write a custom driver based off the Linux MTD driver but It would allow mmap access to the FPGA.
The NAND flash peripheral clock on this specific embedded system is set at 33MHz in the Linux kernel and the SPI peripheral is 33MHz with a max clock of 30MHz. While SPI would be slower due to its serial output is their any underling complexities to the NAND bus that would make it slower than SPI?
All of my communications are 8bit commands followed by 16bit data.