diff options
author | Tom Rini <trini@ti.com> | 2014-10-26 14:12:18 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-26 14:12:18 -0400 |
commit | 1fba907f9a8d178eee960294ecffc8ee8bc6b00d (patch) | |
tree | 5152c87ab6fcc544e4b125a0d1d6f92e120db9c5 /arch/arm/include/asm | |
parent | 84a6df09c78bc9e9cbc6265d99c9097f5f1079f2 (diff) | |
parent | 09bab6e77026d4b4e7682e56b470adf6e9f81563 (diff) | |
download | u-boot-imx-1fba907f9a8d178eee960294ecffc8ee8bc6b00d.zip u-boot-imx-1fba907f9a8d178eee960294ecffc8ee8bc6b00d.tar.gz u-boot-imx-1fba907f9a8d178eee960294ecffc8ee8bc6b00d.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-usb
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-bcm2835/mbox.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-bcm2835/mbox.h b/arch/arm/include/asm/arch-bcm2835/mbox.h index dded857..61f427d 100644 --- a/arch/arm/include/asm/arch-bcm2835/mbox.h +++ b/arch/arm/include/asm/arch-bcm2835/mbox.h @@ -119,6 +119,20 @@ struct bcm2835_mbox_tag_hdr { * }; */ +#define BCM2835_MBOX_TAG_GET_MAC_ADDRESS 0x00010003 + +struct bcm2835_mbox_tag_get_mac_address { + struct bcm2835_mbox_tag_hdr tag_hdr; + union { + struct { + } req; + struct { + u8 mac[6]; + u8 pad[2]; + } resp; + } body; +}; + #define BCM2835_MBOX_TAG_GET_ARM_MEMORY 0x00010005 struct bcm2835_mbox_tag_get_arm_mem { |