Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e131d74a authored by Marcel Holtmann's avatar Marcel Holtmann
Browse files

Bluetooth: Add support setup stage internal notification event



Before the vendor specific setup stage is triggered call back into the
core to trigger an internal notification event. That event is used to
send an index update to the monitor interface. With that specific event
it is possible to update userspace with manufacturer information before
any HCI command has been executed. This is useful for early stage
debugging of vendor specific initialization sequences.

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 18e0afab
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -46,6 +46,7 @@
#define HCI_DEV_RESUME			6
#define HCI_DEV_RESUME			6
#define HCI_DEV_OPEN			7
#define HCI_DEV_OPEN			7
#define HCI_DEV_CLOSE			8
#define HCI_DEV_CLOSE			8
#define HCI_DEV_SETUP			9


/* HCI notify events */
/* HCI notify events */
#define HCI_NOTIFY_CONN_ADD		1
#define HCI_NOTIFY_CONN_ADD		1
+2 −0
Original line number Original line Diff line number Diff line
@@ -1461,6 +1461,8 @@ static int hci_dev_do_open(struct hci_dev *hdev)
	set_bit(HCI_INIT, &hdev->flags);
	set_bit(HCI_INIT, &hdev->flags);


	if (hci_dev_test_flag(hdev, HCI_SETUP)) {
	if (hci_dev_test_flag(hdev, HCI_SETUP)) {
		hci_sock_dev_event(hdev, HCI_DEV_SETUP);

		if (hdev->setup)
		if (hdev->setup)
			ret = hdev->setup(hdev);
			ret = hdev->setup(hdev);


+16 −8
Original line number Original line Diff line number Diff line
@@ -335,6 +335,12 @@ static struct sk_buff *create_monitor_event(struct hci_dev *hdev, int event)
		opcode = cpu_to_le16(HCI_MON_DEL_INDEX);
		opcode = cpu_to_le16(HCI_MON_DEL_INDEX);
		break;
		break;


	case HCI_DEV_SETUP:
		if (hdev->manufacturer == 0xffff)
			return NULL;

		/* fall through */

	case HCI_DEV_UP:
	case HCI_DEV_UP:
		skb = bt_skb_alloc(HCI_MON_INDEX_INFO_SIZE, GFP_ATOMIC);
		skb = bt_skb_alloc(HCI_MON_INDEX_INFO_SIZE, GFP_ATOMIC);
		if (!skb)
		if (!skb)
@@ -403,16 +409,18 @@ static void send_monitor_replay(struct sock *sk)
		if (sock_queue_rcv_skb(sk, skb))
		if (sock_queue_rcv_skb(sk, skb))
			kfree_skb(skb);
			kfree_skb(skb);


		if (!test_bit(HCI_UP, &hdev->flags))
		if (test_bit(HCI_UP, &hdev->flags))
			continue;

			skb = create_monitor_event(hdev, HCI_DEV_UP);
			skb = create_monitor_event(hdev, HCI_DEV_UP);
		if (!skb)
		else if (hci_dev_test_flag(hdev, HCI_SETUP))
			continue;
			skb = create_monitor_event(hdev, HCI_DEV_SETUP);
		else
			skb = NULL;


		if (skb) {
			if (sock_queue_rcv_skb(sk, skb))
			if (sock_queue_rcv_skb(sk, skb))
				kfree_skb(skb);
				kfree_skb(skb);
		}
		}
	}


	read_unlock(&hci_dev_list_lock);
	read_unlock(&hci_dev_list_lock);
}
}