1/*
2 * Copyright (C) 2015, Broadcom Corporation. All Rights Reserved.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 * $Id: dpsta.h 300516 2011-12-04 17:39:44Z $
17 */
18
19#ifndef _DPSTA_H_
20#define _DPSTA_H_
21
22typedef enum {
23	DPSTA_MODE_PSTA = 1,
24	DPSTA_MODE_DWDS = 2
25} dpsta_mode_e;
26
27typedef struct psta_if psta_if_t;
28
29/* Proxy STA instance data and exported functions */
30typedef struct psta_if_api {
31	void	*psta;
32	void	*bsscfg;
33	bool	(*is_ds_sta)(void *psta, struct ether_addr *ea);
34	void	*(*psta_find)(void *psta, uint8 *ea);
35	bool	(*bss_auth)(void *bsscfg);
36	dpsta_mode_e	mode;
37} psta_if_api_t;
38
39extern psta_if_t *dpsta_register(uint32 unit, psta_if_api_t *inst);
40extern int32 dpsta_recv(void *p);
41
42#endif /* _DPSTA_H_ */
43