mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 18:25:53 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
15 lines
449 B
Makefile
15 lines
449 B
Makefile
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Makefile for DCN.
|
|
|
|
DCN20 = dcn20_resource.o dcn20_init.o dcn20_hwseq.o dcn20_dpp.o dcn20_dpp_cm.o dcn20_hubp.o \
|
|
dcn20_mpc.o dcn20_opp.o dcn20_hubbub.o dcn20_optc.o dcn20_mmhubbub.o \
|
|
dcn20_stream_encoder.o dcn20_link_encoder.o dcn20_dccg.o \
|
|
dcn20_vmid.o dcn20_dwb.o dcn20_dwb_scl.o
|
|
|
|
DCN20 += dcn20_dsc.o
|
|
|
|
AMD_DAL_DCN20 = $(addprefix $(AMDDALPATH)/dc/dcn20/,$(DCN20))
|
|
|
|
AMD_DISPLAY_FILES += $(AMD_DAL_DCN20)
|