blob: ba6bda37bc538a573897b0bb72e66a008d8e52f9 [file] [log] [blame]
Simon Glassfcfd26e2019-12-08 17:40:14 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2019 Google LLC
4 */
5
6#include <common.h>
7#include <asm/cpu_common.h>
8#include <asm/msr.h>
9
10void cpu_flush_l1d_to_l2(void)
11{
12 struct msr_t msr;
13
14 msr = msr_read(MSR_POWER_MISC);
15 msr.lo |= FLUSH_DL1_L2;
16 msr_write(MSR_POWER_MISC, msr);
17}