dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
36 lines
797 B
C
36 lines
797 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (c) 2025 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __INNO_HDMI__
|
|
#define __INNO_HDMI__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct device;
|
|
struct drm_encoder;
|
|
struct drm_display_mode;
|
|
struct inno_hdmi;
|
|
|
|
struct inno_hdmi_plat_ops {
|
|
void (*enable)(struct device *pdev, struct drm_display_mode *mode);
|
|
};
|
|
|
|
struct inno_hdmi_phy_config {
|
|
unsigned long pixelclock;
|
|
u8 pre_emphasis;
|
|
u8 voltage_level_control;
|
|
};
|
|
|
|
struct inno_hdmi_plat_data {
|
|
const struct inno_hdmi_plat_ops *ops;
|
|
struct inno_hdmi_phy_config *phy_configs;
|
|
struct inno_hdmi_phy_config *default_phy_config;
|
|
};
|
|
|
|
struct inno_hdmi *inno_hdmi_bind(struct device *pdev,
|
|
struct drm_encoder *encoder,
|
|
const struct inno_hdmi_plat_data *plat_data);
|
|
#endif /* __INNO_HDMI__ */
|