diff options
Diffstat (limited to 'drivers/net/sunhme.c')
-rw-r--r-- | drivers/net/sunhme.c | 54 |
1 files changed, 32 insertions, 22 deletions
diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c index bd0df1c14955..30aad54b1b3a 100644 --- a/drivers/net/sunhme.c +++ b/drivers/net/sunhme.c | |||
@@ -1383,7 +1383,7 @@ force_link: | |||
1383 | if (ep == NULL || ep->autoneg == AUTONEG_ENABLE) { | 1383 | if (ep == NULL || ep->autoneg == AUTONEG_ENABLE) { |
1384 | hp->sw_bmcr = BMCR_SPEED100; | 1384 | hp->sw_bmcr = BMCR_SPEED100; |
1385 | } else { | 1385 | } else { |
1386 | if (ep->speed == SPEED_100) | 1386 | if (ethtool_cmd_speed(ep) == SPEED_100) |
1387 | hp->sw_bmcr = BMCR_SPEED100; | 1387 | hp->sw_bmcr = BMCR_SPEED100; |
1388 | else | 1388 | else |
1389 | hp->sw_bmcr = 0; | 1389 | hp->sw_bmcr = 0; |
@@ -1409,7 +1409,7 @@ force_link: | |||
1409 | hp->timer_ticks = 0; | 1409 | hp->timer_ticks = 0; |
1410 | hp->happy_timer.expires = jiffies + (12 * HZ)/10; /* 1.2 sec. */ | 1410 | hp->happy_timer.expires = jiffies + (12 * HZ)/10; /* 1.2 sec. */ |
1411 | hp->happy_timer.data = (unsigned long) hp; | 1411 | hp->happy_timer.data = (unsigned long) hp; |
1412 | hp->happy_timer.function = &happy_meal_timer; | 1412 | hp->happy_timer.function = happy_meal_timer; |
1413 | add_timer(&hp->happy_timer); | 1413 | add_timer(&hp->happy_timer); |
1414 | } | 1414 | } |
1415 | 1415 | ||
@@ -2266,7 +2266,7 @@ static netdev_tx_t happy_meal_start_xmit(struct sk_buff *skb, | |||
2266 | 2266 | ||
2267 | tx_flags = TXFLAG_OWN; | 2267 | tx_flags = TXFLAG_OWN; |
2268 | if (skb->ip_summed == CHECKSUM_PARTIAL) { | 2268 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
2269 | const u32 csum_start_off = skb_transport_offset(skb); | 2269 | const u32 csum_start_off = skb_checksum_start_offset(skb); |
2270 | const u32 csum_stuff_off = csum_start_off + skb->csum_offset; | 2270 | const u32 csum_stuff_off = csum_start_off + skb->csum_offset; |
2271 | 2271 | ||
2272 | tx_flags = (TXFLAG_OWN | TXFLAG_CSENABLE | | 2272 | tx_flags = (TXFLAG_OWN | TXFLAG_CSENABLE | |
@@ -2401,6 +2401,7 @@ static void happy_meal_set_multicast(struct net_device *dev) | |||
2401 | static int hme_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | 2401 | static int hme_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) |
2402 | { | 2402 | { |
2403 | struct happy_meal *hp = netdev_priv(dev); | 2403 | struct happy_meal *hp = netdev_priv(dev); |
2404 | u32 speed; | ||
2404 | 2405 | ||
2405 | cmd->supported = | 2406 | cmd->supported = |
2406 | (SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full | | 2407 | (SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full | |
@@ -2420,10 +2421,9 @@ static int hme_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
2420 | 2421 | ||
2421 | if (hp->sw_bmcr & BMCR_ANENABLE) { | 2422 | if (hp->sw_bmcr & BMCR_ANENABLE) { |
2422 | cmd->autoneg = AUTONEG_ENABLE; | 2423 | cmd->autoneg = AUTONEG_ENABLE; |
2423 | cmd->speed = | 2424 | speed = ((hp->sw_lpa & (LPA_100HALF | LPA_100FULL)) ? |
2424 | (hp->sw_lpa & (LPA_100HALF | LPA_100FULL)) ? | 2425 | SPEED_100 : SPEED_10); |
2425 | SPEED_100 : SPEED_10; | 2426 | if (speed == SPEED_100) |
2426 | if (cmd->speed == SPEED_100) | ||
2427 | cmd->duplex = | 2427 | cmd->duplex = |
2428 | (hp->sw_lpa & (LPA_100FULL)) ? | 2428 | (hp->sw_lpa & (LPA_100FULL)) ? |
2429 | DUPLEX_FULL : DUPLEX_HALF; | 2429 | DUPLEX_FULL : DUPLEX_HALF; |
@@ -2433,13 +2433,12 @@ static int hme_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
2433 | DUPLEX_FULL : DUPLEX_HALF; | 2433 | DUPLEX_FULL : DUPLEX_HALF; |
2434 | } else { | 2434 | } else { |
2435 | cmd->autoneg = AUTONEG_DISABLE; | 2435 | cmd->autoneg = AUTONEG_DISABLE; |
2436 | cmd->speed = | 2436 | speed = (hp->sw_bmcr & BMCR_SPEED100) ? SPEED_100 : SPEED_10; |
2437 | (hp->sw_bmcr & BMCR_SPEED100) ? | ||
2438 | SPEED_100 : SPEED_10; | ||
2439 | cmd->duplex = | 2437 | cmd->duplex = |
2440 | (hp->sw_bmcr & BMCR_FULLDPLX) ? | 2438 | (hp->sw_bmcr & BMCR_FULLDPLX) ? |
2441 | DUPLEX_FULL : DUPLEX_HALF; | 2439 | DUPLEX_FULL : DUPLEX_HALF; |
2442 | } | 2440 | } |
2441 | ethtool_cmd_speed_set(cmd, speed); | ||
2443 | return 0; | 2442 | return 0; |
2444 | } | 2443 | } |
2445 | 2444 | ||
@@ -2452,8 +2451,8 @@ static int hme_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
2452 | cmd->autoneg != AUTONEG_DISABLE) | 2451 | cmd->autoneg != AUTONEG_DISABLE) |
2453 | return -EINVAL; | 2452 | return -EINVAL; |
2454 | if (cmd->autoneg == AUTONEG_DISABLE && | 2453 | if (cmd->autoneg == AUTONEG_DISABLE && |
2455 | ((cmd->speed != SPEED_100 && | 2454 | ((ethtool_cmd_speed(cmd) != SPEED_100 && |
2456 | cmd->speed != SPEED_10) || | 2455 | ethtool_cmd_speed(cmd) != SPEED_10) || |
2457 | (cmd->duplex != DUPLEX_HALF && | 2456 | (cmd->duplex != DUPLEX_HALF && |
2458 | cmd->duplex != DUPLEX_FULL))) | 2457 | cmd->duplex != DUPLEX_FULL))) |
2459 | return -EINVAL; | 2458 | return -EINVAL; |
@@ -2497,7 +2496,7 @@ static u32 hme_get_link(struct net_device *dev) | |||
2497 | hp->sw_bmcr = happy_meal_tcvr_read(hp, hp->tcvregs, MII_BMCR); | 2496 | hp->sw_bmcr = happy_meal_tcvr_read(hp, hp->tcvregs, MII_BMCR); |
2498 | spin_unlock_irq(&hp->happy_lock); | 2497 | spin_unlock_irq(&hp->happy_lock); |
2499 | 2498 | ||
2500 | return (hp->sw_bmsr & BMSR_LSTATUS); | 2499 | return hp->sw_bmsr & BMSR_LSTATUS; |
2501 | } | 2500 | } |
2502 | 2501 | ||
2503 | static const struct ethtool_ops hme_ethtool_ops = { | 2502 | static const struct ethtool_ops hme_ethtool_ops = { |
@@ -2788,7 +2787,8 @@ static int __devinit happy_meal_sbus_probe_one(struct platform_device *op, int i | |||
2788 | dev->ethtool_ops = &hme_ethtool_ops; | 2787 | dev->ethtool_ops = &hme_ethtool_ops; |
2789 | 2788 | ||
2790 | /* Happy Meal can do it all... */ | 2789 | /* Happy Meal can do it all... */ |
2791 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 2790 | dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM; |
2791 | dev->features |= dev->hw_features | NETIF_F_RXCSUM; | ||
2792 | 2792 | ||
2793 | dev->irq = op->archdata.irqs[0]; | 2793 | dev->irq = op->archdata.irqs[0]; |
2794 | 2794 | ||
@@ -2808,7 +2808,8 @@ static int __devinit happy_meal_sbus_probe_one(struct platform_device *op, int i | |||
2808 | happy_meal_set_initial_advertisement(hp); | 2808 | happy_meal_set_initial_advertisement(hp); |
2809 | spin_unlock_irq(&hp->happy_lock); | 2809 | spin_unlock_irq(&hp->happy_lock); |
2810 | 2810 | ||
2811 | if (register_netdev(hp->dev)) { | 2811 | err = register_netdev(hp->dev); |
2812 | if (err) { | ||
2812 | printk(KERN_ERR "happymeal: Cannot register net device, " | 2813 | printk(KERN_ERR "happymeal: Cannot register net device, " |
2813 | "aborting.\n"); | 2814 | "aborting.\n"); |
2814 | goto err_out_free_coherent; | 2815 | goto err_out_free_coherent; |
@@ -3112,7 +3113,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
3112 | dev->dma = 0; | 3113 | dev->dma = 0; |
3113 | 3114 | ||
3114 | /* Happy Meal can do it all... */ | 3115 | /* Happy Meal can do it all... */ |
3115 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 3116 | dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM; |
3117 | dev->features |= dev->hw_features | NETIF_F_RXCSUM; | ||
3116 | 3118 | ||
3117 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) | 3119 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) |
3118 | /* Hook up PCI register/descriptor accessors. */ | 3120 | /* Hook up PCI register/descriptor accessors. */ |
@@ -3130,7 +3132,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
3130 | happy_meal_set_initial_advertisement(hp); | 3132 | happy_meal_set_initial_advertisement(hp); |
3131 | spin_unlock_irq(&hp->happy_lock); | 3133 | spin_unlock_irq(&hp->happy_lock); |
3132 | 3134 | ||
3133 | if (register_netdev(hp->dev)) { | 3135 | err = register_netdev(hp->dev); |
3136 | if (err) { | ||
3134 | printk(KERN_ERR "happymeal(PCI): Cannot register net device, " | 3137 | printk(KERN_ERR "happymeal(PCI): Cannot register net device, " |
3135 | "aborting.\n"); | 3138 | "aborting.\n"); |
3136 | goto err_out_iounmap; | 3139 | goto err_out_iounmap; |
@@ -3235,11 +3238,18 @@ static void happy_meal_pci_exit(void) | |||
3235 | #endif | 3238 | #endif |
3236 | 3239 | ||
3237 | #ifdef CONFIG_SBUS | 3240 | #ifdef CONFIG_SBUS |
3238 | static int __devinit hme_sbus_probe(struct platform_device *op, const struct of_device_id *match) | 3241 | static const struct of_device_id hme_sbus_match[]; |
3242 | static int __devinit hme_sbus_probe(struct platform_device *op) | ||
3239 | { | 3243 | { |
3244 | const struct of_device_id *match; | ||
3240 | struct device_node *dp = op->dev.of_node; | 3245 | struct device_node *dp = op->dev.of_node; |
3241 | const char *model = of_get_property(dp, "model", NULL); | 3246 | const char *model = of_get_property(dp, "model", NULL); |
3242 | int is_qfe = (match->data != NULL); | 3247 | int is_qfe; |
3248 | |||
3249 | match = of_match_device(hme_sbus_match, &op->dev); | ||
3250 | if (!match) | ||
3251 | return -EINVAL; | ||
3252 | is_qfe = (match->data != NULL); | ||
3243 | 3253 | ||
3244 | if (!is_qfe && model && !strcmp(model, "SUNW,sbus-qfe")) | 3254 | if (!is_qfe && model && !strcmp(model, "SUNW,sbus-qfe")) |
3245 | is_qfe = 1; | 3255 | is_qfe = 1; |
@@ -3290,7 +3300,7 @@ static const struct of_device_id hme_sbus_match[] = { | |||
3290 | 3300 | ||
3291 | MODULE_DEVICE_TABLE(of, hme_sbus_match); | 3301 | MODULE_DEVICE_TABLE(of, hme_sbus_match); |
3292 | 3302 | ||
3293 | static struct of_platform_driver hme_sbus_driver = { | 3303 | static struct platform_driver hme_sbus_driver = { |
3294 | .driver = { | 3304 | .driver = { |
3295 | .name = "hme", | 3305 | .name = "hme", |
3296 | .owner = THIS_MODULE, | 3306 | .owner = THIS_MODULE, |
@@ -3304,7 +3314,7 @@ static int __init happy_meal_sbus_init(void) | |||
3304 | { | 3314 | { |
3305 | int err; | 3315 | int err; |
3306 | 3316 | ||
3307 | err = of_register_platform_driver(&hme_sbus_driver); | 3317 | err = platform_driver_register(&hme_sbus_driver); |
3308 | if (!err) | 3318 | if (!err) |
3309 | err = quattro_sbus_register_irqs(); | 3319 | err = quattro_sbus_register_irqs(); |
3310 | 3320 | ||
@@ -3313,7 +3323,7 @@ static int __init happy_meal_sbus_init(void) | |||
3313 | 3323 | ||
3314 | static void happy_meal_sbus_exit(void) | 3324 | static void happy_meal_sbus_exit(void) |
3315 | { | 3325 | { |
3316 | of_unregister_platform_driver(&hme_sbus_driver); | 3326 | platform_driver_unregister(&hme_sbus_driver); |
3317 | quattro_sbus_free_irqs(); | 3327 | quattro_sbus_free_irqs(); |
3318 | 3328 | ||
3319 | while (qfe_sbus_list) { | 3329 | while (qfe_sbus_list) { |