* @aggregate: pointer to device specific aggregate operation function
   * @pre_aggregate: pointer to device specific function that is called
   *               before the aggregation begins (optional)
+  * @get_bw: pointer to device specific function to get current bandwidth
   * @xlate: provider-specific callback for mapping nodes from phandle arguments
 + * @xlate_extended: vendor-specific callback for mapping node data from phandle arguments
   * @dev: the device this interconnect provider belongs to
   * @users: count of active users
   * @inter_set: whether inter-provider pairs will be configured with @set
        int (*aggregate)(struct icc_node *node, u32 tag, u32 avg_bw,
                         u32 peak_bw, u32 *agg_avg, u32 *agg_peak);
        void (*pre_aggregate)(struct icc_node *node);
+       int (*get_bw)(struct icc_node *node, u32 *avg, u32 *peak);
        struct icc_node* (*xlate)(struct of_phandle_args *spec, void *data);
 +      struct icc_node_data* (*xlate_extended)(struct of_phandle_args *spec, void *data);
        struct device           *dev;
        int                     users;
        bool                    inter_set;
  int icc_nodes_remove(struct icc_provider *provider);
  int icc_provider_add(struct icc_provider *provider);
  int icc_provider_del(struct icc_provider *provider);
 -struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec);
 +struct icc_node_data *of_icc_get_from_provider(struct of_phandle_args *spec);
+ void icc_sync_state(struct device *dev);
  
  #else