| /* |
| * This file is based on mpc4200fec.h from Motorola |
| * |
| * (C) Copyright 2000, Motorola, Inc. |
| * (C) Copyright 2003, Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| * (C) Copyright 2009 Ilya Yanok, Emcraft Systems Ltd <yanok@emcraft.com> |
| * (C) Copyright 2008 Armadeus Systems, nc |
| * (C) Copyright 2008 Eric Jarrige <eric.jarrige@armadeus.org> |
| * (C) Copyright 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
| * (C) Copyright 2007 Pengutronix, Juergen Beisert <j.beisert@pengutronix.de> |
| * (C) Copyright 2020, HENSOLDT Cyber GmbH |
| * |
| * SPDX-License-Identifier: GPL-2.0-or-later |
| * |
| * 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 |
| * |
| */ |
| |
| #pragma once |
| |
| #include <ethdrivers/plat/eth_plat.h> |
| #include "../enet.h" |
| |
| #define PKTSIZE 1518 |
| #define PKTSIZE_ALIGN 1536 |
| |
| struct eth_device { |
| char name[16]; |
| }; |
| |
| struct phy_device *fec_init(unsigned phy_mask, struct enet *enet, |
| const nic_config_t *nic_config); |
| |
| #define FEC_RCNTRL_MAX_FL_SHIFT 16 |
| #define FEC_RCNTRL_LOOP 0x00000001 |
| #define FEC_RCNTRL_DRT 0x00000002 |
| #define FEC_RCNTRL_MII_MODE 0x00000004 |
| #define FEC_RCNTRL_PROM 0x00000008 |
| #define FEC_RCNTRL_BC_REJ 0x00000010 |
| #define FEC_RCNTRL_FCE 0x00000020 |
| #define FEC_RCNTRL_RGMII 0x00000040 |
| #define FEC_RCNTRL_RMII 0x00000100 |
| #define FEC_RCNTRL_RMII_10T 0x00000200 |
| |
| #define FEC_TCNTRL_GTS 0x00000001 |
| #define FEC_TCNTRL_HBC 0x00000002 |
| #define FEC_TCNTRL_FDEN 0x00000004 |
| #define FEC_TCNTRL_TFC_PAUSE 0x00000008 |
| #define FEC_TCNTRL_RFC_PAUSE 0x00000010 |
| |
| #define FEC_ECNTRL_RESET 0x00000001 /* reset the FEC */ |
| #define FEC_ECNTRL_ETHER_EN 0x00000002 /* enable the FEC */ |
| #define FEC_ECNTRL_SPEED 0x00000020 |
| #define FEC_ECNTRL_DBSWAP 0x00000100 |
| |
| #define FEC_X_WMRK_STRFWD 0x00000100 |