summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/archosg9/archos_features.h
blob: f46b9e9eb884c6ab027725dae5bb7673cb1c03bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __ARCHOS_FEATURES_H
#define __ARCHOS_FEATURES_H

/* bootloader version */
#define ATAG_BOOT_VERSION	0x5441000A

struct tag_boot_version {
	u32		major;
	u32		minor;
	u32		extra;
};

#define ATAG_FEATURE_LIST	0x5441000B

struct tag_feature_list {
	u32	size;
	u8	data[0];
};

struct tag *archos_append_atags(struct tag * params);

#endif /* __ARCHOS_FEATURES_H */