diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-24 14:10:39 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-24 14:10:39 +0000 |
commit | 1d7ae4aba7a252efb3fb84dce6362f99d4455b16 (patch) | |
tree | dcfd1a63124f312eea7e290b77c4f5ae6cd4fa94 /package/broadcom-wl/src/glue/wl_glue.h | |
parent | 0df7ae04187da7634159242e29ea3201f172ef6d (diff) | |
download | upstream-1d7ae4aba7a252efb3fb84dce6362f99d4455b16.tar.gz upstream-1d7ae4aba7a252efb3fb84dce6362f99d4455b16.tar.bz2 upstream-1d7ae4aba7a252efb3fb84dce6362f99d4455b16.zip |
broadcom-wl: make it work on the RT-N16 and other device using the BCMA bus - refresh and reorder patches - introduce a unified BCMA/SSB glue driver to accomodate for both bus types on brcm47xx - extend wlunbind init script to detach device from bcma-pci-bridge as well
SVN-Revision: 27751
Diffstat (limited to 'package/broadcom-wl/src/glue/wl_glue.h')
-rw-r--r-- | package/broadcom-wl/src/glue/wl_glue.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/broadcom-wl/src/glue/wl_glue.h b/package/broadcom-wl/src/glue/wl_glue.h new file mode 100644 index 0000000000..b3c8aa3b6a --- /dev/null +++ b/package/broadcom-wl/src/glue/wl_glue.h @@ -0,0 +1,22 @@ +/* + * wl_glue.h: Broadcom WL support module providing a unified SSB/BCMA handling. + * Copyright (C) 2011 Jo-Philipp Wich <jow@openwrt.org> + */ + +#include <linux/types.h> + +typedef void * (*wl_glue_attach_cb_t)(u16, u16, ulong, void *, u32); +typedef void (*wl_glue_remove_cb_t)(void *); + +enum wl_glue_bus_type { + WL_GLUE_BUS_TYPE_UNSPEC, + WL_GLUE_BUS_TYPE_SSB, + WL_GLUE_BUS_TYPE_BCMA +}; + +extern void wl_glue_set_attach_callback(wl_glue_attach_cb_t cb); +extern void wl_glue_set_remove_callback(wl_glue_remove_cb_t cb); +extern int wl_glue_register(void); +extern int wl_glue_unregister(void); +extern struct device * wl_glue_get_dmadev(void *); + |