mirror of
https://github.com/torvalds/linux.git
synced 2026-04-28 03:22:27 -04:00
Currently vmid is decided internally inside dc. With the introduction of new asics we are required to coordinate vmid use with external components. This change converts vmid logic to a DAL module allowing vmid to be passed in as a parameter to DC. Signed-off-by: Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com> Reviewed-by: Charlene Liu <Charlene.Liu@amd.com> Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
60 lines
2.3 KiB
C
60 lines
2.3 KiB
C
/*
|
|
* Copyright 2018 Advanced Micro Devices, Inc.
|
|
*
|
|
* 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
|
|
*
|
|
* Authors: AMD
|
|
*
|
|
*/
|
|
|
|
#include "dcn20_vmid.h"
|
|
#include "reg_helper.h"
|
|
|
|
#define REG(reg)\
|
|
vmid->regs->reg
|
|
|
|
#define CTX \
|
|
vmid->ctx
|
|
|
|
#undef FN
|
|
#define FN(reg_name, field_name) \
|
|
vmid->shifts->field_name, vmid->masks->field_name
|
|
|
|
void dcn20_vmid_setup(struct dcn20_vmid *vmid, const struct dcn_vmid_page_table_config *config)
|
|
{
|
|
REG_SET(PAGE_TABLE_START_ADDR_HI32, 0,
|
|
VM_CONTEXT0_START_LOGICAL_PAGE_NUMBER_HI4, (config->page_table_start_addr >> 32) & 0xF);
|
|
REG_SET(PAGE_TABLE_START_ADDR_LO32, 0,
|
|
VM_CONTEXT0_START_LOGICAL_PAGE_NUMBER_LO32, config->page_table_start_addr & 0xFFFFFFFF);
|
|
|
|
REG_SET(PAGE_TABLE_END_ADDR_HI32, 0,
|
|
VM_CONTEXT0_END_LOGICAL_PAGE_NUMBER_HI4, (config->page_table_end_addr >> 32) & 0xF);
|
|
REG_SET(PAGE_TABLE_END_ADDR_LO32, 0,
|
|
VM_CONTEXT0_END_LOGICAL_PAGE_NUMBER_LO32, config->page_table_end_addr & 0xFFFFFFFF);
|
|
|
|
REG_SET_2(CNTL, 0,
|
|
VM_CONTEXT0_PAGE_TABLE_DEPTH, config->depth,
|
|
VM_CONTEXT0_PAGE_TABLE_BLOCK_SIZE, config->block_size);
|
|
|
|
REG_SET(PAGE_TABLE_BASE_ADDR_HI32, 0,
|
|
VM_CONTEXT0_PAGE_DIRECTORY_ENTRY_HI32, (config->page_table_base_addr >> 32) & 0xFFFFFFFF);
|
|
REG_SET(PAGE_TABLE_BASE_ADDR_LO32, 0,
|
|
VM_CONTEXT0_PAGE_DIRECTORY_ENTRY_LO32, config->page_table_base_addr & 0xFFFFFFFF);
|
|
}
|