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