A NAND Chip Driver is a part of Kernel Written in Embedded 'C' Language . NAND flash chips are used as non – volatile memory that can be electrically erased and reprogrammed .The NAND type is primarily used in memory cards, USB flash drives, solid state drives and similar products, for general storage and transfer of data . NAND flash chips, unlike their NOR counterparts, are not connected to the CPU via data and address lines. They interface to the CPU through special electronics called a NAND flash controller that is part of many embedded processors. The controller transfers data from the requested flash location to an internal RAM memory, also part of the controller.
Flash Memory was invented by Dr Fujio Masuoka while working for TOSHIBA in 1980 and the name 'flash' was suggested . TOSHIBA announced NAND Flash at the 1987 International Electron Devices Meeting . It has reduced erase and write times ,and requires less chip area and cell, thus allowing greater storage density and lower cost per bit than NOR flash; it also has up to ten times the endurance of NOR flash .
NAND Flash interfaced with the CPU through special electronics called a NAND Flash Controller that is a part of Processor . To read data from NAND Flash ,the CPU issues reading command and send to the NAND Controller . The data transfer is done in units of the flash chip's page size (app. 4096 bytes) . The more dense nand chip has larger page size . The page size of flash chip is different from Block size but page size is in multiple of block size(minimum storage unit of flash) . So data transfer from NAND chip to internal RAM . In write operation data transfers from internal RAM to flash .
A typical NAND device driver falls into two parts:
NAND chip driver controls the NAND flash controller and provide access to the chip's data .
Now a days so many vendors creating their own Nand flash chips . So drivers are written for every type of NAND chip . So to interface and improve the performance of the NAND flash we need to upgrade and develop or improve the drivers .