![]() |
|
|||
0001 # 0002 # Copyright 2017 Advanced Micro Devices, Inc. 0003 # 0004 # Permission is hereby granted, free of charge, to any person obtaining a 0005 # copy of this software and associated documentation files (the "Software"), 0006 # to deal in the Software without restriction, including without limitation 0007 # the rights to use, copy, modify, merge, publish, distribute, sublicense, 0008 # and/or sell copies of the Software, and to permit persons to whom the 0009 # Software is furnished to do so, subject to the following conditions: 0010 # 0011 # The above copyright notice and this permission notice shall be included in 0012 # all copies or substantial portions of the Software. 0013 # 0014 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0015 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0016 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 0017 # THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 0018 # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 0019 # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 0020 # OTHER DEALINGS IN THE SOFTWARE. 0021 # 0022 # 0023 # Makefile for the 'gpio' sub-component of DAL. 0024 # It provides the control and status of HW GPIO pins. 0025 0026 GPIO = gpio_base.o gpio_service.o hw_factory.o \ 0027 hw_gpio.o hw_hpd.o hw_ddc.o hw_generic.o hw_translate.o 0028 0029 AMD_DAL_GPIO = $(addprefix $(AMDDALPATH)/dc/gpio/,$(GPIO)) 0030 0031 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO) 0032 0033 ############################################################################### 0034 # DCE 6x 0035 ############################################################################### 0036 # all DCE6.x are derived from DCE6.0 0037 ifdef CONFIG_DRM_AMD_DC_SI 0038 GPIO_DCE60 = hw_translate_dce60.o hw_factory_dce60.o 0039 0040 AMD_DAL_GPIO_DCE60 = $(addprefix $(AMDDALPATH)/dc/gpio/dce60/,$(GPIO_DCE60)) 0041 0042 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE60) 0043 endif 0044 0045 ############################################################################### 0046 # DCE 8x 0047 ############################################################################### 0048 # all DCE8.x are derived from DCE8.0 0049 GPIO_DCE80 = hw_translate_dce80.o hw_factory_dce80.o 0050 0051 AMD_DAL_GPIO_DCE80 = $(addprefix $(AMDDALPATH)/dc/gpio/dce80/,$(GPIO_DCE80)) 0052 0053 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE80) 0054 0055 ############################################################################### 0056 # DCE 11x 0057 ############################################################################### 0058 GPIO_DCE110 = hw_translate_dce110.o hw_factory_dce110.o 0059 0060 AMD_DAL_GPIO_DCE110 = $(addprefix $(AMDDALPATH)/dc/gpio/dce110/,$(GPIO_DCE110)) 0061 0062 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE110) 0063 0064 ############################################################################### 0065 # DCE 12x 0066 ############################################################################### 0067 GPIO_DCE120 = hw_translate_dce120.o hw_factory_dce120.o 0068 0069 AMD_DAL_GPIO_DCE120 = $(addprefix $(AMDDALPATH)/dc/gpio/dce120/,$(GPIO_DCE120)) 0070 0071 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE120) 0072 0073 ############################################################################### 0074 # DCN 1x 0075 ############################################################################### 0076 GPIO_DCN10 = hw_translate_dcn10.o hw_factory_dcn10.o 0077 0078 AMD_DAL_GPIO_DCN10 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn10/,$(GPIO_DCN10)) 0079 0080 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN10) 0081 0082 ############################################################################### 0083 # DCN 2 0084 ############################################################################### 0085 GPIO_DCN20 = hw_translate_dcn20.o hw_factory_dcn20.o 0086 0087 AMD_DAL_GPIO_DCN20 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn20/,$(GPIO_DCN20)) 0088 0089 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN20) 0090 0091 ############################################################################### 0092 # DCN 21 0093 ############################################################################### 0094 GPIO_DCN21 = hw_translate_dcn21.o hw_factory_dcn21.o 0095 0096 AMD_DAL_GPIO_DCN21 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn21/,$(GPIO_DCN21)) 0097 0098 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN21) 0099 0100 ############################################################################### 0101 # DCN 3 0102 ############################################################################### 0103 GPIO_DCN30 = hw_translate_dcn30.o hw_factory_dcn30.o 0104 0105 AMD_DAL_GPIO_DCN30 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn30/,$(GPIO_DCN30)) 0106 0107 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN30) 0108 ############################################################################### 0109 # DCN 3.15 0110 ############################################################################### 0111 GPIO_DCN315 = hw_translate_dcn315.o hw_factory_dcn315.o 0112 0113 AMD_DAL_GPIO_DCN315 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn315/,$(GPIO_DCN315)) 0114 0115 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN315) 0116 0117 ############################################################################### 0118 # DCN 3.2 0119 ############################################################################### 0120 GPIO_DCN32 = hw_translate_dcn32.o hw_factory_dcn32.o 0121 0122 AMD_DAL_GPIO_DCN32 = $(addprefix $(AMDDALPATH)/dc/gpio/dcn32/,$(GPIO_DCN32)) 0123 0124 AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCN32)
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |