pmu_fw.c 586 Bytes
Newer Older
1
2
3
/*
 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

/* convoluted way to make sure that the define is pasted just the right way */
8
#define INCBIN(file, sym, sec) \
9
	__asm__( \
10
11
12
		".section " sec "\n" \
		".global " sym "\n" \
		".type " sym ", %object\n" \
13
		".align 4\n" \
14
15
16
17
18
		sym ":\n" \
		".incbin \"" file "\"\n" \
		".size " sym ", .-" sym "\n" \
		".global " sym "_end\n" \
		sym "_end:\n" \
19
20
	)

21
22
INCBIN(RK3399M0FW, "rk3399m0_bin", ".sram.incbin");
INCBIN(RK3399M0PMUFW, "rk3399m0pmu_bin", ".pmusram.incbin");