Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michael Walle | 6795302 | 2012-02-06 22:42:10 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2012 Michael Walle |
| 4 | * Michael Walle <michael@walle.cc> |
Michael Walle | 6795302 | 2012-02-06 22:42:10 +0530 | [diff] [blame] | 5 | */ |
| 6 | #include <common.h> |
| 7 | #include <asm/arch/cpu.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 8 | #include <asm/cache.h> |
Michael Walle | 6795302 | 2012-02-06 22:42:10 +0530 | [diff] [blame] | 9 | |
| 10 | #define FEROCEON_EXTRA_FEATURE_L2C_EN (1<<22) |
| 11 | |
| 12 | void 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 | } |