mem: Fix guest corruption when caches handle uncacheable accesses
[gem5.git] / src / mem / protocol / MOESI_CMP_token-dma.sm
1 /*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29
30 machine(DMA, "DMA Controller")
31 : DMASequencer * dma_sequencer,
32 int request_latency = 6
33 {
34
35 MessageBuffer responseFromDir, network="From", virtual_network="5", ordered="true", vnet_type="response", no_vector="true";
36 MessageBuffer reqToDirectory, network="To", virtual_network="0", ordered="false", vnet_type="request", no_vector="true";
37
38 state_declaration(State, desc="DMA states", default="DMA_State_READY") {
39 READY, AccessPermission:Invalid, desc="Ready to accept a new request";
40 BUSY_RD, AccessPermission:Busy, desc="Busy: currently processing a request";
41 BUSY_WR, AccessPermission:Busy, desc="Busy: currently processing a request";
42 }
43
44 enumeration(Event, desc="DMA events") {
45 ReadRequest, desc="A new read request";
46 WriteRequest, desc="A new write request";
47 Data, desc="Data from a DMA memory read";
48 Ack, desc="DMA write to memory completed";
49 }
50
51 structure(DMASequencer, external="yes") {
52 void ackCallback();
53 void dataCallback(DataBlock);
54 }
55
56 MessageBuffer mandatoryQueue, ordered="false", no_vector="true";
57 State cur_state, no_vector="true";
58
59 State getState(Address addr) {
60 return cur_state;
61 }
62 void setState(Address addr, State state) {
63 cur_state := state;
64 }
65
66 AccessPermission getAccessPermission(Address addr) {
67 return AccessPermission:NotPresent;
68 }
69
70 void setAccessPermission(Address addr, State state) {
71 }
72
73 DataBlock getDataBlock(Address addr), return_by_ref="yes" {
74 error("DMA Controller does not support getDataBlock function.\n");
75 }
76
77 out_port(reqToDirectory_out, DMARequestMsg, reqToDirectory, desc="...");
78
79 in_port(dmaRequestQueue_in, SequencerMsg, mandatoryQueue, desc="...") {
80 if (dmaRequestQueue_in.isReady()) {
81 peek(dmaRequestQueue_in, SequencerMsg) {
82 if (in_msg.Type == SequencerRequestType:LD ) {
83 trigger(Event:ReadRequest, in_msg.LineAddress);
84 } else if (in_msg.Type == SequencerRequestType:ST) {
85 trigger(Event:WriteRequest, in_msg.LineAddress);
86 } else {
87 error("Invalid request type");
88 }
89 }
90 }
91 }
92
93 in_port(dmaResponseQueue_in, DMAResponseMsg, responseFromDir, desc="...") {
94 if (dmaResponseQueue_in.isReady()) {
95 peek( dmaResponseQueue_in, DMAResponseMsg) {
96 if (in_msg.Type == DMAResponseType:ACK) {
97 trigger(Event:Ack, in_msg.LineAddress);
98 } else if (in_msg.Type == DMAResponseType:DATA) {
99 trigger(Event:Data, in_msg.LineAddress);
100 } else {
101 error("Invalid response type");
102 }
103 }
104 }
105 }
106
107 action(s_sendReadRequest, "s", desc="Send a DMA read request to memory") {
108 peek(dmaRequestQueue_in, SequencerMsg) {
109 enqueue(reqToDirectory_out, DMARequestMsg, latency=request_latency) {
110 out_msg.PhysicalAddress := in_msg.PhysicalAddress;
111 out_msg.LineAddress := in_msg.LineAddress;
112 out_msg.Type := DMARequestType:READ;
113 out_msg.Requestor := machineID;
114 out_msg.DataBlk := in_msg.DataBlk;
115 out_msg.Len := in_msg.Len;
116 out_msg.Destination.add(map_Address_to_Directory(address));
117 out_msg.MessageSize := MessageSizeType:Writeback_Control;
118 }
119 }
120 }
121
122 action(s_sendWriteRequest, "\s", desc="Send a DMA write request to memory") {
123 peek(dmaRequestQueue_in, SequencerMsg) {
124 enqueue(reqToDirectory_out, DMARequestMsg, latency=request_latency) {
125 out_msg.PhysicalAddress := in_msg.PhysicalAddress;
126 out_msg.LineAddress := in_msg.LineAddress;
127 out_msg.Type := DMARequestType:WRITE;
128 out_msg.Requestor := machineID;
129 out_msg.DataBlk := in_msg.DataBlk;
130 out_msg.Len := in_msg.Len;
131 out_msg.Destination.add(map_Address_to_Directory(address));
132 out_msg.MessageSize := MessageSizeType:Writeback_Control;
133 }
134 }
135 }
136
137 action(a_ackCallback, "a", desc="Notify dma controller that write request completed") {
138 peek (dmaResponseQueue_in, DMAResponseMsg) {
139 dma_sequencer.ackCallback();
140 }
141 }
142
143 action(d_dataCallback, "d", desc="Write data to dma sequencer") {
144 peek (dmaResponseQueue_in, DMAResponseMsg) {
145 dma_sequencer.dataCallback(in_msg.DataBlk);
146 }
147 }
148
149 action(p_popRequestQueue, "p", desc="Pop request queue") {
150 dmaRequestQueue_in.dequeue();
151 }
152
153 action(p_popResponseQueue, "\p", desc="Pop request queue") {
154 dmaResponseQueue_in.dequeue();
155 }
156
157 transition(READY, ReadRequest, BUSY_RD) {
158 s_sendReadRequest;
159 p_popRequestQueue;
160 }
161
162 transition(READY, WriteRequest, BUSY_WR) {
163 s_sendWriteRequest;
164 p_popRequestQueue;
165 }
166
167 transition(BUSY_RD, Data, READY) {
168 d_dataCallback;
169 p_popResponseQueue;
170 }
171
172 transition(BUSY_WR, Ack, READY) {
173 a_ackCallback;
174 p_popResponseQueue;
175 }
176 }