2020-06-18 16:55:50 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2019 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EAL_MEMCFG_H
|
|
|
|
#define EAL_MEMCFG_H
|
|
|
|
|
|
|
|
#include <rte_memory.h>
|
|
|
|
#include <rte_memzone.h>
|
|
|
|
#include <rte_pause.h>
|
|
|
|
#include <rte_spinlock.h>
|
|
|
|
#include <rte_rwlock.h>
|
|
|
|
#include <rte_tailq.h>
|
|
|
|
|
|
|
|
#include "malloc_heap.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memory configuration shared across multiple processes.
|
|
|
|
*/
|
|
|
|
struct rte_mem_config {
|
|
|
|
volatile uint32_t magic; /**< Magic number - sanity check. */
|
|
|
|
uint32_t version;
|
|
|
|
/**< Prevent secondary processes using different DPDK versions. */
|
|
|
|
|
|
|
|
/* memory topology */
|
|
|
|
uint32_t nchannel; /**< Number of channels (0 if unknown). */
|
|
|
|
uint32_t nrank; /**< Number of ranks (0 if unknown). */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* current lock nest order
|
|
|
|
* - qlock->mlock (ring/hash/lpm)
|
|
|
|
* - mplock->qlock->mlock (mempool)
|
|
|
|
* Notice:
|
|
|
|
* *ALWAYS* obtain qlock first if having to obtain both qlock and mlock
|
|
|
|
*/
|
|
|
|
rte_rwlock_t mlock; /**< used by memzones for thread safety. */
|
|
|
|
rte_rwlock_t qlock; /**< used by tailqs for thread safety. */
|
|
|
|
rte_rwlock_t mplock; /**< used by mempool library for thread safety. */
|
|
|
|
rte_spinlock_t tlock; /**< used by timer library for thread safety. */
|
|
|
|
|
|
|
|
rte_rwlock_t memory_hotplug_lock;
|
|
|
|
/**< Indicates whether memory hotplug request is in progress. */
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
uint8_t mp_status; /**< Multiprocess status. */
|
|
|
|
|
2020-06-18 16:55:50 +00:00
|
|
|
/* memory segments and zones */
|
|
|
|
struct rte_fbarray memzones; /**< Memzone descriptors. */
|
|
|
|
|
|
|
|
struct rte_memseg_list memsegs[RTE_MAX_MEMSEG_LISTS];
|
|
|
|
/**< List of dynamic arrays holding memsegs */
|
|
|
|
|
|
|
|
struct rte_tailq_head tailq_head[RTE_MAX_TAILQ];
|
|
|
|
/**< Tailqs for objects */
|
|
|
|
|
|
|
|
struct malloc_heap malloc_heaps[RTE_MAX_HEAPS];
|
|
|
|
/**< DPDK malloc heaps */
|
|
|
|
|
|
|
|
int next_socket_id; /**< Next socket ID for external malloc heap */
|
|
|
|
|
|
|
|
/* rte_mem_config has to be mapped at the exact same address in all
|
|
|
|
* processes, so we need to store it.
|
|
|
|
*/
|
|
|
|
uint64_t mem_cfg_addr; /**< Address of this structure in memory. */
|
|
|
|
|
|
|
|
/* Primary and secondary processes cannot run with different legacy or
|
|
|
|
* single file segments options, so to avoid having to specify these
|
|
|
|
* options to all processes, store them in shared config and update the
|
|
|
|
* internal config at init time.
|
|
|
|
*/
|
|
|
|
uint32_t legacy_mem; /**< stored legacy mem parameter. */
|
|
|
|
uint32_t single_file_segments;
|
|
|
|
/**< stored single file segments parameter. */
|
|
|
|
|
|
|
|
uint64_t tsc_hz;
|
|
|
|
/**< TSC rate */
|
|
|
|
|
|
|
|
uint8_t dma_maskbits; /**< Keeps the more restricted dma mask. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* update internal config from shared mem config */
|
|
|
|
void
|
|
|
|
eal_mcfg_update_internal(void);
|
|
|
|
|
|
|
|
/* update shared mem config from internal config */
|
|
|
|
void
|
|
|
|
eal_mcfg_update_from_internal(void);
|
|
|
|
|
|
|
|
/* wait until primary process initialization is complete */
|
|
|
|
void
|
|
|
|
eal_mcfg_wait_complete(void);
|
|
|
|
|
|
|
|
/* check if DPDK version of current process matches one stored in the config */
|
|
|
|
int
|
|
|
|
eal_mcfg_check_version(void);
|
|
|
|
|
|
|
|
/* set mem config as complete */
|
|
|
|
void
|
|
|
|
eal_mcfg_complete(void);
|
|
|
|
|
|
|
|
#endif /* EAL_MEMCFG_H */
|