mirror of
https://github.com/torvalds/linux.git
synced 2025-11-03 18:20:25 +02:00
Add a common allocator function for struct intel_digital_port, with some member default initialization to deduplicate them from everywhere else. This is similar to intel_connector_alloc(). At least for now, place this in intel_encoder.[ch]. We don't have a dedicated file for dig port stuff, and there wouldn't be much to add there anyway. A digital port is a sort of subclass of encoder, so the location isn't far off the mark. Reviewed-by: Dibin Moolakadan Subrahmanian <dibin.moolakadan.subrahmanian@intel.com> Link: https://lore.kernel.org/r/4d2da1a40698f85014140f586405b19795437e81.1753787803.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
26 lines
847 B
C
26 lines
847 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_ENCODER_H__
|
|
#define __INTEL_ENCODER_H__
|
|
|
|
struct intel_digital_port;
|
|
struct intel_display;
|
|
struct intel_encoder;
|
|
|
|
void intel_encoder_link_check_init(struct intel_encoder *encoder,
|
|
void (*callback)(struct intel_encoder *encoder));
|
|
void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int delay_ms);
|
|
void intel_encoder_link_check_flush_work(struct intel_encoder *encoder);
|
|
|
|
void intel_encoder_suspend_all(struct intel_display *display);
|
|
void intel_encoder_shutdown_all(struct intel_display *display);
|
|
|
|
void intel_encoder_block_all_hpds(struct intel_display *display);
|
|
void intel_encoder_unblock_all_hpds(struct intel_display *display);
|
|
|
|
struct intel_digital_port *intel_dig_port_alloc(void);
|
|
|
|
#endif /* __INTEL_ENCODER_H__ */
|