packet.cc (12823:ba630bc7a36d) packet.cc (13367:dc06baae4275)
1/*
2 * Copyright (c) 2011-2018 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

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

100 /* WriteClean - This allows a cache to write a dirty block to a memory
101 below without evicting its copy. */
102 { SET4(IsWrite, IsRequest, HasData, FromCache), InvalidCmd, "WriteClean" },
103 /* CleanEvict */
104 { SET3(IsRequest, IsEviction, FromCache), InvalidCmd, "CleanEvict" },
105 /* SoftPFReq */
106 { SET4(IsRead, IsRequest, IsSWPrefetch, NeedsResponse),
107 SoftPFResp, "SoftPFReq" },
1/*
2 * Copyright (c) 2011-2018 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

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

100 /* WriteClean - This allows a cache to write a dirty block to a memory
101 below without evicting its copy. */
102 { SET4(IsWrite, IsRequest, HasData, FromCache), InvalidCmd, "WriteClean" },
103 /* CleanEvict */
104 { SET3(IsRequest, IsEviction, FromCache), InvalidCmd, "CleanEvict" },
105 /* SoftPFReq */
106 { SET4(IsRead, IsRequest, IsSWPrefetch, NeedsResponse),
107 SoftPFResp, "SoftPFReq" },
108 /* SoftPFExReq */
109 { SET6(IsRead, NeedsWritable, IsInvalidate, IsRequest,
110 IsSWPrefetch, NeedsResponse), SoftPFResp, "SoftPFExReq" },
108 /* HardPFReq */
109 { SET5(IsRead, IsRequest, IsHWPrefetch, NeedsResponse, FromCache),
110 HardPFResp, "HardPFReq" },
111 /* SoftPFResp */
112 { SET4(IsRead, IsResponse, IsSWPrefetch, HasData),
113 InvalidCmd, "SoftPFResp" },
114 /* HardPFResp */
115 { SET4(IsRead, IsResponse, IsHWPrefetch, HasData),

--- 325 unchanged lines hidden ---
111 /* HardPFReq */
112 { SET5(IsRead, IsRequest, IsHWPrefetch, NeedsResponse, FromCache),
113 HardPFResp, "HardPFReq" },
114 /* SoftPFResp */
115 { SET4(IsRead, IsResponse, IsSWPrefetch, HasData),
116 InvalidCmd, "SoftPFResp" },
117 /* HardPFResp */
118 { SET4(IsRead, IsResponse, IsHWPrefetch, HasData),

--- 325 unchanged lines hidden ---