/** \file * Header file for the nework dependent functionality. * The function prototype listed here are linux dependent. * * \internal * ---------------------------REVISION HISTORY------------------- * Synopsys 01/Aug/2007 Created */ /* * File : synopGMAC_network_interface.h * This file is part of RT-Thread RTOS * COPYRIGHT (C) chinesebear * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes * 2017-08-24 chinesebear first version */ #ifndef SYNOP_GMAC_NETWORK_INTERFACE_H #define SYNOP_GMAC_NETWORK_INTERFACE_H 1 #include "synopGMAC_plat.h" #include "synopGMAC_Host.h" #include "synopGMAC_Dev.h" //#include //#include //#include #define NET_IF_TIMEOUT (10*HZ) #define CHECK_TIME (HZ) s32 synopGMAC_init_network_interface(char* xname,u64 synopGMACMappedAddr); void synopGMAC_exit_network_interface(void); s32 synopGMAC_linux_open(struct eth_device *); s32 synopGMAC_linux_close(struct eth_device *); //s32 synopGMAC_linux_xmit_frames(struct ifnet *); struct net_device_stats * synopGMAC_linux_get_stats(struct synopGMACNetworkAdapter *); //void synopGMAC_linux_set_multicast_list(struct net_device *); //s32 synopGMAC_linux_set_mac_address(struct synopGMACNetwokrAdapter*,void *); //s32 synopGMAC_linux_change_mtu(struct net_device *,s32); //s32 synopGMAC_linux_do_ioctl(struct ifnet *,struct ifreq *,s32); //void synopGMAC_linux_tx_timeout(struct net_device *); s32 synopGMAC_test(synopGMACdevice * gmacdev_0,synopGMACdevice * gmacdev_1); void dumpreg(u64 ); void dumpphyreg(); /* * gethex(vp,p,n) * convert n hex digits from p to binary, result in vp, * rtn 1 on success */ static int gethex(u8 *vp, char *p, int n) { u8 v; int digit; for (v = 0; n > 0; n--) { if (*p == 0) return (0); if (*p >= '0' && *p <= '9') digit = *p - '0'; else if (*p >= 'a' && *p <= 'f') digit = *p - 'a' + 10; else if (*p >= 'A' && *p <= 'F') digit = *p - 'A' + 10; else return (0); v <<= 4; v |= digit; p++; } *vp = v; return (1); } #endif /* End of file */