blob: 831cb1e2609a3ec8611f8f54123c74d87576fa8f [file] [log] [blame]
wdenk2abbe072003-06-16 23:50:08 +00001/*
2 * Ethernet: An implementation of the Ethernet Device Driver suite for the
3 * uClinux 2.0.38 operating system. This Driver has been developed
wdenk8bde7f72003-06-27 21:31:46 +00004 * for AT75C220 board.
wdenk2abbe072003-06-16 23:50:08 +00005 *
6 * NOTE: The driver is implemented for one MAC
7 *
8 * Version: @(#)at91rm9200_net.h 1.0.0 01/10/2001
9 *
10 * Authors: Lineo Inc <www.lineo.com>
11 *
12 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020013 * SPDX-License-Identifier: GPL-2.0+
wdenk2abbe072003-06-16 23:50:08 +000014 */
15
16#ifndef AT91RM9200_ETHERNET
17#define AT91RM9200_ETHERNET
18
19#include <common.h>
20#include <asm/io.h>
21#include <asm/arch/hardware.h>
wdenk2abbe072003-06-16 23:50:08 +000022
wdenk2abbe072003-06-16 23:50:08 +000023#define ETHERNET_ADDRESS_SIZE 6
24
25typedef unsigned char UCHAR;
26
27/* Interface to drive the physical layer */
28typedef struct _AT91S_PhyOps
29{
30 unsigned char (*Init)(AT91S_EMAC *pmac);
31 unsigned int (*IsPhyConnected)(AT91S_EMAC *pmac);
32 unsigned char (*GetLinkSpeed)(AT91S_EMAC *pmac);
33 unsigned char (*AutoNegotiate)(AT91S_EMAC *pmac, int *);
wdenk8bde7f72003-06-27 21:31:46 +000034
wdenk2abbe072003-06-16 23:50:08 +000035} AT91S_PhyOps,*AT91PS_PhyOps;
36
37
38#define EMAC_DESC_DONE 0x00000001 /* ownership bit */
39#define EMAC_DESC_WRAP 0x00000002 /* bit for wrap */
40
41/****************** function prototypes **********************/
42
43/* MII functions */
wdenk429168e2004-08-02 23:39:03 +000044void at91rm9200_EmacEnableMDIO(AT91PS_EMAC p_mac);
45void at91rm9200_EmacDisableMDIO(AT91PS_EMAC p_mac);
46UCHAR at91rm9200_EmacReadPhy(AT91PS_EMAC p_mac, unsigned char RegisterAddress, unsigned short *pInput);
47UCHAR at91rm9200_EmacWritePhy(AT91PS_EMAC p_mac, unsigned char RegisterAddress, unsigned short *pOutput);
Wolfgang Denk080bdb72005-10-05 01:51:29 +020048void at91rm9200_GetPhyInterface(AT91PS_PhyOps p_phyops);
wdenk2abbe072003-06-16 23:50:08 +000049
50#endif /* AT91RM9200_ETHERNET */