blob: 49610ab90938befbfaec15a3ed0550eda7087070 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * wl_glue.h: Broadcom WL support module providing a unified SSB/BCMA handling.
3 * Copyright (C) 2011 Jo-Philipp Wich <jo@mein.io>
4 */
5
6#include <linux/types.h>
7
8typedef void * (*wl_glue_attach_cb_t)(u16, u16, ulong, void *, u32);
9typedef void (*wl_glue_remove_cb_t)(void *);
10
11enum wl_glue_bus_type {
12 WL_GLUE_BUS_TYPE_UNSPEC,
13 WL_GLUE_BUS_TYPE_SSB,
14 WL_GLUE_BUS_TYPE_BCMA
15};
16
17extern void wl_glue_set_attach_callback(wl_glue_attach_cb_t cb);
18extern void wl_glue_set_remove_callback(wl_glue_remove_cb_t cb);
19extern int wl_glue_register(void);
20extern int wl_glue_unregister(void);
21extern struct device * wl_glue_get_dmadev(void *);
22