DPDK
18.02.2
Main Page
Related Pages
Data Structures
Files
Examples
File List
Globals
lib
librte_ether
rte_dev_info.h
1
/* SPDX-License-Identifier: BSD-3-Clause
2
* Copyright(c) 2015 Intel Corporation
3
*/
4
5
#ifndef _RTE_DEV_INFO_H_
6
#define _RTE_DEV_INFO_H_
7
8
#include <stdint.h>
9
10
/*
11
* Placeholder for accessing device registers
12
*/
13
struct
rte_dev_reg_info {
14
void
*data;
15
uint32_t offset;
16
uint32_t length;
17
uint32_t width;
18
uint32_t version;
19
};
20
21
/*
22
* Placeholder for accessing device eeprom
23
*/
24
struct
rte_dev_eeprom_info {
25
void
*data;
26
uint32_t offset;
27
uint32_t length;
28
uint32_t magic;
29
};
30
31
#endif
/* _RTE_DEV_INFO_H_ */
Generated by
1.8.1.2