From df14a3269c98f6d1c2f6fd848588d0fe409ff688 Mon Sep 17 00:00:00 2001 From: jow Date: Sun, 24 Jul 2011 14:10:39 +0000 Subject: [package] 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27751 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/broadcom-wl/src/glue/wl_glue.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package/broadcom-wl/src/glue/wl_glue.h (limited to 'package/broadcom-wl/src/glue/wl_glue.h') 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 000000000..b3c8aa3b6 --- /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 + */ + +#include + +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 *); + -- cgit v1.2.3