1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2024 Arm Limited
4 */
5
6.global save_boot_params
7save_boot_params:
8	/* The firmware provided FDT address via x1 */
9	adr	x8, fw_dtb_pointer
10	str	x1, [x8]
11
12	b	save_boot_params_ret
13