2019-06-19 20:13:43 -04:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2013-01-15 08:33:25 +10:00
|
|
|
#ifndef __NVBIOS_TIMING_H__
|
|
|
|
|
#define __NVBIOS_TIMING_H__
|
2015-01-14 14:40:03 +10:00
|
|
|
#include <subdev/bios/ramcfg.h>
|
2013-01-15 08:33:25 +10:00
|
|
|
|
2016-11-18 11:16:49 +10:00
|
|
|
u32 nvbios_timingTe(struct nvkm_bios *,
|
2013-11-30 11:40:55 +10:00
|
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *snr, u8 *ssz);
|
2016-11-18 11:16:49 +10:00
|
|
|
u32 nvbios_timingEe(struct nvkm_bios *, int idx,
|
2013-11-30 11:40:55 +10:00
|
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len);
|
2016-11-18 11:16:49 +10:00
|
|
|
u32 nvbios_timingEp(struct nvkm_bios *, int idx,
|
2015-01-14 14:40:03 +10:00
|
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len, struct nvbios_ramcfg *);
|
2013-01-15 08:33:25 +10:00
|
|
|
#endif
|