2
0

ramips.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation; version 2 of the License
  5. *
  6. * This program is distributed in the hope that it will be useful,
  7. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. * GNU General Public License for more details.
  10. *
  11. * You should have received a copy of the GNU General Public License
  12. * along with this program; if not, write to the Free Software
  13. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  14. *
  15. * Copyright (C) 2009 John Crispin <[email protected]>
  16. */
  17. #include <linux/module.h>
  18. #include <linux/version.h>
  19. #include <linux/kernel.h>
  20. #include <linux/types.h>
  21. #include <linux/pci.h>
  22. #include <linux/init.h>
  23. #include <linux/skbuff.h>
  24. #include <linux/if_vlan.h>
  25. #include <linux/if_ether.h>
  26. #include <linux/platform_device.h>
  27. #include <asm/uaccess.h>
  28. #include <net/sock.h>
  29. #include <asm/uaccess.h>
  30. #include <eth.h>
  31. #define TX_TIMEOUT (20 * HZ / 100)
  32. #define MAX_RX_LENGTH 1500
  33. #ifdef CONFIG_RALINK_RT305X
  34. #include "ramips_esw.c"
  35. #endif
  36. #define phys_to_bus(a) (a & 0x1FFFFFFF)
  37. static struct net_device * ramips_dev;
  38. static void __iomem *ramips_fe_base = 0;
  39. static inline void
  40. ramips_fe_wr(u32 val, unsigned reg)
  41. {
  42. __raw_writel(val, ramips_fe_base + reg);
  43. }
  44. static inline u32
  45. ramips_fe_rr(unsigned reg)
  46. {
  47. return __raw_readl(ramips_fe_base + reg);
  48. }
  49. static int
  50. ramips_alloc_dma(struct net_device *dev)
  51. {
  52. struct raeth_priv *priv = netdev_priv(dev);
  53. int i;
  54. priv->skb_free_idx = 0;
  55. /* setup tx ring */
  56. priv->tx = dma_alloc_coherent(NULL,
  57. NUM_TX_DESC * sizeof(struct ramips_tx_dma), &priv->phy_tx, GFP_ATOMIC);
  58. for(i = 0; i < NUM_TX_DESC; i++)
  59. {
  60. memset(&priv->tx[i], 0, sizeof(struct ramips_tx_dma));
  61. priv->tx[i].txd2 |= TX_DMA_LSO | TX_DMA_DONE;
  62. priv->tx[i].txd4 &= (TX_DMA_QN_MASK | TX_DMA_PN_MASK);
  63. priv->tx[i].txd4 |= TX_DMA_QN(3) | TX_DMA_PN(1);
  64. }
  65. ramips_fe_wr(phys_to_bus(priv->phy_tx), RAMIPS_TX_BASE_PTR0);
  66. ramips_fe_wr(NUM_TX_DESC, RAMIPS_TX_MAX_CNT0);
  67. ramips_fe_wr(0, RAMIPS_TX_CTX_IDX0);
  68. ramips_fe_wr(RAMIPS_PST_DTX_IDX0, RAMIPS_PDMA_RST_CFG);
  69. /* setup rx ring */
  70. priv->rx = dma_alloc_coherent(NULL,
  71. NUM_RX_DESC * sizeof(struct ramips_rx_dma), &priv->phy_rx, GFP_ATOMIC);
  72. memset(priv->rx, 0, sizeof(struct ramips_rx_dma) * NUM_RX_DESC);
  73. for(i = 0; i < NUM_RX_DESC; i++)
  74. {
  75. struct sk_buff *new_skb = dev_alloc_skb(MAX_RX_LENGTH + 2);
  76. BUG_ON(!new_skb);
  77. skb_reserve(new_skb, 2);
  78. priv->rx[i].rxd1 =
  79. dma_map_single(NULL, skb_put(new_skb, 2), MAX_RX_LENGTH + 2,
  80. PCI_DMA_FROMDEVICE);
  81. priv->rx[i].rxd2 |= RX_DMA_LSO;
  82. priv->rx_skb[i] = new_skb;
  83. }
  84. ramips_fe_wr(phys_to_bus(priv->phy_rx), RAMIPS_RX_BASE_PTR0);
  85. ramips_fe_wr(NUM_RX_DESC, RAMIPS_RX_MAX_CNT0);
  86. ramips_fe_wr((NUM_RX_DESC - 1), RAMIPS_RX_CALC_IDX0);
  87. ramips_fe_wr(RAMIPS_PST_DRX_IDX0, RAMIPS_PDMA_RST_CFG);
  88. return 0;
  89. }
  90. static int
  91. ramips_eth_hard_start_xmit(struct sk_buff* skb, struct net_device *dev)
  92. {
  93. struct raeth_priv *priv = netdev_priv(dev);
  94. unsigned long tx;
  95. unsigned int tx_next;
  96. unsigned int mapped_addr;
  97. if(priv->plat->min_pkt_len)
  98. {
  99. if(skb->len < priv->plat->min_pkt_len)
  100. {
  101. if(skb_padto(skb, priv->plat->min_pkt_len))
  102. {
  103. printk(KERN_ERR "ramips_eth: skb_padto failed\n");
  104. kfree_skb(skb);
  105. return 0;
  106. }
  107. skb_put(skb, priv->plat->min_pkt_len - skb->len);
  108. }
  109. }
  110. dev->trans_start = jiffies;
  111. mapped_addr = (unsigned int)dma_map_single(NULL, skb->data, skb->len,
  112. PCI_DMA_TODEVICE);
  113. dma_sync_single_for_device(NULL, mapped_addr, skb->len, PCI_DMA_TODEVICE);
  114. tx = ramips_fe_rr(RAMIPS_TX_CTX_IDX0);
  115. if(tx == NUM_TX_DESC - 1)
  116. tx_next = 0;
  117. else
  118. tx_next = tx + 1;
  119. if((priv->tx_skb[tx]== 0) && (priv->tx_skb[tx_next] == 0))
  120. {
  121. if(!(priv->tx[tx].txd2 & TX_DMA_DONE))
  122. {
  123. kfree_skb(skb);
  124. dev->stats.tx_dropped++;
  125. printk(KERN_ERR "%s: dropping\n", dev->name);
  126. return 0;
  127. }
  128. priv->tx[tx].txd1 = virt_to_phys(skb->data);
  129. priv->tx[tx].txd2 &= ~(TX_DMA_PLEN0_MASK | TX_DMA_DONE);
  130. priv->tx[tx].txd2 |= TX_DMA_PLEN0(skb->len);
  131. ramips_fe_wr((tx + 1) % NUM_TX_DESC, RAMIPS_TX_CTX_IDX0);
  132. dev->stats.tx_packets++;
  133. dev->stats.tx_bytes += skb->len;
  134. priv->tx_skb[tx] = skb;
  135. ramips_fe_wr((tx + 1) % NUM_TX_DESC, RAMIPS_TX_CTX_IDX0);
  136. } else {
  137. dev->stats.tx_dropped++;
  138. kfree_skb(skb);
  139. }
  140. return 0;
  141. }
  142. static void
  143. ramips_eth_rx_hw(unsigned long ptr)
  144. {
  145. struct net_device *dev = (struct net_device*)ptr;
  146. struct raeth_priv *priv = netdev_priv(dev);
  147. int rx;
  148. int max_rx = 16;
  149. while(max_rx)
  150. {
  151. struct sk_buff *rx_skb, *new_skb;
  152. rx = (ramips_fe_rr(RAMIPS_RX_CALC_IDX0) + 1) % NUM_RX_DESC;
  153. if(!(priv->rx[rx].rxd2 & RX_DMA_DONE))
  154. break;
  155. max_rx--;
  156. rx_skb = priv->rx_skb[rx];
  157. rx_skb->len = RX_DMA_PLEN0(priv->rx[rx].rxd2);
  158. rx_skb->tail = rx_skb->data + rx_skb->len;
  159. rx_skb->dev = dev;
  160. rx_skb->protocol = eth_type_trans(rx_skb, dev);
  161. rx_skb->ip_summed = CHECKSUM_NONE;
  162. dev->stats.rx_packets++;
  163. dev->stats.rx_bytes += rx_skb->len;
  164. netif_rx(rx_skb);
  165. new_skb = __dev_alloc_skb(MAX_RX_LENGTH + 2, GFP_DMA | GFP_ATOMIC);
  166. priv->rx_skb[rx] = new_skb;
  167. BUG_ON(!new_skb);
  168. skb_reserve(new_skb, 2);
  169. priv->rx[rx].rxd1 =
  170. dma_map_single(NULL, new_skb->data, MAX_RX_LENGTH + 2,
  171. PCI_DMA_FROMDEVICE);
  172. priv->rx[rx].rxd2 &= ~RX_DMA_DONE;
  173. ramips_fe_wr(rx, RAMIPS_RX_CALC_IDX0);
  174. }
  175. if(max_rx == 0)
  176. tasklet_schedule(&priv->rx_tasklet);
  177. else
  178. ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) | RAMIPS_RX_DLY_INT,
  179. RAMIPS_FE_INT_ENABLE);
  180. }
  181. static void
  182. ramips_eth_tx_housekeeping(unsigned long ptr)
  183. {
  184. struct net_device *dev = (struct net_device*)ptr;
  185. struct raeth_priv *priv = netdev_priv(dev);
  186. while((priv->tx[priv->skb_free_idx].txd2 & TX_DMA_DONE) &&
  187. (priv->tx_skb[priv->skb_free_idx]))
  188. {
  189. dev_kfree_skb_irq((struct sk_buff*)priv->tx_skb[priv->skb_free_idx]);
  190. priv->tx_skb[priv->skb_free_idx] = 0;
  191. priv->skb_free_idx++;
  192. if(priv->skb_free_idx >= NUM_TX_DESC)
  193. priv->skb_free_idx = 0;
  194. }
  195. ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) | RAMIPS_TX_DLY_INT,
  196. RAMIPS_FE_INT_ENABLE);
  197. }
  198. static int
  199. ramips_eth_set_mac_addr(struct net_device *dev, void *priv)
  200. {
  201. unsigned char *mac = (unsigned char*)priv;
  202. if(netif_running(dev))
  203. return -EBUSY;
  204. memcpy(dev->dev_addr, ((struct sockaddr*)priv)->sa_data, dev->addr_len);
  205. ramips_fe_wr((mac[0] << 8) | mac[1], RAMIPS_GDMA1_MAC_ADRH);
  206. ramips_fe_wr(RAMIPS_GDMA1_MAC_ADRL,
  207. (mac[2] << 24) | (mac[3] << 16) | (mac[4] << 8) | mac[5]);
  208. return 0;
  209. }
  210. static void
  211. ramips_eth_timeout(struct net_device *dev)
  212. {
  213. struct raeth_priv *priv = netdev_priv(dev);
  214. tasklet_schedule(&priv->tx_housekeeping_tasklet);
  215. }
  216. static irqreturn_t
  217. ramips_eth_irq(int irq, void *dev)
  218. {
  219. struct raeth_priv *priv = netdev_priv(dev);
  220. unsigned long fe_int = ramips_fe_rr(RAMIPS_FE_INT_STATUS);
  221. ramips_fe_wr(0xFFFFFFFF, RAMIPS_FE_INT_STATUS);
  222. if(fe_int & RAMIPS_RX_DLY_INT)
  223. {
  224. ramips_fe_wr(ramips_fe_rr(RAMIPS_FE_INT_ENABLE) & ~(RAMIPS_RX_DLY_INT),
  225. RAMIPS_FE_INT_ENABLE);
  226. tasklet_schedule(&priv->rx_tasklet);
  227. }
  228. if(fe_int & RAMIPS_TX_DLY_INT)
  229. ramips_eth_tx_housekeeping((unsigned long)dev);
  230. return IRQ_HANDLED;
  231. }
  232. static int
  233. ramips_eth_open(struct net_device *dev)
  234. {
  235. struct raeth_priv *priv = netdev_priv(dev);
  236. ramips_alloc_dma(dev);
  237. ramips_fe_wr((ramips_fe_rr(RAMIPS_PDMA_GLO_CFG) & 0xff) |
  238. (RAMIPS_TX_WB_DDONE | RAMIPS_RX_DMA_EN |
  239. RAMIPS_TX_DMA_EN | RAMIPS_PDMA_SIZE_4DWORDS),
  240. RAMIPS_PDMA_GLO_CFG);
  241. ramips_fe_wr((ramips_fe_rr(RAMIPS_FE_GLO_CFG) &
  242. ~(RAMIPS_US_CYC_CNT_MASK << RAMIPS_US_CYC_CNT_SHIFT)) |
  243. ((rt305x_sys_freq / RAMIPS_US_CYC_CNT_DIVISOR) << RAMIPS_US_CYC_CNT_SHIFT),
  244. RAMIPS_FE_GLO_CFG);
  245. request_irq(dev->irq, ramips_eth_irq, IRQF_DISABLED, dev->name, dev);
  246. tasklet_init(&priv->tx_housekeeping_tasklet, ramips_eth_tx_housekeeping,
  247. (unsigned long)dev);
  248. tasklet_init(&priv->rx_tasklet, ramips_eth_rx_hw, (unsigned long)dev);
  249. ramips_fe_wr(RAMIPS_DELAY_INIT, RAMIPS_DLY_INT_CFG);
  250. ramips_fe_wr(RAMIPS_TX_DLY_INT | RAMIPS_RX_DLY_INT, RAMIPS_FE_INT_ENABLE);
  251. ramips_fe_wr(ramips_fe_rr(RAMIPS_GDMA1_FWD_CFG) &
  252. ~(RAMIPS_GDM1_ICS_EN | RAMIPS_GDM1_TCS_EN | RAMIPS_GDM1_UCS_EN | 0xffff),
  253. RAMIPS_GDMA1_FWD_CFG);
  254. ramips_fe_wr(ramips_fe_rr(RAMIPS_CDMA_CSG_CFG) &
  255. ~(RAMIPS_ICS_GEN_EN | RAMIPS_TCS_GEN_EN | RAMIPS_UCS_GEN_EN),
  256. RAMIPS_CDMA_CSG_CFG);
  257. ramips_fe_wr(RAMIPS_PSE_FQFC_CFG_INIT, RAMIPS_PSE_FQ_CFG);
  258. ramips_fe_wr(1, RAMIPS_FE_RST_GL);
  259. ramips_fe_wr(0, RAMIPS_FE_RST_GL);
  260. netif_start_queue(dev);
  261. return 0;
  262. }
  263. static int
  264. ramips_eth_stop(struct net_device *dev)
  265. {
  266. struct raeth_priv *priv = netdev_priv(dev);
  267. ramips_fe_wr(RAMIPS_PDMA_GLO_CFG, ramips_fe_rr(RAMIPS_PDMA_GLO_CFG) &
  268. ~(RAMIPS_TX_WB_DDONE | RAMIPS_RX_DMA_EN | RAMIPS_TX_DMA_EN));
  269. free_irq(dev->irq, dev);
  270. netif_stop_queue(dev);
  271. tasklet_kill(&priv->tx_housekeeping_tasklet);
  272. tasklet_kill(&priv->rx_tasklet);
  273. pci_free_consistent(NULL, NUM_TX_DESC * sizeof(struct ramips_tx_dma),
  274. priv->tx, priv->phy_tx);
  275. pci_free_consistent(NULL, NUM_RX_DESC * sizeof(struct ramips_rx_dma),
  276. priv->rx, priv->phy_rx);
  277. printk(KERN_DEBUG "ramips_eth: stopped\n");
  278. return 0;
  279. }
  280. static int __init
  281. ramips_eth_probe(struct net_device *dev)
  282. {
  283. struct raeth_priv *priv = netdev_priv(dev);
  284. struct sockaddr addr;
  285. BUG_ON(!priv->plat->reset_fe);
  286. priv->plat->reset_fe();
  287. net_srandom(jiffies);
  288. memcpy(addr.sa_data, priv->plat->mac, 6);
  289. ramips_eth_set_mac_addr(dev, &addr);
  290. ether_setup(dev);
  291. dev->open = ramips_eth_open;
  292. dev->stop = ramips_eth_stop;
  293. dev->hard_start_xmit = ramips_eth_hard_start_xmit;
  294. dev->set_mac_address = ramips_eth_set_mac_addr;
  295. dev->mtu = MAX_RX_LENGTH;
  296. dev->tx_timeout = ramips_eth_timeout;
  297. dev->watchdog_timeo = TX_TIMEOUT;
  298. return 0;
  299. }
  300. static int
  301. ramips_eth_plat_probe(struct platform_device *plat)
  302. {
  303. struct raeth_priv *priv;
  304. struct ramips_eth_platform_data *data = plat->dev.platform_data;
  305. ramips_fe_base = ioremap_nocache(data->base_addr, PAGE_SIZE);
  306. if(!ramips_fe_base)
  307. return -ENOMEM;
  308. ramips_dev = alloc_etherdev(sizeof(struct raeth_priv));
  309. if(!ramips_dev)
  310. return -ENOMEM;
  311. strcpy(ramips_dev->name, "eth%d");
  312. ramips_dev->irq = data->irq;
  313. ramips_dev->addr_len = ETH_ALEN;
  314. ramips_dev->base_addr = (unsigned long)ramips_fe_base;
  315. ramips_dev->init = ramips_eth_probe;
  316. priv = (struct raeth_priv*)netdev_priv(ramips_dev);
  317. priv->plat = data;
  318. if(register_netdev(ramips_dev))
  319. {
  320. printk(KERN_ERR "ramips_eth: error bringing up device\n");
  321. return -ENXIO;
  322. }
  323. #ifdef CONFIG_RALINK_RT305X
  324. rt305x_esw_init();
  325. #endif
  326. printk(KERN_DEBUG "ramips_eth: loaded\n");
  327. return 0;
  328. }
  329. static int
  330. ramips_eth_plat_remove(struct platform_device *plat)
  331. {
  332. unregister_netdev(ramips_dev);
  333. free_netdev(ramips_dev);
  334. printk(KERN_DEBUG "ramips_eth: unloaded\n");
  335. return 0;
  336. }
  337. static struct platform_driver ramips_eth_driver = {
  338. .probe = ramips_eth_plat_probe,
  339. .remove = ramips_eth_plat_remove,
  340. .driver = {
  341. .name = "ramips_eth",
  342. .owner = THIS_MODULE,
  343. },
  344. };
  345. static int __init
  346. ramips_eth_init(void)
  347. {
  348. int ret = platform_driver_register(&ramips_eth_driver);
  349. if (ret)
  350. printk(KERN_ERR
  351. "ramips_eth: Error registering platfom driver!\n");
  352. return ret;
  353. }
  354. static void __exit
  355. ramips_eth_cleanup(void)
  356. {
  357. platform_driver_unregister(&ramips_eth_driver);
  358. }
  359. module_init(ramips_eth_init);
  360. module_exit(ramips_eth_cleanup);
  361. MODULE_LICENSE("GPL");
  362. MODULE_AUTHOR("John Crispin <[email protected]>");
  363. MODULE_DESCRIPTION("ethernet driver for ramips boards");