blob: 398c1ad0cc0ac25889a5cf397a672d75d0bf990e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
* Copyright (c) 2026, Broadcom Inc
*/
#ifndef _UAPI_FWCTL_BNXT_H_
#define _UAPI_FWCTL_BNXT_H_
#include <linux/types.h>
enum fwctl_bnxt_commands {
FWCTL_BNXT_INLINE_COMMANDS = 0,
FWCTL_BNXT_QUERY_COMMANDS,
FWCTL_BNXT_SEND_COMMANDS,
FWCTL_BNXT_DMA_COMMANDS,
};
/**
* struct fwctl_info_bnxt - ioctl(FWCTL_INFO) out_device_data
* @uctx_caps: The command capabilities driver accepts.
*
* Return basic information about the FW interface available.
*/
struct fwctl_info_bnxt {
__u32 uctx_caps;
};
#define FWCTL_BNXT_MAX_DMABUF 0x10000 /* 64 KiB */
#endif
|