| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Xilinx EmacLite Linux driver for the Xilinx Ethernet MAC Lite device. | 
|  | 3 | * | 
|  | 4 | * This is a new flat driver which is based on the original emac_lite | 
| Michal Simek | 9e7c414 | 2013-05-30 00:28:08 +0000 | [diff] [blame] | 5 | * driver from John Williams <john.williams@xilinx.com>. | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 6 | * | 
| Michal Simek | 9e7c414 | 2013-05-30 00:28:08 +0000 | [diff] [blame] | 7 | * 2007 - 2013 (c) Xilinx, Inc. | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 8 | * | 
|  | 9 | * This program is free software; you can redistribute it and/or modify it | 
|  | 10 | * under the terms of the GNU General Public License as published by the | 
|  | 11 | * Free Software Foundation; either version 2 of the License, or (at your | 
|  | 12 | * option) any later version. | 
|  | 13 | */ | 
|  | 14 |  | 
|  | 15 | #include <linux/module.h> | 
|  | 16 | #include <linux/uaccess.h> | 
|  | 17 | #include <linux/init.h> | 
|  | 18 | #include <linux/netdevice.h> | 
|  | 19 | #include <linux/etherdevice.h> | 
|  | 20 | #include <linux/skbuff.h> | 
|  | 21 | #include <linux/io.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> | 
| Grant Likely | 22ae782 | 2010-07-29 11:49:01 -0600 | [diff] [blame] | 23 | #include <linux/of_address.h> | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 24 | #include <linux/of_device.h> | 
|  | 25 | #include <linux/of_platform.h> | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 26 | #include <linux/of_mdio.h> | 
| David Daney | 4b6ba8a | 2010-10-26 15:07:13 -0700 | [diff] [blame] | 27 | #include <linux/of_net.h> | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 28 | #include <linux/phy.h> | 
| Michal Simek | 075cd29 | 2011-06-09 01:29:13 -0700 | [diff] [blame] | 29 | #include <linux/interrupt.h> | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 30 |  | 
|  | 31 | #define DRIVER_NAME "xilinx_emaclite" | 
|  | 32 |  | 
|  | 33 | /* Register offsets for the EmacLite Core */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 34 | #define XEL_TXBUFF_OFFSET	0x0		/* Transmit Buffer */ | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 35 | #define XEL_MDIOADDR_OFFSET	0x07E4		/* MDIO Address Register */ | 
|  | 36 | #define XEL_MDIOWR_OFFSET	0x07E8		/* MDIO Write Data Register */ | 
|  | 37 | #define XEL_MDIORD_OFFSET	0x07EC		/* MDIO Read Data Register */ | 
|  | 38 | #define XEL_MDIOCTRL_OFFSET	0x07F0		/* MDIO Control Register */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 39 | #define XEL_GIER_OFFSET		0x07F8		/* GIE Register */ | 
|  | 40 | #define XEL_TSR_OFFSET		0x07FC		/* Tx status */ | 
|  | 41 | #define XEL_TPLR_OFFSET		0x07F4		/* Tx packet length */ | 
|  | 42 |  | 
|  | 43 | #define XEL_RXBUFF_OFFSET	0x1000		/* Receive Buffer */ | 
|  | 44 | #define XEL_RPLR_OFFSET		0x100C		/* Rx packet length */ | 
|  | 45 | #define XEL_RSR_OFFSET		0x17FC		/* Rx status */ | 
|  | 46 |  | 
|  | 47 | #define XEL_BUFFER_OFFSET	0x0800		/* Next Tx/Rx buffer's offset */ | 
|  | 48 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 49 | /* MDIO Address Register Bit Masks */ | 
|  | 50 | #define XEL_MDIOADDR_REGADR_MASK  0x0000001F	/* Register Address */ | 
|  | 51 | #define XEL_MDIOADDR_PHYADR_MASK  0x000003E0	/* PHY Address */ | 
|  | 52 | #define XEL_MDIOADDR_PHYADR_SHIFT 5 | 
|  | 53 | #define XEL_MDIOADDR_OP_MASK	  0x00000400	/* RD/WR Operation */ | 
|  | 54 |  | 
|  | 55 | /* MDIO Write Data Register Bit Masks */ | 
|  | 56 | #define XEL_MDIOWR_WRDATA_MASK	  0x0000FFFF	/* Data to be Written */ | 
|  | 57 |  | 
|  | 58 | /* MDIO Read Data Register Bit Masks */ | 
|  | 59 | #define XEL_MDIORD_RDDATA_MASK	  0x0000FFFF	/* Data to be Read */ | 
|  | 60 |  | 
|  | 61 | /* MDIO Control Register Bit Masks */ | 
|  | 62 | #define XEL_MDIOCTRL_MDIOSTS_MASK 0x00000001	/* MDIO Status Mask */ | 
|  | 63 | #define XEL_MDIOCTRL_MDIOEN_MASK  0x00000008	/* MDIO Enable */ | 
|  | 64 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 65 | /* Global Interrupt Enable Register (GIER) Bit Masks */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 66 | #define XEL_GIER_GIE_MASK	0x80000000	/* Global Enable */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 67 |  | 
|  | 68 | /* Transmit Status Register (TSR) Bit Masks */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 69 | #define XEL_TSR_XMIT_BUSY_MASK	 0x00000001	/* Tx complete */ | 
|  | 70 | #define XEL_TSR_PROGRAM_MASK	 0x00000002	/* Program the MAC address */ | 
|  | 71 | #define XEL_TSR_XMIT_IE_MASK	 0x00000008	/* Tx interrupt enable bit */ | 
|  | 72 | #define XEL_TSR_XMIT_ACTIVE_MASK 0x80000000	/* Buffer is active, SW bit | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 73 | * only. This is not documented | 
|  | 74 | * in the HW spec */ | 
|  | 75 |  | 
|  | 76 | /* Define for programming the MAC address into the EmacLite */ | 
|  | 77 | #define XEL_TSR_PROG_MAC_ADDR	(XEL_TSR_XMIT_BUSY_MASK | XEL_TSR_PROGRAM_MASK) | 
|  | 78 |  | 
|  | 79 | /* Receive Status Register (RSR) */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 80 | #define XEL_RSR_RECV_DONE_MASK	0x00000001	/* Rx complete */ | 
|  | 81 | #define XEL_RSR_RECV_IE_MASK	0x00000008	/* Rx interrupt enable bit */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 82 |  | 
|  | 83 | /* Transmit Packet Length Register (TPLR) */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 84 | #define XEL_TPLR_LENGTH_MASK	0x0000FFFF	/* Tx packet length */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 85 |  | 
|  | 86 | /* Receive Packet Length Register (RPLR) */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 87 | #define XEL_RPLR_LENGTH_MASK	0x0000FFFF	/* Rx packet length */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 88 |  | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 89 | #define XEL_HEADER_OFFSET	12		/* Offset to length field */ | 
|  | 90 | #define XEL_HEADER_SHIFT	16		/* Shift value for length */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 91 |  | 
|  | 92 | /* General Ethernet Definitions */ | 
| Michal Simek | cd738c4 | 2013-09-12 09:05:11 +0200 | [diff] [blame] | 93 | #define XEL_ARP_PACKET_SIZE		28	/* Max ARP packet size */ | 
|  | 94 | #define XEL_HEADER_IP_LENGTH_OFFSET	16	/* IP Length Offset */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 95 |  | 
|  | 96 |  | 
|  | 97 |  | 
|  | 98 | #define TX_TIMEOUT		(60*HZ)		/* Tx timeout is 60 seconds. */ | 
|  | 99 | #define ALIGNMENT		4 | 
|  | 100 |  | 
|  | 101 | /* BUFFER_ALIGN(adr) calculates the number of bytes to the next alignment. */ | 
|  | 102 | #define BUFFER_ALIGN(adr) ((ALIGNMENT - ((u32) adr)) % ALIGNMENT) | 
|  | 103 |  | 
|  | 104 | /** | 
|  | 105 | * struct net_local - Our private per device data | 
|  | 106 | * @ndev:		instance of the network device | 
|  | 107 | * @tx_ping_pong:	indicates whether Tx Pong buffer is configured in HW | 
|  | 108 | * @rx_ping_pong:	indicates whether Rx Pong buffer is configured in HW | 
|  | 109 | * @next_tx_buf_to_use:	next Tx buffer to write to | 
|  | 110 | * @next_rx_buf_to_use:	next Rx buffer to read from | 
|  | 111 | * @base_addr:		base address of the Emaclite device | 
|  | 112 | * @reset_lock:		lock used for synchronization | 
|  | 113 | * @deferred_skb:	holds an skb (for transmission at a later time) when the | 
|  | 114 | *			Tx buffer is not free | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 115 | * @phy_dev:		pointer to the PHY device | 
|  | 116 | * @phy_node:		pointer to the PHY device node | 
|  | 117 | * @mii_bus:		pointer to the MII bus | 
|  | 118 | * @mdio_irqs:		IRQs table for MDIO bus | 
|  | 119 | * @last_link:		last link status | 
|  | 120 | * @has_mdio:		indicates whether MDIO is included in the HW | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 121 | */ | 
|  | 122 | struct net_local { | 
|  | 123 |  | 
|  | 124 | struct net_device *ndev; | 
|  | 125 |  | 
|  | 126 | bool tx_ping_pong; | 
|  | 127 | bool rx_ping_pong; | 
|  | 128 | u32 next_tx_buf_to_use; | 
|  | 129 | u32 next_rx_buf_to_use; | 
|  | 130 | void __iomem *base_addr; | 
|  | 131 |  | 
|  | 132 | spinlock_t reset_lock; | 
|  | 133 | struct sk_buff *deferred_skb; | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 134 |  | 
|  | 135 | struct phy_device *phy_dev; | 
|  | 136 | struct device_node *phy_node; | 
|  | 137 |  | 
|  | 138 | struct mii_bus *mii_bus; | 
|  | 139 | int mdio_irqs[PHY_MAX_ADDR]; | 
|  | 140 |  | 
|  | 141 | int last_link; | 
|  | 142 | bool has_mdio; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 143 | }; | 
|  | 144 |  | 
|  | 145 |  | 
|  | 146 | /*************************/ | 
|  | 147 | /* EmacLite driver calls */ | 
|  | 148 | /*************************/ | 
|  | 149 |  | 
|  | 150 | /** | 
|  | 151 | * xemaclite_enable_interrupts - Enable the interrupts for the EmacLite device | 
|  | 152 | * @drvdata:	Pointer to the Emaclite device private data | 
|  | 153 | * | 
|  | 154 | * This function enables the Tx and Rx interrupts for the Emaclite device along | 
|  | 155 | * with the Global Interrupt Enable. | 
|  | 156 | */ | 
|  | 157 | static void xemaclite_enable_interrupts(struct net_local *drvdata) | 
|  | 158 | { | 
|  | 159 | u32 reg_data; | 
|  | 160 |  | 
|  | 161 | /* Enable the Tx interrupts for the first Buffer */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 162 | reg_data = __raw_readl(drvdata->base_addr + XEL_TSR_OFFSET); | 
|  | 163 | __raw_writel(reg_data | XEL_TSR_XMIT_IE_MASK, | 
|  | 164 | drvdata->base_addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 165 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 166 | /* Enable the Rx interrupts for the first buffer */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 167 | __raw_writel(XEL_RSR_RECV_IE_MASK, drvdata->base_addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 168 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 169 | /* Enable the Global Interrupt Enable */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 170 | __raw_writel(XEL_GIER_GIE_MASK, drvdata->base_addr + XEL_GIER_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 171 | } | 
|  | 172 |  | 
|  | 173 | /** | 
|  | 174 | * xemaclite_disable_interrupts - Disable the interrupts for the EmacLite device | 
|  | 175 | * @drvdata:	Pointer to the Emaclite device private data | 
|  | 176 | * | 
|  | 177 | * This function disables the Tx and Rx interrupts for the Emaclite device, | 
|  | 178 | * along with the Global Interrupt Enable. | 
|  | 179 | */ | 
|  | 180 | static void xemaclite_disable_interrupts(struct net_local *drvdata) | 
|  | 181 | { | 
|  | 182 | u32 reg_data; | 
|  | 183 |  | 
|  | 184 | /* Disable the Global Interrupt Enable */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 185 | __raw_writel(XEL_GIER_GIE_MASK, drvdata->base_addr + XEL_GIER_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 186 |  | 
|  | 187 | /* Disable the Tx interrupts for the first buffer */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 188 | reg_data = __raw_readl(drvdata->base_addr + XEL_TSR_OFFSET); | 
|  | 189 | __raw_writel(reg_data & (~XEL_TSR_XMIT_IE_MASK), | 
|  | 190 | drvdata->base_addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 191 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 192 | /* Disable the Rx interrupts for the first buffer */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 193 | reg_data = __raw_readl(drvdata->base_addr + XEL_RSR_OFFSET); | 
|  | 194 | __raw_writel(reg_data & (~XEL_RSR_RECV_IE_MASK), | 
|  | 195 | drvdata->base_addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 196 | } | 
|  | 197 |  | 
|  | 198 | /** | 
|  | 199 | * xemaclite_aligned_write - Write from 16-bit aligned to 32-bit aligned address | 
|  | 200 | * @src_ptr:	Void pointer to the 16-bit aligned source address | 
|  | 201 | * @dest_ptr:	Pointer to the 32-bit aligned destination address | 
|  | 202 | * @length:	Number bytes to write from source to destination | 
|  | 203 | * | 
|  | 204 | * This function writes data from a 16-bit aligned buffer to a 32-bit aligned | 
|  | 205 | * address in the EmacLite device. | 
|  | 206 | */ | 
|  | 207 | static void xemaclite_aligned_write(void *src_ptr, u32 *dest_ptr, | 
|  | 208 | unsigned length) | 
|  | 209 | { | 
|  | 210 | u32 align_buffer; | 
|  | 211 | u32 *to_u32_ptr; | 
|  | 212 | u16 *from_u16_ptr, *to_u16_ptr; | 
|  | 213 |  | 
|  | 214 | to_u32_ptr = dest_ptr; | 
| Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 215 | from_u16_ptr = src_ptr; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 216 | align_buffer = 0; | 
|  | 217 |  | 
|  | 218 | for (; length > 3; length -= 4) { | 
| Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 219 | to_u16_ptr = (u16 *)&align_buffer; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 220 | *to_u16_ptr++ = *from_u16_ptr++; | 
|  | 221 | *to_u16_ptr++ = *from_u16_ptr++; | 
|  | 222 |  | 
|  | 223 | /* Output a word */ | 
|  | 224 | *to_u32_ptr++ = align_buffer; | 
|  | 225 | } | 
|  | 226 | if (length) { | 
|  | 227 | u8 *from_u8_ptr, *to_u8_ptr; | 
|  | 228 |  | 
|  | 229 | /* Set up to output the remaining data */ | 
|  | 230 | align_buffer = 0; | 
|  | 231 | to_u8_ptr = (u8 *) &align_buffer; | 
|  | 232 | from_u8_ptr = (u8 *) from_u16_ptr; | 
|  | 233 |  | 
|  | 234 | /* Output the remaining data */ | 
|  | 235 | for (; length > 0; length--) | 
|  | 236 | *to_u8_ptr++ = *from_u8_ptr++; | 
|  | 237 |  | 
|  | 238 | *to_u32_ptr = align_buffer; | 
|  | 239 | } | 
|  | 240 | } | 
|  | 241 |  | 
|  | 242 | /** | 
|  | 243 | * xemaclite_aligned_read - Read from 32-bit aligned to 16-bit aligned buffer | 
|  | 244 | * @src_ptr:	Pointer to the 32-bit aligned source address | 
|  | 245 | * @dest_ptr:	Pointer to the 16-bit aligned destination address | 
|  | 246 | * @length:	Number bytes to read from source to destination | 
|  | 247 | * | 
|  | 248 | * This function reads data from a 32-bit aligned address in the EmacLite device | 
|  | 249 | * to a 16-bit aligned buffer. | 
|  | 250 | */ | 
|  | 251 | static void xemaclite_aligned_read(u32 *src_ptr, u8 *dest_ptr, | 
|  | 252 | unsigned length) | 
|  | 253 | { | 
|  | 254 | u16 *to_u16_ptr, *from_u16_ptr; | 
|  | 255 | u32 *from_u32_ptr; | 
|  | 256 | u32 align_buffer; | 
|  | 257 |  | 
|  | 258 | from_u32_ptr = src_ptr; | 
|  | 259 | to_u16_ptr = (u16 *) dest_ptr; | 
|  | 260 |  | 
|  | 261 | for (; length > 3; length -= 4) { | 
|  | 262 | /* Copy each word into the temporary buffer */ | 
|  | 263 | align_buffer = *from_u32_ptr++; | 
|  | 264 | from_u16_ptr = (u16 *)&align_buffer; | 
|  | 265 |  | 
|  | 266 | /* Read data from source */ | 
|  | 267 | *to_u16_ptr++ = *from_u16_ptr++; | 
|  | 268 | *to_u16_ptr++ = *from_u16_ptr++; | 
|  | 269 | } | 
|  | 270 |  | 
|  | 271 | if (length) { | 
|  | 272 | u8 *to_u8_ptr, *from_u8_ptr; | 
|  | 273 |  | 
|  | 274 | /* Set up to read the remaining data */ | 
|  | 275 | to_u8_ptr = (u8 *) to_u16_ptr; | 
|  | 276 | align_buffer = *from_u32_ptr++; | 
|  | 277 | from_u8_ptr = (u8 *) &align_buffer; | 
|  | 278 |  | 
|  | 279 | /* Read the remaining data */ | 
|  | 280 | for (; length > 0; length--) | 
|  | 281 | *to_u8_ptr = *from_u8_ptr; | 
|  | 282 | } | 
|  | 283 | } | 
|  | 284 |  | 
|  | 285 | /** | 
|  | 286 | * xemaclite_send_data - Send an Ethernet frame | 
|  | 287 | * @drvdata:	Pointer to the Emaclite device private data | 
|  | 288 | * @data:	Pointer to the data to be sent | 
|  | 289 | * @byte_count:	Total frame size, including header | 
|  | 290 | * | 
|  | 291 | * This function checks if the Tx buffer of the Emaclite device is free to send | 
|  | 292 | * data. If so, it fills the Tx buffer with data for transmission. Otherwise, it | 
|  | 293 | * returns an error. | 
|  | 294 | * | 
|  | 295 | * Return:	0 upon success or -1 if the buffer(s) are full. | 
|  | 296 | * | 
|  | 297 | * Note:	The maximum Tx packet size can not be more than Ethernet header | 
|  | 298 | *		(14 Bytes) + Maximum MTU (1500 bytes). This is excluding FCS. | 
|  | 299 | */ | 
|  | 300 | static int xemaclite_send_data(struct net_local *drvdata, u8 *data, | 
|  | 301 | unsigned int byte_count) | 
|  | 302 | { | 
|  | 303 | u32 reg_data; | 
|  | 304 | void __iomem *addr; | 
|  | 305 |  | 
|  | 306 | /* Determine the expected Tx buffer address */ | 
|  | 307 | addr = drvdata->base_addr + drvdata->next_tx_buf_to_use; | 
|  | 308 |  | 
|  | 309 | /* If the length is too large, truncate it */ | 
|  | 310 | if (byte_count > ETH_FRAME_LEN) | 
|  | 311 | byte_count = ETH_FRAME_LEN; | 
|  | 312 |  | 
|  | 313 | /* Check if the expected buffer is available */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 314 | reg_data = __raw_readl(addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 315 | if ((reg_data & (XEL_TSR_XMIT_BUSY_MASK | | 
|  | 316 | XEL_TSR_XMIT_ACTIVE_MASK)) == 0) { | 
|  | 317 |  | 
|  | 318 | /* Switch to next buffer if configured */ | 
|  | 319 | if (drvdata->tx_ping_pong != 0) | 
|  | 320 | drvdata->next_tx_buf_to_use ^= XEL_BUFFER_OFFSET; | 
|  | 321 | } else if (drvdata->tx_ping_pong != 0) { | 
|  | 322 | /* If the expected buffer is full, try the other buffer, | 
|  | 323 | * if it is configured in HW */ | 
|  | 324 |  | 
|  | 325 | addr = (void __iomem __force *)((u32 __force)addr ^ | 
|  | 326 | XEL_BUFFER_OFFSET); | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 327 | reg_data = __raw_readl(addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 328 |  | 
|  | 329 | if ((reg_data & (XEL_TSR_XMIT_BUSY_MASK | | 
|  | 330 | XEL_TSR_XMIT_ACTIVE_MASK)) != 0) | 
|  | 331 | return -1; /* Buffers were full, return failure */ | 
|  | 332 | } else | 
|  | 333 | return -1; /* Buffer was full, return failure */ | 
|  | 334 |  | 
|  | 335 | /* Write the frame to the buffer */ | 
|  | 336 | xemaclite_aligned_write(data, (u32 __force *) addr, byte_count); | 
|  | 337 |  | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 338 | __raw_writel((byte_count & XEL_TPLR_LENGTH_MASK), | 
|  | 339 | addr + XEL_TPLR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 340 |  | 
|  | 341 | /* Update the Tx Status Register to indicate that there is a | 
|  | 342 | * frame to send. Set the XEL_TSR_XMIT_ACTIVE_MASK flag which | 
|  | 343 | * is used by the interrupt handler to check whether a frame | 
|  | 344 | * has been transmitted */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 345 | reg_data = __raw_readl(addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 346 | reg_data |= (XEL_TSR_XMIT_BUSY_MASK | XEL_TSR_XMIT_ACTIVE_MASK); | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 347 | __raw_writel(reg_data, addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 348 |  | 
|  | 349 | return 0; | 
|  | 350 | } | 
|  | 351 |  | 
|  | 352 | /** | 
|  | 353 | * xemaclite_recv_data - Receive a frame | 
|  | 354 | * @drvdata:	Pointer to the Emaclite device private data | 
|  | 355 | * @data:	Address where the data is to be received | 
|  | 356 | * | 
|  | 357 | * This function is intended to be called from the interrupt context or | 
|  | 358 | * with a wrapper which waits for the receive frame to be available. | 
|  | 359 | * | 
|  | 360 | * Return:	Total number of bytes received | 
|  | 361 | */ | 
|  | 362 | static u16 xemaclite_recv_data(struct net_local *drvdata, u8 *data) | 
|  | 363 | { | 
|  | 364 | void __iomem *addr; | 
|  | 365 | u16 length, proto_type; | 
|  | 366 | u32 reg_data; | 
|  | 367 |  | 
|  | 368 | /* Determine the expected buffer address */ | 
|  | 369 | addr = (drvdata->base_addr + drvdata->next_rx_buf_to_use); | 
|  | 370 |  | 
|  | 371 | /* Verify which buffer has valid data */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 372 | reg_data = __raw_readl(addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 373 |  | 
|  | 374 | if ((reg_data & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) { | 
|  | 375 | if (drvdata->rx_ping_pong != 0) | 
|  | 376 | drvdata->next_rx_buf_to_use ^= XEL_BUFFER_OFFSET; | 
|  | 377 | } else { | 
|  | 378 | /* The instance is out of sync, try other buffer if other | 
|  | 379 | * buffer is configured, return 0 otherwise. If the instance is | 
|  | 380 | * out of sync, do not update the 'next_rx_buf_to_use' since it | 
|  | 381 | * will correct on subsequent calls */ | 
|  | 382 | if (drvdata->rx_ping_pong != 0) | 
|  | 383 | addr = (void __iomem __force *)((u32 __force)addr ^ | 
|  | 384 | XEL_BUFFER_OFFSET); | 
|  | 385 | else | 
|  | 386 | return 0;	/* No data was available */ | 
|  | 387 |  | 
|  | 388 | /* Verify that buffer has valid data */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 389 | reg_data = __raw_readl(addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 390 | if ((reg_data & XEL_RSR_RECV_DONE_MASK) != | 
|  | 391 | XEL_RSR_RECV_DONE_MASK) | 
|  | 392 | return 0;	/* No data was available */ | 
|  | 393 | } | 
|  | 394 |  | 
|  | 395 | /* Get the protocol type of the ethernet frame that arrived */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 396 | proto_type = ((ntohl(__raw_readl(addr + XEL_HEADER_OFFSET + | 
| Michal Simek | 44180a5 | 2010-09-10 13:22:35 +0200 | [diff] [blame] | 397 | XEL_RXBUFF_OFFSET)) >> XEL_HEADER_SHIFT) & | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 398 | XEL_RPLR_LENGTH_MASK); | 
|  | 399 |  | 
|  | 400 | /* Check if received ethernet frame is a raw ethernet frame | 
|  | 401 | * or an IP packet or an ARP packet */ | 
|  | 402 | if (proto_type > (ETH_FRAME_LEN + ETH_FCS_LEN)) { | 
|  | 403 |  | 
|  | 404 | if (proto_type == ETH_P_IP) { | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 405 | length = ((ntohl(__raw_readl(addr + | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 406 | XEL_HEADER_IP_LENGTH_OFFSET + | 
| Michal Simek | 44180a5 | 2010-09-10 13:22:35 +0200 | [diff] [blame] | 407 | XEL_RXBUFF_OFFSET)) >> | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 408 | XEL_HEADER_SHIFT) & | 
|  | 409 | XEL_RPLR_LENGTH_MASK); | 
|  | 410 | length += ETH_HLEN + ETH_FCS_LEN; | 
|  | 411 |  | 
|  | 412 | } else if (proto_type == ETH_P_ARP) | 
|  | 413 | length = XEL_ARP_PACKET_SIZE + ETH_HLEN + ETH_FCS_LEN; | 
|  | 414 | else | 
|  | 415 | /* Field contains type other than IP or ARP, use max | 
|  | 416 | * frame size and let user parse it */ | 
|  | 417 | length = ETH_FRAME_LEN + ETH_FCS_LEN; | 
|  | 418 | } else | 
|  | 419 | /* Use the length in the frame, plus the header and trailer */ | 
|  | 420 | length = proto_type + ETH_HLEN + ETH_FCS_LEN; | 
|  | 421 |  | 
|  | 422 | /* Read from the EmacLite device */ | 
|  | 423 | xemaclite_aligned_read((u32 __force *) (addr + XEL_RXBUFF_OFFSET), | 
|  | 424 | data, length); | 
|  | 425 |  | 
|  | 426 | /* Acknowledge the frame */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 427 | reg_data = __raw_readl(addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 428 | reg_data &= ~XEL_RSR_RECV_DONE_MASK; | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 429 | __raw_writel(reg_data, addr + XEL_RSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 430 |  | 
|  | 431 | return length; | 
|  | 432 | } | 
|  | 433 |  | 
|  | 434 | /** | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 435 | * xemaclite_update_address - Update the MAC address in the device | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 436 | * @drvdata:	Pointer to the Emaclite device private data | 
|  | 437 | * @address_ptr:Pointer to the MAC address (MAC address is a 48-bit value) | 
|  | 438 | * | 
|  | 439 | * Tx must be idle and Rx should be idle for deterministic results. | 
|  | 440 | * It is recommended that this function should be called after the | 
|  | 441 | * initialization and before transmission of any packets from the device. | 
|  | 442 | * The MAC address can be programmed using any of the two transmit | 
|  | 443 | * buffers (if configured). | 
|  | 444 | */ | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 445 | static void xemaclite_update_address(struct net_local *drvdata, | 
|  | 446 | u8 *address_ptr) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 447 | { | 
|  | 448 | void __iomem *addr; | 
|  | 449 | u32 reg_data; | 
|  | 450 |  | 
|  | 451 | /* Determine the expected Tx buffer address */ | 
|  | 452 | addr = drvdata->base_addr + drvdata->next_tx_buf_to_use; | 
|  | 453 |  | 
|  | 454 | xemaclite_aligned_write(address_ptr, (u32 __force *) addr, ETH_ALEN); | 
|  | 455 |  | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 456 | __raw_writel(ETH_ALEN, addr + XEL_TPLR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 457 |  | 
|  | 458 | /* Update the MAC address in the EmacLite */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 459 | reg_data = __raw_readl(addr + XEL_TSR_OFFSET); | 
|  | 460 | __raw_writel(reg_data | XEL_TSR_PROG_MAC_ADDR, addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 461 |  | 
|  | 462 | /* Wait for EmacLite to finish with the MAC address update */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 463 | while ((__raw_readl(addr + XEL_TSR_OFFSET) & | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 464 | XEL_TSR_PROG_MAC_ADDR) != 0) | 
|  | 465 | ; | 
|  | 466 | } | 
|  | 467 |  | 
|  | 468 | /** | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 469 | * xemaclite_set_mac_address - Set the MAC address for this device | 
|  | 470 | * @dev:	Pointer to the network device instance | 
|  | 471 | * @addr:	Void pointer to the sockaddr structure | 
|  | 472 | * | 
|  | 473 | * This function copies the HW address from the sockaddr strucutre to the | 
|  | 474 | * net_device structure and updates the address in HW. | 
|  | 475 | * | 
|  | 476 | * Return:	Error if the net device is busy or 0 if the addr is set | 
|  | 477 | *		successfully | 
|  | 478 | */ | 
|  | 479 | static int xemaclite_set_mac_address(struct net_device *dev, void *address) | 
|  | 480 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 481 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 482 | struct sockaddr *addr = address; | 
|  | 483 |  | 
|  | 484 | if (netif_running(dev)) | 
|  | 485 | return -EBUSY; | 
|  | 486 |  | 
|  | 487 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); | 
|  | 488 | xemaclite_update_address(lp, dev->dev_addr); | 
|  | 489 | return 0; | 
|  | 490 | } | 
|  | 491 |  | 
|  | 492 | /** | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 493 | * xemaclite_tx_timeout - Callback for Tx Timeout | 
|  | 494 | * @dev:	Pointer to the network device | 
|  | 495 | * | 
|  | 496 | * This function is called when Tx time out occurs for Emaclite device. | 
|  | 497 | */ | 
|  | 498 | static void xemaclite_tx_timeout(struct net_device *dev) | 
|  | 499 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 500 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 501 | unsigned long flags; | 
|  | 502 |  | 
|  | 503 | dev_err(&lp->ndev->dev, "Exceeded transmit timeout of %lu ms\n", | 
|  | 504 | TX_TIMEOUT * 1000UL / HZ); | 
|  | 505 |  | 
|  | 506 | dev->stats.tx_errors++; | 
|  | 507 |  | 
|  | 508 | /* Reset the device */ | 
|  | 509 | spin_lock_irqsave(&lp->reset_lock, flags); | 
|  | 510 |  | 
|  | 511 | /* Shouldn't really be necessary, but shouldn't hurt */ | 
|  | 512 | netif_stop_queue(dev); | 
|  | 513 |  | 
|  | 514 | xemaclite_disable_interrupts(lp); | 
|  | 515 | xemaclite_enable_interrupts(lp); | 
|  | 516 |  | 
|  | 517 | if (lp->deferred_skb) { | 
|  | 518 | dev_kfree_skb(lp->deferred_skb); | 
|  | 519 | lp->deferred_skb = NULL; | 
|  | 520 | dev->stats.tx_errors++; | 
|  | 521 | } | 
|  | 522 |  | 
|  | 523 | /* To exclude tx timeout */ | 
| Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 524 | dev->trans_start = jiffies; /* prevent tx timeout */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 525 |  | 
|  | 526 | /* We're all ready to go. Start the queue */ | 
|  | 527 | netif_wake_queue(dev); | 
|  | 528 | spin_unlock_irqrestore(&lp->reset_lock, flags); | 
|  | 529 | } | 
|  | 530 |  | 
|  | 531 | /**********************/ | 
|  | 532 | /* Interrupt Handlers */ | 
|  | 533 | /**********************/ | 
|  | 534 |  | 
|  | 535 | /** | 
|  | 536 | * xemaclite_tx_handler - Interrupt handler for frames sent | 
|  | 537 | * @dev:	Pointer to the network device | 
|  | 538 | * | 
|  | 539 | * This function updates the number of packets transmitted and handles the | 
|  | 540 | * deferred skb, if there is one. | 
|  | 541 | */ | 
|  | 542 | static void xemaclite_tx_handler(struct net_device *dev) | 
|  | 543 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 544 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 545 |  | 
|  | 546 | dev->stats.tx_packets++; | 
|  | 547 | if (lp->deferred_skb) { | 
|  | 548 | if (xemaclite_send_data(lp, | 
|  | 549 | (u8 *) lp->deferred_skb->data, | 
|  | 550 | lp->deferred_skb->len) != 0) | 
|  | 551 | return; | 
|  | 552 | else { | 
|  | 553 | dev->stats.tx_bytes += lp->deferred_skb->len; | 
|  | 554 | dev_kfree_skb_irq(lp->deferred_skb); | 
|  | 555 | lp->deferred_skb = NULL; | 
| Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 556 | dev->trans_start = jiffies; /* prevent tx timeout */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 557 | netif_wake_queue(dev); | 
|  | 558 | } | 
|  | 559 | } | 
|  | 560 | } | 
|  | 561 |  | 
|  | 562 | /** | 
|  | 563 | * xemaclite_rx_handler- Interrupt handler for frames received | 
|  | 564 | * @dev:	Pointer to the network device | 
|  | 565 | * | 
|  | 566 | * This function allocates memory for a socket buffer, fills it with data | 
|  | 567 | * received and hands it over to the TCP/IP stack. | 
|  | 568 | */ | 
|  | 569 | static void xemaclite_rx_handler(struct net_device *dev) | 
|  | 570 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 571 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 572 | struct sk_buff *skb; | 
|  | 573 | unsigned int align; | 
|  | 574 | u32 len; | 
|  | 575 |  | 
|  | 576 | len = ETH_FRAME_LEN + ETH_FCS_LEN; | 
| Pradeep A. Dalvi | dae2e9f | 2012-02-06 11:16:13 +0000 | [diff] [blame] | 577 | skb = netdev_alloc_skb(dev, len + ALIGNMENT); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 578 | if (!skb) { | 
|  | 579 | /* Couldn't get memory. */ | 
|  | 580 | dev->stats.rx_dropped++; | 
|  | 581 | dev_err(&lp->ndev->dev, "Could not allocate receive buffer\n"); | 
|  | 582 | return; | 
|  | 583 | } | 
|  | 584 |  | 
|  | 585 | /* | 
|  | 586 | * A new skb should have the data halfword aligned, but this code is | 
|  | 587 | * here just in case that isn't true. Calculate how many | 
|  | 588 | * bytes we should reserve to get the data to start on a word | 
|  | 589 | * boundary */ | 
|  | 590 | align = BUFFER_ALIGN(skb->data); | 
|  | 591 | if (align) | 
|  | 592 | skb_reserve(skb, align); | 
|  | 593 |  | 
|  | 594 | skb_reserve(skb, 2); | 
|  | 595 |  | 
|  | 596 | len = xemaclite_recv_data(lp, (u8 *) skb->data); | 
|  | 597 |  | 
|  | 598 | if (!len) { | 
|  | 599 | dev->stats.rx_errors++; | 
|  | 600 | dev_kfree_skb_irq(skb); | 
|  | 601 | return; | 
|  | 602 | } | 
|  | 603 |  | 
|  | 604 | skb_put(skb, len);	/* Tell the skb how much data we got */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 605 |  | 
|  | 606 | skb->protocol = eth_type_trans(skb, dev); | 
| Eric Dumazet | bc8acf2 | 2010-09-02 13:07:41 -0700 | [diff] [blame] | 607 | skb_checksum_none_assert(skb); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 608 |  | 
|  | 609 | dev->stats.rx_packets++; | 
|  | 610 | dev->stats.rx_bytes += len; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 611 |  | 
| Richard Cochran | 570773c | 2011-06-19 21:51:25 +0000 | [diff] [blame] | 612 | if (!skb_defer_rx_timestamp(skb)) | 
|  | 613 | netif_rx(skb);	/* Send the packet upstream */ | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 614 | } | 
|  | 615 |  | 
|  | 616 | /** | 
|  | 617 | * xemaclite_interrupt - Interrupt handler for this driver | 
|  | 618 | * @irq:	Irq of the Emaclite device | 
|  | 619 | * @dev_id:	Void pointer to the network device instance used as callback | 
|  | 620 | *		reference | 
|  | 621 | * | 
|  | 622 | * This function handles the Tx and Rx interrupts of the EmacLite device. | 
|  | 623 | */ | 
|  | 624 | static irqreturn_t xemaclite_interrupt(int irq, void *dev_id) | 
|  | 625 | { | 
| Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 626 | bool tx_complete = false; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 627 | struct net_device *dev = dev_id; | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 628 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 629 | void __iomem *base_addr = lp->base_addr; | 
|  | 630 | u32 tx_status; | 
|  | 631 |  | 
|  | 632 | /* Check if there is Rx Data available */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 633 | if ((__raw_readl(base_addr + XEL_RSR_OFFSET) & | 
|  | 634 | XEL_RSR_RECV_DONE_MASK) || | 
|  | 635 | (__raw_readl(base_addr + XEL_BUFFER_OFFSET + XEL_RSR_OFFSET) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 636 | & XEL_RSR_RECV_DONE_MASK)) | 
|  | 637 |  | 
|  | 638 | xemaclite_rx_handler(dev); | 
|  | 639 |  | 
|  | 640 | /* Check if the Transmission for the first buffer is completed */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 641 | tx_status = __raw_readl(base_addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 642 | if (((tx_status & XEL_TSR_XMIT_BUSY_MASK) == 0) && | 
|  | 643 | (tx_status & XEL_TSR_XMIT_ACTIVE_MASK) != 0) { | 
|  | 644 |  | 
|  | 645 | tx_status &= ~XEL_TSR_XMIT_ACTIVE_MASK; | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 646 | __raw_writel(tx_status, base_addr + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 647 |  | 
| Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 648 | tx_complete = true; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 649 | } | 
|  | 650 |  | 
|  | 651 | /* Check if the Transmission for the second buffer is completed */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 652 | tx_status = __raw_readl(base_addr + XEL_BUFFER_OFFSET + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 653 | if (((tx_status & XEL_TSR_XMIT_BUSY_MASK) == 0) && | 
|  | 654 | (tx_status & XEL_TSR_XMIT_ACTIVE_MASK) != 0) { | 
|  | 655 |  | 
|  | 656 | tx_status &= ~XEL_TSR_XMIT_ACTIVE_MASK; | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 657 | __raw_writel(tx_status, base_addr + XEL_BUFFER_OFFSET + | 
|  | 658 | XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 659 |  | 
| Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 660 | tx_complete = true; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 661 | } | 
|  | 662 |  | 
|  | 663 | /* If there was a Tx interrupt, call the Tx Handler */ | 
|  | 664 | if (tx_complete != 0) | 
|  | 665 | xemaclite_tx_handler(dev); | 
|  | 666 |  | 
|  | 667 | return IRQ_HANDLED; | 
|  | 668 | } | 
|  | 669 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 670 | /**********************/ | 
|  | 671 | /* MDIO Bus functions */ | 
|  | 672 | /**********************/ | 
|  | 673 |  | 
|  | 674 | /** | 
|  | 675 | * xemaclite_mdio_wait - Wait for the MDIO to be ready to use | 
|  | 676 | * @lp:		Pointer to the Emaclite device private data | 
|  | 677 | * | 
|  | 678 | * This function waits till the device is ready to accept a new MDIO | 
|  | 679 | * request. | 
|  | 680 | * | 
|  | 681 | * Return:	0 for success or ETIMEDOUT for a timeout | 
|  | 682 | */ | 
|  | 683 |  | 
|  | 684 | static int xemaclite_mdio_wait(struct net_local *lp) | 
|  | 685 | { | 
|  | 686 | long end = jiffies + 2; | 
|  | 687 |  | 
|  | 688 | /* wait for the MDIO interface to not be busy or timeout | 
|  | 689 | after some time. | 
|  | 690 | */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 691 | while (__raw_readl(lp->base_addr + XEL_MDIOCTRL_OFFSET) & | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 692 | XEL_MDIOCTRL_MDIOSTS_MASK) { | 
|  | 693 | if (end - jiffies <= 0) { | 
|  | 694 | WARN_ON(1); | 
|  | 695 | return -ETIMEDOUT; | 
|  | 696 | } | 
|  | 697 | msleep(1); | 
|  | 698 | } | 
|  | 699 | return 0; | 
|  | 700 | } | 
|  | 701 |  | 
|  | 702 | /** | 
|  | 703 | * xemaclite_mdio_read - Read from a given MII management register | 
|  | 704 | * @bus:	the mii_bus struct | 
|  | 705 | * @phy_id:	the phy address | 
|  | 706 | * @reg:	register number to read from | 
|  | 707 | * | 
|  | 708 | * This function waits till the device is ready to accept a new MDIO | 
|  | 709 | * request and then writes the phy address to the MDIO Address register | 
|  | 710 | * and reads data from MDIO Read Data register, when its available. | 
|  | 711 | * | 
|  | 712 | * Return:	Value read from the MII management register | 
|  | 713 | */ | 
|  | 714 | static int xemaclite_mdio_read(struct mii_bus *bus, int phy_id, int reg) | 
|  | 715 | { | 
|  | 716 | struct net_local *lp = bus->priv; | 
|  | 717 | u32 ctrl_reg; | 
|  | 718 | u32 rc; | 
|  | 719 |  | 
|  | 720 | if (xemaclite_mdio_wait(lp)) | 
|  | 721 | return -ETIMEDOUT; | 
|  | 722 |  | 
|  | 723 | /* Write the PHY address, register number and set the OP bit in the | 
|  | 724 | * MDIO Address register. Set the Status bit in the MDIO Control | 
|  | 725 | * register to start a MDIO read transaction. | 
|  | 726 | */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 727 | ctrl_reg = __raw_readl(lp->base_addr + XEL_MDIOCTRL_OFFSET); | 
|  | 728 | __raw_writel(XEL_MDIOADDR_OP_MASK | | 
|  | 729 | ((phy_id << XEL_MDIOADDR_PHYADR_SHIFT) | reg), | 
|  | 730 | lp->base_addr + XEL_MDIOADDR_OFFSET); | 
|  | 731 | __raw_writel(ctrl_reg | XEL_MDIOCTRL_MDIOSTS_MASK, | 
|  | 732 | lp->base_addr + XEL_MDIOCTRL_OFFSET); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 733 |  | 
|  | 734 | if (xemaclite_mdio_wait(lp)) | 
|  | 735 | return -ETIMEDOUT; | 
|  | 736 |  | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 737 | rc = __raw_readl(lp->base_addr + XEL_MDIORD_OFFSET); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 738 |  | 
|  | 739 | dev_dbg(&lp->ndev->dev, | 
|  | 740 | "xemaclite_mdio_read(phy_id=%i, reg=%x) == %x\n", | 
|  | 741 | phy_id, reg, rc); | 
|  | 742 |  | 
|  | 743 | return rc; | 
|  | 744 | } | 
|  | 745 |  | 
|  | 746 | /** | 
|  | 747 | * xemaclite_mdio_write - Write to a given MII management register | 
|  | 748 | * @bus:	the mii_bus struct | 
|  | 749 | * @phy_id:	the phy address | 
|  | 750 | * @reg:	register number to write to | 
|  | 751 | * @val:	value to write to the register number specified by reg | 
|  | 752 | * | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 753 | * This function waits till the device is ready to accept a new MDIO | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 754 | * request and then writes the val to the MDIO Write Data register. | 
|  | 755 | */ | 
|  | 756 | static int xemaclite_mdio_write(struct mii_bus *bus, int phy_id, int reg, | 
|  | 757 | u16 val) | 
|  | 758 | { | 
|  | 759 | struct net_local *lp = bus->priv; | 
|  | 760 | u32 ctrl_reg; | 
|  | 761 |  | 
|  | 762 | dev_dbg(&lp->ndev->dev, | 
|  | 763 | "xemaclite_mdio_write(phy_id=%i, reg=%x, val=%x)\n", | 
|  | 764 | phy_id, reg, val); | 
|  | 765 |  | 
|  | 766 | if (xemaclite_mdio_wait(lp)) | 
|  | 767 | return -ETIMEDOUT; | 
|  | 768 |  | 
|  | 769 | /* Write the PHY address, register number and clear the OP bit in the | 
|  | 770 | * MDIO Address register and then write the value into the MDIO Write | 
|  | 771 | * Data register. Finally, set the Status bit in the MDIO Control | 
|  | 772 | * register to start a MDIO write transaction. | 
|  | 773 | */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 774 | ctrl_reg = __raw_readl(lp->base_addr + XEL_MDIOCTRL_OFFSET); | 
|  | 775 | __raw_writel(~XEL_MDIOADDR_OP_MASK & | 
|  | 776 | ((phy_id << XEL_MDIOADDR_PHYADR_SHIFT) | reg), | 
|  | 777 | lp->base_addr + XEL_MDIOADDR_OFFSET); | 
|  | 778 | __raw_writel(val, lp->base_addr + XEL_MDIOWR_OFFSET); | 
|  | 779 | __raw_writel(ctrl_reg | XEL_MDIOCTRL_MDIOSTS_MASK, | 
|  | 780 | lp->base_addr + XEL_MDIOCTRL_OFFSET); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 781 |  | 
|  | 782 | return 0; | 
|  | 783 | } | 
|  | 784 |  | 
|  | 785 | /** | 
|  | 786 | * xemaclite_mdio_reset - Reset the mdio bus. | 
|  | 787 | * @bus:	Pointer to the MII bus | 
|  | 788 | * | 
|  | 789 | * This function is required(?) as per Documentation/networking/phy.txt. | 
|  | 790 | * There is no reset in this device; this function always returns 0. | 
|  | 791 | */ | 
|  | 792 | static int xemaclite_mdio_reset(struct mii_bus *bus) | 
|  | 793 | { | 
|  | 794 | return 0; | 
|  | 795 | } | 
|  | 796 |  | 
|  | 797 | /** | 
|  | 798 | * xemaclite_mdio_setup - Register mii_bus for the Emaclite device | 
|  | 799 | * @lp:		Pointer to the Emaclite device private data | 
|  | 800 | * @ofdev:	Pointer to OF device structure | 
|  | 801 | * | 
|  | 802 | * This function enables MDIO bus in the Emaclite device and registers a | 
|  | 803 | * mii_bus. | 
|  | 804 | * | 
|  | 805 | * Return:	0 upon success or a negative error upon failure | 
|  | 806 | */ | 
|  | 807 | static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev) | 
|  | 808 | { | 
|  | 809 | struct mii_bus *bus; | 
|  | 810 | int rc; | 
|  | 811 | struct resource res; | 
|  | 812 | struct device_node *np = of_get_parent(lp->phy_node); | 
| Michal Simek | e0a3bc65 | 2013-05-30 00:28:04 +0000 | [diff] [blame] | 813 | struct device_node *npp; | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 814 |  | 
|  | 815 | /* Don't register the MDIO bus if the phy_node or its parent node | 
|  | 816 | * can't be found. | 
|  | 817 | */ | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 818 | if (!np) { | 
|  | 819 | dev_err(dev, "Failed to register mdio bus.\n"); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 820 | return -ENODEV; | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 821 | } | 
| Michal Simek | e0a3bc65 | 2013-05-30 00:28:04 +0000 | [diff] [blame] | 822 | npp = of_get_parent(np); | 
|  | 823 |  | 
|  | 824 | of_address_to_resource(npp, 0, &res); | 
|  | 825 | if (lp->ndev->mem_start != res.start) { | 
|  | 826 | struct phy_device *phydev; | 
|  | 827 | phydev = of_phy_find_device(lp->phy_node); | 
|  | 828 | if (!phydev) | 
|  | 829 | dev_info(dev, | 
|  | 830 | "MDIO of the phy is not registered yet\n"); | 
|  | 831 | return 0; | 
|  | 832 | } | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 833 |  | 
|  | 834 | /* Enable the MDIO bus by asserting the enable bit in MDIO Control | 
|  | 835 | * register. | 
|  | 836 | */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 837 | __raw_writel(XEL_MDIOCTRL_MDIOEN_MASK, | 
|  | 838 | lp->base_addr + XEL_MDIOCTRL_OFFSET); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 839 |  | 
|  | 840 | bus = mdiobus_alloc(); | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 841 | if (!bus) { | 
| Jens Renner \(EFE\) | f1362e3 | 2013-06-02 05:19:06 +0000 | [diff] [blame] | 842 | dev_err(dev, "Failed to allocate mdiobus\n"); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 843 | return -ENOMEM; | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 844 | } | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 845 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 846 | snprintf(bus->id, MII_BUS_ID_SIZE, "%.8llx", | 
|  | 847 | (unsigned long long)res.start); | 
|  | 848 | bus->priv = lp; | 
|  | 849 | bus->name = "Xilinx Emaclite MDIO"; | 
|  | 850 | bus->read = xemaclite_mdio_read; | 
|  | 851 | bus->write = xemaclite_mdio_write; | 
|  | 852 | bus->reset = xemaclite_mdio_reset; | 
|  | 853 | bus->parent = dev; | 
|  | 854 | bus->irq = lp->mdio_irqs; /* preallocated IRQ table */ | 
|  | 855 |  | 
|  | 856 | lp->mii_bus = bus; | 
|  | 857 |  | 
|  | 858 | rc = of_mdiobus_register(bus, np); | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 859 | if (rc) { | 
|  | 860 | dev_err(dev, "Failed to register mdio bus.\n"); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 861 | goto err_register; | 
| Michal Simek | ccfecdf | 2013-05-30 00:28:03 +0000 | [diff] [blame] | 862 | } | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 863 |  | 
|  | 864 | return 0; | 
|  | 865 |  | 
|  | 866 | err_register: | 
|  | 867 | mdiobus_free(bus); | 
|  | 868 | return rc; | 
|  | 869 | } | 
|  | 870 |  | 
|  | 871 | /** | 
|  | 872 | * xemaclite_adjust_link - Link state callback for the Emaclite device | 
|  | 873 | * @ndev: pointer to net_device struct | 
|  | 874 | * | 
|  | 875 | * There's nothing in the Emaclite device to be configured when the link | 
|  | 876 | * state changes. We just print the status. | 
|  | 877 | */ | 
| Michal Simek | 3fb99fa | 2013-05-30 00:28:05 +0000 | [diff] [blame] | 878 | static void xemaclite_adjust_link(struct net_device *ndev) | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 879 | { | 
|  | 880 | struct net_local *lp = netdev_priv(ndev); | 
|  | 881 | struct phy_device *phy = lp->phy_dev; | 
|  | 882 | int link_state; | 
|  | 883 |  | 
|  | 884 | /* hash together the state values to decide if something has changed */ | 
|  | 885 | link_state = phy->speed | (phy->duplex << 1) | phy->link; | 
|  | 886 |  | 
|  | 887 | if (lp->last_link != link_state) { | 
|  | 888 | lp->last_link = link_state; | 
|  | 889 | phy_print_status(phy); | 
|  | 890 | } | 
|  | 891 | } | 
|  | 892 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 893 | /** | 
|  | 894 | * xemaclite_open - Open the network device | 
|  | 895 | * @dev:	Pointer to the network device | 
|  | 896 | * | 
|  | 897 | * This function sets the MAC address, requests an IRQ and enables interrupts | 
|  | 898 | * for the Emaclite device and starts the Tx queue. | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 899 | * It also connects to the phy device, if MDIO is included in Emaclite device. | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 900 | */ | 
|  | 901 | static int xemaclite_open(struct net_device *dev) | 
|  | 902 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 903 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 904 | int retval; | 
|  | 905 |  | 
|  | 906 | /* Just to be safe, stop the device first */ | 
|  | 907 | xemaclite_disable_interrupts(lp); | 
|  | 908 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 909 | if (lp->phy_node) { | 
|  | 910 | u32 bmcr; | 
|  | 911 |  | 
|  | 912 | lp->phy_dev = of_phy_connect(lp->ndev, lp->phy_node, | 
|  | 913 | xemaclite_adjust_link, 0, | 
|  | 914 | PHY_INTERFACE_MODE_MII); | 
|  | 915 | if (!lp->phy_dev) { | 
|  | 916 | dev_err(&lp->ndev->dev, "of_phy_connect() failed\n"); | 
|  | 917 | return -ENODEV; | 
|  | 918 | } | 
|  | 919 |  | 
|  | 920 | /* EmacLite doesn't support giga-bit speeds */ | 
|  | 921 | lp->phy_dev->supported &= (PHY_BASIC_FEATURES); | 
|  | 922 | lp->phy_dev->advertising = lp->phy_dev->supported; | 
|  | 923 |  | 
|  | 924 | /* Don't advertise 1000BASE-T Full/Half duplex speeds */ | 
|  | 925 | phy_write(lp->phy_dev, MII_CTRL1000, 0); | 
|  | 926 |  | 
|  | 927 | /* Advertise only 10 and 100mbps full/half duplex speeds */ | 
| Jens Renner \(EFE\) | 3a5395b | 2013-06-03 04:32:52 +0000 | [diff] [blame] | 928 | phy_write(lp->phy_dev, MII_ADVERTISE, ADVERTISE_ALL | | 
|  | 929 | ADVERTISE_CSMA); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 930 |  | 
|  | 931 | /* Restart auto negotiation */ | 
|  | 932 | bmcr = phy_read(lp->phy_dev, MII_BMCR); | 
|  | 933 | bmcr |= (BMCR_ANENABLE | BMCR_ANRESTART); | 
|  | 934 | phy_write(lp->phy_dev, MII_BMCR, bmcr); | 
|  | 935 |  | 
|  | 936 | phy_start(lp->phy_dev); | 
|  | 937 | } | 
|  | 938 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 939 | /* Set the MAC address each time opened */ | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 940 | xemaclite_update_address(lp, dev->dev_addr); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 941 |  | 
|  | 942 | /* Grab the IRQ */ | 
| Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 943 | retval = request_irq(dev->irq, xemaclite_interrupt, 0, dev->name, dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 944 | if (retval) { | 
|  | 945 | dev_err(&lp->ndev->dev, "Could not allocate interrupt %d\n", | 
|  | 946 | dev->irq); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 947 | if (lp->phy_dev) | 
|  | 948 | phy_disconnect(lp->phy_dev); | 
|  | 949 | lp->phy_dev = NULL; | 
|  | 950 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 951 | return retval; | 
|  | 952 | } | 
|  | 953 |  | 
|  | 954 | /* Enable Interrupts */ | 
|  | 955 | xemaclite_enable_interrupts(lp); | 
|  | 956 |  | 
|  | 957 | /* We're ready to go */ | 
|  | 958 | netif_start_queue(dev); | 
|  | 959 |  | 
|  | 960 | return 0; | 
|  | 961 | } | 
|  | 962 |  | 
|  | 963 | /** | 
|  | 964 | * xemaclite_close - Close the network device | 
|  | 965 | * @dev:	Pointer to the network device | 
|  | 966 | * | 
|  | 967 | * This function stops the Tx queue, disables interrupts and frees the IRQ for | 
|  | 968 | * the Emaclite device. | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 969 | * It also disconnects the phy device associated with the Emaclite device. | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 970 | */ | 
|  | 971 | static int xemaclite_close(struct net_device *dev) | 
|  | 972 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 973 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 974 |  | 
|  | 975 | netif_stop_queue(dev); | 
|  | 976 | xemaclite_disable_interrupts(lp); | 
|  | 977 | free_irq(dev->irq, dev); | 
|  | 978 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 979 | if (lp->phy_dev) | 
|  | 980 | phy_disconnect(lp->phy_dev); | 
|  | 981 | lp->phy_dev = NULL; | 
|  | 982 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 983 | return 0; | 
|  | 984 | } | 
|  | 985 |  | 
|  | 986 | /** | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 987 | * xemaclite_send - Transmit a frame | 
|  | 988 | * @orig_skb:	Pointer to the socket buffer to be transmitted | 
|  | 989 | * @dev:	Pointer to the network device | 
|  | 990 | * | 
|  | 991 | * This function checks if the Tx buffer of the Emaclite device is free to send | 
|  | 992 | * data. If so, it fills the Tx buffer with data from socket buffer data, | 
|  | 993 | * updates the stats and frees the socket buffer. The Tx completion is signaled | 
|  | 994 | * by an interrupt. If the Tx buffer isn't free, then the socket buffer is | 
|  | 995 | * deferred and the Tx queue is stopped so that the deferred socket buffer can | 
|  | 996 | * be transmitted when the Emaclite device is free to transmit data. | 
|  | 997 | * | 
|  | 998 | * Return:	0, always. | 
|  | 999 | */ | 
|  | 1000 | static int xemaclite_send(struct sk_buff *orig_skb, struct net_device *dev) | 
|  | 1001 | { | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 1002 | struct net_local *lp = netdev_priv(dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1003 | struct sk_buff *new_skb; | 
|  | 1004 | unsigned int len; | 
|  | 1005 | unsigned long flags; | 
|  | 1006 |  | 
|  | 1007 | len = orig_skb->len; | 
|  | 1008 |  | 
|  | 1009 | new_skb = orig_skb; | 
|  | 1010 |  | 
|  | 1011 | spin_lock_irqsave(&lp->reset_lock, flags); | 
|  | 1012 | if (xemaclite_send_data(lp, (u8 *) new_skb->data, len) != 0) { | 
|  | 1013 | /* If the Emaclite Tx buffer is busy, stop the Tx queue and | 
| Richard Cochran | 570773c | 2011-06-19 21:51:25 +0000 | [diff] [blame] | 1014 | * defer the skb for transmission during the ISR, after the | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1015 | * current transmission is complete */ | 
|  | 1016 | netif_stop_queue(dev); | 
|  | 1017 | lp->deferred_skb = new_skb; | 
| Richard Cochran | 570773c | 2011-06-19 21:51:25 +0000 | [diff] [blame] | 1018 | /* Take the time stamp now, since we can't do this in an ISR. */ | 
|  | 1019 | skb_tx_timestamp(new_skb); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1020 | spin_unlock_irqrestore(&lp->reset_lock, flags); | 
|  | 1021 | return 0; | 
|  | 1022 | } | 
|  | 1023 | spin_unlock_irqrestore(&lp->reset_lock, flags); | 
|  | 1024 |  | 
| Richard Cochran | 570773c | 2011-06-19 21:51:25 +0000 | [diff] [blame] | 1025 | skb_tx_timestamp(new_skb); | 
|  | 1026 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1027 | dev->stats.tx_bytes += len; | 
|  | 1028 | dev_kfree_skb(new_skb); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1029 |  | 
|  | 1030 | return 0; | 
|  | 1031 | } | 
|  | 1032 |  | 
|  | 1033 | /** | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1034 | * xemaclite_remove_ndev - Free the network device | 
|  | 1035 | * @ndev:	Pointer to the network device to be freed | 
|  | 1036 | * | 
|  | 1037 | * This function un maps the IO region of the Emaclite device and frees the net | 
|  | 1038 | * device. | 
|  | 1039 | */ | 
| Michal Simek | 37c67c6 | 2013-09-12 09:05:10 +0200 | [diff] [blame] | 1040 | static void xemaclite_remove_ndev(struct net_device *ndev) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1041 | { | 
|  | 1042 | if (ndev) { | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1043 | free_netdev(ndev); | 
|  | 1044 | } | 
|  | 1045 | } | 
|  | 1046 |  | 
|  | 1047 | /** | 
|  | 1048 | * get_bool - Get a parameter from the OF device | 
|  | 1049 | * @ofdev:	Pointer to OF device structure | 
|  | 1050 | * @s:		Property to be retrieved | 
|  | 1051 | * | 
|  | 1052 | * This function looks for a property in the device node and returns the value | 
|  | 1053 | * of the property if its found or 0 if the property is not found. | 
|  | 1054 | * | 
|  | 1055 | * Return:	Value of the parameter if the parameter is found, or 0 otherwise | 
|  | 1056 | */ | 
| Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 1057 | static bool get_bool(struct platform_device *ofdev, const char *s) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1058 | { | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1059 | u32 *p = (u32 *)of_get_property(ofdev->dev.of_node, s, NULL); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1060 |  | 
|  | 1061 | if (p) { | 
|  | 1062 | return (bool)*p; | 
|  | 1063 | } else { | 
|  | 1064 | dev_warn(&ofdev->dev, "Parameter %s not found," | 
|  | 1065 | "defaulting to false\n", s); | 
|  | 1066 | return 0; | 
|  | 1067 | } | 
|  | 1068 | } | 
|  | 1069 |  | 
|  | 1070 | static struct net_device_ops xemaclite_netdev_ops; | 
|  | 1071 |  | 
|  | 1072 | /** | 
|  | 1073 | * xemaclite_of_probe - Probe method for the Emaclite device. | 
|  | 1074 | * @ofdev:	Pointer to OF device structure | 
|  | 1075 | * @match:	Pointer to the structure used for matching a device | 
|  | 1076 | * | 
|  | 1077 | * This function probes for the Emaclite device in the device tree. | 
|  | 1078 | * It initializes the driver data structure and the hardware, sets the MAC | 
|  | 1079 | * address and registers the network device. | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1080 | * It also registers a mii_bus for the Emaclite device, if MDIO is included | 
|  | 1081 | * in the device. | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1082 | * | 
|  | 1083 | * Return:	0, if the driver is bound to the Emaclite device, or | 
|  | 1084 | *		a negative error if there is failure. | 
|  | 1085 | */ | 
| Bill Pemberton | 06b0e68 | 2012-12-03 09:24:08 -0500 | [diff] [blame] | 1086 | static int xemaclite_of_probe(struct platform_device *ofdev) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1087 | { | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1088 | struct resource *res; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1089 | struct net_device *ndev = NULL; | 
|  | 1090 | struct net_local *lp = NULL; | 
|  | 1091 | struct device *dev = &ofdev->dev; | 
|  | 1092 | const void *mac_address; | 
|  | 1093 |  | 
|  | 1094 | int rc = 0; | 
|  | 1095 |  | 
|  | 1096 | dev_info(dev, "Device Tree Probing\n"); | 
|  | 1097 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1098 | /* Create an ethernet device instance */ | 
|  | 1099 | ndev = alloc_etherdev(sizeof(struct net_local)); | 
| Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 1100 | if (!ndev) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1101 | return -ENOMEM; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1102 |  | 
|  | 1103 | dev_set_drvdata(dev, ndev); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1104 | SET_NETDEV_DEV(ndev, &ofdev->dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1105 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1106 | lp = netdev_priv(ndev); | 
|  | 1107 | lp->ndev = ndev; | 
|  | 1108 |  | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1109 | /* Get IRQ for the device */ | 
|  | 1110 | res = platform_get_resource(ofdev, IORESOURCE_IRQ, 0); | 
|  | 1111 | if (!res) { | 
|  | 1112 | dev_err(dev, "no IRQ found\n"); | 
|  | 1113 | goto error; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1114 | } | 
|  | 1115 |  | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1116 | ndev->irq = res->start; | 
|  | 1117 |  | 
|  | 1118 | res = platform_get_resource(ofdev, IORESOURCE_MEM, 0); | 
| Tushar Behera | eed5d29 | 2013-06-10 17:05:06 +0530 | [diff] [blame] | 1119 | lp->base_addr = devm_ioremap_resource(&ofdev->dev, res); | 
|  | 1120 | if (IS_ERR(lp->base_addr)) { | 
|  | 1121 | rc = PTR_ERR(lp->base_addr); | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1122 | goto error; | 
| Tushar Behera | eed5d29 | 2013-06-10 17:05:06 +0530 | [diff] [blame] | 1123 | } | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1124 |  | 
|  | 1125 | ndev->mem_start = res->start; | 
|  | 1126 | ndev->mem_end = res->end; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1127 |  | 
|  | 1128 | spin_lock_init(&lp->reset_lock); | 
|  | 1129 | lp->next_tx_buf_to_use = 0x0; | 
|  | 1130 | lp->next_rx_buf_to_use = 0x0; | 
|  | 1131 | lp->tx_ping_pong = get_bool(ofdev, "xlnx,tx-ping-pong"); | 
|  | 1132 | lp->rx_ping_pong = get_bool(ofdev, "xlnx,rx-ping-pong"); | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1133 | mac_address = of_get_mac_address(ofdev->dev.of_node); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1134 |  | 
|  | 1135 | if (mac_address) | 
|  | 1136 | /* Set the MAC address. */ | 
| Joe Perches | d458cdf | 2013-10-01 19:04:40 -0700 | [diff] [blame] | 1137 | memcpy(ndev->dev_addr, mac_address, ETH_ALEN); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1138 | else | 
|  | 1139 | dev_warn(dev, "No MAC address found\n"); | 
|  | 1140 |  | 
|  | 1141 | /* Clear the Tx CSR's in case this is a restart */ | 
| Michal Simek | 123c140 | 2013-05-30 00:28:06 +0000 | [diff] [blame] | 1142 | __raw_writel(0, lp->base_addr + XEL_TSR_OFFSET); | 
|  | 1143 | __raw_writel(0, lp->base_addr + XEL_BUFFER_OFFSET + XEL_TSR_OFFSET); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1144 |  | 
|  | 1145 | /* Set the MAC address in the EmacLite device */ | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1146 | xemaclite_update_address(lp, ndev->dev_addr); | 
|  | 1147 |  | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 1148 | lp->phy_node = of_parse_phandle(ofdev->dev.of_node, "phy-handle", 0); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1149 | rc = xemaclite_mdio_setup(lp, &ofdev->dev); | 
|  | 1150 | if (rc) | 
|  | 1151 | dev_warn(&ofdev->dev, "error registering MDIO bus\n"); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1152 |  | 
| H Hartley Sweeten | 5491f3a | 2009-12-29 20:04:53 -0800 | [diff] [blame] | 1153 | dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1154 |  | 
|  | 1155 | ndev->netdev_ops = &xemaclite_netdev_ops; | 
|  | 1156 | ndev->flags &= ~IFF_MULTICAST; | 
|  | 1157 | ndev->watchdog_timeo = TX_TIMEOUT; | 
|  | 1158 |  | 
|  | 1159 | /* Finally, register the device */ | 
|  | 1160 | rc = register_netdev(ndev); | 
|  | 1161 | if (rc) { | 
|  | 1162 | dev_err(dev, | 
|  | 1163 | "Cannot register network device, aborting\n"); | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1164 | goto error; | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1165 | } | 
|  | 1166 |  | 
|  | 1167 | dev_info(dev, | 
|  | 1168 | "Xilinx EmacLite at 0x%08X mapped to 0x%08X, irq=%d\n", | 
|  | 1169 | (unsigned int __force)ndev->mem_start, | 
|  | 1170 | (unsigned int __force)lp->base_addr, ndev->irq); | 
|  | 1171 | return 0; | 
|  | 1172 |  | 
| Michal Simek | 7a3e258 | 2013-06-04 00:03:27 +0000 | [diff] [blame] | 1173 | error: | 
| Michal Simek | 37c67c6 | 2013-09-12 09:05:10 +0200 | [diff] [blame] | 1174 | xemaclite_remove_ndev(ndev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1175 | return rc; | 
|  | 1176 | } | 
|  | 1177 |  | 
|  | 1178 | /** | 
|  | 1179 | * xemaclite_of_remove - Unbind the driver from the Emaclite device. | 
|  | 1180 | * @of_dev:	Pointer to OF device structure | 
|  | 1181 | * | 
|  | 1182 | * This function is called if a device is physically removed from the system or | 
|  | 1183 | * if the driver module is being unloaded. It frees any resources allocated to | 
|  | 1184 | * the device. | 
|  | 1185 | * | 
|  | 1186 | * Return:	0, always. | 
|  | 1187 | */ | 
| Bill Pemberton | 06b0e68 | 2012-12-03 09:24:08 -0500 | [diff] [blame] | 1188 | static int xemaclite_of_remove(struct platform_device *of_dev) | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1189 | { | 
| Libo Chen | 34e0184 | 2013-08-19 20:00:25 +0800 | [diff] [blame] | 1190 | struct net_device *ndev = platform_get_drvdata(of_dev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1191 |  | 
| Joe Perches | ece4915 | 2010-11-15 11:12:31 +0000 | [diff] [blame] | 1192 | struct net_local *lp = netdev_priv(ndev); | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1193 |  | 
|  | 1194 | /* Un-register the mii_bus, if configured */ | 
|  | 1195 | if (lp->has_mdio) { | 
|  | 1196 | mdiobus_unregister(lp->mii_bus); | 
|  | 1197 | kfree(lp->mii_bus->irq); | 
|  | 1198 | mdiobus_free(lp->mii_bus); | 
|  | 1199 | lp->mii_bus = NULL; | 
|  | 1200 | } | 
|  | 1201 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1202 | unregister_netdev(ndev); | 
|  | 1203 |  | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1204 | if (lp->phy_node) | 
|  | 1205 | of_node_put(lp->phy_node); | 
|  | 1206 | lp->phy_node = NULL; | 
|  | 1207 |  | 
| Michal Simek | 37c67c6 | 2013-09-12 09:05:10 +0200 | [diff] [blame] | 1208 | xemaclite_remove_ndev(ndev); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1209 |  | 
|  | 1210 | return 0; | 
|  | 1211 | } | 
|  | 1212 |  | 
| Michal Simek | 357e8b5f | 2010-08-18 01:22:49 +0000 | [diff] [blame] | 1213 | #ifdef CONFIG_NET_POLL_CONTROLLER | 
|  | 1214 | static void | 
|  | 1215 | xemaclite_poll_controller(struct net_device *ndev) | 
|  | 1216 | { | 
|  | 1217 | disable_irq(ndev->irq); | 
|  | 1218 | xemaclite_interrupt(ndev->irq, ndev); | 
|  | 1219 | enable_irq(ndev->irq); | 
|  | 1220 | } | 
|  | 1221 | #endif | 
|  | 1222 |  | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1223 | static struct net_device_ops xemaclite_netdev_ops = { | 
|  | 1224 | .ndo_open		= xemaclite_open, | 
|  | 1225 | .ndo_stop		= xemaclite_close, | 
|  | 1226 | .ndo_start_xmit		= xemaclite_send, | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1227 | .ndo_set_mac_address	= xemaclite_set_mac_address, | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1228 | .ndo_tx_timeout		= xemaclite_tx_timeout, | 
| Michal Simek | 357e8b5f | 2010-08-18 01:22:49 +0000 | [diff] [blame] | 1229 | #ifdef CONFIG_NET_POLL_CONTROLLER | 
|  | 1230 | .ndo_poll_controller = xemaclite_poll_controller, | 
|  | 1231 | #endif | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1232 | }; | 
|  | 1233 |  | 
|  | 1234 | /* Match table for OF platform binding */ | 
| Bill Pemberton | 06b0e68 | 2012-12-03 09:24:08 -0500 | [diff] [blame] | 1235 | static struct of_device_id xemaclite_of_match[] = { | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1236 | { .compatible = "xlnx,opb-ethernetlite-1.01.a", }, | 
|  | 1237 | { .compatible = "xlnx,opb-ethernetlite-1.01.b", }, | 
|  | 1238 | { .compatible = "xlnx,xps-ethernetlite-1.00.a", }, | 
|  | 1239 | { .compatible = "xlnx,xps-ethernetlite-2.00.a", }, | 
|  | 1240 | { .compatible = "xlnx,xps-ethernetlite-2.01.a", }, | 
| John Linn | 5cdaaa1 | 2010-02-15 21:51:00 -0800 | [diff] [blame] | 1241 | { .compatible = "xlnx,xps-ethernetlite-3.00.a", }, | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1242 | { /* end of list */ }, | 
|  | 1243 | }; | 
|  | 1244 | MODULE_DEVICE_TABLE(of, xemaclite_of_match); | 
|  | 1245 |  | 
| Grant Likely | 7488876 | 2011-02-22 21:05:51 -0700 | [diff] [blame] | 1246 | static struct platform_driver xemaclite_of_driver = { | 
| Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 1247 | .driver = { | 
|  | 1248 | .name = DRIVER_NAME, | 
|  | 1249 | .owner = THIS_MODULE, | 
|  | 1250 | .of_match_table = xemaclite_of_match, | 
|  | 1251 | }, | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1252 | .probe		= xemaclite_of_probe, | 
| Bill Pemberton | 06b0e68 | 2012-12-03 09:24:08 -0500 | [diff] [blame] | 1253 | .remove		= xemaclite_of_remove, | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1254 | }; | 
|  | 1255 |  | 
| Axel Lin | db62f68 | 2011-11-27 16:44:17 +0000 | [diff] [blame] | 1256 | module_platform_driver(xemaclite_of_driver); | 
| John Linn | bb81b2d | 2009-08-20 02:52:16 -0700 | [diff] [blame] | 1257 |  | 
|  | 1258 | MODULE_AUTHOR("Xilinx, Inc."); | 
|  | 1259 | MODULE_DESCRIPTION("Xilinx Ethernet MAC Lite driver"); | 
|  | 1260 | MODULE_LICENSE("GPL"); |