Lines Matching full:output

42  * struct zl3073x_out - output invariant info
163 * zl3073x_output_pin_out_get - get output for the given output pin
164 * @id: output pin id
166 * Return: output id for the given output pin
171 /* Output pin pair shares the single output */ in zl3073x_output_pin_out_get()
254 * zl3073x_out_synth_get - get synth connected to given output
256 * @index: output index
258 * Return: index of synth connected to given output.
267 * zl3073x_out_is_enabled - check if the given output is enabled
269 * @index: output index
271 * Return: true if the output is enabled, false otherwise
278 /* Output is enabled only if associated synth is enabled */ in zl3073x_out_is_enabled()
287 * zl3073x_out_signal_format_get - get output signal format
289 * @index: output index
291 * Return: signal format of given output
300 * zl3073x_out_dpll_get - get DPLL ID the output is driven by
302 * @index: output index
304 * Return: ID of DPLL the given output is driven by
311 /* Get synthesizer connected to given output */ in zl3073x_out_dpll_get()
319 * zl3073x_out_is_diff - check if the given output is differential
321 * @index: output index
323 * Return: true if output is differential, false if output is single-ended
341 * zl3073x_output_pin_is_enabled - check if the given output pin is enabled
343 * @id: output pin id
345 * Checks if the output of the given output pin is enabled and also that
348 * Return: true if output pin is enabled, false if output pin is disabled
353 u8 output = zl3073x_output_pin_out_get(id); in zl3073x_output_pin_is_enabled() local
355 /* Check if the whole output is enabled */ in zl3073x_output_pin_is_enabled()
356 if (!zl3073x_out_is_enabled(zldev, output)) in zl3073x_output_pin_is_enabled()
360 switch (zl3073x_out_signal_format_get(zldev, output)) { in zl3073x_output_pin_is_enabled()
362 /* Both output pins are disabled by signal format */ in zl3073x_output_pin_is_enabled()
366 /* Output is one single ended P-pin output */ in zl3073x_output_pin_is_enabled()
371 /* Output is one single ended N-pin output */ in zl3073x_output_pin_is_enabled()