android_kernel_cmhtcleo/fs/yaffs2/yaffs_nand.c

121 lines
3.0 KiB
C
Raw Permalink Normal View History

2010-08-27 09:19:57 +00:00
/*
* YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
*
* Copyright (C) 2002-2010 Aleph One Ltd.
2010-08-27 09:19:57 +00:00
* for Toby Churchill Ltd and Brightstar Engineering
*
* Created by Charles Manning <charles@aleph1.co.uk>
*
* 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.
*/
#include "yaffs_nand.h"
#include "yaffs_tagscompat.h"
#include "yaffs_tagsvalidity.h"
#include "yaffs_getblockinfo.h"
int yaffs_rd_chunk_tags_nand(struct yaffs_dev *dev, int nand_chunk,
u8 *buffer, struct yaffs_ext_tags *tags)
2010-08-27 09:19:57 +00:00
{
int result;
struct yaffs_ext_tags local_tags;
int realigned_chunk = nand_chunk - dev->chunk_offset;
2010-08-27 09:19:57 +00:00
dev->n_page_reads++;
2010-08-27 09:19:57 +00:00
/* If there are no tags provided use local tags. */
2010-08-27 09:19:57 +00:00
if (!tags)
tags = &local_tags;
2010-08-27 09:19:57 +00:00
if (dev->param.read_chunk_tags_fn)
result =
dev->param.read_chunk_tags_fn(dev, realigned_chunk, buffer,
tags);
2010-08-27 09:19:57 +00:00
else
result = yaffs_tags_compat_rd(dev,
realigned_chunk, buffer, tags);
if (tags && tags->ecc_result > YAFFS_ECC_RESULT_NO_ERROR) {
struct yaffs_block_info *bi;
bi = yaffs_get_block_info(dev,
nand_chunk /
dev->param.chunks_per_block);
yaffs_handle_chunk_error(dev, bi);
2010-08-27 09:19:57 +00:00
}
return result;
}
int yaffs_wr_chunk_tags_nand(struct yaffs_dev *dev,
int nand_chunk,
const u8 *buffer, struct yaffs_ext_tags *tags)
2010-08-27 09:19:57 +00:00
{
dev->n_page_writes++;
nand_chunk -= dev->chunk_offset;
2010-08-27 09:19:57 +00:00
if (tags) {
tags->seq_number = dev->seq_number;
tags->chunk_used = 1;
if (!yaffs_validate_tags(tags)) {
yaffs_trace(YAFFS_TRACE_ERROR,
"Writing uninitialised tags");
2010-08-27 09:19:57 +00:00
YBUG();
}
yaffs_trace(YAFFS_TRACE_WRITE,
"Writing chunk %d tags %d %d",
nand_chunk, tags->obj_id, tags->chunk_id);
2010-08-27 09:19:57 +00:00
} else {
yaffs_trace(YAFFS_TRACE_ERROR, "Writing with no tags");
2010-08-27 09:19:57 +00:00
YBUG();
return YAFFS_FAIL;
2010-08-27 09:19:57 +00:00
}
if (dev->param.write_chunk_tags_fn)
return dev->param.write_chunk_tags_fn(dev, nand_chunk, buffer,
tags);
2010-08-27 09:19:57 +00:00
else
return yaffs_tags_compat_wr(dev, nand_chunk, buffer, tags);
2010-08-27 09:19:57 +00:00
}
int yaffs_mark_bad(struct yaffs_dev *dev, int block_no)
2010-08-27 09:19:57 +00:00
{
block_no -= dev->block_offset;
if (dev->param.bad_block_fn)
return dev->param.bad_block_fn(dev, block_no);
2010-08-27 09:19:57 +00:00
else
return yaffs_tags_compat_mark_bad(dev, block_no);
2010-08-27 09:19:57 +00:00
}
int yaffs_query_init_block_state(struct yaffs_dev *dev,
int block_no,
enum yaffs_block_state *state,
u32 *seq_number)
2010-08-27 09:19:57 +00:00
{
block_no -= dev->block_offset;
if (dev->param.query_block_fn)
return dev->param.query_block_fn(dev, block_no, state,
seq_number);
2010-08-27 09:19:57 +00:00
else
return yaffs_tags_compat_query_block(dev, block_no,
state, seq_number);
2010-08-27 09:19:57 +00:00
}
int yaffs_erase_block(struct yaffs_dev *dev, int flash_block)
2010-08-27 09:19:57 +00:00
{
int result;
flash_block -= dev->block_offset;
dev->n_erasures++;
result = dev->param.erase_fn(dev, flash_block);
2010-08-27 09:19:57 +00:00
return result;
}
int yaffs_init_nand(struct yaffs_dev *dev)
2010-08-27 09:19:57 +00:00
{
if (dev->param.initialise_flash_fn)
return dev->param.initialise_flash_fn(dev);
return YAFFS_OK;
2010-08-27 09:19:57 +00:00
}