Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * net/switchdev/switchdev.c - Switch device API |
| 3 | * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/init.h> |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame^] | 14 | #include <linux/mutex.h> |
| 15 | #include <linux/notifier.h> |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 16 | #include <linux/netdevice.h> |
| 17 | #include <net/switchdev.h> |
| 18 | |
| 19 | /** |
| 20 | * netdev_switch_parent_id_get - Get ID of a switch |
| 21 | * @dev: port device |
| 22 | * @psid: switch ID |
| 23 | * |
| 24 | * Get ID of a switch this port is part of. |
| 25 | */ |
| 26 | int netdev_switch_parent_id_get(struct net_device *dev, |
| 27 | struct netdev_phys_item_id *psid) |
| 28 | { |
| 29 | const struct net_device_ops *ops = dev->netdev_ops; |
| 30 | |
| 31 | if (!ops->ndo_switch_parent_id_get) |
| 32 | return -EOPNOTSUPP; |
| 33 | return ops->ndo_switch_parent_id_get(dev, psid); |
| 34 | } |
| 35 | EXPORT_SYMBOL(netdev_switch_parent_id_get); |
Scott Feldman | 38dcf35 | 2014-11-28 14:34:20 +0100 | [diff] [blame] | 36 | |
| 37 | /** |
| 38 | * netdev_switch_port_stp_update - Notify switch device port of STP |
| 39 | * state change |
| 40 | * @dev: port device |
| 41 | * @state: port STP state |
| 42 | * |
| 43 | * Notify switch device port of bridge port STP state change. |
| 44 | */ |
| 45 | int netdev_switch_port_stp_update(struct net_device *dev, u8 state) |
| 46 | { |
| 47 | const struct net_device_ops *ops = dev->netdev_ops; |
| 48 | |
| 49 | if (!ops->ndo_switch_port_stp_update) |
| 50 | return -EOPNOTSUPP; |
| 51 | WARN_ON(!ops->ndo_switch_parent_id_get); |
| 52 | return ops->ndo_switch_port_stp_update(dev, state); |
| 53 | } |
| 54 | EXPORT_SYMBOL(netdev_switch_port_stp_update); |
Jiri Pirko | 03bf0c2 | 2015-01-15 23:49:36 +0100 | [diff] [blame^] | 55 | |
| 56 | static DEFINE_MUTEX(netdev_switch_mutex); |
| 57 | static RAW_NOTIFIER_HEAD(netdev_switch_notif_chain); |
| 58 | |
| 59 | /** |
| 60 | * register_netdev_switch_notifier - Register nofifier |
| 61 | * @nb: notifier_block |
| 62 | * |
| 63 | * Register switch device notifier. This should be used by code |
| 64 | * which needs to monitor events happening in particular device. |
| 65 | * Return values are same as for atomic_notifier_chain_register(). |
| 66 | */ |
| 67 | int register_netdev_switch_notifier(struct notifier_block *nb) |
| 68 | { |
| 69 | int err; |
| 70 | |
| 71 | mutex_lock(&netdev_switch_mutex); |
| 72 | err = raw_notifier_chain_register(&netdev_switch_notif_chain, nb); |
| 73 | mutex_unlock(&netdev_switch_mutex); |
| 74 | return err; |
| 75 | } |
| 76 | EXPORT_SYMBOL(register_netdev_switch_notifier); |
| 77 | |
| 78 | /** |
| 79 | * unregister_netdev_switch_notifier - Unregister nofifier |
| 80 | * @nb: notifier_block |
| 81 | * |
| 82 | * Unregister switch device notifier. |
| 83 | * Return values are same as for atomic_notifier_chain_unregister(). |
| 84 | */ |
| 85 | int unregister_netdev_switch_notifier(struct notifier_block *nb) |
| 86 | { |
| 87 | int err; |
| 88 | |
| 89 | mutex_lock(&netdev_switch_mutex); |
| 90 | err = raw_notifier_chain_unregister(&netdev_switch_notif_chain, nb); |
| 91 | mutex_unlock(&netdev_switch_mutex); |
| 92 | return err; |
| 93 | } |
| 94 | EXPORT_SYMBOL(unregister_netdev_switch_notifier); |
| 95 | |
| 96 | /** |
| 97 | * call_netdev_switch_notifiers - Call nofifiers |
| 98 | * @val: value passed unmodified to notifier function |
| 99 | * @dev: port device |
| 100 | * @info: notifier information data |
| 101 | * |
| 102 | * Call all network notifier blocks. This should be called by driver |
| 103 | * when it needs to propagate hardware event. |
| 104 | * Return values are same as for atomic_notifier_call_chain(). |
| 105 | */ |
| 106 | int call_netdev_switch_notifiers(unsigned long val, struct net_device *dev, |
| 107 | struct netdev_switch_notifier_info *info) |
| 108 | { |
| 109 | int err; |
| 110 | |
| 111 | info->dev = dev; |
| 112 | mutex_lock(&netdev_switch_mutex); |
| 113 | err = raw_notifier_call_chain(&netdev_switch_notif_chain, val, info); |
| 114 | mutex_unlock(&netdev_switch_mutex); |
| 115 | return err; |
| 116 | } |
| 117 | EXPORT_SYMBOL(call_netdev_switch_notifiers); |