blob: f7ef46e7afa7e8751ba9f34a1740dc690ca4bc5e [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
2 * Copyright 2018 Google LLC
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010018
Andrew Scull11a4a0c2018-12-29 11:38:31 +000019/**
20 * Ensures all explicit memory accesses before this point are completed before
21 * any later memory accesses are performed.
22 */
23void dmb(void);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010024
Andrew Scull11a4a0c2018-12-29 11:38:31 +000025/**
Andrew Scull9a6384b2019-01-02 12:08:40 +000026 * Ensures all explicit memory access and management instructions have completed
Andrew Scull11a4a0c2018-12-29 11:38:31 +000027 * before continuing.
28 */
29void dsb(void);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010030
Andrew Scull11a4a0c2018-12-29 11:38:31 +000031/**
32 * Flushes the instruction pipeline so that instructions are fetched from
33 * memory.
34 */
35void isb(void);