net/hns3: support fixed link speed
[dpdk.git] / lib / librte_eal / common / eal_options.h
index 58ee9ae..7b348e7 100644 (file)
@@ -5,12 +5,20 @@
 #ifndef EAL_OPTIONS_H
 #define EAL_OPTIONS_H
 
+#include "getopt.h"
+
+struct rte_tel_data;
+
 enum {
        /* long options mapped to a short option */
 #define OPT_HELP              "help"
        OPT_HELP_NUM            = 'h',
-#define OPT_PCI_BLACKLIST     "pci-blacklist"
-       OPT_PCI_BLACKLIST_NUM   = 'b',
+#define OPT_DEV_ALLOW        "allow"
+       OPT_DEV_ALLOW_NUM       = 'a',
+#define OPT_DEV_BLOCK         "block"
+       OPT_DEV_BLOCK_NUM      = 'b',
+
+       /* legacy option that will be removed in future */
 #define OPT_PCI_WHITELIST     "pci-whitelist"
        OPT_PCI_WHITELIST_NUM   = 'w',
 
@@ -31,6 +39,16 @@ enum {
        OPT_LCORES_NUM,
 #define OPT_LOG_LEVEL         "log-level"
        OPT_LOG_LEVEL_NUM,
+#define OPT_TRACE             "trace"
+       OPT_TRACE_NUM,
+#define OPT_TRACE_DIR         "trace-dir"
+       OPT_TRACE_DIR_NUM,
+#define OPT_TRACE_BUF_SIZE    "trace-bufsz"
+       OPT_TRACE_BUF_SIZE_NUM,
+#define OPT_TRACE_MODE        "trace-mode"
+       OPT_TRACE_MODE_NUM,
+#define OPT_MAIN_LCORE        "main-lcore"
+       OPT_MAIN_LCORE_NUM,
 #define OPT_MASTER_LCORE      "master-lcore"
        OPT_MASTER_LCORE_NUM,
 #define OPT_MBUF_POOL_OPS_NAME "mbuf-pool-ops-name"
@@ -57,6 +75,8 @@ enum {
        OPT_VDEV_NUM,
 #define OPT_VFIO_INTR         "vfio-intr"
        OPT_VFIO_INTR_NUM,
+#define OPT_VFIO_VF_TOKEN     "vfio-vf-token"
+       OPT_VFIO_VF_TOKEN_NUM,
 #define OPT_VMWARE_TSC_MAP    "vmware-tsc-map"
        OPT_VMWARE_TSC_MAP_NUM,
 #define OPT_LEGACY_MEM    "legacy-mem"
@@ -67,6 +87,17 @@ enum {
        OPT_IOVA_MODE_NUM,
 #define OPT_MATCH_ALLOCATIONS  "match-allocations"
        OPT_MATCH_ALLOCATIONS_NUM,
+#define OPT_TELEMETRY         "telemetry"
+       OPT_TELEMETRY_NUM,
+#define OPT_NO_TELEMETRY      "no-telemetry"
+       OPT_NO_TELEMETRY_NUM,
+#define OPT_FORCE_MAX_SIMD_BITWIDTH  "force-max-simd-bitwidth"
+       OPT_FORCE_MAX_SIMD_BITWIDTH_NUM,
+
+       /* legacy option that will be removed in future */
+#define OPT_PCI_BLACKLIST     "pci-blacklist"
+       OPT_PCI_BLACKLIST_NUM,
+
        OPT_LONG_MAX_NUM
 };
 
@@ -82,5 +113,8 @@ int eal_check_common_options(struct internal_config *internal_cfg);
 void eal_common_usage(void);
 enum rte_proc_type_t eal_proc_type_detect(void);
 int eal_plugins_init(void);
+int eal_save_args(int argc, char **argv);
+int handle_eal_info_request(const char *cmd, const char *params __rte_unused,
+               struct rte_tel_data *d);
 
 #endif /* EAL_OPTIONS_H */