aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/fec_mpc52xx.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/fec_mpc52xx.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/fec_mpc52xx.c')
-rw-r--r--drivers/net/fec_mpc52xx.c38
1 files changed, 14 insertions, 24 deletions
diff --git a/drivers/net/fec_mpc52xx.c b/drivers/net/fec_mpc52xx.c
index e3e10b4add9c..9f81b1ac130e 100644
--- a/drivers/net/fec_mpc52xx.c
+++ b/drivers/net/fec_mpc52xx.c
@@ -366,9 +366,8 @@ static irqreturn_t mpc52xx_fec_tx_interrupt(int irq, void *dev_id)
366{ 366{
367 struct net_device *dev = dev_id; 367 struct net_device *dev = dev_id;
368 struct mpc52xx_fec_priv *priv = netdev_priv(dev); 368 struct mpc52xx_fec_priv *priv = netdev_priv(dev);
369 unsigned long flags;
370 369
371 spin_lock_irqsave(&priv->lock, flags); 370 spin_lock(&priv->lock);
372 while (bcom_buffer_done(priv->tx_dmatsk)) { 371 while (bcom_buffer_done(priv->tx_dmatsk)) {
373 struct sk_buff *skb; 372 struct sk_buff *skb;
374 struct bcom_fec_bd *bd; 373 struct bcom_fec_bd *bd;
@@ -379,7 +378,7 @@ static irqreturn_t mpc52xx_fec_tx_interrupt(int irq, void *dev_id)
379 378
380 dev_kfree_skb_irq(skb); 379 dev_kfree_skb_irq(skb);
381 } 380 }
382 spin_unlock_irqrestore(&priv->lock, flags); 381 spin_unlock(&priv->lock);
383 382
384 netif_wake_queue(dev); 383 netif_wake_queue(dev);
385 384
@@ -395,9 +394,8 @@ static irqreturn_t mpc52xx_fec_rx_interrupt(int irq, void *dev_id)
395 struct bcom_fec_bd *bd; 394 struct bcom_fec_bd *bd;
396 u32 status, physaddr; 395 u32 status, physaddr;
397 int length; 396 int length;
398 unsigned long flags;
399 397
400 spin_lock_irqsave(&priv->lock, flags); 398 spin_lock(&priv->lock);
401 399
402 while (bcom_buffer_done(priv->rx_dmatsk)) { 400 while (bcom_buffer_done(priv->rx_dmatsk)) {
403 401
@@ -429,7 +427,7 @@ static irqreturn_t mpc52xx_fec_rx_interrupt(int irq, void *dev_id)
429 427
430 /* Process the received skb - Drop the spin lock while 428 /* Process the received skb - Drop the spin lock while
431 * calling into the network stack */ 429 * calling into the network stack */
432 spin_unlock_irqrestore(&priv->lock, flags); 430 spin_unlock(&priv->lock);
433 431
434 dma_unmap_single(dev->dev.parent, physaddr, rskb->len, 432 dma_unmap_single(dev->dev.parent, physaddr, rskb->len,
435 DMA_FROM_DEVICE); 433 DMA_FROM_DEVICE);
@@ -438,10 +436,10 @@ static irqreturn_t mpc52xx_fec_rx_interrupt(int irq, void *dev_id)
438 rskb->protocol = eth_type_trans(rskb, dev); 436 rskb->protocol = eth_type_trans(rskb, dev);
439 netif_rx(rskb); 437 netif_rx(rskb);
440 438
441 spin_lock_irqsave(&priv->lock, flags); 439 spin_lock(&priv->lock);
442 } 440 }
443 441
444 spin_unlock_irqrestore(&priv->lock, flags); 442 spin_unlock(&priv->lock);
445 443
446 return IRQ_HANDLED; 444 return IRQ_HANDLED;
447} 445}
@@ -452,7 +450,6 @@ static irqreturn_t mpc52xx_fec_interrupt(int irq, void *dev_id)
452 struct mpc52xx_fec_priv *priv = netdev_priv(dev); 450 struct mpc52xx_fec_priv *priv = netdev_priv(dev);
453 struct mpc52xx_fec __iomem *fec = priv->fec; 451 struct mpc52xx_fec __iomem *fec = priv->fec;
454 u32 ievent; 452 u32 ievent;
455 unsigned long flags;
456 453
457 ievent = in_be32(&fec->ievent); 454 ievent = in_be32(&fec->ievent);
458 455
@@ -470,9 +467,9 @@ static irqreturn_t mpc52xx_fec_interrupt(int irq, void *dev_id)
470 if (net_ratelimit() && (ievent & FEC_IEVENT_XFIFO_ERROR)) 467 if (net_ratelimit() && (ievent & FEC_IEVENT_XFIFO_ERROR))
471 dev_warn(&dev->dev, "FEC_IEVENT_XFIFO_ERROR\n"); 468 dev_warn(&dev->dev, "FEC_IEVENT_XFIFO_ERROR\n");
472 469
473 spin_lock_irqsave(&priv->lock, flags); 470 spin_lock(&priv->lock);
474 mpc52xx_fec_reset(dev); 471 mpc52xx_fec_reset(dev);
475 spin_unlock_irqrestore(&priv->lock, flags); 472 spin_unlock(&priv->lock);
476 473
477 return IRQ_HANDLED; 474 return IRQ_HANDLED;
478 } 475 }
@@ -771,11 +768,6 @@ static void mpc52xx_fec_reset(struct net_device *dev)
771 768
772 769
773/* ethtool interface */ 770/* ethtool interface */
774static void mpc52xx_fec_get_drvinfo(struct net_device *dev,
775 struct ethtool_drvinfo *info)
776{
777 strcpy(info->driver, DRIVER_NAME);
778}
779 771
780static int mpc52xx_fec_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) 772static int mpc52xx_fec_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
781{ 773{
@@ -810,7 +802,6 @@ static void mpc52xx_fec_set_msglevel(struct net_device *dev, u32 level)
810} 802}
811 803
812static const struct ethtool_ops mpc52xx_fec_ethtool_ops = { 804static const struct ethtool_ops mpc52xx_fec_ethtool_ops = {
813 .get_drvinfo = mpc52xx_fec_get_drvinfo,
814 .get_settings = mpc52xx_fec_get_settings, 805 .get_settings = mpc52xx_fec_get_settings,
815 .set_settings = mpc52xx_fec_set_settings, 806 .set_settings = mpc52xx_fec_set_settings,
816 .get_link = ethtool_op_get_link, 807 .get_link = ethtool_op_get_link,
@@ -849,8 +840,7 @@ static const struct net_device_ops mpc52xx_fec_netdev_ops = {
849/* OF Driver */ 840/* OF Driver */
850/* ======================================================================== */ 841/* ======================================================================== */
851 842
852static int __devinit 843static int __devinit mpc52xx_fec_probe(struct platform_device *op)
853mpc52xx_fec_probe(struct platform_device *op, const struct of_device_id *match)
854{ 844{
855 int rv; 845 int rv;
856 struct net_device *ndev; 846 struct net_device *ndev;
@@ -1058,7 +1048,7 @@ static struct of_device_id mpc52xx_fec_match[] = {
1058 1048
1059MODULE_DEVICE_TABLE(of, mpc52xx_fec_match); 1049MODULE_DEVICE_TABLE(of, mpc52xx_fec_match);
1060 1050
1061static struct of_platform_driver mpc52xx_fec_driver = { 1051static struct platform_driver mpc52xx_fec_driver = {
1062 .driver = { 1052 .driver = {
1063 .name = DRIVER_NAME, 1053 .name = DRIVER_NAME,
1064 .owner = THIS_MODULE, 1054 .owner = THIS_MODULE,
@@ -1082,21 +1072,21 @@ mpc52xx_fec_init(void)
1082{ 1072{
1083#ifdef CONFIG_FEC_MPC52xx_MDIO 1073#ifdef CONFIG_FEC_MPC52xx_MDIO
1084 int ret; 1074 int ret;
1085 ret = of_register_platform_driver(&mpc52xx_fec_mdio_driver); 1075 ret = platform_driver_register(&mpc52xx_fec_mdio_driver);
1086 if (ret) { 1076 if (ret) {
1087 printk(KERN_ERR DRIVER_NAME ": failed to register mdio driver\n"); 1077 printk(KERN_ERR DRIVER_NAME ": failed to register mdio driver\n");
1088 return ret; 1078 return ret;
1089 } 1079 }
1090#endif 1080#endif
1091 return of_register_platform_driver(&mpc52xx_fec_driver); 1081 return platform_driver_register(&mpc52xx_fec_driver);
1092} 1082}
1093 1083
1094static void __exit 1084static void __exit
1095mpc52xx_fec_exit(void) 1085mpc52xx_fec_exit(void)
1096{ 1086{
1097 of_unregister_platform_driver(&mpc52xx_fec_driver); 1087 platform_driver_unregister(&mpc52xx_fec_driver);
1098#ifdef CONFIG_FEC_MPC52xx_MDIO 1088#ifdef CONFIG_FEC_MPC52xx_MDIO
1099 of_unregister_platform_driver(&mpc52xx_fec_mdio_driver); 1089 platform_driver_unregister(&mpc52xx_fec_mdio_driver);
1100#endif 1090#endif
1101} 1091}
1102 1092