Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
51 lines
1.0 KiB
C
51 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ACPI_NUMA_H
|
|
#define __ACPI_NUMA_H
|
|
|
|
#ifdef CONFIG_ACPI_NUMA
|
|
#include <linux/numa.h>
|
|
|
|
/* Proximity bitmap length */
|
|
#if MAX_NUMNODES > 256
|
|
#define MAX_PXM_DOMAINS MAX_NUMNODES
|
|
#else
|
|
#define MAX_PXM_DOMAINS (256) /* Old pxm spec is defined 8 bit */
|
|
#endif
|
|
|
|
extern int pxm_to_node(int);
|
|
extern int node_to_pxm(int);
|
|
extern int acpi_map_pxm_to_node(int);
|
|
extern unsigned char acpi_srat_revision;
|
|
extern void disable_srat(void);
|
|
extern int fix_pxm_node_maps(int max_nid);
|
|
|
|
extern void bad_srat(void);
|
|
extern int srat_disabled(void);
|
|
|
|
#else /* CONFIG_ACPI_NUMA */
|
|
static inline int fix_pxm_node_maps(int max_nid)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void disable_srat(void)
|
|
{
|
|
}
|
|
static inline int pxm_to_node(int pxm)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int node_to_pxm(int node)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_ACPI_NUMA */
|
|
|
|
#ifdef CONFIG_ACPI_HMAT
|
|
extern void disable_hmat(void);
|
|
#else /* CONFIG_ACPI_HMAT */
|
|
static inline void disable_hmat(void)
|
|
{
|
|
}
|
|
#endif /* CONFIG_ACPI_HMAT */
|
|
#endif /* __ACPI_NUMA_H */
|