au1000_eth.h 3.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 *
 * Alchemy Au1x00 ethernet driver include file
 *
 * Author: Pete Popov <ppopov@mvista.com>
 *
 * Copyright 2001 MontaVista Software Inc.
 *
 * ########################################################################
 *
 *  This program is free software; you can distribute it and/or modify it
 *  under the terms of the GNU General Public License (Version 2) as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope 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.
 *
 * ########################################################################
 *
26
 *
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37
 */


#define MAC_IOSIZE 0x10000
#define NUM_RX_DMA 4       /* Au1x00 has 4 rx hardware descriptors */
#define NUM_TX_DMA 4       /* Au1x00 has 4 tx hardware descriptors */

#define NUM_RX_BUFFS 4
#define NUM_TX_BUFFS 4
#define MAX_BUF_SIZE 2048

38
#define ETH_TX_TIMEOUT (HZ/4)
L
Linus Torvalds 已提交
39 40 41 42
#define MAC_MIN_PKT_SIZE 64

#define MULTICAST_FILTER_LIMIT 64

43 44
/*
 * Data Buffer Descriptor. Data buffers must be aligned on 32 byte
L
Linus Torvalds 已提交
45 46
 * boundary for both, receive and transmit.
 */
F
Florian Fainelli 已提交
47
struct db_dest {
L
Linus Torvalds 已提交
48
	struct db_dest *pnext;
49
	u32 *vaddr;
L
Linus Torvalds 已提交
50
	dma_addr_t dma_addr;
F
Florian Fainelli 已提交
51
};
L
Linus Torvalds 已提交
52 53

/*
54
 * The transmit and receive descriptors are memory
L
Linus Torvalds 已提交
55 56
 * mapped registers.
 */
F
Florian Fainelli 已提交
57
struct tx_dma {
L
Linus Torvalds 已提交
58 59 60 61
	u32 status;
	u32 buff_stat;
	u32 len;
	u32 pad;
F
Florian Fainelli 已提交
62
};
L
Linus Torvalds 已提交
63

F
Florian Fainelli 已提交
64
struct rx_dma {
L
Linus Torvalds 已提交
65 66 67
	u32 status;
	u32 buff_stat;
	u32 pad[2];
F
Florian Fainelli 已提交
68
};
L
Linus Torvalds 已提交
69 70 71 72 73


/*
 * MAC control registers, memory mapped.
 */
F
Florian Fainelli 已提交
74
struct mac_reg {
L
Linus Torvalds 已提交
75 76 77 78 79 80 81 82 83 84
	u32 control;
	u32 mac_addr_high;
	u32 mac_addr_low;
	u32 multi_hash_high;
	u32 multi_hash_low;
	u32 mii_control;
	u32 mii_data;
	u32 flow_control;
	u32 vlan1_tag;
	u32 vlan2_tag;
F
Florian Fainelli 已提交
85
};
L
Linus Torvalds 已提交
86 87 88


struct au1000_private {
F
Florian Fainelli 已提交
89 90
	struct db_dest *pDBfree;
	struct db_dest db[NUM_RX_BUFFS+NUM_TX_BUFFS];
91 92
	struct rx_dma *rx_dma_ring[NUM_RX_DMA];
	struct tx_dma *tx_dma_ring[NUM_TX_DMA];
F
Florian Fainelli 已提交
93 94
	struct db_dest *rx_db_inuse[NUM_RX_DMA];
	struct db_dest *tx_db_inuse[NUM_TX_DMA];
L
Linus Torvalds 已提交
95 96 97 98 99 100
	u32 rx_head;
	u32 tx_head;
	u32 tx_tail;
	u32 tx_full;

	int mac_id;
101

102
	int mac_enabled;       /* whether MAC is currently enabled and running
103 104
				* (req. for mdio)
				*/
105 106 107 108 109 110

	int old_link;          /* used by au1000_adjust_link */
	int old_speed;
	int old_duplex;

	struct phy_device *phy_dev;
111
	struct mii_bus *mii_bus;
112

113 114 115 116 117 118 119 120 121
	/* PHY configuration */
	int phy_static_config;
	int phy_search_highest_addr;
	int phy1_search_mac0;

	int phy_addr;
	int phy_busid;
	int phy_irq;

122
	/* These variables are just for quick access
123 124
	 * to certain regs addresses.
	 */
125 126
	struct mac_reg *mac;  /* mac registers                      */
	u32 *enable;     /* address of MAC Enable Register     */
L
Linus Torvalds 已提交
127 128 129 130 131

	u32 vaddr;                /* virtual address of rx/tx buffers   */
	dma_addr_t dma_addr;      /* dma address of rx/tx buffers       */

	spinlock_t lock;       /* Serialise access to device */
132 133

	u32 msg_enable;
L
Linus Torvalds 已提交
134
};