blob: 60d79c1a8eb243e0ef4356ca73735691982c4c30 [file] [log] [blame]
Raymond Maob579a692024-02-03 08:36:25 -08001/* SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause */
2/*
3 * Copyright (C) 2023 Linaro Limited
4 * Author: Raymond Mao <raymond.mao@linaro.org>
5 */
6
7#ifndef _XFERLIST_H_
8#define _XFERLIST_H_
9
10/*
11 * Boot parameters saved from start.S
12 * saved_args[0]: FDT base address
13 * saved_args[1]: Bloblist signature
14 * saved_args[2]: must be 0
15 * saved_args[3]: Bloblist base address
16 */
17extern unsigned long saved_args[];
18
19#endif /* _XFERLIST_H_ */