3 * Bluetooth support for Intel 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 struct intel_version
{
37 struct intel_boot_params
{
66 struct intel_secure_send_result
{
80 #if IS_ENABLED(CONFIG_BT_INTEL)
82 int btintel_check_bdaddr(struct hci_dev
*hdev
);
83 int btintel_enter_mfg(struct hci_dev
*hdev
);
84 int btintel_exit_mfg(struct hci_dev
*hdev
, bool reset
, bool patched
);
85 int btintel_set_bdaddr(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
);
86 int btintel_set_diag(struct hci_dev
*hdev
, bool enable
);
87 int btintel_set_diag_mfg(struct hci_dev
*hdev
, bool enable
);
88 void btintel_hw_error(struct hci_dev
*hdev
, u8 code
);
90 void btintel_version_info(struct hci_dev
*hdev
, struct intel_version
*ver
);
91 int btintel_secure_send(struct hci_dev
*hdev
, u8 fragment_type
, u32 plen
,
93 int btintel_load_ddc_config(struct hci_dev
*hdev
, const char *ddc_name
);
94 int btintel_set_event_mask(struct hci_dev
*hdev
, bool debug
);
95 int btintel_set_event_mask_mfg(struct hci_dev
*hdev
, bool debug
);
96 int btintel_read_version(struct hci_dev
*hdev
, struct intel_version
*ver
);
98 struct regmap
*btintel_regmap_init(struct hci_dev
*hdev
, u16 opcode_read
,
100 int btintel_send_intel_reset(struct hci_dev
*hdev
, u32 boot_param
);
101 int btintel_read_boot_params(struct hci_dev
*hdev
,
102 struct intel_boot_params
*params
);
103 int btintel_download_firmware(struct hci_dev
*dev
, const struct firmware
*fw
,
107 static inline int btintel_check_bdaddr(struct hci_dev
*hdev
)
112 static inline int btintel_enter_mfg(struct hci_dev
*hdev
)
117 static inline int btintel_exit_mfg(struct hci_dev
*hdev
, bool reset
, bool patched
)
122 static inline int btintel_set_bdaddr(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
)
127 static inline int btintel_set_diag(struct hci_dev
*hdev
, bool enable
)
132 static inline int btintel_set_diag_mfg(struct hci_dev
*hdev
, bool enable
)
137 static inline void btintel_hw_error(struct hci_dev
*hdev
, u8 code
)
141 static inline void btintel_version_info(struct hci_dev
*hdev
,
142 struct intel_version
*ver
)
146 static inline int btintel_secure_send(struct hci_dev
*hdev
, u8 fragment_type
,
147 u32 plen
, const void *param
)
152 static inline int btintel_load_ddc_config(struct hci_dev
*hdev
,
153 const char *ddc_name
)
158 static inline int btintel_set_event_mask(struct hci_dev
*hdev
, bool debug
)
163 static inline int btintel_set_event_mask_mfg(struct hci_dev
*hdev
, bool debug
)
168 static inline int btintel_read_version(struct hci_dev
*hdev
,
169 struct intel_version
*ver
)
174 static inline struct regmap
*btintel_regmap_init(struct hci_dev
*hdev
,
178 return ERR_PTR(-EINVAL
);
181 static inline int btintel_send_intel_reset(struct hci_dev
*hdev
,
187 static inline int btintel_read_boot_params(struct hci_dev
*hdev
,
188 struct intel_boot_params
*params
)
193 static inline int btintel_download_firmware(struct hci_dev
*dev
,
194 const struct firmware
*fw
,