mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 00:33:58 -04:00
Supported DCE versions: 8.0, 10.0, 11.0, 11.2 v2: rebase against 4.11 Signed-off-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
#
|
|
# Makefile for the 'gpio' sub-component of DAL.
|
|
# It provides the control and status of HW GPIO pins.
|
|
|
|
GPIO = gpio_base.o gpio_service.o hw_factory.o \
|
|
hw_gpio.o hw_hpd.o hw_ddc.o hw_translate.o
|
|
|
|
AMD_DAL_GPIO = $(addprefix $(AMDDALPATH)/dc/gpio/,$(GPIO))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_GPIO)
|
|
|
|
###############################################################################
|
|
# DCE 8x
|
|
###############################################################################
|
|
# all DCE8.x are derived from DCE8.0
|
|
GPIO_DCE80 = hw_translate_dce80.o hw_factory_dce80.o
|
|
|
|
AMD_DAL_GPIO_DCE80 = $(addprefix $(AMDDALPATH)/dc/gpio/dce80/,$(GPIO_DCE80))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE80)
|
|
|
|
###############################################################################
|
|
# DCE 11x
|
|
###############################################################################
|
|
GPIO_DCE110 = hw_translate_dce110.o hw_factory_dce110.o
|
|
|
|
AMD_DAL_GPIO_DCE110 = $(addprefix $(AMDDALPATH)/dc/gpio/dce110/,$(GPIO_DCE110))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DCE110)
|
|
|
|
###############################################################################
|
|
# Diagnostics on FPGA
|
|
###############################################################################
|
|
GPIO_DIAG_FPGA = hw_translate_diag.o hw_factory_diag.o
|
|
|
|
AMD_DAL_GPIO_DIAG_FPGA = $(addprefix $(AMDDALPATH)/dc/gpio/diagnostics/,$(GPIO_DIAG_FPGA))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_GPIO_DIAG_FPGA)
|