Lines Matching refs:block1

448  * @block1: the second plane block index
456 static int doc_read_seek(struct docg3 *docg3, int block0, int block1, int page,
462 block0, block1, page, ofs, wear);
485 sector = (block1 << DOC_ADDR_BLOCK_SHIFT) + (page & DOC_ADDR_PAGE_MASK);
498 * @block1: the second plane block index
505 static int doc_write_seek(struct docg3 *docg3, int block0, int block1, int page,
511 block0, block1, page, ofs);
538 sector = (block1 << DOC_ADDR_BLOCK_SHIFT) + (page & DOC_ADDR_PAGE_MASK);
673 * @block1: the second plane block index on flash memory
695 static int doc_read_page_prepare(struct docg3 *docg3, int block0, int block1,
701 block0, block1, page, offset);
713 ret = doc_read_seek(docg3, block0, block1, page, wear_area, offset);
822 * @block1: second plane block index calculated
832 static void calc_block_sector(loff_t from, int *block0, int *block1, int *page,
843 *block1 = *block0 + 1;
869 int block0, block1, page, ret, skip, ofs = 0;
899 calc_block_sector(from - skip, &block0, &block1, &page, &ofs,
903 ret = doc_read_page_prepare(docg3, block0, block1, page, ofs);
1008 int block0, block1, page, ofs, is_good;
1010 calc_block_sector(from, &block0, &block1, &page, &ofs,
1013 from, block0, block1, page, ofs);
1017 if (block1 > docg3->max_block)
1039 int block0, block1, page, ofs;
1044 calc_block_sector(from, &block0, &block1, &page, &ofs, docg3->reliable);
1045 if (block1 > docg3->max_block)
1050 ret = doc_read_page_prepare(docg3, block0, block1, page,
1127 * @block1: the second block to erase (rightmost plane)
1134 static int doc_erase_block(struct docg3 *docg3, int block0, int block1)
1138 doc_dbg("doc_erase_block(blocks=(%d,%d))\n", block0, block1);
1149 sector = block1 << DOC_ADDR_BLOCK_SHIFT;
1158 doc_err("Erase blocks %d,%d error\n", block0, block1);
1180 int block0, block1, page, ret = 0, ofs = 0;
1184 calc_block_sector(info->addr + info->len, &block0, &block1, &page,
1189 calc_block_sector(info->addr, &block0, &block1, &page, &ofs,
1195 ret = doc_erase_block(docg3, block0, block1);
1197 block1 += 2;
1226 int block0, block1, page, ret, ofs = 0;
1230 calc_block_sector(to, &block0, &block1, &page, &ofs, docg3->reliable);
1238 ret = doc_write_seek(docg3, block0, block1, page, ofs);