3 * Bluetooth support for Broadcom devices
5 * Copyright (C) 2015 Intel Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define BCM_UART_CLOCK_48MHZ 0x01
25 #define BCM_UART_CLOCK_24MHZ 0x02
27 struct bcm_update_uart_baud_rate
{
32 struct bcm_write_uart_clock_setting
{
36 struct bcm_set_sleep_mode
{
41 __u8 host_wake_active
;
42 __u8 allow_host_sleep
;
44 __u8 tristate_control
;
46 __u8 usb_resume_timeout
;
47 __u8 pulsed_host_wake
;
51 struct bcm_set_pcm_int_params
{
59 struct bcm_set_pcm_format_params
{
67 #if IS_ENABLED(CONFIG_BT_BCM)
69 int btbcm_check_bdaddr(struct hci_dev
*hdev
);
70 int btbcm_set_bdaddr(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
);
71 int btbcm_patchram(struct hci_dev
*hdev
, const struct firmware
*fw
);
73 int btbcm_setup_patchram(struct hci_dev
*hdev
);
74 int btbcm_setup_apple(struct hci_dev
*hdev
);
76 int btbcm_initialize(struct hci_dev
*hdev
, char *fw_name
, size_t len
);
77 int btbcm_finalize(struct hci_dev
*hdev
);
81 static inline int btbcm_check_bdaddr(struct hci_dev
*hdev
)
86 static inline int btbcm_set_bdaddr(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
)
91 static inline int btbcm_patchram(struct hci_dev
*hdev
, const struct firmware
*fw
)
96 static inline int btbcm_setup_patchram(struct hci_dev
*hdev
)
101 static inline int btbcm_setup_apple(struct hci_dev
*hdev
)
106 static inline int btbcm_initialize(struct hci_dev
*hdev
, char *fw_name
,
112 static inline int btbcm_finalize(struct hci_dev
*hdev
)