drivers/gpu/drm/i915/display/g4x_hdmi.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/i915/display/g4x_hdmi.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/i915/display/g4x_hdmi.h
Extension
.h
Size
767 bytes
Lines
37
Domain
Driver Families
Bucket
drivers/gpu
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _G4X_HDMI_H_
#define _G4X_HDMI_H_

#include <linux/types.h>

#include "intel_display_reg_defs.h"

enum port;
struct drm_atomic_commit;
struct drm_connector;
struct intel_display;

#ifdef I915
bool g4x_hdmi_init(struct intel_display *display,
		   intel_reg_t hdmi_reg, enum port port);
int g4x_hdmi_connector_atomic_check(struct drm_connector *connector,
				    struct drm_atomic_commit *state);
#else
static inline bool g4x_hdmi_init(struct intel_display *display,
				 intel_reg_t hdmi_reg, int port)
{
	return false;
}
static inline int g4x_hdmi_connector_atomic_check(struct drm_connector *connector,
						  struct drm_atomic_commit *state)
{
	return 0;
}
#endif

#endif

Annotation

Implementation Notes