blob: 9fc623b9756d1772a88c2abd69c0ecd62f375dac [file] [log] [blame]
Ziyuan Xu48890e22016-10-27 19:07:35 +08001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdlib.h>
8
9__asm__(
10 ".pushsection .text.hdcp_handler, \"ax\", %progbits\n"
11 ".global hdcp_handler\n"
12 ".balign 4\n"
13 "hdcp_handler:\n"
14 ".incbin \"" __XSTRING(HDCPFW) "\"\n"
15 ".type hdcp_handler, %function\n"
16 ".size hdcp_handler, .- hdcp_handler\n"
17 ".popsection\n"
18);
19