]> git.sur5r.net Git - u-boot/blobdiff - drivers/net/designware.h
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
[u-boot] / drivers / net / designware.h
index e5828a6a58194a34cddee83705ba5842dd2231c3..e80002a0e4409fad8f46c7beef79f12143918a17 100644 (file)
@@ -2,23 +2,7 @@
  * (C) Copyright 2010
  * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #ifndef _DW_ETH_H
@@ -121,7 +105,7 @@ struct eth_dma_regs {
 #define RXSTART                        (1 << 1)
 
 /* Descriptior related definitions */
-#define MAC_MAX_FRAME_SZ       (2048)
+#define MAC_MAX_FRAME_SZ       (1600)
 
 struct dmamacdescr {
        u32 txrx_status;
@@ -234,10 +218,13 @@ struct dmamacdescr {
 
 struct dw_eth_dev {
        u32 address;
+       u32 interface;
        u32 speed;
        u32 duplex;
        u32 tx_currdescnum;
        u32 rx_currdescnum;
+       u32 phy_configured;
+       int link_printed;
        u32 padding;
 
        struct dmamacdescr tx_mac_descrtable[CONFIG_TX_DESCR_NUM];