1/*
2 * Copyright (c) 2016, ETH Zurich. All rights reserved.
3 *
4 * This file is distributed under the terms in the attached LICENSE file.
5 * If you do not find this file, copies can be found by writing to:
6 * ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
7 */
8
9/*
10 * msix.dev
11 *
12 * DESCRIPTION: MSIx Table specification
13 * 
14 * According to PCI Spec V3, section, 6.8.2
15 */
16device msix lsbfirst ( addr base ) "MSIx Table Structure" {
17  regarray vec_control addr(base, 0x0)[2048;0x10] "Vector Control" type(uint32);
18  regarray msg_data addr(base, 0x4)[2048;0x10] "Msg Data" type(uint32);
19  regarray msg_addr addr(base, 0x8)[2048;0x10] "Msg Addr" type(uint64);
20};
21
22