mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
Add initial mft source of version-4.26.1-3 from https://www.mellanox.com/downloads/MFT/mft-4.26.1-3-arm64-deb.tgz bug 4192483 bug 4312056 Change-Id: I77c0af297c9833c3dcbcdfc89b316042548b9af8 Signed-off-by: Bharath H S <bhs@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3069977 (cherry picked from commit d65df2a986469950aab3f323bbee3a3aee0c0308) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3069972 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
15 lines
636 B
C
15 lines
636 B
C
#ifndef NNT_IOCTL_H
|
|
#define NNT_IOCTL_H
|
|
|
|
#include "nnt_device_defs.h"
|
|
|
|
int dma_pages_ioctl(unsigned int command, void* user_buffer,
|
|
struct nnt_device* nnt_device);
|
|
int read_dword_ioctl(unsigned int command, void* user_buffer,
|
|
struct nnt_device* nnt_device);
|
|
int get_nnt_device_parameters(struct nnt_device_parameters* nnt_parameters, struct nnt_device* nnt_device);
|
|
int pci_connectx_wa(struct nnt_connectx_wa* connectx_wa, struct nnt_device* nnt_device);
|
|
int vpd_read(struct nnt_vpd* vpd, struct nnt_device* nnt_device);
|
|
int vpd_write(struct nnt_vpd* vpd, struct nnt_device* nnt_device);
|
|
#endif
|