4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
26 * Copyright (c) 2010, Intel Corporation.
27 * All rights reserved.
31 * LOCALITY GROUP (LGROUP) PLATFORM SUPPORT FOR X86/AMD64 PLATFORMS
32 * ================================================================
33 * Multiprocessor AMD and Intel systems may have Non Uniform Memory Access
34 * (NUMA). A NUMA machine consists of one or more "nodes" that each consist of
35 * one or more CPUs and some local memory. The CPUs in each node can access
36 * the memory in the other nodes but at a higher latency than accessing their
37 * local memory. Typically, a system with only one node has Uniform Memory
38 * Access (UMA), but it may be possible to have a one node system that has
39 * some global memory outside of the node which is higher latency.
43 * This module provides a platform interface for determining which CPUs and
44 * which memory (and how much) are in a NUMA node and how far each node is from
45 * each other. The interface is used by the Virtual Memory (VM) system and the
46 * common lgroup framework. The VM system uses the plat_*() routines to fill
47 * in its memory node (memnode) array with the physical address range spanned
48 * by each NUMA node to know which memory belongs to which node, so it can
49 * build and manage a physical page free list for each NUMA node and allocate
50 * local memory from each node as needed. The common lgroup framework uses the
51 * exported lgrp_plat_*() routines to figure out which CPUs and memory belong
52 * to each node (leaf lgroup) and how far each node is from each other, so it
53 * can build the latency (lgroup) topology for the machine in order to optimize
54 * for locality. Also, an lgroup platform handle instead of lgroups are used
55 * in the interface with this module, so this module shouldn't need to know
56 * anything about lgroups. Instead, it just needs to know which CPUs, memory,
57 * etc. are in each NUMA node, how far each node is from each other, and to use
58 * a unique lgroup platform handle to refer to each node through the interface.
60 * Determining NUMA Configuration
61 * ------------------------------
62 * By default, this module will try to determine the NUMA configuration of the
63 * machine by reading the ACPI System Resource Affinity Table (SRAT) and System
64 * Locality Information Table (SLIT). The SRAT contains info to tell which
65 * CPUs and memory are local to a given proximity domain (NUMA node). The SLIT
66 * is a matrix that gives the distance between each system locality (which is
67 * a NUMA node and should correspond to proximity domains in the SRAT). For
68 * more details on the SRAT and SLIT, please refer to an ACPI 3.0 or newer
71 * If the SRAT doesn't exist on a system with AMD Opteron processors, we
72 * examine registers in PCI configuration space to determine how many nodes are
73 * in the system and which CPUs and memory are in each node.
74 * do while booting the kernel.
76 * NOTE: Using these PCI configuration space registers to determine this
77 * locality info is not guaranteed to work or be compatible across all
78 * Opteron processor families.
80 * If the SLIT does not exist or look right, the kernel will probe to determine
81 * the distance between nodes as long as the NUMA CPU and memory configuration
82 * has been determined (see lgrp_plat_probe() for details).
86 * The main data structures used by this code are the following:
88 * - lgrp_plat_cpu_node[] CPU to node ID mapping table indexed by
89 * CPU ID (only used for SRAT)
91 * - lgrp_plat_lat_stats.latencies[][] Table of latencies between same and
92 * different nodes indexed by node ID
94 * - lgrp_plat_node_cnt Number of NUMA nodes in system for
95 * non-DR-capable systems,
96 * maximum possible number of NUMA nodes
97 * in system for DR capable systems.
99 * - lgrp_plat_node_domain[] Node ID to proximity domain ID mapping
100 * table indexed by node ID (only used
103 * - lgrp_plat_memnode_info[] Table with physical address range for
104 * each memory node indexed by memory node
107 * The code is implemented to make the following always be true:
109 * lgroup platform handle == node ID == memnode ID
111 * Moreover, it allows for the proximity domain ID to be equal to all of the
112 * above as long as the proximity domains IDs are numbered from 0 to <number of
113 * nodes - 1>. This is done by hashing each proximity domain ID into the range
114 * from 0 to <number of nodes - 1>. Then proximity ID N will hash into node ID
115 * N and proximity domain ID N will be entered into lgrp_plat_node_domain[N]
116 * and be assigned node ID N. If the proximity domain IDs aren't numbered
117 * from 0 to <number of nodes - 1>, then hashing the proximity domain IDs into
118 * lgrp_plat_node_domain[] will still work for assigning proximity domain IDs
119 * to node IDs. However, the proximity domain IDs may not map to the
120 * equivalent node ID since we want to keep the node IDs numbered from 0 to
121 * <number of nodes - 1> to minimize cost of searching and potentially space.
123 * With the introduction of support of memory DR operations on x86 platforms,
124 * things get a little complicated. The addresses of hot-added memory may not
125 * be continuous with other memory connected to the same lgrp node. In other
126 * words, memory addresses may get interleaved among lgrp nodes after memory
127 * DR operations. To work around this limitation, we have extended the
128 * relationship between lgrp node and memory node from 1:1 map to 1:N map,
129 * that means there may be multiple memory nodes associated with a lgrp node
130 * after memory DR operations.
132 * To minimize the code changes to support memory DR operations, the
133 * following policies have been adopted.
134 * 1) On non-DR-capable systems, the relationship among lgroup platform handle,
135 * node ID and memnode ID is still kept as:
136 * lgroup platform handle == node ID == memnode ID
137 * 2) For memory present at boot time on DR capable platforms, the relationship
138 * is still kept as is.
139 * lgroup platform handle == node ID == memnode ID
140 * 3) For hot-added memory, the relationship between lgrp ID and memnode ID have
141 * been changed from 1:1 map to 1:N map. Memnode IDs [0 - lgrp_plat_node_cnt)
142 * are reserved for memory present at boot time, and memnode IDs
143 * [lgrp_plat_node_cnt, max_mem_nodes) are used to dynamically allocate
144 * memnode ID for hot-added memory.
145 * 4) All boot code having the assumption "node ID == memnode ID" can live as
146 * is, that's because node ID is always equal to memnode ID at boot time.
147 * 5) The lgrp_plat_memnode_info_update(), plat_pfn_to_mem_node() and
148 * lgrp_plat_mem_size() related logics have been enhanced to deal with
149 * the 1:N map relationship.
150 * 6) The latency probing related logics, which have the assumption
151 * "node ID == memnode ID" and may be called at run time, is disabled if
152 * memory DR operation is enabled.
156 #include <sys/archsystm.h> /* for {in,out}{b,w,l}() */
157 #include <sys/atomic.h>
158 #include <sys/bootconf.h>
159 #include <sys/cmn_err.h>
160 #include <sys/controlregs.h>
161 #include <sys/cpupart.h>
162 #include <sys/cpuvar.h>
163 #include <sys/lgrp.h>
164 #include <sys/machsystm.h>
165 #include <sys/memlist.h>
166 #include <sys/memnode.h>
167 #include <sys/mman.h>
168 #include <sys/note.h>
169 #include <sys/pci_cfgspace.h>
170 #include <sys/pci_impl.h>
171 #include <sys/param.h>
172 #include <sys/pghw.h>
173 #include <sys/promif.h> /* for prom_printf() */
174 #include <sys/sysmacros.h>
175 #include <sys/systm.h>
176 #include <sys/thread.h>
177 #include <sys/types.h>
179 #include <sys/x86_archext.h>
180 #include <vm/hat_i86.h>
181 #include <vm/seg_kmem.h>
182 #include <vm/vm_dep.h>
184 #include <sys/acpidev.h>
185 #include <sys/acpi/acpi.h> /* for SRAT, SLIT and MSCT */
188 extern ACPI_TABLE_SRAT
*srat_ptr
;
189 extern ACPI_TABLE_SLIT
*slit_ptr
;
190 extern ACPI_TABLE_MSCT
*msct_ptr
;
193 #define NLGRP (MAX_NODES * (MAX_NODES - 1) + 1)
196 * Constants for configuring probing
198 #define LGRP_PLAT_PROBE_NROUNDS 64 /* default laps for probing */
199 #define LGRP_PLAT_PROBE_NSAMPLES 1 /* default samples to take */
200 #define LGRP_PLAT_PROBE_NREADS 256 /* number of vendor ID reads */
205 #define LGRP_PLAT_PROBE_ENABLE 0x1 /* enable probing */
206 #define LGRP_PLAT_PROBE_PGCPY 0x2 /* probe using page copy */
207 #define LGRP_PLAT_PROBE_VENDOR 0x4 /* probe vendor ID register */
210 * Hash proximity domain ID into node to domain mapping table "mod" number of
211 * nodes to minimize span of entries used and try to have lowest numbered
212 * proximity domain be node 0
214 #define NODE_DOMAIN_HASH(domain, node_cnt) \
215 ((lgrp_plat_prox_domain_min == UINT32_MAX) ? (domain) % node_cnt : \
216 ((domain) - lgrp_plat_prox_domain_min) % node_cnt)
219 * CPU to node ID mapping structure (only used with SRAT)
221 typedef struct cpu_node_map
{
225 uint32_t prox_domain
;
231 typedef struct lgrp_plat_latency_stats
{
232 hrtime_t latencies
[MAX_NODES
][MAX_NODES
];
233 hrtime_t latency_max
;
234 hrtime_t latency_min
;
235 } lgrp_plat_latency_stats_t
;
238 * Memory configuration for probing
240 typedef struct lgrp_plat_probe_mem_config
{
241 size_t probe_memsize
; /* how much memory to probe per node */
242 caddr_t probe_va
[MAX_NODES
]; /* where memory mapped for probing */
243 pfn_t probe_pfn
[MAX_NODES
]; /* physical pages to map for probing */
244 } lgrp_plat_probe_mem_config_t
;
247 * Statistics kept for probing
249 typedef struct lgrp_plat_probe_stats
{
252 hrtime_t probe_cost_total
;
253 hrtime_t probe_error_code
;
254 hrtime_t probe_errors
[MAX_NODES
][MAX_NODES
];
255 int probe_suspect
[MAX_NODES
][MAX_NODES
];
256 hrtime_t probe_max
[MAX_NODES
][MAX_NODES
];
257 hrtime_t probe_min
[MAX_NODES
][MAX_NODES
];
258 } lgrp_plat_probe_stats_t
;
261 * Node to proximity domain ID mapping structure (only used with SRAT)
263 typedef struct node_domain_map
{
265 uint32_t prox_domain
;
269 * Node ID and starting and ending page for physical memory in memory node
271 typedef struct memnode_phys_addr_map
{
275 uint32_t prox_domain
;
278 } memnode_phys_addr_map_t
;
281 * Number of CPUs for which we got APIC IDs
283 static int lgrp_plat_apic_ncpus
= 0;
286 * CPU to node ID mapping table (only used for SRAT) and its max number of
289 static cpu_node_map_t
*lgrp_plat_cpu_node
= NULL
;
290 static uint_t lgrp_plat_cpu_node_nentries
= 0;
295 lgrp_plat_latency_stats_t lgrp_plat_lat_stats
;
298 * Whether memory is interleaved across nodes causing MPO to be disabled
300 static int lgrp_plat_mem_intrlv
= 0;
303 * Node ID to proximity domain ID mapping table (only used for SRAT)
305 static node_domain_map_t lgrp_plat_node_domain
[MAX_NODES
];
308 * Physical address range for memory in each node
310 static memnode_phys_addr_map_t lgrp_plat_memnode_info
[MAX_MEM_NODES
];
313 * Statistics gotten from probing
315 static lgrp_plat_probe_stats_t lgrp_plat_probe_stats
;
318 * Memory configuration for probing
320 static lgrp_plat_probe_mem_config_t lgrp_plat_probe_mem_config
;
323 * Lowest proximity domain ID seen in ACPI SRAT
325 static uint32_t lgrp_plat_prox_domain_min
= UINT32_MAX
;
328 * Error code from processing ACPI SRAT
330 static int lgrp_plat_srat_error
= 0;
333 * Error code from processing ACPI SLIT
335 static int lgrp_plat_slit_error
= 0;
338 * Whether lgrp topology has been flattened to 2 levels.
340 static int lgrp_plat_topo_flatten
= 0;
344 * Maximum memory node ID in use.
346 static uint_t lgrp_plat_max_mem_node
;
349 * Allocate lgroup array statically
351 static lgrp_t lgrp_space
[NLGRP
];
352 static int nlgrps_alloc
;
356 * Enable finding and using minimum proximity domain ID when hashing
358 int lgrp_plat_domain_min_enable
= 1;
361 * Maximum possible number of nodes in system
363 uint_t lgrp_plat_node_cnt
= 1;
366 * Enable sorting nodes in ascending order by starting physical address
368 int lgrp_plat_node_sort_enable
= 1;
371 * Configuration Parameters for Probing
372 * - lgrp_plat_probe_flags Flags to specify enabling probing, probe
374 * - lgrp_plat_probe_nrounds How many rounds of probing to do
375 * - lgrp_plat_probe_nsamples Number of samples to take when probing each
377 * - lgrp_plat_probe_nreads Number of times to read vendor ID from
378 * Northbridge for each probe
380 uint_t lgrp_plat_probe_flags
= 0;
381 int lgrp_plat_probe_nrounds
= LGRP_PLAT_PROBE_NROUNDS
;
382 int lgrp_plat_probe_nsamples
= LGRP_PLAT_PROBE_NSAMPLES
;
383 int lgrp_plat_probe_nreads
= LGRP_PLAT_PROBE_NREADS
;
386 * Enable use of ACPI System Resource Affinity Table (SRAT), System
387 * Locality Information Table (SLIT) and Maximum System Capability Table (MSCT)
389 int lgrp_plat_srat_enable
= 1;
390 int lgrp_plat_slit_enable
= 1;
391 int lgrp_plat_msct_enable
= 1;
394 * mnode_xwa: set to non-zero value to initiate workaround if large pages are
395 * found to be crossing memory node boundaries. The workaround will eliminate
396 * a base size page at the end of each memory node boundary to ensure that
397 * a large page with constituent pages that span more than 1 memory node
398 * can never be formed.
404 * Static array to hold lgroup statistics
406 struct lgrp_stats lgrp_stats
[NLGRP
];
410 * Forward declarations of platform interface routines
412 void plat_build_mem_nodes(struct memlist
*list
);
414 int plat_mnode_xcheck(pfn_t pfncnt
);
416 lgrp_handle_t
plat_mem_node_to_lgrphand(int mnode
);
418 int plat_pfn_to_mem_node(pfn_t pfn
);
421 * Forward declarations of lgroup platform interface routines
423 lgrp_t
*lgrp_plat_alloc(lgrp_id_t lgrpid
);
425 void lgrp_plat_config(lgrp_config_flag_t flag
, uintptr_t arg
);
427 lgrp_handle_t
lgrp_plat_cpu_to_hand(processorid_t id
);
429 void lgrp_plat_init(lgrp_init_stages_t stage
);
431 int lgrp_plat_latency(lgrp_handle_t from
, lgrp_handle_t to
);
433 int lgrp_plat_max_lgrps(void);
435 pgcnt_t
lgrp_plat_mem_size(lgrp_handle_t plathand
,
436 lgrp_mem_query_t query
);
438 lgrp_handle_t
lgrp_plat_pfn_to_hand(pfn_t pfn
);
440 void lgrp_plat_probe(void);
442 lgrp_handle_t
lgrp_plat_root_hand(void);
446 * Forward declarations of local routines
448 static int is_opteron(void);
450 static int lgrp_plat_cpu_node_update(node_domain_map_t
*node_domain
,
451 int node_cnt
, cpu_node_map_t
*cpu_node
, int nentries
, uint32_t apicid
,
454 static int lgrp_plat_cpu_to_node(cpu_t
*cp
, cpu_node_map_t
*cpu_node
,
455 int cpu_node_nentries
);
457 static int lgrp_plat_domain_to_node(node_domain_map_t
*node_domain
,
458 int node_cnt
, uint32_t domain
);
460 static void lgrp_plat_get_numa_config(void);
462 static void lgrp_plat_latency_adjust(memnode_phys_addr_map_t
*memnode_info
,
463 lgrp_plat_latency_stats_t
*lat_stats
,
464 lgrp_plat_probe_stats_t
*probe_stats
);
466 static int lgrp_plat_latency_verify(memnode_phys_addr_map_t
*memnode_info
,
467 lgrp_plat_latency_stats_t
*lat_stats
);
469 static void lgrp_plat_main_init(void);
471 static pgcnt_t
lgrp_plat_mem_size_default(lgrp_handle_t
, lgrp_mem_query_t
);
473 static int lgrp_plat_node_domain_update(node_domain_map_t
*node_domain
,
474 int node_cnt
, uint32_t domain
);
476 static int lgrp_plat_memnode_info_update(node_domain_map_t
*node_domain
,
477 int node_cnt
, memnode_phys_addr_map_t
*memnode_info
, int memnode_cnt
,
478 uint64_t start
, uint64_t end
, uint32_t domain
, uint32_t device_id
);
480 static void lgrp_plat_node_sort(node_domain_map_t
*node_domain
,
481 int node_cnt
, cpu_node_map_t
*cpu_node
, int cpu_count
,
482 memnode_phys_addr_map_t
*memnode_info
);
484 static hrtime_t
lgrp_plat_probe_time(int to
, cpu_node_map_t
*cpu_node
,
485 int cpu_node_nentries
, lgrp_plat_probe_mem_config_t
*probe_mem_config
,
486 lgrp_plat_latency_stats_t
*lat_stats
, lgrp_plat_probe_stats_t
*probe_stats
);
488 static int lgrp_plat_process_cpu_apicids(cpu_node_map_t
*cpu_node
);
490 static int lgrp_plat_process_slit(ACPI_TABLE_SLIT
*tp
,
491 node_domain_map_t
*node_domain
, uint_t node_cnt
,
492 memnode_phys_addr_map_t
*memnode_info
,
493 lgrp_plat_latency_stats_t
*lat_stats
);
495 static int lgrp_plat_process_sli(uint32_t domain
, uchar_t
*sli_info
,
496 uint32_t sli_cnt
, node_domain_map_t
*node_domain
, uint_t node_cnt
,
497 lgrp_plat_latency_stats_t
*lat_stats
);
499 static int lgrp_plat_process_srat(ACPI_TABLE_SRAT
*tp
, ACPI_TABLE_MSCT
*mp
,
500 uint32_t *prox_domain_min
, node_domain_map_t
*node_domain
,
501 cpu_node_map_t
*cpu_node
, int cpu_count
,
502 memnode_phys_addr_map_t
*memnode_info
);
504 static void lgrp_plat_release_bootstrap(void);
506 static int lgrp_plat_srat_domains(ACPI_TABLE_SRAT
*tp
,
507 uint32_t *prox_domain_min
);
509 static int lgrp_plat_msct_domains(ACPI_TABLE_MSCT
*tp
,
510 uint32_t *prox_domain_min
);
512 static void lgrp_plat_2level_setup(lgrp_plat_latency_stats_t
*lat_stats
);
514 static void opt_get_numa_config(uint_t
*node_cnt
, int *mem_intrlv
,
515 memnode_phys_addr_map_t
*memnode_info
);
517 static hrtime_t
opt_probe_vendor(int dest_node
, int nreads
);
521 * PLATFORM INTERFACE ROUTINES
525 * Configure memory nodes for machines with more than one node (ie NUMA)
528 plat_build_mem_nodes(struct memlist
*list
)
530 pfn_t cur_start
; /* start addr of subrange */
531 pfn_t cur_end
; /* end addr of subrange */
532 pfn_t start
; /* start addr of whole range */
533 pfn_t end
; /* end addr of whole range */
534 pgcnt_t endcnt
; /* pages to sacrifice */
537 * Boot install lists are arranged <addr, len>, ...
542 start
= list
->ml_address
>> PAGESHIFT
;
543 end
= (list
->ml_address
+ list
->ml_size
- 1) >> PAGESHIFT
;
545 if (start
> physmax
) {
546 list
= list
->ml_next
;
553 * When there is only one memnode, just add memory to memnode
555 if (max_mem_nodes
== 1) {
556 mem_node_add_slice(start
, end
);
557 list
= list
->ml_next
;
562 * mem_node_add_slice() expects to get a memory range that
563 * is within one memnode, so need to split any memory range
564 * that spans multiple memnodes into subranges that are each
565 * contained within one memnode when feeding them to
566 * mem_node_add_slice()
570 node
= plat_pfn_to_mem_node(cur_start
);
573 * Panic if DRAM address map registers or SRAT say
574 * memory in node doesn't exist or address from
575 * boot installed memory list entry isn't in this node.
576 * This shouldn't happen and rest of code can't deal
577 * with this if it does.
579 if (node
< 0 || node
>= lgrp_plat_max_mem_node
||
580 !lgrp_plat_memnode_info
[node
].exists
||
581 cur_start
< lgrp_plat_memnode_info
[node
].start
||
582 cur_start
> lgrp_plat_memnode_info
[node
].end
) {
583 cmn_err(CE_PANIC
, "Don't know which memnode "
584 "to add installed memory address 0x%lx\n",
589 * End of current subrange should not span memnodes
593 if (lgrp_plat_memnode_info
[node
].exists
&&
594 cur_end
> lgrp_plat_memnode_info
[node
].end
) {
595 cur_end
= lgrp_plat_memnode_info
[node
].end
;
598 * sacrifice the last page in each
599 * node to eliminate large pages
600 * that span more than 1 memory node.
607 mem_node_add_slice(cur_start
, cur_end
- endcnt
);
610 * Next subrange starts after end of current one
612 cur_start
= cur_end
+ 1;
613 } while (cur_end
< end
);
615 list
= list
->ml_next
;
617 mem_node_physalign
= 0;
618 mem_node_pfn_shift
= 0;
623 * plat_mnode_xcheck: checks the node memory ranges to see if there is a pfncnt
624 * range of pages aligned on pfncnt that crosses an node boundary. Returns 1 if
625 * a crossing is found and returns 0 otherwise.
628 plat_mnode_xcheck(pfn_t pfncnt
)
630 int node
, prevnode
= -1, basenode
;
633 for (node
= 0; node
< lgrp_plat_max_mem_node
; node
++) {
635 if (lgrp_plat_memnode_info
[node
].exists
== 0)
638 if (prevnode
== -1) {
644 /* assume x86 node pfn ranges are in increasing order */
645 ASSERT(lgrp_plat_memnode_info
[node
].start
>
646 lgrp_plat_memnode_info
[prevnode
].end
);
649 * continue if the starting address of node is not contiguous
650 * with the previous node.
653 if (lgrp_plat_memnode_info
[node
].start
!=
654 (lgrp_plat_memnode_info
[prevnode
].end
+ 1)) {
660 /* check if the starting address of node is pfncnt aligned */
661 if ((lgrp_plat_memnode_info
[node
].start
& (pfncnt
- 1)) != 0) {
664 * at this point, node starts at an unaligned boundary
665 * and is contiguous with the previous node(s) to
666 * basenode. Check if there is an aligned contiguous
667 * range of length pfncnt that crosses this boundary.
670 sa
= P2ALIGN(lgrp_plat_memnode_info
[prevnode
].end
,
672 ea
= P2ROUNDUP((lgrp_plat_memnode_info
[node
].start
),
675 ASSERT((ea
- sa
) == pfncnt
);
676 if (sa
>= lgrp_plat_memnode_info
[basenode
].start
&&
677 ea
<= (lgrp_plat_memnode_info
[node
].end
+ 1)) {
679 * large page found to cross mnode boundary.
680 * Return Failure if workaround not enabled.
694 plat_mem_node_to_lgrphand(int mnode
)
696 if (max_mem_nodes
== 1)
697 return (LGRP_DEFAULT_HANDLE
);
699 ASSERT(0 <= mnode
&& mnode
< lgrp_plat_max_mem_node
);
701 return ((lgrp_handle_t
)(lgrp_plat_memnode_info
[mnode
].lgrphand
));
705 plat_pfn_to_mem_node(pfn_t pfn
)
709 if (max_mem_nodes
== 1)
712 for (node
= 0; node
< lgrp_plat_max_mem_node
; node
++) {
714 * Skip nodes with no memory
716 if (!lgrp_plat_memnode_info
[node
].exists
)
720 if (pfn
>= lgrp_plat_memnode_info
[node
].start
&&
721 pfn
<= lgrp_plat_memnode_info
[node
].end
)
726 * Didn't find memnode where this PFN lives which should never happen
728 ASSERT(node
< lgrp_plat_max_mem_node
);
734 * LGROUP PLATFORM INTERFACE ROUTINES
738 * Allocate additional space for an lgroup.
741 lgrp_plat_alloc(lgrp_id_t lgrpid
)
745 lgrp
= &lgrp_space
[nlgrps_alloc
++];
746 if (lgrpid
>= NLGRP
|| nlgrps_alloc
> NLGRP
)
753 * Platform handling for (re)configuration changes
755 * Mechanism to protect lgrp_plat_cpu_node[] at CPU hotplug:
756 * 1) Use cpu_lock to synchronize between lgrp_plat_config() and
757 * lgrp_plat_cpu_to_hand().
758 * 2) Disable latency probing logic by making sure that the flag
759 * LGRP_PLAT_PROBE_ENABLE is cleared.
761 * Mechanism to protect lgrp_plat_memnode_info[] at memory hotplug:
762 * 1) Only inserts into lgrp_plat_memnode_info at memory hotplug, no removal.
763 * 2) Only expansion to existing entries, no shrinking.
764 * 3) On writing side, DR framework ensures that lgrp_plat_config() is called
765 * in single-threaded context. And membar_producer() is used to ensure that
766 * all changes are visible to other CPUs before setting the "exists" flag.
767 * 4) On reading side, membar_consumer() after checking the "exists" flag
768 * ensures that right values are retrieved.
770 * Mechanism to protect lgrp_plat_node_domain[] at hotplug:
771 * 1) Only insertion into lgrp_plat_node_domain at hotplug, no removal.
772 * 2) On writing side, it's single-threaded and membar_producer() is used to
773 * ensure all changes are visible to other CPUs before setting the "exists"
775 * 3) On reading side, membar_consumer() after checking the "exists" flag
776 * ensures that right values are retrieved.
779 lgrp_plat_config(lgrp_config_flag_t flag
, uintptr_t arg
)
782 _NOTE(ARGUNUSED(flag
, arg
));
787 uchar_t
*sliptr
= NULL
;
788 uint32_t domain
, apicid
, slicnt
= 0;
789 update_membounds_t
*mp
;
791 extern int acpidev_dr_get_cpu_numa_info(cpu_t
*, void **, uint32_t *,
792 uint32_t *, uint32_t *, uchar_t
**);
793 extern void acpidev_dr_free_cpu_numa_info(void *);
796 * This interface is used to support CPU/memory DR operations.
797 * Don't bother here if it's still during boot or only one lgrp node
800 if (!lgrp_topo_initialized
|| lgrp_plat_node_cnt
== 1)
804 case LGRP_CONFIG_CPU_ADD
:
807 ASSERT(MUTEX_HELD(&cpu_lock
));
809 /* Check whether CPU already exists. */
810 ASSERT(!lgrp_plat_cpu_node
[cp
->cpu_id
].exists
);
811 if (lgrp_plat_cpu_node
[cp
->cpu_id
].exists
) {
813 "!lgrp: CPU(%d) already exists in cpu_node map.",
818 /* Query CPU lgrp information. */
819 rc
= acpidev_dr_get_cpu_numa_info(cp
, &hdl
, &apicid
, &domain
,
824 "!lgrp: failed to query lgrp info for CPU(%d).",
829 /* Update node to proximity domain mapping */
830 node
= lgrp_plat_domain_to_node(lgrp_plat_node_domain
,
831 lgrp_plat_node_cnt
, domain
);
833 node
= lgrp_plat_node_domain_update(
834 lgrp_plat_node_domain
, lgrp_plat_node_cnt
, domain
);
837 acpidev_dr_free_cpu_numa_info(hdl
);
838 cmn_err(CE_WARN
, "!lgrp: failed to update "
839 "node_domain map for domain(%u).", domain
);
844 /* Update latency information among lgrps. */
845 if (slicnt
!= 0 && sliptr
!= NULL
) {
846 if (lgrp_plat_process_sli(domain
, sliptr
, slicnt
,
847 lgrp_plat_node_domain
, lgrp_plat_node_cnt
,
848 &lgrp_plat_lat_stats
) != 0) {
849 cmn_err(CE_WARN
, "!lgrp: failed to update "
850 "latency information for domain (%u).",
855 /* Update CPU to node mapping. */
856 lgrp_plat_cpu_node
[cp
->cpu_id
].prox_domain
= domain
;
857 lgrp_plat_cpu_node
[cp
->cpu_id
].node
= node
;
858 lgrp_plat_cpu_node
[cp
->cpu_id
].apicid
= apicid
;
859 lgrp_plat_cpu_node
[cp
->cpu_id
].exists
= 1;
860 lgrp_plat_apic_ncpus
++;
862 acpidev_dr_free_cpu_numa_info(hdl
);
865 case LGRP_CONFIG_CPU_DEL
:
868 ASSERT(MUTEX_HELD(&cpu_lock
));
870 /* Check whether CPU exists. */
871 ASSERT(lgrp_plat_cpu_node
[cp
->cpu_id
].exists
);
872 if (!lgrp_plat_cpu_node
[cp
->cpu_id
].exists
) {
874 "!lgrp: CPU(%d) doesn't exist in cpu_node map.",
879 /* Query CPU lgrp information. */
880 rc
= acpidev_dr_get_cpu_numa_info(cp
, &hdl
, &apicid
, &domain
,
885 "!lgrp: failed to query lgrp info for CPU(%d).",
891 ASSERT(lgrp_plat_cpu_node
[cp
->cpu_id
].apicid
== apicid
);
892 ASSERT(lgrp_plat_cpu_node
[cp
->cpu_id
].prox_domain
== domain
);
893 lgrp_plat_cpu_node
[cp
->cpu_id
].exists
= 0;
894 lgrp_plat_cpu_node
[cp
->cpu_id
].apicid
= UINT32_MAX
;
895 lgrp_plat_cpu_node
[cp
->cpu_id
].prox_domain
= UINT32_MAX
;
896 lgrp_plat_cpu_node
[cp
->cpu_id
].node
= UINT_MAX
;
897 lgrp_plat_apic_ncpus
--;
899 acpidev_dr_free_cpu_numa_info(hdl
);
902 case LGRP_CONFIG_MEM_ADD
:
903 mp
= (update_membounds_t
*)arg
;
906 /* Update latency information among lgrps. */
907 if (mp
->u_sli_cnt
!= 0 && mp
->u_sli_ptr
!= NULL
) {
908 if (lgrp_plat_process_sli(mp
->u_domain
,
909 mp
->u_sli_ptr
, mp
->u_sli_cnt
,
910 lgrp_plat_node_domain
, lgrp_plat_node_cnt
,
911 &lgrp_plat_lat_stats
) != 0) {
912 cmn_err(CE_WARN
, "!lgrp: failed to update "
913 "latency information for domain (%u).",
918 if (lgrp_plat_memnode_info_update(lgrp_plat_node_domain
,
919 lgrp_plat_node_cnt
, lgrp_plat_memnode_info
, max_mem_nodes
,
920 mp
->u_base
, mp
->u_base
+ mp
->u_length
,
921 mp
->u_domain
, mp
->u_device_id
) < 0) {
923 "!lgrp: failed to update latency information for "
924 "memory (0x%" PRIx64
" - 0x%" PRIx64
").",
925 mp
->u_base
, mp
->u_base
+ mp
->u_length
);
937 * Return the platform handle for the lgroup containing the given CPU
940 lgrp_plat_cpu_to_hand(processorid_t id
)
944 ASSERT(!lgrp_initialized
|| MUTEX_HELD(&cpu_lock
));
946 if (lgrp_plat_node_cnt
== 1)
947 return (LGRP_DEFAULT_HANDLE
);
949 hand
= (lgrp_handle_t
)lgrp_plat_cpu_to_node(cpu
[id
],
950 lgrp_plat_cpu_node
, lgrp_plat_cpu_node_nentries
);
952 ASSERT(hand
!= (lgrp_handle_t
)-1);
953 if (hand
== (lgrp_handle_t
)-1)
954 return (LGRP_NULL_HANDLE
);
961 * Platform-specific initialization of lgroups
964 lgrp_plat_init(lgrp_init_stages_t stage
)
972 case LGRP_INIT_STAGE1
:
975 * XXPV For now, the hypervisor treats all memory equally.
977 lgrp_plat_node_cnt
= max_mem_nodes
= 1;
981 * Get boot property for lgroup topology height limit
983 if (bootprop_getval(BP_LGRP_TOPO_LEVELS
, &value
) == 0)
984 (void) lgrp_topo_ht_limit_set((int)value
);
987 * Get boot property for enabling/disabling SRAT
989 if (bootprop_getval(BP_LGRP_SRAT_ENABLE
, &value
) == 0)
990 lgrp_plat_srat_enable
= (int)value
;
993 * Get boot property for enabling/disabling SLIT
995 if (bootprop_getval(BP_LGRP_SLIT_ENABLE
, &value
) == 0)
996 lgrp_plat_slit_enable
= (int)value
;
999 * Get boot property for enabling/disabling MSCT
1001 if (bootprop_getval(BP_LGRP_MSCT_ENABLE
, &value
) == 0)
1002 lgrp_plat_msct_enable
= (int)value
;
1005 * Initialize as a UMA machine
1007 if (lgrp_topo_ht_limit() == 1) {
1008 lgrp_plat_node_cnt
= max_mem_nodes
= 1;
1009 lgrp_plat_max_mem_node
= 1;
1013 lgrp_plat_get_numa_config();
1016 * Each lgrp node needs MAX_MEM_NODES_PER_LGROUP memnodes
1017 * to support memory DR operations if memory DR is enabled.
1019 lgrp_plat_max_mem_node
= lgrp_plat_node_cnt
;
1020 if (plat_dr_support_memory() && lgrp_plat_node_cnt
!= 1) {
1021 max_mem_nodes
= MAX_MEM_NODES_PER_LGROUP
*
1023 ASSERT(max_mem_nodes
<= MAX_MEM_NODES
);
1028 case LGRP_INIT_STAGE3
:
1030 lgrp_plat_release_bootstrap();
1033 case LGRP_INIT_STAGE4
:
1034 lgrp_plat_main_init();
1044 * Return latency between "from" and "to" lgroups
1046 * This latency number can only be used for relative comparison
1047 * between lgroups on the running system, cannot be used across platforms,
1048 * and may not reflect the actual latency. It is platform and implementation
1049 * specific, so platform gets to decide its value. It would be nice if the
1050 * number was at least proportional to make comparisons more meaningful though.
1053 lgrp_plat_latency(lgrp_handle_t from
, lgrp_handle_t to
)
1055 lgrp_handle_t src
, dest
;
1058 if (max_mem_nodes
== 1)
1062 * Return max latency for root lgroup
1064 if (from
== LGRP_DEFAULT_HANDLE
|| to
== LGRP_DEFAULT_HANDLE
)
1065 return (lgrp_plat_lat_stats
.latency_max
);
1071 * Return 0 for nodes (lgroup platform handles) out of range
1073 if (src
< 0 || src
>= MAX_NODES
|| dest
< 0 || dest
>= MAX_NODES
)
1077 * Probe from current CPU if its lgroup latencies haven't been set yet
1078 * and we are trying to get latency from current CPU to some node.
1079 * Avoid probing if CPU/memory DR is enabled.
1081 if (lgrp_plat_lat_stats
.latencies
[src
][src
] == 0) {
1083 * Latency information should be updated by lgrp_plat_config()
1084 * for DR operations. Something is wrong if reaches here.
1085 * For safety, flatten lgrp topology to two levels.
1087 if (plat_dr_support_cpu() || plat_dr_support_memory()) {
1088 ASSERT(lgrp_plat_lat_stats
.latencies
[src
][src
]);
1090 "lgrp: failed to get latency information, "
1091 "fall back to two-level topology.");
1092 lgrp_plat_2level_setup(&lgrp_plat_lat_stats
);
1094 node
= lgrp_plat_cpu_to_node(CPU
, lgrp_plat_cpu_node
,
1095 lgrp_plat_cpu_node_nentries
);
1096 ASSERT(node
>= 0 && node
< lgrp_plat_node_cnt
);
1102 return (lgrp_plat_lat_stats
.latencies
[src
][dest
]);
1107 * Return the maximum number of lgrps supported by the platform.
1108 * Before lgrp topology is known it returns an estimate based on the number of
1109 * nodes. Once topology is known it returns:
1110 * 1) the actual maximim number of lgrps created if CPU/memory DR operations
1111 * are not suppported.
1112 * 2) the maximum possible number of lgrps if CPU/memory DR operations are
1116 lgrp_plat_max_lgrps(void)
1118 if (!lgrp_topo_initialized
|| plat_dr_support_cpu() ||
1119 plat_dr_support_memory()) {
1120 return (lgrp_plat_node_cnt
* (lgrp_plat_node_cnt
- 1) + 1);
1122 return (lgrp_alloc_max
+ 1);
1128 * Count number of memory pages (_t) based on mnode id (_n) and query type (_t).
1130 #define _LGRP_PLAT_MEM_SIZE(_n, _q, _t) \
1131 if (mem_node_config[_n].exists) { \
1133 case LGRP_MEM_SIZE_FREE: \
1134 _t += MNODE_PGCNT(_n); \
1136 case LGRP_MEM_SIZE_AVAIL: \
1137 _t += mem_node_memlist_pages(_n, phys_avail); \
1139 case LGRP_MEM_SIZE_INSTALL: \
1140 _t += mem_node_memlist_pages(_n, phys_install); \
1148 * Return the number of free pages in an lgroup.
1150 * For query of LGRP_MEM_SIZE_FREE, return the number of base pagesize
1151 * pages on freelists. For query of LGRP_MEM_SIZE_AVAIL, return the
1152 * number of allocatable base pagesize pages corresponding to the
1153 * lgroup (e.g. do not include page_t's, BOP_ALLOC()'ed memory, ..)
1154 * For query of LGRP_MEM_SIZE_INSTALL, return the amount of physical
1155 * memory installed, regardless of whether or not it's usable.
1158 lgrp_plat_mem_size(lgrp_handle_t plathand
, lgrp_mem_query_t query
)
1161 pgcnt_t npgs
= (pgcnt_t
)0;
1162 extern struct memlist
*phys_avail
;
1163 extern struct memlist
*phys_install
;
1166 if (plathand
== LGRP_DEFAULT_HANDLE
)
1167 return (lgrp_plat_mem_size_default(plathand
, query
));
1169 if (plathand
!= LGRP_NULL_HANDLE
) {
1170 /* Count memory node present at boot. */
1171 mnode
= (int)plathand
;
1172 ASSERT(mnode
< lgrp_plat_node_cnt
);
1173 _LGRP_PLAT_MEM_SIZE(mnode
, query
, npgs
);
1175 /* Count possible hot-added memory nodes. */
1176 for (mnode
= lgrp_plat_node_cnt
;
1177 mnode
< lgrp_plat_max_mem_node
; mnode
++) {
1178 if (lgrp_plat_memnode_info
[mnode
].lgrphand
== plathand
)
1179 _LGRP_PLAT_MEM_SIZE(mnode
, query
, npgs
);
1188 * Return the platform handle of the lgroup that contains the physical memory
1189 * corresponding to the given page frame number
1192 lgrp_plat_pfn_to_hand(pfn_t pfn
)
1196 if (max_mem_nodes
== 1)
1197 return (LGRP_DEFAULT_HANDLE
);
1200 return (LGRP_NULL_HANDLE
);
1202 mnode
= plat_pfn_to_mem_node(pfn
);
1204 return (LGRP_NULL_HANDLE
);
1206 return (MEM_NODE_2_LGRPHAND(mnode
));
1211 * Probe memory in each node from current CPU to determine latency topology
1213 * The probing code will probe the vendor ID register on the Northbridge of
1214 * Opteron processors and probe memory for other processors by default.
1216 * Since probing is inherently error prone, the code takes laps across all the
1217 * nodes probing from each node to each of the other nodes some number of
1218 * times. Furthermore, each node is probed some number of times before moving
1219 * onto the next one during each lap. The minimum latency gotten between nodes
1220 * is kept as the latency between the nodes.
1222 * After all that, the probe times are adjusted by normalizing values that are
1223 * close to each other and local latencies are made the same. Lastly, the
1224 * latencies are verified to make sure that certain conditions are met (eg.
1225 * local < remote, latency(a, b) == latency(b, a), etc.).
1227 * If any of the conditions aren't met, the code will export a NUMA
1228 * configuration with the local CPUs and memory given by the SRAT or PCI config
1229 * space registers and one remote memory latency since it can't tell exactly
1230 * how far each node is from each other.
1233 lgrp_plat_probe(void)
1237 lgrp_plat_latency_stats_t
*lat_stats
;
1239 hrtime_t probe_time
;
1242 if (!(lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_ENABLE
) ||
1243 max_mem_nodes
== 1 || lgrp_topo_ht_limit() <= 2)
1246 /* SRAT and SLIT should be enabled if DR operations are enabled. */
1247 if (plat_dr_support_cpu() || plat_dr_support_memory())
1251 * Determine ID of node containing current CPU
1253 from
= lgrp_plat_cpu_to_node(CPU
, lgrp_plat_cpu_node
,
1254 lgrp_plat_cpu_node_nentries
);
1255 ASSERT(from
>= 0 && from
< lgrp_plat_node_cnt
);
1256 if (srat_ptr
&& lgrp_plat_srat_enable
&& !lgrp_plat_srat_error
)
1257 ASSERT(lgrp_plat_node_domain
[from
].exists
);
1260 * Don't need to probe if got times already
1262 lat_stats
= &lgrp_plat_lat_stats
;
1263 if (lat_stats
->latencies
[from
][from
] != 0)
1267 * Read vendor ID in Northbridge or read and write page(s)
1268 * in each node from current CPU and remember how long it takes,
1269 * so we can build latency topology of machine later.
1270 * This should approximate the memory latency between each node.
1273 for (i
= 0; i
< lgrp_plat_probe_nrounds
; i
++) {
1274 for (to
= 0; to
< lgrp_plat_node_cnt
; to
++) {
1276 * Get probe time and skip over any nodes that can't be
1277 * probed yet or don't have memory
1279 probe_time
= lgrp_plat_probe_time(to
,
1280 lgrp_plat_cpu_node
, lgrp_plat_cpu_node_nentries
,
1281 &lgrp_plat_probe_mem_config
, &lgrp_plat_lat_stats
,
1282 &lgrp_plat_probe_stats
);
1283 if (probe_time
== 0)
1289 * Keep lowest probe time as latency between nodes
1291 if (lat_stats
->latencies
[from
][to
] == 0 ||
1292 probe_time
< lat_stats
->latencies
[from
][to
])
1293 lat_stats
->latencies
[from
][to
] = probe_time
;
1296 * Update overall minimum and maximum probe times
1299 if (probe_time
< lat_stats
->latency_min
||
1300 lat_stats
->latency_min
== -1)
1301 lat_stats
->latency_min
= probe_time
;
1302 if (probe_time
> lat_stats
->latency_max
)
1303 lat_stats
->latency_max
= probe_time
;
1308 * Bail out if weren't able to probe any nodes from current CPU
1310 if (probed
== B_FALSE
)
1314 * - Fix up latencies such that local latencies are same,
1315 * latency(i, j) == latency(j, i), etc. (if possible)
1317 * - Verify that latencies look ok
1319 * - Fallback to just optimizing for local and remote if
1320 * latencies didn't look right
1322 lgrp_plat_latency_adjust(lgrp_plat_memnode_info
, &lgrp_plat_lat_stats
,
1323 &lgrp_plat_probe_stats
);
1324 lgrp_plat_probe_stats
.probe_error_code
=
1325 lgrp_plat_latency_verify(lgrp_plat_memnode_info
,
1326 &lgrp_plat_lat_stats
);
1327 if (lgrp_plat_probe_stats
.probe_error_code
)
1328 lgrp_plat_2level_setup(&lgrp_plat_lat_stats
);
1333 * Return platform handle for root lgroup
1336 lgrp_plat_root_hand(void)
1338 return (LGRP_DEFAULT_HANDLE
);
1348 * Update CPU to node mapping for given CPU and proximity domain.
1350 * - zero for success
1351 * - positive numbers for warnings
1352 * - negative numbers for errors
1355 lgrp_plat_cpu_node_update(node_domain_map_t
*node_domain
, int node_cnt
,
1356 cpu_node_map_t
*cpu_node
, int nentries
, uint32_t apicid
, uint32_t domain
)
1362 * Get node number for proximity domain
1364 node
= lgrp_plat_domain_to_node(node_domain
, node_cnt
, domain
);
1366 node
= lgrp_plat_node_domain_update(node_domain
, node_cnt
,
1373 * Search for entry with given APIC ID and fill in its node and
1374 * proximity domain IDs (if they haven't been set already)
1376 for (i
= 0; i
< nentries
; i
++) {
1378 * Skip nonexistent entries and ones without matching APIC ID
1380 if (!cpu_node
[i
].exists
|| cpu_node
[i
].apicid
!= apicid
)
1384 * Just return if entry completely and correctly filled in
1387 if (cpu_node
[i
].prox_domain
== domain
&&
1388 cpu_node
[i
].node
== node
)
1392 * It's invalid to have more than one entry with the same
1393 * local APIC ID in SRAT table.
1395 if (cpu_node
[i
].node
!= UINT_MAX
)
1399 * Fill in node and proximity domain IDs
1401 cpu_node
[i
].prox_domain
= domain
;
1402 cpu_node
[i
].node
= node
;
1408 * It's possible that an apicid doesn't exist in the cpu_node map due
1409 * to user limits number of CPUs powered on at boot by specifying the
1410 * boot_ncpus kernel option.
1417 * Get node ID for given CPU
1420 lgrp_plat_cpu_to_node(cpu_t
*cp
, cpu_node_map_t
*cpu_node
,
1421 int cpu_node_nentries
)
1423 processorid_t cpuid
;
1429 if (cpuid
< 0 || cpuid
>= max_ncpus
)
1433 * SRAT doesn't exist, isn't enabled, or there was an error processing
1434 * it, so return node ID for Opteron and -1 otherwise.
1436 if (srat_ptr
== NULL
|| !lgrp_plat_srat_enable
||
1437 lgrp_plat_srat_error
) {
1439 return (pg_plat_hw_instance_id(cp
, PGHW_PROCNODE
));
1444 * Return -1 when CPU to node ID mapping entry doesn't exist for given
1447 if (cpuid
>= cpu_node_nentries
|| !cpu_node
[cpuid
].exists
)
1450 return (cpu_node
[cpuid
].node
);
1455 * Return node number for given proximity domain/system locality
1458 lgrp_plat_domain_to_node(node_domain_map_t
*node_domain
, int node_cnt
,
1465 * Hash proximity domain ID into node to domain mapping table (array),
1466 * search for entry with matching proximity domain ID, and return index
1467 * of matching entry as node ID.
1469 node
= start
= NODE_DOMAIN_HASH(domain
, node_cnt
);
1471 if (node_domain
[node
].exists
) {
1473 if (node_domain
[node
].prox_domain
== domain
)
1476 node
= (node
+ 1) % node_cnt
;
1477 } while (node
!= start
);
1483 * Get NUMA configuration of machine
1486 lgrp_plat_get_numa_config(void)
1491 * Read boot property with CPU to APIC ID mapping table/array to
1492 * determine number of CPUs
1494 lgrp_plat_apic_ncpus
= lgrp_plat_process_cpu_apicids(NULL
);
1497 * Determine which CPUs and memory are local to each other and number
1498 * of NUMA nodes by reading ACPI System Resource Affinity Table (SRAT)
1500 if (lgrp_plat_apic_ncpus
> 0) {
1503 /* Reserve enough resources if CPU DR is enabled. */
1504 if (plat_dr_support_cpu() && max_ncpus
> lgrp_plat_apic_ncpus
)
1505 lgrp_plat_cpu_node_nentries
= max_ncpus
;
1507 lgrp_plat_cpu_node_nentries
= lgrp_plat_apic_ncpus
;
1510 * Temporarily allocate boot memory to use for CPU to node
1511 * mapping since kernel memory allocator isn't alive yet
1513 lgrp_plat_cpu_node
= (cpu_node_map_t
*)BOP_ALLOC(bootops
,
1514 NULL
, lgrp_plat_cpu_node_nentries
* sizeof (cpu_node_map_t
),
1517 ASSERT(lgrp_plat_cpu_node
!= NULL
);
1518 if (lgrp_plat_cpu_node
) {
1519 bzero(lgrp_plat_cpu_node
, lgrp_plat_cpu_node_nentries
*
1520 sizeof (cpu_node_map_t
));
1522 lgrp_plat_cpu_node_nentries
= 0;
1526 * Fill in CPU to node ID mapping table with APIC ID for each
1529 (void) lgrp_plat_process_cpu_apicids(lgrp_plat_cpu_node
);
1531 retval
= lgrp_plat_process_srat(srat_ptr
, msct_ptr
,
1532 &lgrp_plat_prox_domain_min
,
1533 lgrp_plat_node_domain
, lgrp_plat_cpu_node
,
1534 lgrp_plat_apic_ncpus
, lgrp_plat_memnode_info
);
1536 lgrp_plat_srat_error
= retval
;
1537 lgrp_plat_node_cnt
= 1;
1539 lgrp_plat_srat_error
= 0;
1540 lgrp_plat_node_cnt
= retval
;
1545 * Try to use PCI config space registers on Opteron if there's an error
1546 * processing CPU to APIC ID mapping or SRAT
1548 if ((lgrp_plat_apic_ncpus
<= 0 || lgrp_plat_srat_error
!= 0) &&
1550 opt_get_numa_config(&lgrp_plat_node_cnt
, &lgrp_plat_mem_intrlv
,
1551 lgrp_plat_memnode_info
);
1554 * Don't bother to setup system for multiple lgroups and only use one
1555 * memory node when memory is interleaved between any nodes or there is
1556 * only one NUMA node
1558 if (lgrp_plat_mem_intrlv
|| lgrp_plat_node_cnt
== 1) {
1559 lgrp_plat_node_cnt
= max_mem_nodes
= 1;
1560 (void) lgrp_topo_ht_limit_set(1);
1565 * Leaf lgroups on x86/x64 architectures contain one physical
1566 * processor chip. Tune lgrp_expand_proc_thresh and
1567 * lgrp_expand_proc_diff so that lgrp_choose() will spread
1568 * things out aggressively.
1570 lgrp_expand_proc_thresh
= LGRP_LOADAVG_THREAD_MAX
/ 2;
1571 lgrp_expand_proc_diff
= 0;
1574 * There should be one memnode (physical page free list(s)) for
1575 * each node if memory DR is disabled.
1577 max_mem_nodes
= lgrp_plat_node_cnt
;
1580 * Initialize min and max latency before reading SLIT or probing
1582 lgrp_plat_lat_stats
.latency_min
= -1;
1583 lgrp_plat_lat_stats
.latency_max
= 0;
1586 * Determine how far each NUMA node is from each other by
1587 * reading ACPI System Locality Information Table (SLIT) if it
1590 lgrp_plat_slit_error
= lgrp_plat_process_slit(slit_ptr
,
1591 lgrp_plat_node_domain
, lgrp_plat_node_cnt
, lgrp_plat_memnode_info
,
1592 &lgrp_plat_lat_stats
);
1595 * Disable support of CPU/memory DR operations if multiple locality
1596 * domains exist in system and either of following is true.
1597 * 1) Failed to process SLIT table.
1598 * 2) Latency probing is enabled by user.
1600 if (lgrp_plat_node_cnt
> 1 &&
1601 (plat_dr_support_cpu() || plat_dr_support_memory())) {
1602 if (!lgrp_plat_slit_enable
|| lgrp_plat_slit_error
!= 0 ||
1603 !lgrp_plat_srat_enable
|| lgrp_plat_srat_error
!= 0 ||
1604 lgrp_plat_apic_ncpus
<= 0) {
1606 "?lgrp: failed to process ACPI SRAT/SLIT table, "
1607 "disable support of CPU/memory DR operations.");
1608 plat_dr_disable_cpu();
1609 plat_dr_disable_memory();
1610 } else if (lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_ENABLE
) {
1612 "?lgrp: latency probing enabled by user, "
1613 "disable support of CPU/memory DR operations.");
1614 plat_dr_disable_cpu();
1615 plat_dr_disable_memory();
1619 /* Done if succeeded to process SLIT table. */
1620 if (lgrp_plat_slit_error
== 0)
1624 * Probe to determine latency between NUMA nodes when SLIT
1625 * doesn't exist or make sense
1627 lgrp_plat_probe_flags
|= LGRP_PLAT_PROBE_ENABLE
;
1630 * Specify whether to probe using vendor ID register or page copy
1631 * if hasn't been specified already or is overspecified
1633 probe_op
= lgrp_plat_probe_flags
&
1634 (LGRP_PLAT_PROBE_PGCPY
|LGRP_PLAT_PROBE_VENDOR
);
1636 if (probe_op
== 0 ||
1637 probe_op
== (LGRP_PLAT_PROBE_PGCPY
|LGRP_PLAT_PROBE_VENDOR
)) {
1638 lgrp_plat_probe_flags
&=
1639 ~(LGRP_PLAT_PROBE_PGCPY
|LGRP_PLAT_PROBE_VENDOR
);
1641 lgrp_plat_probe_flags
|=
1642 LGRP_PLAT_PROBE_VENDOR
;
1644 lgrp_plat_probe_flags
|= LGRP_PLAT_PROBE_PGCPY
;
1648 * Probing errors can mess up the lgroup topology and
1649 * force us fall back to a 2 level lgroup topology.
1650 * Here we bound how tall the lgroup topology can grow
1651 * in hopes of avoiding any anamolies in probing from
1652 * messing up the lgroup topology by limiting the
1653 * accuracy of the latency topology.
1655 * Assume that nodes will at least be configured in a
1656 * ring, so limit height of lgroup topology to be less
1657 * than number of nodes on a system with 4 or more
1660 if (lgrp_plat_node_cnt
>= 4 && lgrp_topo_ht_limit() ==
1661 lgrp_topo_ht_limit_default())
1662 (void) lgrp_topo_ht_limit_set(lgrp_plat_node_cnt
- 1);
1667 * Latencies must be within 1/(2**LGRP_LAT_TOLERANCE_SHIFT) of each other to
1668 * be considered same
1670 #define LGRP_LAT_TOLERANCE_SHIFT 4
1672 int lgrp_plat_probe_lt_shift
= LGRP_LAT_TOLERANCE_SHIFT
;
1676 * Adjust latencies between nodes to be symmetric, normalize latencies between
1677 * any nodes that are within some tolerance to be same, and make local
1681 lgrp_plat_latency_adjust(memnode_phys_addr_map_t
*memnode_info
,
1682 lgrp_plat_latency_stats_t
*lat_stats
, lgrp_plat_probe_stats_t
*probe_stats
)
1693 const lgrp_config_flag_t cflag
= LGRP_CONFIG_LAT_CHANGE_ALL
;
1694 int lat_corrected
[MAX_NODES
][MAX_NODES
];
1697 * Nothing to do when this is an UMA machine or don't have args needed
1699 if (max_mem_nodes
== 1)
1702 ASSERT(memnode_info
!= NULL
&& lat_stats
!= NULL
&&
1703 probe_stats
!= NULL
);
1706 * Make sure that latencies are symmetric between any two nodes
1707 * (ie. latency(node0, node1) == latency(node1, node0))
1709 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1710 if (!memnode_info
[i
].exists
)
1713 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
1714 if (!memnode_info
[j
].exists
)
1717 t1
= lat_stats
->latencies
[i
][j
];
1718 t2
= lat_stats
->latencies
[j
][i
];
1720 if (t1
== 0 || t2
== 0 || t1
== t2
)
1724 * Latencies should be same
1725 * - Use minimum of two latencies which should be same
1726 * - Track suspect probe times not within tolerance of
1728 * - Remember how much values are corrected by
1732 probe_stats
->probe_errors
[i
][j
] += t1
- t2
;
1733 if (t1
- t2
> t2
>> lgrp_plat_probe_lt_shift
) {
1734 probe_stats
->probe_suspect
[i
][j
]++;
1735 probe_stats
->probe_suspect
[j
][i
]++;
1737 } else if (t2
> t1
) {
1739 probe_stats
->probe_errors
[j
][i
] += t2
- t1
;
1740 if (t2
- t1
> t1
>> lgrp_plat_probe_lt_shift
) {
1741 probe_stats
->probe_suspect
[i
][j
]++;
1742 probe_stats
->probe_suspect
[j
][i
]++;
1746 lat_stats
->latencies
[i
][j
] =
1747 lat_stats
->latencies
[j
][i
] = t
;
1748 lgrp_config(cflag
, t1
, t
);
1749 lgrp_config(cflag
, t2
, t
);
1754 * Keep track of which latencies get corrected
1756 for (i
= 0; i
< MAX_NODES
; i
++)
1757 for (j
= 0; j
< MAX_NODES
; j
++)
1758 lat_corrected
[i
][j
] = 0;
1761 * For every two nodes, see whether there is another pair of nodes which
1762 * are about the same distance apart and make the latencies be the same
1763 * if they are close enough together
1765 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1766 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
1767 if (!memnode_info
[j
].exists
)
1770 * Pick one pair of nodes (i, j)
1771 * and get latency between them
1773 t1
= lat_stats
->latencies
[i
][j
];
1776 * Skip this pair of nodes if there isn't a latency
1782 for (k
= 0; k
< lgrp_plat_node_cnt
; k
++) {
1783 for (l
= 0; l
< lgrp_plat_node_cnt
; l
++) {
1784 if (!memnode_info
[l
].exists
)
1787 * Pick another pair of nodes (k, l)
1788 * not same as (i, j) and get latency
1791 if (k
== i
&& l
== j
)
1794 t2
= lat_stats
->latencies
[k
][l
];
1797 * Skip this pair of nodes if there
1798 * isn't a latency for it yet
1805 * Skip nodes (k, l) if they already
1806 * have same latency as (i, j) or
1807 * their latency isn't close enough to
1808 * be considered/made the same
1810 if (t1
== t2
|| (t1
> t2
&& t1
- t2
>
1811 t1
>> lgrp_plat_probe_lt_shift
) ||
1812 (t2
> t1
&& t2
- t1
>
1813 t2
>> lgrp_plat_probe_lt_shift
))
1817 * Make latency(i, j) same as
1818 * latency(k, l), try to use latency
1819 * that has been adjusted already to get
1820 * more consistency (if possible), and
1821 * remember which latencies were
1822 * adjusted for next time
1824 if (lat_corrected
[i
][j
]) {
1826 lgrp_config(cflag
, t2
, t
);
1828 } else if (lat_corrected
[k
][l
]) {
1830 lgrp_config(cflag
, t1
, t
);
1837 lgrp_config(cflag
, t1
, t
);
1838 lgrp_config(cflag
, t2
, t
);
1842 lat_stats
->latencies
[i
][j
] =
1843 lat_stats
->latencies
[k
][l
] = t
;
1845 lat_corrected
[i
][j
] =
1846 lat_corrected
[k
][l
] = 1;
1853 * Local latencies should be same
1854 * - Find min and max local latencies
1855 * - Make all local latencies be minimum
1859 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1860 if (!memnode_info
[i
].exists
)
1862 t
= lat_stats
->latencies
[i
][i
];
1865 if (min
== -1 || t
< min
)
1871 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1874 if (!memnode_info
[i
].exists
)
1877 local
= lat_stats
->latencies
[i
][i
];
1882 * Track suspect probe times that aren't within
1883 * tolerance of minimum local latency and how much
1884 * probe times are corrected by
1886 if (local
- min
> min
>> lgrp_plat_probe_lt_shift
)
1887 probe_stats
->probe_suspect
[i
][i
]++;
1889 probe_stats
->probe_errors
[i
][i
] += local
- min
;
1892 * Make local latencies be minimum
1894 lgrp_config(LGRP_CONFIG_LAT_CHANGE
, i
, min
);
1895 lat_stats
->latencies
[i
][i
] = min
;
1900 * Determine max probe time again since just adjusted latencies
1902 lat_stats
->latency_max
= 0;
1903 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1904 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
1905 if (!memnode_info
[j
].exists
)
1907 t
= lat_stats
->latencies
[i
][j
];
1908 if (t
> lat_stats
->latency_max
)
1909 lat_stats
->latency_max
= t
;
1916 * Verify following about latencies between nodes:
1918 * - Latencies should be symmetric (ie. latency(a, b) == latency(b, a))
1919 * - Local latencies same
1921 * - Number of latencies seen is reasonable
1922 * - Number of occurrences of a given latency should be more than 1
1927 * -2 Local latencies not same
1928 * -3 Local >= remote
1931 lgrp_plat_latency_verify(memnode_phys_addr_map_t
*memnode_info
,
1932 lgrp_plat_latency_stats_t
*lat_stats
)
1939 ASSERT(memnode_info
!= NULL
&& lat_stats
!= NULL
);
1942 * Nothing to do when this is an UMA machine, lgroup topology is
1943 * limited to 2 levels, or there aren't any probe times yet
1945 if (max_mem_nodes
== 1 || lgrp_topo_levels
< 2 ||
1946 lat_stats
->latencies
[0][0] == 0)
1950 * Make sure that latencies are symmetric between any two nodes
1951 * (ie. latency(node0, node1) == latency(node1, node0))
1953 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1954 if (!memnode_info
[i
].exists
)
1956 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
1957 if (!memnode_info
[j
].exists
)
1959 t1
= lat_stats
->latencies
[i
][j
];
1960 t2
= lat_stats
->latencies
[j
][i
];
1962 if (t1
== 0 || t2
== 0 || t1
== t2
)
1970 * Local latencies should be same
1972 t1
= lat_stats
->latencies
[0][0];
1973 for (i
= 1; i
< lgrp_plat_node_cnt
; i
++) {
1974 if (!memnode_info
[i
].exists
)
1977 t2
= lat_stats
->latencies
[i
][i
];
1991 * Local latencies should be less than remote
1994 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
1995 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
1996 if (!memnode_info
[j
].exists
)
1998 t2
= lat_stats
->latencies
[i
][j
];
1999 if (i
== j
|| t2
== 0)
2013 * Platform-specific initialization
2016 lgrp_plat_main_init(void)
2023 * Print a notice that MPO is disabled when memory is interleaved
2024 * across nodes....Would do this when it is discovered, but can't
2025 * because it happens way too early during boot....
2027 if (lgrp_plat_mem_intrlv
)
2029 "MPO disabled because memory is interleaved\n");
2032 * Don't bother to do any probing if it is disabled, there is only one
2033 * node, or the height of the lgroup topology less than or equal to 2
2035 ht_limit
= lgrp_topo_ht_limit();
2036 if (!(lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_ENABLE
) ||
2037 max_mem_nodes
== 1 || ht_limit
<= 2) {
2039 * Setup lgroup latencies for 2 level lgroup topology
2040 * (ie. local and remote only) if they haven't been set yet
2042 if (ht_limit
== 2 && lgrp_plat_lat_stats
.latency_min
== -1 &&
2043 lgrp_plat_lat_stats
.latency_max
== 0)
2044 lgrp_plat_2level_setup(&lgrp_plat_lat_stats
);
2048 if (lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_VENDOR
) {
2050 * Should have been able to probe from CPU 0 when it was added
2051 * to lgroup hierarchy, but may not have been able to then
2052 * because it happens so early in boot that gethrtime() hasn't
2053 * been initialized. (:-(
2055 curnode
= lgrp_plat_cpu_to_node(CPU
, lgrp_plat_cpu_node
,
2056 lgrp_plat_cpu_node_nentries
);
2057 ASSERT(curnode
>= 0 && curnode
< lgrp_plat_node_cnt
);
2058 if (lgrp_plat_lat_stats
.latencies
[curnode
][curnode
] == 0)
2065 * When probing memory, use one page for every sample to determine
2066 * lgroup topology and taking multiple samples
2068 if (lgrp_plat_probe_mem_config
.probe_memsize
== 0)
2069 lgrp_plat_probe_mem_config
.probe_memsize
= PAGESIZE
*
2070 lgrp_plat_probe_nsamples
;
2073 * Map memory in each node needed for probing to determine latency
2076 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
2080 * Skip this node and leave its probe page NULL
2081 * if it doesn't have any memory
2084 if (!mem_node_config
[mnode
].exists
) {
2085 lgrp_plat_probe_mem_config
.probe_va
[i
] = NULL
;
2090 * Allocate one kernel virtual page
2092 lgrp_plat_probe_mem_config
.probe_va
[i
] = vmem_alloc(heap_arena
,
2093 lgrp_plat_probe_mem_config
.probe_memsize
, VM_NOSLEEP
);
2094 if (lgrp_plat_probe_mem_config
.probe_va
[i
] == NULL
) {
2096 "lgrp_plat_main_init: couldn't allocate memory");
2101 * Get PFN for first page in each node
2103 lgrp_plat_probe_mem_config
.probe_pfn
[i
] =
2104 mem_node_config
[mnode
].physbase
;
2107 * Map virtual page to first page in node
2109 hat_devload(kas
.a_hat
, lgrp_plat_probe_mem_config
.probe_va
[i
],
2110 lgrp_plat_probe_mem_config
.probe_memsize
,
2111 lgrp_plat_probe_mem_config
.probe_pfn
[i
],
2112 PROT_READ
| PROT_WRITE
| HAT_PLAT_NOCACHE
,
2113 HAT_LOAD_NOCONSIST
);
2117 * Probe from current CPU
2124 * Return the number of free, allocatable, or installed
2125 * pages in an lgroup
2126 * This is a copy of the MAX_MEM_NODES == 1 version of the routine
2127 * used when MPO is disabled (i.e. single lgroup) or this is the root lgroup
2130 lgrp_plat_mem_size_default(lgrp_handle_t lgrphand
, lgrp_mem_query_t query
)
2132 _NOTE(ARGUNUSED(lgrphand
));
2134 struct memlist
*mlist
;
2136 extern struct memlist
*phys_avail
;
2137 extern struct memlist
*phys_install
;
2140 case LGRP_MEM_SIZE_FREE
:
2141 return ((pgcnt_t
)freemem
);
2142 case LGRP_MEM_SIZE_AVAIL
:
2143 memlist_read_lock();
2144 for (mlist
= phys_avail
; mlist
; mlist
= mlist
->ml_next
)
2145 npgs
+= btop(mlist
->ml_size
);
2146 memlist_read_unlock();
2148 case LGRP_MEM_SIZE_INSTALL
:
2149 memlist_read_lock();
2150 for (mlist
= phys_install
; mlist
; mlist
= mlist
->ml_next
)
2151 npgs
+= btop(mlist
->ml_size
);
2152 memlist_read_unlock();
2155 return ((pgcnt_t
)0);
2161 * Update node to proximity domain mappings for given domain and return node ID
2164 lgrp_plat_node_domain_update(node_domain_map_t
*node_domain
, int node_cnt
,
2171 * Hash proximity domain ID into node to domain mapping table (array)
2172 * and add entry for it into first non-existent or matching entry found
2174 node
= start
= NODE_DOMAIN_HASH(domain
, node_cnt
);
2177 * Entry doesn't exist yet, so create one for this proximity
2178 * domain and return node ID which is index into mapping table.
2180 if (!node_domain
[node
].exists
) {
2181 node_domain
[node
].prox_domain
= domain
;
2183 node_domain
[node
].exists
= 1;
2188 * Entry exists for this proximity domain already, so just
2189 * return node ID (index into table).
2191 if (node_domain
[node
].prox_domain
== domain
)
2193 node
= NODE_DOMAIN_HASH(node
+ 1, node_cnt
);
2194 } while (node
!= start
);
2197 * Ran out of supported number of entries which shouldn't happen....
2199 ASSERT(node
!= start
);
2204 * Update node memory information for given proximity domain with specified
2205 * starting and ending physical address range (and return positive numbers for
2206 * success and negative ones for errors)
2209 lgrp_plat_memnode_info_update(node_domain_map_t
*node_domain
, int node_cnt
,
2210 memnode_phys_addr_map_t
*memnode_info
, int memnode_cnt
, uint64_t start
,
2211 uint64_t end
, uint32_t domain
, uint32_t device_id
)
2216 * Get node number for proximity domain
2218 node
= lgrp_plat_domain_to_node(node_domain
, node_cnt
, domain
);
2220 node
= lgrp_plat_node_domain_update(node_domain
, node_cnt
,
2227 * This function is called during boot if device_id is
2228 * ACPI_MEMNODE_DEVID_BOOT, otherwise it's called at runtime for
2229 * memory DR operations.
2231 if (device_id
!= ACPI_MEMNODE_DEVID_BOOT
) {
2232 ASSERT(lgrp_plat_max_mem_node
<= memnode_cnt
);
2234 for (mnode
= lgrp_plat_node_cnt
;
2235 mnode
< lgrp_plat_max_mem_node
; mnode
++) {
2236 if (memnode_info
[mnode
].exists
&&
2237 memnode_info
[mnode
].prox_domain
== domain
&&
2238 memnode_info
[mnode
].device_id
== device_id
) {
2239 if (btop(start
) < memnode_info
[mnode
].start
)
2240 memnode_info
[mnode
].start
= btop(start
);
2241 if (btop(end
) > memnode_info
[mnode
].end
)
2242 memnode_info
[mnode
].end
= btop(end
);
2247 if (lgrp_plat_max_mem_node
>= memnode_cnt
) {
2250 lgrp_plat_max_mem_node
++;
2251 memnode_info
[mnode
].start
= btop(start
);
2252 memnode_info
[mnode
].end
= btop(end
);
2253 memnode_info
[mnode
].prox_domain
= domain
;
2254 memnode_info
[mnode
].device_id
= device_id
;
2255 memnode_info
[mnode
].lgrphand
= node
;
2257 memnode_info
[mnode
].exists
= 1;
2263 * Create entry in table for node if it doesn't exist
2265 ASSERT(node
< memnode_cnt
);
2266 if (!memnode_info
[node
].exists
) {
2267 memnode_info
[node
].start
= btop(start
);
2268 memnode_info
[node
].end
= btop(end
);
2269 memnode_info
[node
].prox_domain
= domain
;
2270 memnode_info
[node
].device_id
= device_id
;
2271 memnode_info
[node
].lgrphand
= node
;
2273 memnode_info
[node
].exists
= 1;
2278 * Entry already exists for this proximity domain
2280 * There may be more than one SRAT memory entry for a domain, so we may
2281 * need to update existing start or end address for the node.
2283 if (memnode_info
[node
].prox_domain
== domain
) {
2284 if (btop(start
) < memnode_info
[node
].start
)
2285 memnode_info
[node
].start
= btop(start
);
2286 if (btop(end
) > memnode_info
[node
].end
)
2287 memnode_info
[node
].end
= btop(end
);
2295 * Have to sort nodes by starting physical address because plat_mnode_xcheck()
2296 * assumes and expects memnodes to be sorted in ascending order by physical
2300 lgrp_plat_node_sort(node_domain_map_t
*node_domain
, int node_cnt
,
2301 cpu_node_map_t
*cpu_node
, int cpu_count
,
2302 memnode_phys_addr_map_t
*memnode_info
)
2311 if (!lgrp_plat_node_sort_enable
|| node_cnt
<= 1 ||
2312 node_domain
== NULL
|| memnode_info
== NULL
)
2319 for (i
= 0; i
< node_cnt
- 1; i
++) {
2321 * Skip entries that don't exist
2323 if (!memnode_info
[i
].exists
)
2327 * Try to find next existing entry to compare against
2330 for (j
= i
+ 1; j
< node_cnt
; j
++) {
2331 if (memnode_info
[j
].exists
) {
2338 * Done if no more existing entries to compare against
2340 if (found
== B_FALSE
)
2344 * Not sorted if starting address of current entry is bigger
2345 * than starting address of next existing entry
2347 if (memnode_info
[i
].start
> memnode_info
[j
].start
) {
2354 * Don't need to sort if sorted already
2356 if (sorted
== B_TRUE
)
2360 * Just use bubble sort since number of nodes is small
2366 for (i
= 0; i
< n
; i
++) {
2368 * Skip entries that don't exist
2370 if (!memnode_info
[i
].exists
)
2374 * Try to find next existing entry to compare against
2377 for (j
= i
+ 1; j
<= n
; j
++) {
2378 if (memnode_info
[j
].exists
) {
2385 * Done if no more existing entries to compare against
2387 if (found
== B_FALSE
)
2390 if (memnode_info
[i
].start
> memnode_info
[j
].start
) {
2391 memnode_phys_addr_map_t save_addr
;
2392 node_domain_map_t save_node
;
2395 * Swap node to proxmity domain ID assignments
2397 bcopy(&node_domain
[i
], &save_node
,
2398 sizeof (node_domain_map_t
));
2399 bcopy(&node_domain
[j
], &node_domain
[i
],
2400 sizeof (node_domain_map_t
));
2401 bcopy(&save_node
, &node_domain
[j
],
2402 sizeof (node_domain_map_t
));
2405 * Swap node to physical memory assignments
2407 bcopy(&memnode_info
[i
], &save_addr
,
2408 sizeof (memnode_phys_addr_map_t
));
2409 bcopy(&memnode_info
[j
], &memnode_info
[i
],
2410 sizeof (memnode_phys_addr_map_t
));
2411 bcopy(&save_addr
, &memnode_info
[j
],
2412 sizeof (memnode_phys_addr_map_t
));
2416 } while (swapped
== B_TRUE
);
2419 * Check to make sure that CPUs assigned to correct node IDs now since
2420 * node to proximity domain ID assignments may have been changed above
2422 if (n
== node_cnt
- 1 || cpu_node
== NULL
|| cpu_count
< 1)
2424 for (i
= 0; i
< cpu_count
; i
++) {
2427 node
= lgrp_plat_domain_to_node(node_domain
, node_cnt
,
2428 cpu_node
[i
].prox_domain
);
2429 if (cpu_node
[i
].node
!= node
)
2430 cpu_node
[i
].node
= node
;
2437 * Return time needed to probe from current CPU to memory in given node
2440 lgrp_plat_probe_time(int to
, cpu_node_map_t
*cpu_node
, int cpu_node_nentries
,
2441 lgrp_plat_probe_mem_config_t
*probe_mem_config
,
2442 lgrp_plat_latency_stats_t
*lat_stats
, lgrp_plat_probe_stats_t
*probe_stats
)
2453 extern int use_sse_pagecopy
;
2456 * Determine ID of node containing current CPU
2458 from
= lgrp_plat_cpu_to_node(CPU
, cpu_node
, cpu_node_nentries
);
2459 ASSERT(from
>= 0 && from
< lgrp_plat_node_cnt
);
2462 * Do common work for probing main memory
2464 if (lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_PGCPY
) {
2466 * Skip probing any nodes without memory and
2467 * set probe time to 0
2469 if (probe_mem_config
->probe_va
[to
] == NULL
) {
2470 lat_stats
->latencies
[from
][to
] = 0;
2475 * Invalidate caches once instead of once every sample
2476 * which should cut cost of probing by a lot
2478 probe_stats
->flush_cost
= gethrtime();
2480 probe_stats
->flush_cost
= gethrtime() -
2481 probe_stats
->flush_cost
;
2482 probe_stats
->probe_cost_total
+= probe_stats
->flush_cost
;
2486 * Probe from current CPU to given memory using specified operation
2487 * and take specified number of samples
2491 for (i
= 0; i
< lgrp_plat_probe_nsamples
; i
++) {
2492 probe_stats
->probe_cost
= gethrtime();
2495 * Can't measure probe time if gethrtime() isn't working yet
2497 if (probe_stats
->probe_cost
== 0 && gethrtime() == 0)
2500 if (lgrp_plat_probe_flags
& LGRP_PLAT_PROBE_VENDOR
) {
2502 * Measure how long it takes to read vendor ID from
2505 elapsed
= opt_probe_vendor(to
, lgrp_plat_probe_nreads
);
2508 * Measure how long it takes to copy page
2511 buf
= probe_mem_config
->probe_va
[to
] + (i
* PAGESIZE
);
2515 start
= gethrtime();
2516 if (use_sse_pagecopy
)
2517 hwblkpagecopy(buf
, buf
);
2519 bcopy(buf
, buf
, PAGESIZE
);
2521 elapsed
= end
- start
;
2526 probe_stats
->probe_cost
= gethrtime() -
2527 probe_stats
->probe_cost
;
2528 probe_stats
->probe_cost_total
+= probe_stats
->probe_cost
;
2530 if (min
== -1 || elapsed
< min
)
2537 * Update minimum and maximum probe times between
2540 if (min
< probe_stats
->probe_min
[from
][to
] ||
2541 probe_stats
->probe_min
[from
][to
] == 0)
2542 probe_stats
->probe_min
[from
][to
] = min
;
2544 if (max
> probe_stats
->probe_max
[from
][to
])
2545 probe_stats
->probe_max
[from
][to
] = max
;
2552 * Read boot property with CPU to APIC ID array, fill in CPU to node ID
2553 * mapping table with APIC ID for each CPU (if pointer to table isn't NULL),
2554 * and return number of CPU APIC IDs.
2556 * NOTE: This code assumes that CPU IDs are assigned in order that they appear
2557 * in in cpu_apicid_array boot property which is based on and follows
2558 * same ordering as processor list in ACPI MADT. If the code in
2559 * usr/src/uts/i86pc/io/pcplusmp/apic.c that reads MADT and assigns
2560 * CPU IDs ever changes, then this code will need to change too....
2563 lgrp_plat_process_cpu_apicids(cpu_node_map_t
*cpu_node
)
2566 char *boot_prop_name
= BP_CPU_APICID_ARRAY
;
2567 uint32_t *cpu_apicid_array
;
2572 * Check length of property value
2574 boot_prop_len
= BOP_GETPROPLEN(bootops
, boot_prop_name
);
2575 if (boot_prop_len
<= 0)
2579 * Calculate number of entries in array and return when the system is
2580 * not very interesting for NUMA. It's not interesting for NUMA if
2581 * system has only one CPU and doesn't support CPU hotplug.
2583 n
= boot_prop_len
/ sizeof (*cpu_apicid_array
);
2584 if (n
== 1 && !plat_dr_support_cpu())
2587 cpu_apicid_array
= (uint32_t *)BOP_ALLOC(bootops
, NULL
, boot_prop_len
,
2588 sizeof (*cpu_apicid_array
));
2590 * Get CPU to APIC ID property value
2592 if (cpu_apicid_array
== NULL
||
2593 BOP_GETPROP(bootops
, boot_prop_name
, cpu_apicid_array
) < 0)
2597 * Just return number of CPU APIC IDs if CPU to node mapping table is
2600 if (cpu_node
== NULL
) {
2601 if (plat_dr_support_cpu() && n
>= boot_ncpus
) {
2602 return (boot_ncpus
);
2609 * Fill in CPU to node ID mapping table with APIC ID for each CPU
2611 for (i
= 0; i
< n
; i
++) {
2612 /* Only add boot CPUs into the map if CPU DR is enabled. */
2613 if (plat_dr_support_cpu() && i
>= boot_ncpus
)
2615 cpu_node
[i
].exists
= 1;
2616 cpu_node
[i
].apicid
= cpu_apicid_array
[i
];
2617 cpu_node
[i
].prox_domain
= UINT32_MAX
;
2618 cpu_node
[i
].node
= UINT_MAX
;
2622 * Return number of CPUs based on number of APIC IDs
2629 * Read ACPI System Locality Information Table (SLIT) to determine how far each
2630 * NUMA node is from each other
2633 lgrp_plat_process_slit(ACPI_TABLE_SLIT
*tp
,
2634 node_domain_map_t
*node_domain
, uint_t node_cnt
,
2635 memnode_phys_addr_map_t
*memnode_info
, lgrp_plat_latency_stats_t
*lat_stats
)
2645 uint8_t *slit_entries
;
2647 if (tp
== NULL
|| !lgrp_plat_slit_enable
)
2650 if (lat_stats
== NULL
)
2653 localities
= tp
->LocalityCount
;
2655 min
= lat_stats
->latency_min
;
2656 max
= lat_stats
->latency_max
;
2659 * Fill in latency matrix based on SLIT entries
2661 slit_entries
= tp
->Entry
;
2662 for (i
= 0; i
< localities
; i
++) {
2663 src
= lgrp_plat_domain_to_node(node_domain
,
2668 for (j
= 0; j
< localities
; j
++) {
2671 dst
= lgrp_plat_domain_to_node(node_domain
,
2676 latency
= slit_entries
[(i
* localities
) + j
];
2677 lat_stats
->latencies
[src
][dst
] = latency
;
2678 if (latency
< min
|| min
== -1)
2686 * Verify that latencies/distances given in SLIT look reasonable
2688 retval
= lgrp_plat_latency_verify(memnode_info
, lat_stats
);
2692 * Reinitialize (zero) latency table since SLIT doesn't look
2695 for (i
= 0; i
< localities
; i
++) {
2696 for (j
= 0; j
< localities
; j
++)
2697 lat_stats
->latencies
[i
][j
] = 0;
2701 * Update min and max latencies seen since SLIT looks valid
2703 lat_stats
->latency_min
= min
;
2704 lat_stats
->latency_max
= max
;
2712 * Update lgrp latencies according to information returned by ACPI _SLI method.
2715 lgrp_plat_process_sli(uint32_t domain_id
, uchar_t
*sli_info
,
2716 uint32_t sli_cnt
, node_domain_map_t
*node_domain
, uint_t node_cnt
,
2717 lgrp_plat_latency_stats_t
*lat_stats
)
2724 if (lat_stats
== NULL
|| sli_info
== NULL
||
2725 sli_cnt
== 0 || domain_id
>= sli_cnt
)
2728 src
= lgrp_plat_domain_to_node(node_domain
, node_cnt
, domain_id
);
2730 src
= lgrp_plat_node_domain_update(node_domain
, node_cnt
,
2737 * Don't update latency info if topology has been flattened to 2 levels.
2739 if (lgrp_plat_topo_flatten
!= 0) {
2744 * Latency information for proximity domain is ready.
2745 * TODO: support adjusting latency information at runtime.
2747 if (lat_stats
->latencies
[src
][src
] != 0) {
2751 /* Validate latency information. */
2752 for (i
= 0; i
< sli_cnt
; i
++) {
2753 if (i
== domain_id
) {
2754 if (sli_info
[i
] != ACPI_SLIT_SELF_LATENCY
||
2755 sli_info
[sli_cnt
+ i
] != ACPI_SLIT_SELF_LATENCY
) {
2759 if (sli_info
[i
] <= ACPI_SLIT_SELF_LATENCY
||
2760 sli_info
[sli_cnt
+ i
] <= ACPI_SLIT_SELF_LATENCY
||
2761 sli_info
[i
] != sli_info
[sli_cnt
+ i
]) {
2767 min
= lat_stats
->latency_min
;
2768 max
= lat_stats
->latency_max
;
2769 for (i
= 0; i
< sli_cnt
; i
++) {
2770 dst
= lgrp_plat_domain_to_node(node_domain
, node_cnt
, i
);
2774 ASSERT(sli_info
[i
] == sli_info
[sli_cnt
+ i
]);
2776 /* Update row in latencies matrix. */
2777 latency
= sli_info
[i
];
2778 lat_stats
->latencies
[src
][dst
] = latency
;
2779 if (latency
< min
|| min
== -1)
2784 /* Update column in latencies matrix. */
2785 latency
= sli_info
[sli_cnt
+ i
];
2786 lat_stats
->latencies
[dst
][src
] = latency
;
2787 if (latency
< min
|| min
== -1)
2792 lat_stats
->latency_min
= min
;
2793 lat_stats
->latency_max
= max
;
2800 * Read ACPI System Resource Affinity Table (SRAT) to determine which CPUs
2801 * and memory are local to each other in the same NUMA node and return number
2805 lgrp_plat_process_srat(ACPI_TABLE_SRAT
*tp
, ACPI_TABLE_MSCT
*mp
,
2806 uint32_t *prox_domain_min
, node_domain_map_t
*node_domain
,
2807 cpu_node_map_t
*cpu_node
, int cpu_count
,
2808 memnode_phys_addr_map_t
*memnode_info
)
2810 ACPI_SUBTABLE_HEADER
*item
, *srat_end
;
2813 int proc_entry_count
;
2817 * Nothing to do when no SRAT or disabled
2819 if (tp
== NULL
|| !lgrp_plat_srat_enable
)
2823 * Try to get domain information from MSCT table.
2824 * ACPI4.0: OSPM will use information provided by the MSCT only
2825 * when the System Resource Affinity Table (SRAT) exists.
2827 node_cnt
= lgrp_plat_msct_domains(mp
, prox_domain_min
);
2828 if (node_cnt
<= 0) {
2830 * Determine number of nodes by counting number of proximity
2833 node_cnt
= lgrp_plat_srat_domains(tp
, prox_domain_min
);
2836 * Return if number of nodes is 1 or less since don't need to read SRAT.
2840 else if (node_cnt
<= 0)
2844 * Walk through SRAT, examining each CPU and memory entry to determine
2845 * which CPUs and memory belong to which node.
2847 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)tp
+ sizeof (*tp
));
2848 srat_end
= (ACPI_SUBTABLE_HEADER
*)(tp
->Header
.Length
+ (uintptr_t)tp
);
2849 proc_entry_count
= 0;
2850 while (item
< srat_end
) {
2857 switch (item
->Type
) {
2858 case ACPI_SRAT_TYPE_CPU_AFFINITY
: { /* CPU entry */
2859 ACPI_SRAT_CPU_AFFINITY
*cpu
=
2860 (ACPI_SRAT_CPU_AFFINITY
*) item
;
2862 if (!(cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
) ||
2867 * Calculate domain (node) ID and fill in APIC ID to
2868 * domain/node mapping table
2870 domain
= cpu
->ProximityDomainLo
;
2871 for (i
= 0; i
< 3; i
++) {
2872 domain
+= cpu
->ProximityDomainHi
[i
] <<
2875 apic_id
= cpu
->ApicId
;
2877 rc
= lgrp_plat_cpu_node_update(node_domain
, node_cnt
,
2878 cpu_node
, cpu_count
, apic_id
, domain
);
2885 case ACPI_SRAT_TYPE_MEMORY_AFFINITY
: { /* memory entry */
2886 ACPI_SRAT_MEM_AFFINITY
*mem
=
2887 (ACPI_SRAT_MEM_AFFINITY
*)item
;
2889 if (!(mem
->Flags
& ACPI_SRAT_MEM_ENABLED
) ||
2890 memnode_info
== NULL
)
2894 * Get domain (node) ID and fill in domain/node
2895 * to memory mapping table
2897 domain
= mem
->ProximityDomain
;
2898 start
= mem
->BaseAddress
;
2899 length
= mem
->Length
;
2900 end
= start
+ length
- 1;
2903 * According to ACPI 4.0, both ENABLE and HOTPLUG flags
2904 * may be set for memory address range entries in SRAT
2905 * table which are reserved for memory hot plug.
2906 * We intersect memory address ranges in SRAT table
2907 * with memory ranges in physinstalled to filter out
2908 * memory address ranges reserved for hot plug.
2910 if (mem
->Flags
& ACPI_SRAT_MEM_HOT_PLUGGABLE
) {
2911 uint64_t rstart
= UINT64_MAX
;
2914 extern struct bootops
*bootops
;
2916 memlist_read_lock();
2917 for (ml
= bootops
->boot_mem
->physinstalled
;
2918 ml
; ml
= ml
->ml_next
) {
2919 uint64_t tstart
= ml
->ml_address
;
2922 tend
= ml
->ml_address
+ ml
->ml_size
;
2923 if (tstart
> end
|| tend
< start
)
2927 if (rstart
> tstart
)
2934 memlist_read_unlock();
2937 /* Skip this entry if no memory installed. */
2942 if (lgrp_plat_memnode_info_update(node_domain
,
2943 node_cnt
, memnode_info
, node_cnt
,
2944 start
, end
, domain
, ACPI_MEMNODE_DEVID_BOOT
) < 0)
2948 case ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY
: { /* x2apic CPU */
2949 ACPI_SRAT_X2APIC_CPU_AFFINITY
*x2cpu
=
2950 (ACPI_SRAT_X2APIC_CPU_AFFINITY
*) item
;
2952 if (!(x2cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
) ||
2957 * Calculate domain (node) ID and fill in APIC ID to
2958 * domain/node mapping table
2960 domain
= x2cpu
->ProximityDomain
;
2961 apic_id
= x2cpu
->ApicId
;
2963 rc
= lgrp_plat_cpu_node_update(node_domain
, node_cnt
,
2964 cpu_node
, cpu_count
, apic_id
, domain
);
2975 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)item
+ item
->Length
);
2979 * Should have seen at least as many SRAT processor entries as CPUs
2981 if (proc_entry_count
< cpu_count
)
2985 * Need to sort nodes by starting physical address since VM system
2986 * assumes and expects memnodes to be sorted in ascending order by
2989 lgrp_plat_node_sort(node_domain
, node_cnt
, cpu_node
, cpu_count
,
2997 * Allocate permanent memory for any temporary memory that we needed to
2998 * allocate using BOP_ALLOC() before kmem_alloc() and VM system were
2999 * initialized and copy everything from temporary to permanent memory since
3000 * temporary boot memory will eventually be released during boot
3003 lgrp_plat_release_bootstrap(void)
3008 if (lgrp_plat_cpu_node_nentries
> 0) {
3009 size
= lgrp_plat_cpu_node_nentries
* sizeof (cpu_node_map_t
);
3010 buf
= kmem_alloc(size
, KM_SLEEP
);
3011 bcopy(lgrp_plat_cpu_node
, buf
, size
);
3012 lgrp_plat_cpu_node
= buf
;
3018 * Return number of proximity domains given in ACPI SRAT
3021 lgrp_plat_srat_domains(ACPI_TABLE_SRAT
*tp
, uint32_t *prox_domain_min
)
3024 uint32_t domain_min
;
3025 ACPI_SUBTABLE_HEADER
*item
, *end
;
3027 node_domain_map_t node_domain
[MAX_NODES
];
3030 if (tp
== NULL
|| !lgrp_plat_srat_enable
)
3034 * Walk through SRAT to find minimum proximity domain ID
3036 domain_min
= UINT32_MAX
;
3037 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)tp
+ sizeof (*tp
));
3038 end
= (ACPI_SUBTABLE_HEADER
*)(tp
->Header
.Length
+ (uintptr_t)tp
);
3039 while (item
< end
) {
3042 switch (item
->Type
) {
3043 case ACPI_SRAT_TYPE_CPU_AFFINITY
: { /* CPU entry */
3044 ACPI_SRAT_CPU_AFFINITY
*cpu
=
3045 (ACPI_SRAT_CPU_AFFINITY
*) item
;
3047 if (!(cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
)) {
3048 item
= (ACPI_SUBTABLE_HEADER
*)
3049 ((uintptr_t)item
+ item
->Length
);
3052 domain
= cpu
->ProximityDomainLo
;
3053 for (i
= 0; i
< 3; i
++) {
3054 domain
+= cpu
->ProximityDomainHi
[i
] <<
3059 case ACPI_SRAT_TYPE_MEMORY_AFFINITY
: { /* memory entry */
3060 ACPI_SRAT_MEM_AFFINITY
*mem
=
3061 (ACPI_SRAT_MEM_AFFINITY
*)item
;
3063 if (!(mem
->Flags
& ACPI_SRAT_MEM_ENABLED
)) {
3064 item
= (ACPI_SUBTABLE_HEADER
*)
3065 ((uintptr_t)item
+ item
->Length
);
3068 domain
= mem
->ProximityDomain
;
3071 case ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY
: { /* x2apic CPU */
3072 ACPI_SRAT_X2APIC_CPU_AFFINITY
*x2cpu
=
3073 (ACPI_SRAT_X2APIC_CPU_AFFINITY
*) item
;
3075 if (!(x2cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
)) {
3076 item
= (ACPI_SUBTABLE_HEADER
*)
3077 ((uintptr_t)item
+ item
->Length
);
3080 domain
= x2cpu
->ProximityDomain
;
3084 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)item
+
3090 * Keep track of minimum proximity domain ID
3092 if (domain
< domain_min
)
3093 domain_min
= domain
;
3095 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)item
+ item
->Length
);
3097 if (lgrp_plat_domain_min_enable
&& prox_domain_min
!= NULL
)
3098 *prox_domain_min
= domain_min
;
3101 * Walk through SRAT, examining each CPU and memory entry to determine
3102 * proximity domain ID for each.
3105 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)tp
+ sizeof (*tp
));
3106 end
= (ACPI_SUBTABLE_HEADER
*)(tp
->Header
.Length
+ (uintptr_t)tp
);
3107 bzero(node_domain
, MAX_NODES
* sizeof (node_domain_map_t
));
3108 while (item
< end
) {
3113 switch (item
->Type
) {
3114 case ACPI_SRAT_TYPE_CPU_AFFINITY
: { /* CPU entry */
3115 ACPI_SRAT_CPU_AFFINITY
*cpu
=
3116 (ACPI_SRAT_CPU_AFFINITY
*) item
;
3118 if (!(cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
)) {
3119 item
= (ACPI_SUBTABLE_HEADER
*)
3120 ((uintptr_t)item
+ item
->Length
);
3123 domain
= cpu
->ProximityDomainLo
;
3124 for (i
= 0; i
< 3; i
++) {
3125 domain
+= cpu
->ProximityDomainHi
[i
] <<
3130 case ACPI_SRAT_TYPE_MEMORY_AFFINITY
: { /* memory entry */
3131 ACPI_SRAT_MEM_AFFINITY
*mem
=
3132 (ACPI_SRAT_MEM_AFFINITY
*)item
;
3134 if (!(mem
->Flags
& ACPI_SRAT_MEM_ENABLED
)) {
3135 item
= (ACPI_SUBTABLE_HEADER
*)
3136 ((uintptr_t)item
+ item
->Length
);
3139 domain
= mem
->ProximityDomain
;
3142 case ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY
: { /* x2apic CPU */
3143 ACPI_SRAT_X2APIC_CPU_AFFINITY
*x2cpu
=
3144 (ACPI_SRAT_X2APIC_CPU_AFFINITY
*) item
;
3146 if (!(x2cpu
->Flags
& ACPI_SRAT_CPU_ENABLED
)) {
3147 item
= (ACPI_SUBTABLE_HEADER
*)
3148 ((uintptr_t)item
+ item
->Length
);
3151 domain
= x2cpu
->ProximityDomain
;
3155 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)item
+
3161 * Count and keep track of which proximity domain IDs seen
3163 start
= i
= domain
% MAX_NODES
;
3167 * Create entry for proximity domain and increment
3168 * count when no entry exists where proximity domain
3171 if (!node_domain
[i
].exists
) {
3172 node_domain
[i
].exists
= 1;
3173 node_domain
[i
].prox_domain
= domain
;
3180 * Nothing to do when proximity domain seen already
3181 * and its entry exists
3183 if (node_domain
[i
].prox_domain
== domain
) {
3189 * Entry exists where proximity domain hashed, but for
3190 * different proximity domain so keep search for empty
3191 * slot to put it or matching entry whichever comes
3194 i
= (i
+ 1) % MAX_NODES
;
3195 } while (i
!= start
);
3198 * Didn't find empty or matching entry which means have more
3199 * proximity domains than supported nodes (:-(
3201 ASSERT(overflow
!= B_TRUE
);
3202 if (overflow
== B_TRUE
)
3205 item
= (ACPI_SUBTABLE_HEADER
*)((uintptr_t)item
+ item
->Length
);
3207 return (domain_cnt
);
3212 * Parse domain information in ACPI Maximum System Capability Table (MSCT).
3213 * MSCT table has been verified in function process_msct() in fakebop.c.
3216 lgrp_plat_msct_domains(ACPI_TABLE_MSCT
*tp
, uint32_t *prox_domain_min
)
3219 uint32_t proxmin
= UINT32_MAX
;
3220 ACPI_MSCT_PROXIMITY
*item
, *end
;
3222 if (tp
== NULL
|| lgrp_plat_msct_enable
== 0)
3225 if (tp
->MaxProximityDomains
>= MAX_NODES
) {
3227 "?lgrp: too many proximity domains (%d), max %d supported, "
3228 "disable support of CPU/memory DR operations.",
3229 tp
->MaxProximityDomains
+ 1, MAX_NODES
);
3230 plat_dr_disable_cpu();
3231 plat_dr_disable_memory();
3235 if (prox_domain_min
!= NULL
) {
3236 end
= (void *)(tp
->Header
.Length
+ (uintptr_t)tp
);
3237 for (item
= (void *)((uintptr_t)tp
+
3238 tp
->ProximityOffset
); item
< end
;
3239 item
= (void *)(item
->Length
+ (uintptr_t)item
)) {
3240 if (item
->RangeStart
< proxmin
) {
3241 proxmin
= item
->RangeStart
;
3244 last_seen
= item
->RangeEnd
- item
->RangeStart
+ 1;
3246 * Break out if all proximity domains have been
3247 * processed. Some BIOSes may have unused items
3248 * at the end of MSCT table.
3250 if (last_seen
> tp
->MaxProximityDomains
) {
3254 *prox_domain_min
= proxmin
;
3257 return (tp
->MaxProximityDomains
+ 1);
3262 * Set lgroup latencies for 2 level lgroup topology
3265 lgrp_plat_2level_setup(lgrp_plat_latency_stats_t
*lat_stats
)
3269 ASSERT(lat_stats
!= NULL
);
3271 if (lgrp_plat_node_cnt
>= 4)
3273 "MPO only optimizing for local and remote\n");
3274 for (i
= 0; i
< lgrp_plat_node_cnt
; i
++) {
3275 for (j
= 0; j
< lgrp_plat_node_cnt
; j
++) {
3277 lat_stats
->latencies
[i
][j
] = 2;
3279 lat_stats
->latencies
[i
][j
] = 3;
3282 lat_stats
->latency_min
= 2;
3283 lat_stats
->latency_max
= 3;
3284 /* TODO: check it. */
3285 lgrp_config(LGRP_CONFIG_FLATTEN
, 2, 0);
3286 lgrp_plat_topo_flatten
= 1;
3291 * The following Opteron specific constants, macros, types, and routines define
3292 * PCI configuration space registers and how to read them to determine the NUMA
3293 * configuration of *supported* Opteron processors. They provide the same
3294 * information that may be gotten from the ACPI System Resource Affinity Table
3295 * (SRAT) if it exists on the machine of interest.
3297 * The AMD BIOS and Kernel Developer's Guide (BKDG) for the processor family
3298 * of interest describes all of these registers and their contents. The main
3299 * registers used by this code to determine the NUMA configuration of the
3300 * machine are the node ID register for the number of NUMA nodes and the DRAM
3301 * address map registers for the physical address range of each node.
3303 * NOTE: The format and how to determine the NUMA configuration using PCI
3304 * config space registers may change or may not be supported in future
3305 * Opteron processor families.
3309 * How many bits to shift Opteron DRAM Address Map base and limit registers
3310 * to get actual value
3312 #define OPT_DRAMADDR_HI_LSHIFT_ADDR 40 /* shift left for address */
3313 #define OPT_DRAMADDR_LO_LSHIFT_ADDR 8 /* shift left for address */
3315 #define OPT_DRAMADDR_HI_MASK_ADDR 0x000000FF /* address bits 47-40 */
3316 #define OPT_DRAMADDR_LO_MASK_ADDR 0xFFFF0000 /* address bits 39-24 */
3318 #define OPT_DRAMADDR_LO_MASK_OFF 0xFFFFFF /* offset for address */
3321 * Macros to derive addresses from Opteron DRAM Address Map registers
3323 #define OPT_DRAMADDR_HI(reg) \
3324 (((u_longlong_t)reg & OPT_DRAMADDR_HI_MASK_ADDR) << \
3325 OPT_DRAMADDR_HI_LSHIFT_ADDR)
3327 #define OPT_DRAMADDR_LO(reg) \
3328 (((u_longlong_t)reg & OPT_DRAMADDR_LO_MASK_ADDR) << \
3329 OPT_DRAMADDR_LO_LSHIFT_ADDR)
3331 #define OPT_DRAMADDR(high, low) \
3332 (OPT_DRAMADDR_HI(high) | OPT_DRAMADDR_LO(low))
3335 * Bit masks defining what's in Opteron DRAM Address Map base register
3337 #define OPT_DRAMBASE_LO_MASK_RE 0x1 /* read enable */
3338 #define OPT_DRAMBASE_LO_MASK_WE 0x2 /* write enable */
3339 #define OPT_DRAMBASE_LO_MASK_INTRLVEN 0x700 /* interleave */
3342 * Bit masks defining what's in Opteron DRAM Address Map limit register
3344 #define OPT_DRAMLIMIT_LO_MASK_DSTNODE 0x7 /* destination node */
3345 #define OPT_DRAMLIMIT_LO_MASK_INTRLVSEL 0x700 /* interleave select */
3349 * Opteron Node ID register in PCI configuration space contains
3350 * number of nodes in system, etc. for Opteron K8. The following
3351 * constants and macros define its contents, structure, and access.
3355 * Bit masks defining what's in Opteron Node ID register
3357 #define OPT_NODE_MASK_ID 0x7 /* node ID */
3358 #define OPT_NODE_MASK_CNT 0x70 /* node count */
3359 #define OPT_NODE_MASK_IONODE 0x700 /* Hypertransport I/O hub node ID */
3360 #define OPT_NODE_MASK_LCKNODE 0x7000 /* lock controller node ID */
3361 #define OPT_NODE_MASK_CPUCNT 0xF0000 /* CPUs in system (0 means 1 CPU) */
3364 * How many bits in Opteron Node ID register to shift right to get actual value
3366 #define OPT_NODE_RSHIFT_CNT 0x4 /* shift right for node count value */
3369 * Macros to get values from Opteron Node ID register
3371 #define OPT_NODE_CNT(reg) \
3372 ((reg & OPT_NODE_MASK_CNT) >> OPT_NODE_RSHIFT_CNT)
3375 * Macro to setup PCI Extended Configuration Space (ECS) address to give to
3376 * "in/out" instructions
3378 * NOTE: Should only be used in lgrp_plat_init() before MMIO setup because any
3379 * other uses should just do MMIO to access PCI ECS.
3380 * Must enable special bit in Northbridge Configuration Register on
3381 * Greyhound for extended CF8 space access to be able to access PCI ECS
3382 * using "in/out" instructions and restore special bit after done
3383 * accessing PCI ECS.
3385 #define OPT_PCI_ECS_ADDR(bus, device, function, reg) \
3386 (PCI_CONE | (((bus) & 0xff) << 16) | (((device & 0x1f)) << 11) | \
3387 (((function) & 0x7) << 8) | ((reg) & 0xfc) | \
3388 ((((reg) >> 8) & 0xf) << 24))
3391 * PCI configuration space registers accessed by specifying
3392 * a bus, device, function, and offset. The following constants
3393 * define the values needed to access Opteron K8 configuration
3394 * info to determine its node topology
3397 #define OPT_PCS_BUS_CONFIG 0 /* Hypertransport config space bus */
3400 * Opteron PCI configuration space register function values
3402 #define OPT_PCS_FUNC_HT 0 /* Hypertransport configuration */
3403 #define OPT_PCS_FUNC_ADDRMAP 1 /* Address map configuration */
3404 #define OPT_PCS_FUNC_DRAM 2 /* DRAM configuration */
3405 #define OPT_PCS_FUNC_MISC 3 /* Miscellaneous configuration */
3408 * PCI Configuration Space register offsets
3410 #define OPT_PCS_OFF_VENDOR 0x0 /* device/vendor ID register */
3411 #define OPT_PCS_OFF_DRAMBASE_HI 0x140 /* DRAM Base register (node 0) */
3412 #define OPT_PCS_OFF_DRAMBASE_LO 0x40 /* DRAM Base register (node 0) */
3413 #define OPT_PCS_OFF_NODEID 0x60 /* Node ID register */
3416 * Opteron PCI Configuration Space device IDs for nodes
3418 #define OPT_PCS_DEV_NODE0 24 /* device number for node 0 */
3422 * Opteron DRAM address map gives base and limit for physical memory in a node
3424 typedef struct opt_dram_addr_map
{
3429 } opt_dram_addr_map_t
;
3433 * Supported AMD processor families
3435 #define AMD_FAMILY_HAMMER 15
3436 #define AMD_FAMILY_GREYHOUND 16
3439 * Whether to have is_opteron() return 1 even when processor isn't supported
3441 uint_t is_opteron_override
= 0;
3444 * AMD processor family for current CPU
3446 uint_t opt_family
= 0;
3450 * Determine whether we're running on a supported AMD Opteron since reading
3451 * node count and DRAM address map registers may have different format or
3452 * may not be supported across processor families
3458 if (x86_vendor
!= X86_VENDOR_AMD
)
3461 opt_family
= cpuid_getfamily(CPU
);
3462 if (opt_family
== AMD_FAMILY_HAMMER
||
3463 opt_family
== AMD_FAMILY_GREYHOUND
|| is_opteron_override
)
3471 * Determine NUMA configuration for Opteron from registers that live in PCI
3472 * configuration space
3475 opt_get_numa_config(uint_t
*node_cnt
, int *mem_intrlv
,
3476 memnode_phys_addr_map_t
*memnode_info
)
3480 struct opt_dram_addr_map dram_map
[MAX_NODES
];
3482 uint_t node_info
[MAX_NODES
];
3485 uint64_t nb_cfg_reg
;
3488 * Read configuration registers from PCI configuration space to
3489 * determine node information, which memory is in each node, etc.
3491 * Write to PCI configuration space address register to specify
3492 * which configuration register to read and read/write PCI
3493 * configuration space data register to get/set contents
3495 bus
= OPT_PCS_BUS_CONFIG
;
3496 dev
= OPT_PCS_DEV_NODE0
;
3497 off_hi
= OPT_PCS_OFF_DRAMBASE_HI
;
3498 off_lo
= OPT_PCS_OFF_DRAMBASE_LO
;
3501 * Read node ID register for node 0 to get node count
3503 node_info
[0] = pci_getl_func(bus
, dev
, OPT_PCS_FUNC_HT
,
3504 OPT_PCS_OFF_NODEID
);
3505 *node_cnt
= OPT_NODE_CNT(node_info
[0]) + 1;
3508 * If number of nodes is more than maximum supported, then set node
3509 * count to 1 and treat system as UMA instead of NUMA.
3511 if (*node_cnt
> MAX_NODES
) {
3517 * For Greyhound, PCI Extended Configuration Space must be enabled to
3518 * read high DRAM address map base and limit registers
3520 if (opt_family
== AMD_FAMILY_GREYHOUND
) {
3521 nb_cfg_reg
= rdmsr(MSR_AMD_NB_CFG
);
3522 if ((nb_cfg_reg
& AMD_GH_NB_CFG_EN_ECS
) == 0)
3523 wrmsr(MSR_AMD_NB_CFG
,
3524 nb_cfg_reg
| AMD_GH_NB_CFG_EN_ECS
);
3527 for (node
= 0; node
< *node_cnt
; node
++) {
3534 * Read node ID register (except for node 0 which we just read)
3537 node_info
[node
] = pci_getl_func(bus
, dev
,
3538 OPT_PCS_FUNC_HT
, OPT_PCS_OFF_NODEID
);
3542 * Read DRAM base and limit registers which specify
3543 * physical memory range of each node
3545 if (opt_family
!= AMD_FAMILY_GREYHOUND
)
3548 outl(PCI_CONFADD
, OPT_PCI_ECS_ADDR(bus
, dev
,
3549 OPT_PCS_FUNC_ADDRMAP
, off_hi
));
3550 base_hi
= dram_map
[node
].base_hi
=
3553 base_lo
= dram_map
[node
].base_lo
= pci_getl_func(bus
, dev
,
3554 OPT_PCS_FUNC_ADDRMAP
, off_lo
);
3556 if ((dram_map
[node
].base_lo
& OPT_DRAMBASE_LO_MASK_INTRLVEN
) &&
3558 *mem_intrlv
= *mem_intrlv
+ 1;
3560 off_hi
+= 4; /* high limit register offset */
3561 if (opt_family
!= AMD_FAMILY_GREYHOUND
)
3564 outl(PCI_CONFADD
, OPT_PCI_ECS_ADDR(bus
, dev
,
3565 OPT_PCS_FUNC_ADDRMAP
, off_hi
));
3566 limit_hi
= dram_map
[node
].limit_hi
=
3570 off_lo
+= 4; /* low limit register offset */
3571 limit_lo
= dram_map
[node
].limit_lo
= pci_getl_func(bus
,
3572 dev
, OPT_PCS_FUNC_ADDRMAP
, off_lo
);
3575 * Increment device number to next node and register offsets
3576 * for DRAM base register of next node
3583 * Both read and write enable bits must be enabled in DRAM
3584 * address map base register for physical memory to exist in
3587 if ((base_lo
& OPT_DRAMBASE_LO_MASK_RE
) == 0 ||
3588 (base_lo
& OPT_DRAMBASE_LO_MASK_WE
) == 0) {
3590 * Mark node memory as non-existent and set start and
3591 * end addresses to be same in memnode_info[]
3593 memnode_info
[node
].exists
= 0;
3594 memnode_info
[node
].start
= memnode_info
[node
].end
=
3600 * Mark node memory as existing and remember physical address
3601 * range of each node for use later
3603 memnode_info
[node
].exists
= 1;
3605 memnode_info
[node
].start
= btop(OPT_DRAMADDR(base_hi
, base_lo
));
3607 memnode_info
[node
].end
= btop(OPT_DRAMADDR(limit_hi
, limit_lo
) |
3608 OPT_DRAMADDR_LO_MASK_OFF
);
3612 * Restore PCI Extended Configuration Space enable bit
3614 if (opt_family
== AMD_FAMILY_GREYHOUND
) {
3615 if ((nb_cfg_reg
& AMD_GH_NB_CFG_EN_ECS
) == 0)
3616 wrmsr(MSR_AMD_NB_CFG
, nb_cfg_reg
);
3622 * Return average amount of time to read vendor ID register on Northbridge
3623 * N times on specified destination node from current CPU
3626 opt_probe_vendor(int dest_node
, int nreads
)
3630 /* LINTED: set but not used in function */
3631 volatile uint_t dev_vendor
;
3637 dev
= OPT_PCS_DEV_NODE0
+ dest_node
;
3640 outl(PCI_CONFADD
, PCI_CADDR1(0, dev
, OPT_PCS_FUNC_DRAM
,
3641 OPT_PCS_OFF_VENDOR
));
3642 start
= gethrtime();
3643 for (cnt
= 0; cnt
< nreads
; cnt
++)
3644 dev_vendor
= inl(PCI_CONFDATA
);
3646 elapsed
= (end
- start
) / nreads
;