1#
2# Makefile for the 'bios' sub-component of DAL.
3# It provides the parsing and executing controls for atom bios image.
4
5BIOS = bios_parser.o bios_parser_interface.o  bios_parser_helper.o command_table.o command_table_helper.o
6
7ifdef CONFIG_DRM_AMD_DC_DCE12_0
8BIOS += command_table2.o command_table_helper2.o bios_parser2.o
9endif
10
11AMD_DAL_BIOS = $(addprefix $(AMDDALPATH)/dc/bios/,$(BIOS))
12
13AMD_DISPLAY_FILES += $(AMD_DAL_BIOS)
14
15###############################################################################
16# DCE 8x
17###############################################################################
18# All DCE8.x are derived from DCE8.0, so 8.0 MUST be defined if ANY of
19# DCE8.x is compiled.
20AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce80/command_table_helper_dce80.o
21
22###############################################################################
23# DCE 11x
24###############################################################################
25AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce110/command_table_helper_dce110.o
26
27AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce112/command_table_helper_dce112.o
28
29ifdef CONFIG_DRM_AMD_DC_DCE12_0
30AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce112/command_table_helper2_dce112.o
31endif
32