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.
435 int cs, int reg, int st_bit, int end_bit, int max,
445 nr_bits = end_bit - st_bit + 1;
447 l = (l >> st_bit) & mask;
596 * @st_bit: Start Bit
597 * @end_bit: End Bit. Must be >= @st_bit.
599 * If 0, maximum is as high as @st_bit and @end_bit allow.
605 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, int max,
615 nr_bits = end_bit - st_bit + 1;
632 (l >> st_bit) & mask, time);
634 l &= ~(mask << st_bit);
635 l |= ticks << st_bit;