mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
d94d71cb45
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation 51 franklin street fifth floor boston ma 02110 1301 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 67 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190529141333.953658117@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
28 lines
522 B
C
28 lines
522 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
*
|
|
* Copyright (C) 2013 Freescale Semiconductor, Inc.
|
|
*/
|
|
|
|
#ifndef __FSL_PAMU_STASH_H
|
|
#define __FSL_PAMU_STASH_H
|
|
|
|
/* cache stash targets */
|
|
enum pamu_stash_target {
|
|
PAMU_ATTR_CACHE_L1 = 1,
|
|
PAMU_ATTR_CACHE_L2,
|
|
PAMU_ATTR_CACHE_L3,
|
|
};
|
|
|
|
/*
|
|
* This attribute allows configuring stashig specific parameters
|
|
* in the PAMU hardware.
|
|
*/
|
|
|
|
struct pamu_stash_attribute {
|
|
u32 cpu; /* cpu number */
|
|
u32 cache; /* cache to stash to: L1,L2,L3 */
|
|
};
|
|
|
|
#endif /* __FSL_PAMU_STASH_H */
|