2 * QEMU RISC-V NUMA Helper
4 * Copyright (c) 2020 Western Digital Corporation or its affiliates.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2 or later, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "hw/boards.h"
23 #include "hw/sysbus.h"
24 #include "sysemu/numa.h"
28 * @ms: pointer to machine state
30 * Returns: number of sockets for a numa system and 1 for a non-numa system
32 int riscv_socket_count(const MachineState
*ms
);
35 * riscv_socket_first_hartid:
36 * @ms: pointer to machine state
37 * @socket_id: socket index
39 * Returns: first hartid for a valid socket and -1 for an invalid socket
41 int riscv_socket_first_hartid(const MachineState
*ms
, int socket_id
);
44 * riscv_socket_last_hartid:
45 * @ms: pointer to machine state
46 * @socket_id: socket index
48 * Returns: last hartid for a valid socket and -1 for an invalid socket
50 int riscv_socket_last_hartid(const MachineState
*ms
, int socket_id
);
53 * riscv_socket_hart_count:
54 * @ms: pointer to machine state
55 * @socket_id: socket index
57 * Returns: number of harts for a valid socket and -1 for an invalid socket
59 int riscv_socket_hart_count(const MachineState
*ms
, int socket_id
);
62 * riscv_socket_mem_offset:
63 * @ms: pointer to machine state
64 * @socket_id: socket index
66 * Returns: offset of ram belonging to given socket
68 uint64_t riscv_socket_mem_offset(const MachineState
*ms
, int socket_id
);
71 * riscv_socket_mem_size:
72 * @ms: pointer to machine state
73 * @socket_id: socket index
75 * Returns: size of ram belonging to given socket
77 uint64_t riscv_socket_mem_size(const MachineState
*ms
, int socket_id
);
80 * riscv_socket_check_hartids:
81 * @ms: pointer to machine state
82 * @socket_id: socket index
84 * Returns: true if hardids belonging to given socket are contiguous else false
86 bool riscv_socket_check_hartids(const MachineState
*ms
, int socket_id
);
89 * riscv_socket_fdt_write_id:
90 * @ms: pointer to machine state
91 * @socket_id: socket index
93 * Write NUMA node-id FDT property in MachineState->fdt
95 void riscv_socket_fdt_write_id(const MachineState
*ms
, const char *node_name
,
99 * riscv_socket_fdt_write_distance_matrix:
100 * @ms: pointer to machine state
101 * @socket_id: socket index
103 * Write NUMA distance matrix in MachineState->fdt
105 void riscv_socket_fdt_write_distance_matrix(const MachineState
*ms
);
107 CpuInstanceProperties
108 riscv_numa_cpu_index_to_props(MachineState
*ms
, unsigned cpu_index
);
110 int64_t riscv_numa_get_default_cpu_node_id(const MachineState
*ms
, int idx
);
112 const CPUArchIdList
*riscv_numa_possible_cpu_arch_ids(MachineState
*ms
);
114 #endif /* RISCV_NUMA_H */