1301181Sadrian/*-
2301181Sadrian * Copyright (c) 2016 Adrian Chadd <adrian@FreeBSD.org>
3301181Sadrian * All rights reserved.
4301181Sadrian *
5301181Sadrian * Redistribution and use in source and binary forms, with or without
6301181Sadrian * modification, are permitted provided that the following conditions
7301181Sadrian * are met:
8301181Sadrian * 1. Redistributions of source code must retain the above copyright
9301181Sadrian *    notice, this list of conditions and the following disclaimer,
10301181Sadrian *    without modification.
11301181Sadrian * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12301181Sadrian *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13301181Sadrian *    redistribution must be conditioned upon including a substantially
14301181Sadrian *    similar Disclaimer requirement for further binary redistribution.
15301181Sadrian *
16301181Sadrian * NO WARRANTY
17301181Sadrian * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18301181Sadrian * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19301181Sadrian * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20301181Sadrian * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21301181Sadrian * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22301181Sadrian * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23301181Sadrian * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24301181Sadrian * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25301181Sadrian * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26301181Sadrian * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27301181Sadrian * THE POSSIBILITY OF SUCH DAMAGES.
28301181Sadrian *
29301181Sadrian * $FreeBSD$
30301181Sadrian */
31301181Sadrian#ifndef	__IF_ATH_BTCOEX_MCI_H__
32301181Sadrian#define	__IF_ATH_BTCOEX_MCI_H__
33301181Sadrian
34301181Sadrian#define	ATH_MCI_NUM_BT_CHANNELS		79
35301181Sadrian
36301181Sadrianextern	int ath_btcoex_mci_attach(struct ath_softc *sc);
37301181Sadrianextern	int ath_btcoex_mci_detach(struct ath_softc *sc);
38301181Sadrianextern	int ath_btcoex_mci_enable(struct ath_softc *sc,
39301181Sadrian	    const struct ieee80211_channel *chan);
40301181Sadrianextern	void ath_btcoex_mci_intr(struct ath_softc *sc);
41301181Sadrian
42301181Sadrian#endif	/* __IF_ATH_BTCOEX_MCI_H__ */
43