diff options
Diffstat (limited to 'arch/arm/include')
| -rw-r--r-- | arch/arm/include/uapi/asm/setup.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/uapi/asm/setup.h b/arch/arm/include/uapi/asm/setup.h index 979ff401640..fc6f9ea5fba 100644 --- a/arch/arm/include/uapi/asm/setup.h +++ b/arch/arm/include/uapi/asm/setup.h @@ -143,6 +143,12 @@ struct tag_memclk { __u32 fmemclk; }; +#define ATAG_FLAT_DEV_TREE_ADDRESS 0xf100040A +struct tag_flat_dev_tree_address { + u32 address; + u32 size; +}; + struct tag { struct tag_header hdr; union { @@ -165,6 +171,8 @@ struct tag { * DC21285 specific */ struct tag_memclk memclk; + + struct tag_flat_dev_tree_address flat_dev_tree; } u; }; |