Lines Matching full:period

17 				 unsigned long period)  in mipi_dphy_timing_get_default()  argument
20 timing->clkpost = 70 + 52 * period; in mipi_dphy_timing_get_default()
30 timing->hsprepare = 65 + 5 * period; in mipi_dphy_timing_get_default()
31 timing->hszero = 145 + 5 * period; in mipi_dphy_timing_get_default()
32 timing->hssettle = 85 + 6 * period; in mipi_dphy_timing_get_default()
39 * T_HS-TRAIL = max(n * 8 * period, 60 + n * 4 * period) in mipi_dphy_timing_get_default()
43 * not parameterize on anything other that period, so this code will in mipi_dphy_timing_get_default()
46 timing->hstrail = max(4 * 8 * period, 60 + 4 * 4 * period); in mipi_dphy_timing_get_default()
63 unsigned long period) in mipi_dphy_timing_validate() argument
68 if (timing->clkpost < (60 + 52 * period)) in mipi_dphy_timing_validate()
89 if (timing->dtermen > 35 + 4 * period) in mipi_dphy_timing_validate()
92 if (timing->eot > 105 + 12 * period) in mipi_dphy_timing_validate()
98 if (timing->hsprepare < 40 + 4 * period || in mipi_dphy_timing_validate()
99 timing->hsprepare > 85 + 6 * period) in mipi_dphy_timing_validate()
102 if (timing->hsprepare + timing->hszero < 145 + 10 * period) in mipi_dphy_timing_validate()
105 if ((timing->hssettle < 85 + 6 * period) || in mipi_dphy_timing_validate()
106 (timing->hssettle > 145 + 10 * period)) in mipi_dphy_timing_validate()
109 if (timing->hsskip < 40 || timing->hsskip > 55 + 4 * period) in mipi_dphy_timing_validate()
112 if (timing->hstrail < max(8 * period, 60 + 4 * period)) in mipi_dphy_timing_validate()