blob: a7b65ad0dd758d187769a2af61d473fafe529b1c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/* This file is dual-licensed; see usr/src/contrib/bhyve/LICENSE */
/*
* Copyright 2018 Joyent, Inc
*/
#ifndef _PPT_DEV_H
#define _PPT_DEV_H
#ifdef __cplusplus
extern "C" {
#endif
#define PPT_IOC (('P' << 16)|('T' << 8))
#define PPT_CFG_READ (PPT_IOC | 0x01)
#define PPT_CFG_WRITE (PPT_IOC | 0x02)
#define PPT_BAR_QUERY (PPT_IOC | 0x03)
#define PPT_BAR_READ (PPT_IOC | 0x04)
#define PPT_BAR_WRITE (PPT_IOC | 0x05)
#define PPT_MAXNAMELEN 32
struct ppt_cfg_io {
uint64_t pci_off;
uint32_t pci_width;
uint32_t pci_data;
};
struct ppt_bar_io {
uint32_t pbi_bar;
uint32_t pbi_off;
uint32_t pbi_width;
uint32_t pbi_data;
};
struct ppt_bar_query {
uint32_t pbq_baridx;
uint32_t pbq_type;
uint64_t pbq_base;
uint64_t pbq_size;
};
#ifdef __cplusplus
}
#endif
#endif /* _PPT_DEV_H */
|