]> rtime.felk.cvut.cz Git - jailhouse.git/blob - configs/e1000-demo.c
inmates: x86: Add E1000-based PCI DMA demonstration
[jailhouse.git] / configs / e1000-demo.c
1 /*
2  * Jailhouse, a Linux-based partitioning hypervisor
3  *
4  * Minimal configuration for PCI demo inmate:
5  * 1 CPU, 1 MB RAM, 1 serial port, 1 Intel HDA PCI device
6  *
7  * Copyright (c) Siemens AG, 2014
8  *
9  * Authors:
10  *  Jan Kiszka <jan.kiszka@siemens.com>
11  *
12  * This work is licensed under the terms of the GNU GPL, version 2.  See
13  * the COPYING file in the top-level directory.
14  */
15
16 #include <linux/types.h>
17 #include <jailhouse/cell-config.h>
18
19 #define ARRAY_SIZE(a) sizeof(a) / sizeof(a[0])
20
21 struct {
22         struct jailhouse_cell_desc cell;
23         __u64 cpus[1];
24         struct jailhouse_memory mem_regions[3];
25         __u8 pio_bitmap[0x2000];
26         struct jailhouse_pci_device pci_devices[1];
27         struct jailhouse_pci_capability pci_caps[1];
28 } __attribute__((packed)) config = {
29         .cell = {
30                 .name = "e1000-demo",
31                 .flags = JAILHOUSE_CELL_PASSIVE_COMMREG,
32
33                 .cpu_set_size = sizeof(config.cpus),
34                 .num_memory_regions = ARRAY_SIZE(config.mem_regions),
35                 .num_irqchips = 0,
36                 .pio_bitmap_size = ARRAY_SIZE(config.pio_bitmap),
37                 .num_pci_devices = ARRAY_SIZE(config.pci_devices),
38                 .num_pci_caps = ARRAY_SIZE(config.pci_caps),
39         },
40
41         .cpus = {
42                 0x4,
43         },
44
45         .mem_regions = {
46                 /* RAM */ {
47                         .phys_start = 0x3f100000,
48                         .virt_start = 0,
49                         .size = 0x00100000,
50                         .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
51                                 JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_DMA |
52                                 JAILHOUSE_MEM_LOADABLE,
53                 },
54                 /* communication region */ {
55                         .virt_start = 0x00100000,
56                         .size = 0x00001000,
57                         .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
58                                 JAILHOUSE_MEM_COMM_REGION,
59                 },
60                 /* e1000 BAR0 */ {
61                         .phys_start = 0xfebc0000,
62                         .virt_start = 0xfebc0000,
63                         .size = 0x00020000,
64                         .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE,
65                 },
66         },
67
68         .pio_bitmap = {
69                 [     0/8 ...  0x2f7/8] = -1,
70                 [ 0x2f8/8 ...  0x2ff/8] = 0, /* serial2 */
71                 [ 0x300/8 ... 0xcfff/8] = -1,
72                 [0xc000/8 ... 0xc03f/8] = 0, /* e1000 */
73                 [0xc040/8 ... 0xdfff/8] = -1,
74                 [0xe000/8 ... 0xe007/8] = 0, /* OXPCIe952 serial2 */
75                 [0xe008/8 ... 0xffff/8] = -1,
76         },
77
78         .pci_devices = {
79                 { /* Intel e1000 @00:19.0 */
80                         .type = JAILHOUSE_PCI_TYPE_DEVICE,
81                         .domain = 0x0000,
82                         .bdf = 0x00c8,
83                         .caps_start = 0,
84                         .num_caps = 1,
85                         .num_msi_vectors = 1,
86                         .msi_64bits = 1,
87                 },
88         },
89
90         .pci_caps = {
91                 { /* Intel e1000 @00:19.0 */
92                         .id = 0x5,
93                         .start = 0xd0,
94                         .len = 14,
95                         .flags = JAILHOUSE_PCICAPS_WRITE,
96                 },
97         },
98 };