Lines Matching refs:f_LO_Step
1379 static u32 MT2063_Round_fLO(u32 f_LO, u32 f_LO_Step, u32 f_ref)
1382 + f_LO_Step * (((f_LO % f_ref) + (f_LO_Step / 2)) / f_LO_Step);
1418 * evenly divisible by f_LO_Step.
1423 * @f_LO_Step: Minimum step size for the LO (in Hz).
1433 u32 f_LO_Step, u32 f_Ref)
1438 /* Calculate the numerator value (round to nearest f_LO_Step) */
1440 (64 * (((f_LO % f_Ref) + (f_LO_Step / 2)) / f_LO_Step) +
1441 (f_Ref / f_LO_Step / 2)) / (f_Ref / f_LO_Step);
1451 * evenly divisible by f_LO_Step.
1456 * @f_LO_Step: Minimum step size for the LO (in Hz).
1464 u32 f_LO_Step, u32 f_Ref)
1469 /* Calculate the numerator value (round to nearest f_LO_Step) */
1471 (8191 * (((f_LO % f_Ref) + (f_LO_Step / 2)) / f_LO_Step) +
1472 (f_Ref / f_LO_Step / 2)) / (f_Ref / f_LO_Step);