Lines Matching refs:soff_hi

138 	u32 soff_hi;		/* start address offset hi */  in pmc551_erase()  local
151 soff_hi = instr->addr & ~(priv->asize - 1); in pmc551_erase()
157 if (soff_hi == eoff_hi || mtd->size == priv->asize) { in pmc551_erase()
164 while (soff_hi != eoff_hi) { in pmc551_erase()
167 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); in pmc551_erase()
170 if (soff_hi + priv->asize >= mtd->size) { in pmc551_erase()
173 soff_hi += priv->asize; in pmc551_erase()
174 pmc551_point(mtd, (priv->base_map0 | soff_hi), in pmc551_erase()
193 u32 soff_hi; in pmc551_point() local
200 soff_hi = from & ~(priv->asize - 1); in pmc551_point()
206 (priv->base_map0 | soff_hi)); in pmc551_point()
207 priv->curr_map0 = soff_hi; in pmc551_point()
227 u32 soff_hi; /* start address offset hi */ in pmc551_read() local
239 soff_hi = from & ~(priv->asize - 1); in pmc551_read()
245 if (soff_hi == eoff_hi) { in pmc551_read()
253 while (soff_hi != eoff_hi) { in pmc551_read()
256 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); in pmc551_read()
260 if (soff_hi + priv->asize >= mtd->size) { in pmc551_read()
263 soff_hi += priv->asize; in pmc551_read()
264 pmc551_point(mtd, soff_hi, priv->asize, retlen, in pmc551_read()
283 u32 soff_hi; /* start address offset hi */ in pmc551_write() local
295 soff_hi = to & ~(priv->asize - 1); in pmc551_write()
301 if (soff_hi == eoff_hi) { in pmc551_write()
309 while (soff_hi != eoff_hi) { in pmc551_write()
312 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi); in pmc551_write()
316 if (soff_hi >= mtd->size) { in pmc551_write()
319 soff_hi += priv->asize; in pmc551_write()
320 pmc551_point(mtd, soff_hi, priv->asize, retlen, in pmc551_write()