mpc85xx: Add support for the P2020
[oweals/u-boot.git] / include / asm-arm / u-boot.h
index c3b0e4a6ba3cb699416f4c016285da4affeaa9ee..b11d5558f009ce301faa07041dc51efb631fbe3d 100644 (file)
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  * MA 02111-1307 USA
+ *
+ ********************************************************************
+ * NOTE: This header file defines an interface to U-Boot. Including
+ * this (unmodified) header file in another file is considered normal
+ * use of U-Boot, and does *not* fall under the heading of "derived
+ * work".
+ ********************************************************************
  */
 
 #ifndef _U_BOOT_H_
@@ -40,7 +47,11 @@ typedef struct bd_info {
     {
        ulong start;
        ulong size;
-    }                  bi_dram[CONFIG_NR_DRAM_BANKS];
+    }                  bi_dram[CONFIG_NR_DRAM_BANKS];
+#ifdef CONFIG_HAS_ETH1
+    /* second onboard ethernet port */
+    unsigned char   bi_enet1addr[6];
+#endif
 } bd_t;
 
 #define bi_env_data bi_env->data