blob: 0fb46482dfde160b9dcfad6ef57841e07c3830e2 [file] [log] [blame]
Thomas Gleixner3367e562008-01-30 13:30:38 +01001/*
2 * Written by: Matthew Dobson, IBM Corporation
3 *
4 * Copyright (C) 2002, IBM Corp.
5 *
6 * All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Send feedback to <colpatch@us.ibm.com>
24 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -070025#ifndef _ASM_X86_TOPOLOGY_H
26#define _ASM_X86_TOPOLOGY_H
Thomas Gleixner3367e562008-01-30 13:30:38 +010027
Vaidyanathan Srinivasan5c3a1212008-05-05 19:22:15 +053028#ifdef CONFIG_X86_32
Borislav Petkovc8e56d22015-06-04 18:55:25 +020029# ifdef CONFIG_SMP
Vaidyanathan Srinivasan5c3a1212008-05-05 19:22:15 +053030# define ENABLE_TOPO_DEFINES
31# endif
32#else
33# ifdef CONFIG_SMP
34# define ENABLE_TOPO_DEFINES
35# endif
36#endif
37
Lee Schermerhorn4e25b252009-12-14 17:58:23 -080038/*
39 * to preserve the visibility of NUMA_NO_NODE definition,
40 * moved to there from here. May be used independent of
41 * CONFIG_NUMA.
42 */
43#include <linux/numa.h>
Mike Travis23ca4bb2008-05-12 21:21:12 +020044
Thomas Gleixner3367e562008-01-30 13:30:38 +010045#ifdef CONFIG_NUMA
46#include <linux/cpumask.h>
Lee Schermerhorn4e25b252009-12-14 17:58:23 -080047
Thomas Gleixner3367e562008-01-30 13:30:38 +010048#include <asm/mpspec.h>
49
Mike Travis23ca4bb2008-05-12 21:21:12 +020050/* Mappings between logical cpu number and node number */
51DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
Thomas Gleixner3367e562008-01-30 13:30:38 +010052
Mike Travis23ca4bb2008-05-12 21:21:12 +020053#ifdef CONFIG_DEBUG_PER_CPU_MAPS
Lee Schermerhorne534c7c2010-05-26 14:44:58 -070054/*
55 * override generic percpu implementation of cpu_to_node
56 */
57extern int __cpu_to_node(int cpu);
58#define cpu_to_node __cpu_to_node
59
Mike Travis23ca4bb2008-05-12 21:21:12 +020060extern int early_cpu_to_node(int cpu);
Mike Travis23ca4bb2008-05-12 21:21:12 +020061
62#else /* !CONFIG_DEBUG_PER_CPU_MAPS */
63
Mike Travis23ca4bb2008-05-12 21:21:12 +020064/* Same function but used if called before per_cpu areas are setup */
65static inline int early_cpu_to_node(int cpu)
66{
Tejun Heof10fcd42009-01-13 20:41:34 +090067 return early_per_cpu(x86_cpu_to_node_map, cpu);
Mike Travis23ca4bb2008-05-12 21:21:12 +020068}
Mike Travisaa6b5442008-03-31 08:41:55 -070069
Rusty Russell71ee73e2009-03-13 14:49:52 +103070#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
Thomas Gleixner3367e562008-01-30 13:30:38 +010071
Rusty Russell71ee73e2009-03-13 14:49:52 +103072/* Mappings between node number and cpus on that node. */
Rusty Russellc032ef602009-03-13 14:49:53 +103073extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
Rusty Russell71ee73e2009-03-13 14:49:52 +103074
75#ifdef CONFIG_DEBUG_PER_CPU_MAPS
Rusty Russell73e907d2009-03-13 14:49:57 +103076extern const struct cpumask *cpumask_of_node(int node);
Rusty Russell71ee73e2009-03-13 14:49:52 +103077#else
Thomas Gleixner3367e562008-01-30 13:30:38 +010078/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
Rusty Russellc032ef602009-03-13 14:49:53 +103079static inline const struct cpumask *cpumask_of_node(int node)
Thomas Gleixner3367e562008-01-30 13:30:38 +010080{
81 return node_to_cpumask_map[node];
82}
Rusty Russell71ee73e2009-03-13 14:49:52 +103083#endif
Mike Travis23ca4bb2008-05-12 21:21:12 +020084
Brian Gerst6470aff2009-01-27 12:56:47 +090085extern void setup_node_to_cpumask_map(void);
86
Rusty Russell393d68f2008-12-26 22:23:38 +103087/*
Mike Travis23ca4bb2008-05-12 21:21:12 +020088 * Returns the number of the node containing Node 'node'. This
89 * architecture is flat, so it is a pretty simple function!
90 */
91#define parent_node(node) (node)
92
Thomas Gleixner3367e562008-01-30 13:30:38 +010093#define pcibus_to_node(bus) __pcibus_to_node(bus)
Thomas Gleixner3367e562008-01-30 13:30:38 +010094
Thomas Gleixner3367e562008-01-30 13:30:38 +010095extern int __node_distance(int, int);
96#define node_distance(a, b) __node_distance(a, b)
Thomas Gleixner3367e562008-01-30 13:30:38 +010097
Mike Travis23ca4bb2008-05-12 21:21:12 +020098#else /* !CONFIG_NUMA */
Thomas Gleixner3367e562008-01-30 13:30:38 +010099
Mike Travisf2a08272009-01-15 09:19:32 -0800100static inline int numa_node_id(void)
101{
102 return 0;
103}
Lee Schermerhorn72812012010-05-26 14:44:56 -0700104/*
105 * indicate override:
106 */
107#define numa_node_id numa_node_id
Mike Travisf2a08272009-01-15 09:19:32 -0800108
Mike Travisf2a08272009-01-15 09:19:32 -0800109static inline int early_cpu_to_node(int cpu)
110{
111 return 0;
112}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200113
Brian Gerst6470aff2009-01-27 12:56:47 +0900114static inline void setup_node_to_cpumask_map(void) { }
115
Thomas Gleixner3367e562008-01-30 13:30:38 +0100116#endif
117
Mike Travisaa6b5442008-03-31 08:41:55 -0700118#include <asm-generic/topology.h>
119
Rusty Russell030bb202008-12-26 22:23:41 +1030120extern const struct cpumask *cpu_coregroup_mask(int cpu);
Thomas Gleixner3367e562008-01-30 13:30:38 +0100121
Thomas Gleixner3367e562008-01-30 13:30:38 +0100122#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
123#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
Artem Fetishev825600c2014-03-28 13:33:39 -0700124
125#ifdef ENABLE_TOPO_DEFINES
Rusty Russell7ad728f2009-03-13 14:49:50 +1030126#define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
Bartosz Golaszewski06931e62015-05-26 15:11:28 +0200127#define topology_sibling_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
Thomas Gleixner3367e562008-01-30 13:30:38 +0100128#endif
129
Alex Chiangfe086a72008-04-29 15:05:29 -0700130static inline void arch_fix_phys_package_id(int num, u32 slot)
131{
132}
133
Yinghai Lu30a18d62008-02-19 03:21:20 -0800134struct pci_bus;
Bjorn Helgaasafcf21c22014-01-24 11:54:36 -0700135int x86_pci_root_bus_node(int bus);
Bjorn Helgaas2cd69752011-10-28 16:28:14 -0600136void x86_pci_root_bus_resources(int bus, struct list_head *resources);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800137
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700138#endif /* _ASM_X86_TOPOLOGY_H */