1/*	$NetBSD: hdmi.h,v 1.2 2021/12/18 23:45:35 riastradh Exp $	*/
2
3/* SPDX-License-Identifier: MIT */
4#ifndef __NVKM_DISP_HDMI_H__
5#define __NVKM_DISP_HDMI_H__
6#include "ior.h"
7
8struct packed_hdmi_infoframe {
9	u32 header;
10	u32 subpack0_low;
11	u32 subpack0_high;
12	u32 subpack1_low;
13	u32 subpack1_high;
14};
15
16void pack_hdmi_infoframe(struct packed_hdmi_infoframe *packed_frame,
17			 u8 *raw_frame, ssize_t len);
18#endif
19