HomeSort by relevance Sort by last modified time
    Searched refs:erase_shift (Results 1 - 5 of 5) sorted by null

  /external/u-boot/cmd/
onenand.c 65 int blocks = (int) len >> this->erase_shift;
66 int blocksize = (1 << this->erase_shift);
82 (u32)(ofs >> this->erase_shift), (u32)ofs);
136 int blocks = len >> this->erase_shift;
137 int blocksize = (1 << this->erase_shift);
161 (u32)(ofs >> this->erase_shift), (u32)ofs);
194 int blocksize = 1 << this->erase_shift;
200 (u32)(ofs >> this->erase_shift), (u32)ofs);
211 (u32)(ofs >> this->erase_shift), (u32)ofs);
229 int blocksize = 1 << this->erase_shift;
    [all...]
  /external/u-boot/drivers/mtd/onenand/
onenand_bbt.c 198 len = this->chipsize >> (this->erase_shift + 2);
210 bbm->bbt_erase_shift = this->erase_shift;
onenand_base.c 240 blk = addr >> (this->erase_shift - 1);
251 return addr >> this->erase_shift;
274 ofs += (loff_t) block << (this->erase_shift - 1);
277 << (this->erase_shift - 1);
284 return (loff_t) block << this->erase_shift;
622 block = (int) (addr >> this->erase_shift) & ~1;
828 if (mtd->eraseregions[i].erasesize < (1 << this->erase_shift))
    [all...]
samsung.c 280 fba = (int) (addr >> this->erase_shift);
452 end = this->chipsize >> this->erase_shift;
470 start = ofs >> this->erase_shift;
472 end = start + (len >> this->erase_shift) - 1;
  /external/u-boot/include/linux/mtd/
onenand.h 52 * @param erase_shift [INTERN] number of address bits in a block
83 unsigned int erase_shift; member in struct:onenand_chip

Completed in 980 milliseconds