/* * Copyright (c) 2003-2014 Broadcom Corporation * All Rights Reserved * <:label-BRCM:2014:DUAL/GPL:standard Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 (the "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, with the following added to such license: As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of the software. Not withstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written consent. :> */ #ifndef _VLANCTL_BIND_ #define _VLANCTL_BIND_ typedef enum { VLANCTL_BIND_CLIENT_UNKNOWN, #if defined(CONFIG_BCM_RDPA) || defined(CONFIG_BCM_RDPA_MODULE) VLANCTL_BIND_CLIENT_RUNNER, #endif /* RDPA */ VLANCTL_BIND_CLIENT_MAX } vlanctl_bind_client_t; /* * vlanctl_bind defines three(!) hooks: * NotifHook: When blog_notify is invoked, the bound hook is invoked. Based on * event type the bound Blog client may perform a custom action. * SC Hook: If this hook is defined, blog_activate() will pass a blog with * necessary information for statical configuration. * SD Hook: If this hook is defined, blog_deactivate() will pass a pointer * to a network object with BlogActivateKey information. The * respective flow entry will be deleted. */ typedef union { struct { uint8_t unused : 5; uint8_t SN_HOOK : 1; uint8_t SC_HOOK : 1; uint8_t SD_HOOK : 1; } bmap; uint8_t hook_info; } vlanctl_bind_t; typedef struct { struct net_device *vlan_dev; unsigned int vid; int enable; } vlanctl_vlan_t; typedef struct { uint8_t mac[6]; int enable; } vlanctl_route_mac_t; typedef struct { struct net_device *aggregate_vlan_dev; struct net_device *deaggregate_vlan_dev; } vlanctl_vlan_aggregate_t; typedef enum { VLANCTL_BIND_NOTIFY_TPID, /* set interface tpid */ VLANCTL_BIND_NOTIFY_VLAN, /* set vlan object */ VLANCTL_BIND_NOTIFY_ROUTE_MAC, /* route mac create and delete */ VLANCTL_BIND_NOTIFY_VLAN_AGGREGATE, /* set vlan aggregation */ VLANCTL_BIND_DROP_PRECEDENCE_SET, /* rdpa_mw_drop_precedence_set */ } vlanctl_bind_Notify_t; #if defined(CONFIG_BLOG) typedef uint32_t (* vlanctl_bind_ScHook_t)(Blog_t * blog_p, BlogTraffic_t traffic); typedef Blog_t * (* vlanctl_bind_SdHook_t)(uint32_t key, BlogTraffic_t traffic); typedef void (* vlanctl_bind_SnHook_t)(vlanctl_bind_Notify_t event, void *ptr); void vlanctl_bind_config(vlanctl_bind_ScHook_t vlanctl_bind_sc, vlanctl_bind_SdHook_t vlanctl_bind_sd, vlanctl_bind_SnHook_t vlanctl_bind_sn, vlanctl_bind_client_t client, vlanctl_bind_t bind); int vlanctl_bind_activate(vlanctl_bind_client_t client); int vlanctl_notify(vlanctl_bind_Notify_t event, void *ptr, vlanctl_bind_client_t client); /* *------------------------------------------------------------------------------ * vlanctl_activate(): static configuration function of blog application * pass a filled blog to the hook for configuration *------------------------------------------------------------------------------ */ extern uint32_t vlanctl_activate( Blog_t * blog_p, vlanctl_bind_client_t client ); /* *------------------------------------------------------------------------------ * vlanctl_deactivate(): static deconfiguration function of blog application *------------------------------------------------------------------------------ */ extern Blog_t * vlanctl_deactivate( uint32_t key, vlanctl_bind_client_t client ); #endif /* CONFIG_BLOG */ #endif /* ! _VLANCTL_BIND_ */