/* * Copyright 2021 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 * */ /* FILE POLICY AND INTENDED USAGE: * * This file implements basic dpcd read/write functionality. It also does basic * dpcd range check to ensure that every dpcd request is compliant with specs * range requirements. */ #include "link_dpcd.h" #include <drm/display/drm_dp_helper.h> #include "dm_helpers.h" #define END_ADDRESS(start, size) … #define ADDRESS_RANGE_SIZE(start, end) … struct dpcd_address_range { … }; static enum dc_status internal_link_read_dpcd( struct dc_link *link, uint32_t address, uint8_t *data, uint32_t size) { … } static enum dc_status internal_link_write_dpcd( struct dc_link *link, uint32_t address, const uint8_t *data, uint32_t size) { … } /* * Partition the entire DPCD address space * XXX: This partitioning must cover the entire DPCD address space, * and must contain no gaps or overlapping address ranges. */ static const struct dpcd_address_range mandatory_dpcd_partitions[] = …; static inline bool do_addresses_intersect_with_range( const struct dpcd_address_range *range, const uint32_t start_address, const uint32_t end_address) { … } static uint32_t dpcd_get_next_partition_size(const uint32_t address, const uint32_t size) { … } /* * Ranges of DPCD addresses that must be read in a single transaction * XXX: Do not allow any two address ranges in this array to overlap */ static const struct dpcd_address_range mandatory_dpcd_blocks[] = …; /* * extend addresses to read all mandatory blocks together */ static void dpcd_extend_address_range( const uint32_t in_address, uint8_t * const in_data, const uint32_t in_size, uint32_t *out_address, uint8_t **out_data, uint32_t *out_size) { … } /* * Reduce the AUX reply down to the values the caller requested */ static void dpcd_reduce_address_range( const uint32_t extended_address, uint8_t * const extended_data, const uint32_t extended_size, const uint32_t reduced_address, uint8_t * const reduced_data, const uint32_t reduced_size) { … } enum dc_status core_link_read_dpcd( struct dc_link *link, uint32_t address, uint8_t *data, uint32_t size) { … } enum dc_status core_link_write_dpcd( struct dc_link *link, uint32_t address, const uint8_t *data, uint32_t size) { … }