blob: 992539f2188d631ec18a435378428f3e4bc56bb1 [file] [log] [blame]
Vishnu Banavath2df6d172019-12-13 17:18:15 +00001/*
2 * Copyright (c) 2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef SCU_H
8#define SCU_H
9
10#include <stdint.h>
11
12#define SCU_CTRL_REG 0x00
13#define SCU_CFG_REG 0x04
14
15#define SCU_ENABLE_BIT (1 << 0)
16
17void enable_snoop_ctrl_unit(uintptr_t base);
18uint32_t read_snoop_ctrl_unit_cfg(uintptr_t base);
19
20#endif /* SCU_H */