forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: MIT */
#ifndef __NVKM_DISP_HDMI_H__
#define __NVKM_DISP_HDMI_H__
#include "ior.h"
 
struct packed_hdmi_infoframe {
   u32 header;
   u32 subpack0_low;
   u32 subpack0_high;
   u32 subpack1_low;
   u32 subpack1_high;
};
 
void pack_hdmi_infoframe(struct packed_hdmi_infoframe *packed_frame,
            u8 *raw_frame, ssize_t len);
#endif