xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/timing.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: timing.h,v 1.3 2021/12/18 23:45:33 riastradh Exp $	*/
2 
3 /* SPDX-License-Identifier: MIT */
4 #ifndef __NVBIOS_TIMING_H__
5 #define __NVBIOS_TIMING_H__
6 #include <subdev/bios/ramcfg.h>
7 
8 u32 nvbios_timingTe(struct nvkm_bios *,
9 		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *snr, u8 *ssz);
10 u32 nvbios_timingEe(struct nvkm_bios *, int idx,
11 		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len);
12 u32 nvbios_timingEp(struct nvkm_bios *, int idx,
13 		    u8 *ver, u8 *hdr, u8 *cnt, u8 *len, struct nvbios_ramcfg *);
14 #endif
15