blob: d8eca9fbf33bfa9c759b8f9de536e372c3a9f1ea [file] [log] [blame]
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +02001/*
2 * Copyright (C) 2018 Marvell International Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7
8/* LLC driver is the Last Level Cache (L3C) driver
9 * for Marvell SoCs in AP806, AP807, and AP810
10 */
11
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000012#ifndef CACHE_LLC_H
13#define CACHE_LLC_H
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +020014
15#define LLC_CTRL(ap) (MVEBU_LLC_BASE(ap) + 0x100)
16#define LLC_SYNC(ap) (MVEBU_LLC_BASE(ap) + 0x700)
Konstantin Porotchkinfa8c1302019-03-25 15:35:41 +020017#define LLC_BANKED_MNT_AHR(ap) (MVEBU_LLC_BASE(ap) + 0x724)
18#define LLC_INV_WAY(ap) (MVEBU_LLC_BASE(ap) + 0x77C)
19#define LLC_BLK_ALOC(ap) (MVEBU_LLC_BASE(ap) + 0x78c)
20#define LLC_CLEAN_WAY(ap) (MVEBU_LLC_BASE(ap) + 0x7BC)
21#define LLC_CLEAN_INV_WAY(ap) (MVEBU_LLC_BASE(ap) + 0x7FC)
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +020022#define LLC_TC0_LOCK(ap) (MVEBU_LLC_BASE(ap) + 0x920)
23
24#define MASTER_LLC_CTRL LLC_CTRL(MVEBU_AP0)
Konstantin Porotchkinfa8c1302019-03-25 15:35:41 +020025#define MASTER_LLC_INV_WAY LLC_INV_WAY(MVEBU_AP0)
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +020026#define MASTER_LLC_TC0_LOCK LLC_TC0_LOCK(MVEBU_AP0)
27
28#define LLC_CTRL_EN 1
29#define LLC_EXCLUSIVE_EN 0x100
Konstantin Porotchkinfa8c1302019-03-25 15:35:41 +020030#define LLC_ALL_WAYS_MASK 0xFFFFFFFF
31
32/* AP806/AP807 - 1MB 8-ways LLC */
33#define LLC_WAYS 8
34#define LLC_WAY_MASK ((1 << LLC_WAYS) - 1)
35#define LLC_SIZE (1024 * 1024)
36#define LLC_WAY_SIZE (LLC_SIZE / LLC_WAYS)
37
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +020038
Julius Werner53456fc2019-07-09 13:49:11 -070039#ifndef __ASSEMBLER__
Konstantin Porotchkin402fcf12018-02-26 16:04:25 +020040void llc_cache_sync(int ap_index);
41void llc_flush_all(int ap_index);
42void llc_clean_all(int ap_index);
43void llc_inv_all(int ap_index);
44void llc_disable(int ap_index);
45void llc_enable(int ap_index, int excl_mode);
46int llc_is_exclusive(int ap_index);
47void llc_runtime_enable(int ap_index);
48#endif
49
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000050#endif /* CACHE_LLC_H */