47692d3ed5
* [SWDEV-498711] RDC Partition Implementation Change-Id: Ibfc3709793770537e4c9d36458f34c6b4f461724 Signed-off-by: adapryor <Adam.pryor@amd.com>
55 líneas
2.4 KiB
C
55 líneas
2.4 KiB
C
/*
|
|
Copyright (c) 2025 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
#ifndef INCLUDE_RDC_LIB_RDCENTITYCODEC_H_
|
|
#define INCLUDE_RDC_LIB_RDCENTITYCODEC_H_
|
|
|
|
#include "rdc/rdc.h"
|
|
|
|
/*
|
|
*
|
|
* See rdc.h for description of entity_index
|
|
* Shifts and masks help get only the bits in question to decode/encode
|
|
*
|
|
* Ex, RDC_ENTITY_TYPE_SHIFT = 29 helps shift the 29 irrelevant bits, so we're
|
|
* only left with the top 3 type bits.
|
|
* Then, the corresponding 3 type bits are anded with the RDC_ENTITY_TYPE_MASK = 0x7
|
|
* which = 111 in binary, "copying" the type bits.
|
|
*
|
|
*
|
|
*/
|
|
static constexpr uint32_t RDC_ENTITY_TYPE_SHIFT = 29;
|
|
static constexpr uint32_t RDC_ENTITY_ROLE_SHIFT = 27;
|
|
static constexpr uint32_t RDC_ENTITY_INSTANCE_SHIFT = 11;
|
|
static constexpr uint32_t RDC_ENTITY_DEVICE_SHIFT = 0;
|
|
|
|
static constexpr uint32_t RDC_ENTITY_TYPE_MASK = 0x7; // 3 bits for type.
|
|
static constexpr uint32_t RDC_ENTITY_ROLE_MASK = 0x3; // 2 bits for role.
|
|
static constexpr uint32_t RDC_ENTITY_INSTANCE_MASK = 0x3FF; // 10 bits for instance.
|
|
static constexpr uint32_t RDC_ENTITY_DEVICE_MASK = 0x3FF; // 10 bits for device.
|
|
|
|
rdc_entity_info_t rdc_get_info_from_entity_index(uint32_t entity_index);
|
|
uint32_t rdc_get_entity_index_from_info(rdc_entity_info_t info);
|
|
bool rdc_is_partition_string(const char* s);
|
|
bool rdc_parse_partition_string(const char* s, uint32_t* physicalGpu, uint32_t* partition);
|
|
|
|
#endif // INCLUDE_RDC_LIB_RDCENTITYCODEC_H_
|