Lines Matching refs:st_bit
418 * @st_bit: Start Bit
419 * @end_bit: End Bit. Must be >= @st_bit.
421 * If 0, maximum is as high as @st_bit and @end_bit allow.
436 int cs, int reg, int st_bit, int end_bit, int max,
449 nr_bits = end_bit - st_bit + 1;
451 l = (l >> st_bit) & mask;
600 * @st_bit: Start Bit
601 * @end_bit: End Bit. Must be >= @st_bit.
603 * If 0, maximum is as high as @st_bit and @end_bit allow.
609 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, int max,
619 nr_bits = end_bit - st_bit + 1;
636 (l >> st_bit) & mask, time);
638 l &= ~(mask << st_bit);
639 l |= ticks << st_bit;