2019-06-20 00:13:43 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
2012-12-07 00:31:09 +00:00
|
|
|
#ifndef __NVBIOS_XPIO_H__
|
|
|
|
#define __NVBIOS_XPIO_H__
|
|
|
|
|
|
|
|
#define NVBIOS_XPIO_FLAG_AUX 0x10
|
|
|
|
#define NVBIOS_XPIO_FLAG_AUX0 0x00
|
|
|
|
#define NVBIOS_XPIO_FLAG_AUX1 0x10
|
|
|
|
|
|
|
|
struct nvbios_xpio {
|
|
|
|
u8 type;
|
|
|
|
u8 addr;
|
|
|
|
u8 flags;
|
|
|
|
};
|
|
|
|
|
2015-01-14 04:40:03 +00:00
|
|
|
u16 dcb_xpio_table(struct nvkm_bios *, u8 idx,
|
2012-12-07 00:31:09 +00:00
|
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len);
|
2015-01-14 04:40:03 +00:00
|
|
|
u16 dcb_xpio_parse(struct nvkm_bios *, u8 idx,
|
2012-12-07 00:31:09 +00:00
|
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len, struct nvbios_xpio *);
|
|
|
|
#endif
|