Lines Matching refs:st_bit
421 * @st_bit: Start Bit
422 * @end_bit: End Bit. Must be >= @st_bit.
424 * If 0, maximum is as high as @st_bit and @end_bit allow.
439 int cs, int reg, int st_bit, int end_bit, int max,
452 nr_bits = end_bit - st_bit + 1;
454 l = (l >> st_bit) & mask;
603 * @st_bit: Start Bit
604 * @end_bit: End Bit. Must be >= @st_bit.
606 * If 0, maximum is as high as @st_bit and @end_bit allow.
612 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, int max,
622 nr_bits = end_bit - st_bit + 1;
639 (l >> st_bit) & mask, time);
641 l &= ~(mask << st_bit);
642 l |= ticks << st_bit;