m1n1/src/mcc.h
Hector Martin 4b80041d6d mcc: New module to initialize the MCC memory controller.
This turns on the system level cache. The carveout unmapping also moves
here, and now it handles T8103/T6000 properly.

Signed-off-by: Hector Martin <marcan@marcan.st>
2021-11-16 21:09:48 +09:00

9 lines
124 B
C

/* SPDX-License-Identifier: MIT */
#ifndef MCC_H
#define MCC_H
int mcc_init(void);
int mcc_unmap_carveouts(void);
#endif