packet.cc (9018:4fbbd05809d2) packet.cc (9165:f9e3dac185ba)
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

149 /* SwapResp -- for Swap ldstub type operations */
150 { SET5(IsRead, IsWrite, NeedsExclusive, IsResponse, HasData),
151 InvalidCmd, "SwapResp" },
152 /* IntReq -- for interrupts */
153 { SET4(IsWrite, IsRequest, NeedsResponse, HasData),
154 MessageResp, "MessageReq" },
155 /* IntResp -- for interrupts */
156 { SET2(IsWrite, IsResponse), InvalidCmd, "MessageResp" },
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

149 /* SwapResp -- for Swap ldstub type operations */
150 { SET5(IsRead, IsWrite, NeedsExclusive, IsResponse, HasData),
151 InvalidCmd, "SwapResp" },
152 /* IntReq -- for interrupts */
153 { SET4(IsWrite, IsRequest, NeedsResponse, HasData),
154 MessageResp, "MessageReq" },
155 /* IntResp -- for interrupts */
156 { SET2(IsWrite, IsResponse), InvalidCmd, "MessageResp" },
157 /* NetworkNackError -- nacked at network layer (not by protocol) */
158 { SET2(IsResponse, IsError), InvalidCmd, "NetworkNackError" },
159 /* InvalidDestError -- packet dest field invalid */
160 { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
161 /* BadAddressError -- memory address invalid */
162 { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
163 /* FunctionalReadError */
164 { SET3(IsRead, IsResponse, IsError), InvalidCmd, "FunctionalReadError" },
165 /* FunctionalWriteError */
166 { SET3(IsWrite, IsResponse, IsError), InvalidCmd, "FunctionalWriteError" },

--- 219 unchanged lines hidden ---
157 /* InvalidDestError -- packet dest field invalid */
158 { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
159 /* BadAddressError -- memory address invalid */
160 { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
161 /* FunctionalReadError */
162 { SET3(IsRead, IsResponse, IsError), InvalidCmd, "FunctionalReadError" },
163 /* FunctionalWriteError */
164 { SET3(IsWrite, IsResponse, IsError), InvalidCmd, "FunctionalWriteError" },

--- 219 unchanged lines hidden ---