mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	This patch adds the support of the AOSP Bluetooth Quality Report (BQR) events. Multiple vendors have supported the AOSP Bluetooth Quality Report. When a Bluetooth controller supports the capability, it can enable the aosp capability through hci_set_aosp_capable. Then hci_core will set up the hdev->aosp_set_quality_report callback through aosp_do_open if the controller responds to support the quality report capability. Note that Intel also supports a distinct telemetry quality report specification. Intel sets up the hdev->set_quality_report callback in the btusb driver module. Reviewed-by: Miao-chen Chou <mcchou@chromium.org> Signed-off-by: Joseph Hwang <josephsih@chromium.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			643 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			643 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
/*
 | 
						|
 * Copyright (C) 2021 Intel Corporation
 | 
						|
 */
 | 
						|
 | 
						|
#if IS_ENABLED(CONFIG_BT_AOSPEXT)
 | 
						|
 | 
						|
void aosp_do_open(struct hci_dev *hdev);
 | 
						|
void aosp_do_close(struct hci_dev *hdev);
 | 
						|
 | 
						|
bool aosp_has_quality_report(struct hci_dev *hdev);
 | 
						|
int aosp_set_quality_report(struct hci_dev *hdev, bool enable);
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
static inline void aosp_do_open(struct hci_dev *hdev) {}
 | 
						|
static inline void aosp_do_close(struct hci_dev *hdev) {}
 | 
						|
 | 
						|
static inline bool aosp_has_quality_report(struct hci_dev *hdev)
 | 
						|
{
 | 
						|
	return false;
 | 
						|
}
 | 
						|
 | 
						|
static inline int aosp_set_quality_report(struct hci_dev *hdev, bool enable)
 | 
						|
{
 | 
						|
	return -EOPNOTSUPP;
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |