X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_mtdif.c;h=7cf53b3d91be5057a0ff9d2dfb6d3994d48b12ac;hp=9537b1a509c568f55495160d5151a98fc5ec0579;hb=fe192b14d52d6c7d4722402686dcb553153916c3;hpb=0128ef2c964bf34556e8f683851a4d2d5e7cf3b3 diff --git a/yaffs_mtdif.c b/yaffs_mtdif.c index 9537b1a..7cf53b3 100644 --- a/yaffs_mtdif.c +++ b/yaffs_mtdif.c @@ -1,8 +1,7 @@ /* - * YAFFS: Yet another FFS. A NAND-flash specific file system. - * yaffs_mtdif.c NAND mtd wrapper functions. + * YAFFS: Yet Another Flash File System. A NAND-flash specific file system. * - * Copyright (C) 2002 Aleph One Ltd. + * Copyright (C) 2002-2010 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning @@ -10,15 +9,10 @@ * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. - * */ -const char *yaffs_mtdif_c_version = "$Id: yaffs_mtdif.c,v 1.9 2005-08-02 19:18:44 luc Exp $"; - #include "yportenv.h" -#ifdef CONFIG_YAFFS_YAFFS1 - #include "yaffs_mtdif.h" #include "linux/mtd/mtd.h" @@ -26,130 +20,35 @@ const char *yaffs_mtdif_c_version = "$Id: yaffs_mtdif.c,v 1.9 2005-08-02 19:18:4 #include "linux/time.h" #include "linux/mtd/nand.h" -static struct nand_oobinfo yaffs_oobinfo = { - .useecc = 1, -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,8)) - .eccbytes = 6, -#endif - .eccpos = {8, 9, 10, 13, 14, 15} -}; - -static struct nand_oobinfo yaffs_noeccinfo = { - .useecc = 0, -}; - - -int nandmtd_WriteChunkToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, const yaffs_Spare *spare) -{ - struct mtd_info *mtd = (struct mtd_info *)(dev->genericDevice); - size_t dummy; - int retval = 0; - - loff_t addr = ((loff_t)chunkInNAND) * dev->nBytesPerChunk; - - __u8 *spareAsBytes = (__u8 *)spare; - - if(data && spare) - { - if(dev->useNANDECC) - retval = mtd->write_ecc(mtd,addr,dev->nBytesPerChunk,&dummy,data,spareAsBytes,&yaffs_oobinfo); - else - retval = mtd->write_ecc(mtd,addr,dev->nBytesPerChunk,&dummy,data,spareAsBytes,&yaffs_noeccinfo); - } - else - { - if(data) - retval = mtd->write(mtd,addr,dev->nBytesPerChunk,&dummy,data); - if(spare) - retval = mtd->write_oob(mtd,addr,YAFFS_BYTES_PER_SPARE,&dummy,spareAsBytes); - } - - if (retval == 0) - return YAFFS_OK; - else - return YAFFS_FAIL; -} - -int nandmtd_ReadChunkFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_Spare *spare) -{ - struct mtd_info *mtd = (struct mtd_info *)(dev->genericDevice); - size_t dummy; - int retval = 0; - - loff_t addr = ((loff_t)chunkInNAND) * dev->nBytesPerChunk; - - __u8 *spareAsBytes = (__u8 *)spare; - - if(data && spare) - { - if(dev->useNANDECC) - { // Careful, this call adds 2 ints to the end of the spare data. Calling function should - // allocate enough memory for spare, i.e. [YAFFS_BYTES_PER_SPARE+2*sizeof(int)]. - retval = mtd->read_ecc(mtd,addr,dev->nBytesPerChunk,&dummy,data,spareAsBytes,&yaffs_oobinfo); - } - else - { - retval = mtd->read_ecc(mtd,addr,dev->nBytesPerChunk,&dummy,data,spareAsBytes,&yaffs_noeccinfo); - } - } - else - { - if(data) - retval = mtd->read(mtd,addr,dev->nBytesPerChunk,&dummy,data); - if(spare) - retval = mtd->read_oob(mtd,addr,YAFFS_BYTES_PER_SPARE,&dummy,spareAsBytes); - } - - if (retval == 0) - return YAFFS_OK; - else - return YAFFS_FAIL; -} +#include "yaffs_linux.h" -// Callback not needed for NAND -#if 0 -static void nandmtd_EraseCallback(struct erase_info *ei) +int nandmtd_erase_block(struct yaffs_dev *dev, int block_no) { - yaffs_Device *dev = (yaffs_Device *)ei->priv; - up(&dev->sem); -} -#endif + struct mtd_info *mtd = yaffs_dev_to_mtd(dev); + u32 addr = + ((loff_t) block_no) * dev->param.total_bytes_per_chunk + * dev->param.chunks_per_block; + struct erase_info ei; + int retval = 0; -int nandmtd_EraseBlockInNAND(yaffs_Device *dev, int blockNumber) -{ - struct mtd_info *mtd = (struct mtd_info *)(dev->genericDevice); - __u32 addr = ((loff_t) blockNumber) * dev->nBytesPerChunk * dev->nChunksPerBlock; - struct erase_info ei; - int retval = 0; - ei.mtd = mtd; ei.addr = addr; - ei.len = dev->nBytesPerChunk * dev->nChunksPerBlock; + ei.len = dev->param.total_bytes_per_chunk * dev->param.chunks_per_block; ei.time = 1000; ei.retries = 2; ei.callback = NULL; - ei.priv = (u_long)dev; - - // Todo finish off the ei if required - - sema_init(&dev->sem,0); + ei.priv = (u_long) dev; - retval = mtd->erase(mtd,&ei); - - //No need for callback - // down(&dev->sem); // Wait for the erasure to complete + retval = mtd->erase(mtd, &ei); - if (retval == 0) - return YAFFS_OK; - else - return YAFFS_FAIL; + if (retval == 0) + return YAFFS_OK; + else + return YAFFS_FAIL; } -int nandmtd_InitialiseNAND(yaffs_Device *dev) +int nandmtd_initialise(struct yaffs_dev *dev) { return YAFFS_OK; } - -#endif // CONFIG_YAFFS_YAFFS1 -