]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-kirkwood/cache.c
ARM: kirkwood: move SOC sources to mach-kirkwood
[people/ms/u-boot.git] / arch / arm / mach-kirkwood / cache.c
CommitLineData
67953027
MW
1/*
2 * Copyright (c) 2012 Michael Walle
3 * Michael Walle <michael@walle.cc>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
67953027
MW
6 */
7#include <common.h>
8#include <asm/arch/cpu.h>
9
10#define FEROCEON_EXTRA_FEATURE_L2C_EN (1<<22)
11
12void l2_cache_disable()
13{
14 u32 ctrl;
15
16 ctrl = readfr_extra_feature_reg();
17 ctrl &= ~FEROCEON_EXTRA_FEATURE_L2C_EN;
18 writefr_extra_feature_reg(ctrl);
19}