License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2018-11-21 20:28:25 +00:00
|
|
|
#ifndef _ASM_X86_RESCTRL_INTERNAL_H
|
|
|
|
#define _ASM_X86_RESCTRL_INTERNAL_H
|
2016-10-22 06:19:54 -07:00
|
|
|
|
x86/resctrl: Split struct rdt_resource
resctrl is the defacto Linux ABI for SoC resource partitioning features.
To support it on another architecture, it needs to be abstracted from
the features provided by Intel RDT and AMD PQoS, and moved to /fs/.
struct rdt_resource contains a mix of architecture private details
and properties of the filesystem interface user-space uses.
Start by splitting struct rdt_resource, into an architecture private
'hw' struct, which contains the common resctrl structure that would be
used by any architecture. The foreach helpers are most commonly used by
the filesystem code, and should return the common resctrl structure.
for_each_rdt_resource() is changed to walk the common structure in its
parent arch private structure.
Move as much of the structure as possible into the common structure
in the core code's header file. The x86 hardware accessors remain
part of the architecture private code, as do num_closid, mon_scale
and mbm_width.
mon_scale and mbm_width are used to detect overflow of the hardware
counters, and convert them from their native size to bytes. Any
cross-architecture abstraction should be in terms of bytes, making
these properties private.
The hardware's num_closid is kept in the private structure to force the
filesystem code to use a helper to access it. MPAM would return a single
value for the system, regardless of the resource. Using the helper
prevents this field from being confused with the version of num_closid
that is being exposed to user-space (added in a later patch).
After this split, filesystem code touching a 'hw' struct indicates
where an abstraction is needed.
Splitting this structure only moves types around, and should not lead
to any change in behaviour.
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-2-james.morse@arm.com
2021-07-28 17:06:14 +00:00
|
|
|
#include <linux/resctrl.h>
|
2016-10-28 15:04:42 -07:00
|
|
|
|
2018-11-21 20:28:31 +00:00
|
|
|
#define L3_QOS_CDP_ENABLE 0x01ULL
|
|
|
|
|
|
|
|
#define L2_QOS_CDP_ENABLE 0x01ULL
|
2017-12-20 14:57:23 -08:00
|
|
|
|
2020-05-05 15:36:18 -07:00
|
|
|
#define MBM_CNTR_WIDTH_BASE 24
|
2025-05-15 16:58:54 +00:00
|
|
|
|
2018-11-21 20:28:31 +00:00
|
|
|
#define MBA_IS_LINEAR 0x4
|
2025-05-15 16:58:54 +00:00
|
|
|
|
2020-06-04 14:45:16 -05:00
|
|
|
#define MBM_CNTR_WIDTH_OFFSET_AMD 20
|
2017-07-25 14:14:45 -07:00
|
|
|
|
2017-07-25 14:14:28 -07:00
|
|
|
#define RMID_VAL_ERROR BIT_ULL(63)
|
2025-05-15 16:58:54 +00:00
|
|
|
|
2017-07-25 14:14:28 -07:00
|
|
|
#define RMID_VAL_UNAVAIL BIT_ULL(62)
|
2025-05-15 16:58:54 +00:00
|
|
|
|
2020-05-05 15:36:18 -07:00
|
|
|
/*
|
|
|
|
* With the above fields in use 62 bits remain in MSR_IA32_QM_CTR for
|
|
|
|
* data to be returned. The counter width is discovered from the hardware
|
|
|
|
* as an offset from MBM_CNTR_WIDTH_BASE.
|
|
|
|
*/
|
|
|
|
#define MBM_CNTR_WIDTH_OFFSET_MAX (62 - MBM_CNTR_WIDTH_BASE)
|
2017-07-25 14:14:27 -07:00
|
|
|
|
2022-09-02 15:48:21 +00:00
|
|
|
/**
|
|
|
|
* struct arch_mbm_state - values used to compute resctrl_arch_rmid_read()s
|
|
|
|
* return value.
|
2022-09-02 15:48:26 +00:00
|
|
|
* @chunks: Total data moved (multiply by rdt_group.mon_scale to get bytes)
|
2022-09-02 15:48:21 +00:00
|
|
|
* @prev_msr: Value of IA32_QM_CTR last time it was read for the RMID used to
|
|
|
|
* find this struct.
|
|
|
|
*/
|
|
|
|
struct arch_mbm_state {
|
2022-09-02 15:48:26 +00:00
|
|
|
u64 chunks;
|
2022-09-02 15:48:21 +00:00
|
|
|
u64 prev_msr;
|
|
|
|
};
|
|
|
|
|
2017-04-14 14:14:31 +02:00
|
|
|
/**
|
2024-06-28 14:56:04 -07:00
|
|
|
* struct rdt_hw_ctrl_domain - Arch private attributes of a set of CPUs that share
|
|
|
|
* a resource for a control function
|
2021-07-28 17:06:15 +00:00
|
|
|
* @d_resctrl: Properties exposed to the resctrl file system
|
2017-04-14 14:14:31 +02:00
|
|
|
* @ctrl_val: array of cache or mem ctrl values (indexed by CLOSID)
|
2024-06-28 14:56:04 -07:00
|
|
|
*
|
|
|
|
* Members of this structure are accessed via helpers that provide abstraction.
|
|
|
|
*/
|
|
|
|
struct rdt_hw_ctrl_domain {
|
|
|
|
struct rdt_ctrl_domain d_resctrl;
|
|
|
|
u32 *ctrl_val;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct rdt_hw_mon_domain - Arch private attributes of a set of CPUs that share
|
|
|
|
* a resource for a monitor function
|
|
|
|
* @d_resctrl: Properties exposed to the resctrl file system
|
2022-09-02 15:48:21 +00:00
|
|
|
* @arch_mbm_total: arch private state for MBM total bandwidth
|
|
|
|
* @arch_mbm_local: arch private state for MBM local bandwidth
|
2021-07-28 17:06:15 +00:00
|
|
|
*
|
|
|
|
* Members of this structure are accessed via helpers that provide abstraction.
|
2017-04-14 14:14:31 +02:00
|
|
|
*/
|
2024-06-28 14:56:04 -07:00
|
|
|
struct rdt_hw_mon_domain {
|
|
|
|
struct rdt_mon_domain d_resctrl;
|
2022-09-02 15:48:21 +00:00
|
|
|
struct arch_mbm_state *arch_mbm_total;
|
|
|
|
struct arch_mbm_state *arch_mbm_local;
|
2017-04-14 14:14:31 +02:00
|
|
|
};
|
|
|
|
|
2024-06-28 14:56:04 -07:00
|
|
|
static inline struct rdt_hw_ctrl_domain *resctrl_to_arch_ctrl_dom(struct rdt_ctrl_domain *r)
|
|
|
|
{
|
|
|
|
return container_of(r, struct rdt_hw_ctrl_domain, d_resctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct rdt_hw_mon_domain *resctrl_to_arch_mon_dom(struct rdt_mon_domain *r)
|
2021-07-28 17:06:15 +00:00
|
|
|
{
|
2024-06-28 14:56:04 -07:00
|
|
|
return container_of(r, struct rdt_hw_mon_domain, d_resctrl);
|
2021-07-28 17:06:15 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 14:14:31 +02:00
|
|
|
/**
|
|
|
|
* struct msr_param - set a range of MSRs from a domain
|
|
|
|
* @res: The resource to use
|
2024-03-08 13:38:45 -08:00
|
|
|
* @dom: The domain to update
|
2017-04-14 14:14:31 +02:00
|
|
|
* @low: Beginning index from base MSR
|
|
|
|
* @high: End index
|
|
|
|
*/
|
|
|
|
struct msr_param {
|
|
|
|
struct rdt_resource *res;
|
2024-06-28 14:56:04 -07:00
|
|
|
struct rdt_ctrl_domain *dom;
|
2021-07-28 17:06:32 +00:00
|
|
|
u32 low;
|
|
|
|
u32 high;
|
2017-04-14 14:14:31 +02:00
|
|
|
};
|
|
|
|
|
2016-10-22 06:19:55 -07:00
|
|
|
/**
|
x86/resctrl: Split struct rdt_resource
resctrl is the defacto Linux ABI for SoC resource partitioning features.
To support it on another architecture, it needs to be abstracted from
the features provided by Intel RDT and AMD PQoS, and moved to /fs/.
struct rdt_resource contains a mix of architecture private details
and properties of the filesystem interface user-space uses.
Start by splitting struct rdt_resource, into an architecture private
'hw' struct, which contains the common resctrl structure that would be
used by any architecture. The foreach helpers are most commonly used by
the filesystem code, and should return the common resctrl structure.
for_each_rdt_resource() is changed to walk the common structure in its
parent arch private structure.
Move as much of the structure as possible into the common structure
in the core code's header file. The x86 hardware accessors remain
part of the architecture private code, as do num_closid, mon_scale
and mbm_width.
mon_scale and mbm_width are used to detect overflow of the hardware
counters, and convert them from their native size to bytes. Any
cross-architecture abstraction should be in terms of bytes, making
these properties private.
The hardware's num_closid is kept in the private structure to force the
filesystem code to use a helper to access it. MPAM would return a single
value for the system, regardless of the resource. Using the helper
prevents this field from being confused with the version of num_closid
that is being exposed to user-space (added in a later patch).
After this split, filesystem code touching a 'hw' struct indicates
where an abstraction is needed.
Splitting this structure only moves types around, and should not lead
to any change in behaviour.
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-2-james.morse@arm.com
2021-07-28 17:06:14 +00:00
|
|
|
* struct rdt_hw_resource - arch private attributes of a resctrl resource
|
|
|
|
* @r_resctrl: Attributes of the resource used directly by resctrl.
|
2021-07-28 17:06:21 +00:00
|
|
|
* @num_closid: Maximum number of closid this hardware can support,
|
|
|
|
* regardless of CDP. This is exposed via
|
|
|
|
* resctrl_arch_get_num_closid() to avoid confusion
|
|
|
|
* with struct resctrl_schema's property of the same name,
|
|
|
|
* which has been corrected for features like CDP.
|
2017-04-14 13:00:36 +02:00
|
|
|
* @msr_base: Base MSR address for CBMs
|
2017-04-14 14:14:31 +02:00
|
|
|
* @msr_update: Function pointer to update QOS MSRs
|
2018-11-21 20:28:35 +00:00
|
|
|
* @mon_scale: cqm counter * mon_scale = occupancy in bytes
|
2021-06-19 00:32:06 +02:00
|
|
|
* @mbm_width: Monitor width, to detect and correct for overflow.
|
2021-07-28 17:06:24 +00:00
|
|
|
* @cdp_enabled: CDP state of this resource
|
x86/resctrl: Split struct rdt_resource
resctrl is the defacto Linux ABI for SoC resource partitioning features.
To support it on another architecture, it needs to be abstracted from
the features provided by Intel RDT and AMD PQoS, and moved to /fs/.
struct rdt_resource contains a mix of architecture private details
and properties of the filesystem interface user-space uses.
Start by splitting struct rdt_resource, into an architecture private
'hw' struct, which contains the common resctrl structure that would be
used by any architecture. The foreach helpers are most commonly used by
the filesystem code, and should return the common resctrl structure.
for_each_rdt_resource() is changed to walk the common structure in its
parent arch private structure.
Move as much of the structure as possible into the common structure
in the core code's header file. The x86 hardware accessors remain
part of the architecture private code, as do num_closid, mon_scale
and mbm_width.
mon_scale and mbm_width are used to detect overflow of the hardware
counters, and convert them from their native size to bytes. Any
cross-architecture abstraction should be in terms of bytes, making
these properties private.
The hardware's num_closid is kept in the private structure to force the
filesystem code to use a helper to access it. MPAM would return a single
value for the system, regardless of the resource. Using the helper
prevents this field from being confused with the version of num_closid
that is being exposed to user-space (added in a later patch).
After this split, filesystem code touching a 'hw' struct indicates
where an abstraction is needed.
Splitting this structure only moves types around, and should not lead
to any change in behaviour.
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-2-james.morse@arm.com
2021-07-28 17:06:14 +00:00
|
|
|
*
|
|
|
|
* Members of this structure are either private to the architecture
|
|
|
|
* e.g. mbm_width, or accessed via helpers that provide abstraction. e.g.
|
|
|
|
* msr_update and msr_base.
|
2016-10-22 06:19:55 -07:00
|
|
|
*/
|
x86/resctrl: Split struct rdt_resource
resctrl is the defacto Linux ABI for SoC resource partitioning features.
To support it on another architecture, it needs to be abstracted from
the features provided by Intel RDT and AMD PQoS, and moved to /fs/.
struct rdt_resource contains a mix of architecture private details
and properties of the filesystem interface user-space uses.
Start by splitting struct rdt_resource, into an architecture private
'hw' struct, which contains the common resctrl structure that would be
used by any architecture. The foreach helpers are most commonly used by
the filesystem code, and should return the common resctrl structure.
for_each_rdt_resource() is changed to walk the common structure in its
parent arch private structure.
Move as much of the structure as possible into the common structure
in the core code's header file. The x86 hardware accessors remain
part of the architecture private code, as do num_closid, mon_scale
and mbm_width.
mon_scale and mbm_width are used to detect overflow of the hardware
counters, and convert them from their native size to bytes. Any
cross-architecture abstraction should be in terms of bytes, making
these properties private.
The hardware's num_closid is kept in the private structure to force the
filesystem code to use a helper to access it. MPAM would return a single
value for the system, regardless of the resource. Using the helper
prevents this field from being confused with the version of num_closid
that is being exposed to user-space (added in a later patch).
After this split, filesystem code touching a 'hw' struct indicates
where an abstraction is needed.
Splitting this structure only moves types around, and should not lead
to any change in behaviour.
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-2-james.morse@arm.com
2021-07-28 17:06:14 +00:00
|
|
|
struct rdt_hw_resource {
|
|
|
|
struct rdt_resource r_resctrl;
|
2021-07-28 17:06:21 +00:00
|
|
|
u32 num_closid;
|
2017-04-14 13:00:36 +02:00
|
|
|
unsigned int msr_base;
|
2024-03-08 13:38:46 -08:00
|
|
|
void (*msr_update)(struct msr_param *m);
|
2017-07-25 14:14:27 -07:00
|
|
|
unsigned int mon_scale;
|
2020-05-05 15:36:16 -07:00
|
|
|
unsigned int mbm_width;
|
2021-07-28 17:06:24 +00:00
|
|
|
bool cdp_enabled;
|
2016-10-22 06:19:55 -07:00
|
|
|
};
|
|
|
|
|
x86/resctrl: Split struct rdt_resource
resctrl is the defacto Linux ABI for SoC resource partitioning features.
To support it on another architecture, it needs to be abstracted from
the features provided by Intel RDT and AMD PQoS, and moved to /fs/.
struct rdt_resource contains a mix of architecture private details
and properties of the filesystem interface user-space uses.
Start by splitting struct rdt_resource, into an architecture private
'hw' struct, which contains the common resctrl structure that would be
used by any architecture. The foreach helpers are most commonly used by
the filesystem code, and should return the common resctrl structure.
for_each_rdt_resource() is changed to walk the common structure in its
parent arch private structure.
Move as much of the structure as possible into the common structure
in the core code's header file. The x86 hardware accessors remain
part of the architecture private code, as do num_closid, mon_scale
and mbm_width.
mon_scale and mbm_width are used to detect overflow of the hardware
counters, and convert them from their native size to bytes. Any
cross-architecture abstraction should be in terms of bytes, making
these properties private.
The hardware's num_closid is kept in the private structure to force the
filesystem code to use a helper to access it. MPAM would return a single
value for the system, regardless of the resource. Using the helper
prevents this field from being confused with the version of num_closid
that is being exposed to user-space (added in a later patch).
After this split, filesystem code touching a 'hw' struct indicates
where an abstraction is needed.
Splitting this structure only moves types around, and should not lead
to any change in behaviour.
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-2-james.morse@arm.com
2021-07-28 17:06:14 +00:00
|
|
|
static inline struct rdt_hw_resource *resctrl_to_arch_res(struct rdt_resource *r)
|
|
|
|
{
|
|
|
|
return container_of(r, struct rdt_hw_resource, r_resctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern struct rdt_hw_resource rdt_resources_all[];
|
2018-06-22 15:42:25 -07:00
|
|
|
|
2024-07-02 10:38:20 -07:00
|
|
|
void arch_mon_domain_online(struct rdt_resource *r, struct rdt_mon_domain *d);
|
|
|
|
|
2016-10-22 06:19:55 -07:00
|
|
|
/* CPUID.(EAX=10H, ECX=ResID=1).EAX */
|
|
|
|
union cpuid_0x10_1_eax {
|
|
|
|
struct {
|
|
|
|
unsigned int cbm_len:5;
|
|
|
|
} split;
|
|
|
|
unsigned int full;
|
|
|
|
};
|
|
|
|
|
2017-04-07 17:33:52 -07:00
|
|
|
/* CPUID.(EAX=10H, ECX=ResID=3).EAX */
|
|
|
|
union cpuid_0x10_3_eax {
|
|
|
|
struct {
|
|
|
|
unsigned int max_delay:12;
|
|
|
|
} split;
|
|
|
|
unsigned int full;
|
|
|
|
};
|
|
|
|
|
2023-10-10 12:42:37 +02:00
|
|
|
/* CPUID.(EAX=10H, ECX=ResID).ECX */
|
|
|
|
union cpuid_0x10_x_ecx {
|
|
|
|
struct {
|
|
|
|
unsigned int reserved:3;
|
|
|
|
unsigned int noncont:1;
|
|
|
|
} split;
|
|
|
|
unsigned int full;
|
|
|
|
};
|
|
|
|
|
2017-04-07 17:33:51 -07:00
|
|
|
/* CPUID.(EAX=10H, ECX=ResID).EDX */
|
|
|
|
union cpuid_0x10_x_edx {
|
2016-10-22 06:19:55 -07:00
|
|
|
struct {
|
|
|
|
unsigned int cos_max:16;
|
|
|
|
} split;
|
|
|
|
unsigned int full;
|
|
|
|
};
|
2016-10-28 15:04:41 -07:00
|
|
|
|
2017-04-07 17:33:51 -07:00
|
|
|
void rdt_ctrl_update(void *arg);
|
2025-03-11 18:37:09 +00:00
|
|
|
|
2025-05-15 16:58:54 +00:00
|
|
|
int rdt_get_mon_l3_config(struct rdt_resource *r);
|
2025-03-11 18:37:09 +00:00
|
|
|
|
2025-05-15 16:58:54 +00:00
|
|
|
bool rdt_cpu_has(int flag);
|
2025-03-11 18:37:09 +00:00
|
|
|
|
2025-05-15 16:58:54 +00:00
|
|
|
void __init intel_rdt_mbm_apply_quirk(void);
|
2025-03-11 18:37:09 +00:00
|
|
|
|
2025-05-15 16:58:54 +00:00
|
|
|
void rdt_domain_reconfigure_cdp(struct rdt_resource *r);
|
2025-03-11 18:37:09 +00:00
|
|
|
|
2018-11-21 20:28:25 +00:00
|
|
|
#endif /* _ASM_X86_RESCTRL_INTERNAL_H */
|