packet.proto (9610:f3bc408cb5e1) packet.proto (10107:524afa92d940)
1// Copyright (c) 2012-2013 ARM Limited
2// All rights reserved
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

--- 47 unchanged lines hidden (view full) ---

56// the packet or the "owner" of the packet. An example of the latter
57// is the sequential id of an instruction, or the master id etc.
58message Packet {
59 required uint64 tick = 1;
60 required uint32 cmd = 2;
61 required uint64 addr = 3;
62 required uint32 size = 4;
63 optional uint32 flags = 5;
1// Copyright (c) 2012-2013 ARM Limited
2// All rights reserved
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

--- 47 unchanged lines hidden (view full) ---

56// the packet or the "owner" of the packet. An example of the latter
57// is the sequential id of an instruction, or the master id etc.
58message Packet {
59 required uint64 tick = 1;
60 required uint32 cmd = 2;
61 required uint64 addr = 3;
62 required uint32 size = 4;
63 optional uint32 flags = 5;
64 optional uint64 id = 6;
64 optional uint64 pkt_id = 6;
65}
65}