pmu_fw.c 648 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
		".section " #sec "\n" \
11
12
13
14
15
16
17
18
19
20
		".global " #sym "\n" \
		".type " #sym ", %object\n" \
		".align 4\n" \
		#sym ":\n" \
		".incbin \"" #file "\"\n" \
		".size " #sym ", .-" #sym "\n" \
		".global " #sym "_end\n" \
		#sym "_end:\n" \
	)

21
#define INCBIN(file, sym, sec) _INCBIN(file, sym, sec)
22

23
24
INCBIN(RK3399M0FW, rk3399m0_bin, ".sram.incbin");
INCBIN(RK3399M0PMUFW, rk3399m0pmu_bin, ".pmusram.incbin");