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_e1000.dev
11 * According to Intel 82574 gigabit ethernet card
12 */
13device msix_e1000 lsbfirst ( addr base ) "E1000 MSIx Table Structure" {
14  regarray msg_addr addr(base, 0x0)[4;0x10] "Address" type(uint64);
15  regarray msg_data addr(base, 0x8)[4;0x10] "Message" type(uint32);
16  regarray vec_control addr(base, 0xC)[4;0x10] "Vector Control" type(uint32);
17};
18