Lines Matching defs:st_bit
407 * @st_bit: Start Bit
408 * @end_bit: End Bit. Must be >= @st_bit.
410 * If 0, maximum is as high as @st_bit and @end_bit allow.
425 int cs, int reg, int st_bit, int end_bit, int max,
438 nr_bits = end_bit - st_bit + 1;
440 l = (l >> st_bit) & mask;
589 * @st_bit: Start Bit
590 * @end_bit: End Bit. Must be >= @st_bit.
592 * If 0, maximum is as high as @st_bit and @end_bit allow.
598 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, int max,
608 nr_bits = end_bit - st_bit + 1;
625 (l >> st_bit) & mask, time);
627 l &= ~(mask << st_bit);
628 l |= ticks << st_bit;