1. 12 Dec, 2022 40 commits
    • Hans J. Schultz's avatar
      net: dsa: mv88e6xxx: read FID when handling ATU violations · 4bf24ad0
      Hans J. Schultz authored
      When an ATU violation occurs, the switch uses the ATU FID register to
      report the FID of the MAC address that incurred the violation. It would
      be good for the driver to know the FID value for purposes such as
      logging and CPU-based authentication.
      
      Up until now, the driver has been calling the mv88e6xxx_g1_atu_op()
      function to read ATU violations, but that doesn't do exactly what we
      want, namely it calls mv88e6xxx_g1_atu_fid_write() with FID 0.
      (side note, the documentation for the ATU Get/Clear Violation command
      says that writes to the ATU FID register have no effect before the
      operation starts, it's only that we disregard the value that this
      register provides once the operation completes)
      
      So mv88e6xxx_g1_atu_fid_write() is not what we want, but rather
      mv88e6xxx_g1_atu_fid_read(). However, the latter doesn't exist, we need
      to write it.
      
      The remainder of mv88e6xxx_g1_atu_op() except for
      mv88e6xxx_g1_atu_fid_write() is still needed, namely to send a
      GET_CLR_VIOLATION command to the ATU. In principle we could have still
      kept calling mv88e6xxx_g1_atu_op(), but the MDIO writes to the ATU FID
      register are pointless, but in the interest of doing less CPU work per
      interrupt, write a new function called mv88e6xxx_g1_read_atu_violation()
      and call it.
      
      The FID will be the port default FID as set by mv88e6xxx_port_set_fid()
      if the VID from the packet cannot be found in the VTU. Otherwise it is
      the FID derived from the VTU entry associated with that VID.
      Signed-off-by: default avatarHans J. Schultz <netdev@kapio-technology.com>
      Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
      Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      4bf24ad0
    • Vladimir Oltean's avatar
      net: dsa: mv88e6xxx: remove ATU age out violation print · 8a1786b7
      Vladimir Oltean authored
      Currently, the MV88E6XXX_PORT_ASSOC_VECTOR_INT_AGE_OUT bit (interrupt on
      age out) is not enabled by the driver, and as a result, the print for
      age out violations is dead code.
      
      Remove it until there is some way for this to be triggered.
      Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
      Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      8a1786b7
    • Jakub Kicinski's avatar
      Merge tag 'for-net-next-2022-12-12' of... · 4cc58a08
      Jakub Kicinski authored
      Merge tag 'for-net-next-2022-12-12' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next
      
      Luiz Augusto von Dentz says:
      
      ====================
      bluetooth-next pull request for net-next:
      
       - Add a new VID/PID 0489/e0f2 for MT7922
       - Add Realtek RTL8852BE support ID 0x0cb8:0xc559
       - Add a new PID/VID 13d3/3549 for RTL8822CU
       - Add support for broadcom BCM43430A0 & BCM43430A1
       - Add CONFIG_BT_HCIBTUSB_POLL_SYNC
       - Add CONFIG_BT_LE_L2CAP_ECRED
       - Add support for CYW4373A0
       - Add support for RTL8723DS
       - Add more device IDs for WCN6855
       - Add Broadcom BCM4377 family PCIe Bluetooth
      
      * tag 'for-net-next-2022-12-12' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next: (51 commits)
        Bluetooth: Wait for HCI_OP_WRITE_AUTH_PAYLOAD_TO to complete
        Bluetooth: ISO: Avoid circular locking dependency
        Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave()
        Bluetooth: btintel: Fix missing free skb in btintel_setup_combined()
        Bluetooth: hci_conn: Fix crash on hci_create_cis_sync
        Bluetooth: btintel: Fix existing sparce warnings
        Bluetooth: btusb: Fix existing sparce warning
        Bluetooth: btusb: Fix new sparce warnings
        Bluetooth: btusb: Add a new PID/VID 13d3/3549 for RTL8822CU
        Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559
        dt-bindings: net: realtek-bluetooth: Add RTL8723DS
        Bluetooth: btusb: Add a new VID/PID 0489/e0f2 for MT7922
        dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1
        Bluetooth: hci_bcm4377: Fix missing pci_disable_device() on error in bcm4377_probe()
        ...
      ====================
      
      Link: https://lore.kernel.org/r/20221212222322.1690780-1-luiz.dentz@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      4cc58a08
    • Jakub Kicinski's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next · 95d1815f
      Jakub Kicinski authored
      Pablo Neira Ayuso says:
      
      ====================
      Netfilter/IPVS updates for net-next
      
      1) Incorrect error check in nft_expr_inner_parse(), from Dan Carpenter.
      
      2) Add DATA_SENT state to SCTP connection tracking helper, from
         Sriram Yagnaraman.
      
      3) Consolidate nf_confirm for ipv4 and ipv6, from Florian Westphal.
      
      4) Add bitmask support for ipset, from Vishwanath Pai.
      
      5) Handle icmpv6 redirects as RELATED, from Florian Westphal.
      
      6) Add WARN_ON_ONCE() to impossible case in flowtable datapath,
         from Li Qiong.
      
      7) A large batch of IPVS updates to replace timer-based estimators by
         kthreads to scale up wrt. CPUs and workload (millions of estimators).
      
      Julian Anastasov says:
      
      	This patchset implements stats estimation in kthread context.
      It replaces the code that runs on single CPU in timer context every 2
      seconds and causing latency splats as shown in reports [1], [2], [3].
      The solution targets setups with thousands of IPVS services,
      destinations and multi-CPU boxes.
      
      	Spread the estimation on multiple (configured) CPUs and multiple
      time slots (timer ticks) by using multiple chains organized under RCU
      rules.  When stats are not needed, it is recommended to use
      run_estimation=0 as already implemented before this change.
      
      RCU Locking:
      
      - As stats are now RCU-locked, tot_stats, svc and dest which
      hold estimator structures are now always freed from RCU
      callback. This ensures RCU grace period after the
      ip_vs_stop_estimator() call.
      
      Kthread data:
      
      - every kthread works over its own data structure and all
      such structures are attached to array. For now we limit
      kthreads depending on the number of CPUs.
      
      - even while there can be a kthread structure, its task
      may not be running, eg. before first service is added or
      while the sysctl var is set to an empty cpulist or
      when run_estimation is set to 0 to disable the estimation.
      
      - the allocated kthread context may grow from 1 to 50
      allocated structures for timer ticks which saves memory for
      setups with small number of estimators
      
      - a task and its structure may be released if all
      estimators are unlinked from its chains, leaving the
      slot in the array empty
      
      - every kthread data structure allows limited number
      of estimators. Kthread 0 is also used to initially
      calculate the max number of estimators to allow in every
      chain considering a sub-100 microsecond cond_resched
      rate. This number can be from 1 to hundreds.
      
      - kthread 0 has an additional job of optimizing the
      adding of estimators: they are first added in
      temp list (est_temp_list) and later kthread 0
      distributes them to other kthreads. The optimization
      is based on the fact that newly added estimator
      should be estimated after 2 seconds, so we have the
      time to offload the adding to chain from controlling
      process to kthread 0.
      
      - to add new estimators we use the last added kthread
      context (est_add_ktid). The new estimators are linked to
      the chains just before the estimated one, based on add_row.
      This ensures their estimation will start after 2 seconds.
      If estimators are added in bursts, common case if all
      services and dests are initially configured, we may
      spread the estimators to more chains and as result,
      reducing the initial delay below 2 seconds.
      
      Many thanks to Jiri Wiesner for his valuable comments
      and for spending a lot of time reviewing and testing
      the changes on different platforms with 48-256 CPUs and
      1-8 NUMA nodes under different cpufreq governors.
      
      The new IPVS estimators do not use workqueue infrastructure
      because:
      
      - The estimation can take long time when using multiple IPVS rules (eg.
        millions estimator structures) and especially when box has multiple
        CPUs due to the for_each_possible_cpu usage that expects packets from
        any CPU. With est_nice sysctl we have more control how to prioritize the
        estimation kthreads compared to other processes/kthreads that have
        latency requirements (such as servers). As a benefit, we can see these
        kthreads in top and decide if we will need some further control to limit
        their CPU usage (max number of structure to estimate per kthread).
      
      - with kthreads we run code that is read-mostly, no write/lock
        operations to process the estimators in 2-second intervals.
      
      - work items are one-shot: as estimators are processed every
        2 seconds, they need to be re-added every time. This again
        loads the timers (add_timer) if we use delayed works, as there are
        no kthreads to do the timings.
      
      [1] Report from Yunhong Jiang:
          https://lore.kernel.org/netdev/D25792C1-1B89-45DE-9F10-EC350DC04ADC@gmail.com/
      [2] https://marc.info/?l=linux-virtual-server&m=159679809118027&w=2
      [3] Report from Dust:
          https://archive.linuxvirtualserver.org/html/lvs-devel/2020-12/msg00000.html
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next:
        ipvs: run_estimation should control the kthread tasks
        ipvs: add est_cpulist and est_nice sysctl vars
        ipvs: use kthreads for stats estimation
        ipvs: use u64_stats_t for the per-cpu counters
        ipvs: use common functions for stats allocation
        ipvs: add rcu protection to stats
        netfilter: flowtable: add a 'default' case to flowtable datapath
        netfilter: conntrack: set icmpv6 redirects as RELATED
        netfilter: ipset: Add support for new bitmask parameter
        netfilter: conntrack: merge ipv4+ipv6 confirm functions
        netfilter: conntrack: add sctp DATA_SENT state
        netfilter: nft_inner: fix IS_ERR() vs NULL check
      ====================
      
      Link: https://lore.kernel.org/r/20221211101204.1751-1-pablo@netfilter.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      95d1815f
    • Luiz Augusto von Dentz's avatar
      Bluetooth: Wait for HCI_OP_WRITE_AUTH_PAYLOAD_TO to complete · 7aca0ac4
      Luiz Augusto von Dentz authored
      This make sure HCI_OP_WRITE_AUTH_PAYLOAD_TO completes before notifying
      the encryption change just as is done with HCI_OP_READ_ENC_KEY_SIZE.
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      7aca0ac4
    • Luiz Augusto von Dentz's avatar
      Bluetooth: ISO: Avoid circular locking dependency · 241f5193
      Luiz Augusto von Dentz authored
      This attempts to avoid circular locking dependency between sock_lock
      and hdev_lock:
      
      WARNING: possible circular locking dependency detected
      6.0.0-rc7-03728-g18dd8ab0a783 #3 Not tainted
      ------------------------------------------------------
      kworker/u3:2/53 is trying to acquire lock:
      ffff888000254130 (sk_lock-AF_BLUETOOTH-BTPROTO_ISO){+.+.}-{0:0}, at:
      iso_conn_del+0xbd/0x1d0
      but task is already holding lock:
      ffffffff9f39a080 (hci_cb_list_lock){+.+.}-{3:3}, at:
      hci_le_cis_estabilished_evt+0x1b5/0x500
      which lock already depends on the new lock.
      the existing dependency chain (in reverse order) is:
      -> #2 (hci_cb_list_lock){+.+.}-{3:3}:
             __mutex_lock+0x10e/0xfe0
             hci_le_remote_feat_complete_evt+0x17f/0x320
             hci_event_packet+0x39c/0x7d0
             hci_rx_work+0x2bf/0x950
             process_one_work+0x569/0x980
             worker_thread+0x2a3/0x6f0
             kthread+0x153/0x180
             ret_from_fork+0x22/0x30
      -> #1 (&hdev->lock){+.+.}-{3:3}:
             __mutex_lock+0x10e/0xfe0
             iso_connect_cis+0x6f/0x5a0
             iso_sock_connect+0x1af/0x710
             __sys_connect+0x17e/0x1b0
             __x64_sys_connect+0x37/0x50
             do_syscall_64+0x43/0x90
             entry_SYSCALL_64_after_hwframe+0x62/0xcc
      -> #0 (sk_lock-AF_BLUETOOTH-BTPROTO_ISO){+.+.}-{0:0}:
             __lock_acquire+0x1b51/0x33d0
             lock_acquire+0x16f/0x3b0
             lock_sock_nested+0x32/0x80
             iso_conn_del+0xbd/0x1d0
             iso_connect_cfm+0x226/0x680
             hci_le_cis_estabilished_evt+0x1ed/0x500
             hci_event_packet+0x39c/0x7d0
             hci_rx_work+0x2bf/0x950
             process_one_work+0x569/0x980
             worker_thread+0x2a3/0x6f0
             kthread+0x153/0x180
             ret_from_fork+0x22/0x30
      other info that might help us debug this:
      Chain exists of:
        sk_lock-AF_BLUETOOTH-BTPROTO_ISO --> &hdev->lock --> hci_cb_list_lock
       Possible unsafe locking scenario:
             CPU0                    CPU1
             ----                    ----
        lock(hci_cb_list_lock);
                                     lock(&hdev->lock);
                                     lock(hci_cb_list_lock);
        lock(sk_lock-AF_BLUETOOTH-BTPROTO_ISO);
       *** DEADLOCK ***
      4 locks held by kworker/u3:2/53:
       #0: ffff8880021d9130 ((wq_completion)hci0#2){+.+.}-{0:0}, at:
       process_one_work+0x4ad/0x980
       #1: ffff888002387de0 ((work_completion)(&hdev->rx_work)){+.+.}-{0:0},
       at: process_one_work+0x4ad/0x980
       #2: ffff888001ac0070 (&hdev->lock){+.+.}-{3:3}, at:
       hci_le_cis_estabilished_evt+0xc3/0x500
       #3: ffffffff9f39a080 (hci_cb_list_lock){+.+.}-{3:3}, at:
       hci_le_cis_estabilished_evt+0x1b5/0x500
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      241f5193
    • Yang Yingliang's avatar
      Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave() · 0ba18967
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 81be03e0 ("Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      0ba18967
    • Yang Yingliang's avatar
      Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave() · 39c1eb6f
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 9238f36a ("Bluetooth: Add request cmd_complete and cmd_status functions")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      39c1eb6f
    • Yang Yingliang's avatar
      Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave() · 7b503e33
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 1da177e4 ("Linux-2.6.12-rc2")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      7b503e33
    • Yang Yingliang's avatar
      Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave() · 383630cc
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 43eb12d7 ("Bluetooth: Fix/implement Three-wire reliable packet sending")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      383630cc
    • Yang Yingliang's avatar
      Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave() · 8f458f78
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 166d2f6a ("[Bluetooth] Add UART driver for Texas Instruments' BRF63xx chips")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      8f458f78
    • Yang Yingliang's avatar
      Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave() · df4cfc91
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 0ff252c1 ("Bluetooth: hciuart: Add support QCA chipset for UART")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      df4cfc91
    • Yang Yingliang's avatar
      Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave() · b15a6bd3
      Yang Yingliang authored
      It is not allowed to call kfree_skb() from hardware interrupt
      context or with interrupts being disabled. So replace kfree_skb()
      with dev_kfree_skb_irq() under spin_lock_irqsave().
      
      Fixes: 803b5836 ("Bluetooth: btusb: Implement driver internal packet reassembly")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      b15a6bd3
    • Wang ShaoBo's avatar
      Bluetooth: btintel: Fix missing free skb in btintel_setup_combined() · cee50ce8
      Wang ShaoBo authored
      skb allocated by __hci_cmd_sync would not be used whether in checking
      for supported iBT hardware variants or after, we should free it in all
      error branches, this patch makes the case read version failed or default
      error case free skb before return.
      
      Fixes: c86c7285 ("Bluetooth: btintel: Fix the legacy bootloader returns tlv based version")
      Fixes: 019a1caa ("Bluetooth: btintel: Refactoring setup routine for bootloader devices")
      Signed-off-by: default avatarWang ShaoBo <bobo.shaobowang@huawei.com>
      Reviewed-by: default avatarTedd Ho-Jeong An <tedd.an@intel.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      cee50ce8
    • Luiz Augusto von Dentz's avatar
      Bluetooth: hci_conn: Fix crash on hci_create_cis_sync · 50757a25
      Luiz Augusto von Dentz authored
      When attempting to connect multiple ISO sockets without using
      DEFER_SETUP may result in the following crash:
      
      BUG: KASAN: null-ptr-deref in hci_create_cis_sync+0x18b/0x2b0
      Read of size 2 at addr 0000000000000036 by task kworker/u3:1/50
      
      CPU: 0 PID: 50 Comm: kworker/u3:1 Not tainted
      6.0.0-rc7-02243-gb84a13ff4eda #4373
      Hardware name: QEMU Standard PC (Q35 + ICH9, 2009),
      BIOS 1.16.0-1.fc36 04/01/2014
      Workqueue: hci0 hci_cmd_sync_work
      Call Trace:
       <TASK>
       dump_stack_lvl+0x19/0x27
       kasan_report+0xbc/0xf0
       ? hci_create_cis_sync+0x18b/0x2b0
       hci_create_cis_sync+0x18b/0x2b0
       ? get_link_mode+0xd0/0xd0
       ? __ww_mutex_lock_slowpath+0x10/0x10
       ? mutex_lock+0xe0/0xe0
       ? get_link_mode+0xd0/0xd0
       hci_cmd_sync_work+0x111/0x190
       process_one_work+0x427/0x650
       worker_thread+0x87/0x750
       ? process_one_work+0x650/0x650
       kthread+0x14e/0x180
       ? kthread_exit+0x50/0x50
       ret_from_fork+0x22/0x30
       </TASK>
      
      Fixes: 26afbd82 ("Bluetooth: Add initial implementation of CIS connections")
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      50757a25
    • Luiz Augusto von Dentz's avatar
      Bluetooth: btintel: Fix existing sparce warnings · 069ab3f9
      Luiz Augusto von Dentz authored
      This fix the following warnings detect with make W=1 C=1:
      
      drivers/bluetooth/btintel.c:1041:38: warning: cast to restricted __le32
      drivers/bluetooth/btintel.c:1786:25: warning: cast to restricted __le16
      drivers/bluetooth/btintel.c:1795:25: warning: cast to restricted __le16
      drivers/bluetooth/btintel.c:1796:25: warning: cast to restricted __le16
      drivers/bluetooth/btintel.c:1797:25: warning: cast to restricted __le16
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      069ab3f9
    • Luiz Augusto von Dentz's avatar
      Bluetooth: btusb: Fix existing sparce warning · 42d3b43e
      Luiz Augusto von Dentz authored
      This fix the following warnings detect with make W=1 C=1:
      
      drivers/bluetooth/btusb.c:3426:28: warning: cast to restricted __le32
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      42d3b43e
    • Luiz Augusto von Dentz's avatar
      Bluetooth: btusb: Fix new sparce warnings · cb3648a7
      Luiz Augusto von Dentz authored
      This fix the following warnings detect with make W=1 C=1:
      
      drivers/bluetooth/btusb.c:2212:9: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2212:9: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2245:18: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2249:18: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2253:18: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2257:18: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2261:18: warning: cast to restricted __le16
      drivers/bluetooth/btusb.c:2267:18: warning: cast to restricted __le16
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      cb3648a7
    • Gongwei Li's avatar
      Bluetooth: btusb: Add a new PID/VID 13d3/3549 for RTL8822CU · 6d0a4fe2
      Gongwei Li authored
      * /sys/kernel/debug/usb/devices
      T:  Bus=03 Lev=02 Prnt=02 Port=02 Cnt=03 Dev#=  5 Spd=12   MxCh= 0
      D:  Ver= 1.00 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
      P:  Vendor=0bda ProdID=b85b Rev= 0.00
      S:  Manufacturer=Realtek
      S:  Product=Bluetooth Radio
      S:  SerialNumber=00e04c000001
      C:* #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=500mA
      I:* If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=1ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      I:  If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      Signed-off-by: default avatarGongwei Li <ligongwei@kylinos.cn>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      6d0a4fe2
    • Artem Lukyanov's avatar
      Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559 · 393b4916
      Artem Lukyanov authored
      Add the support ID(0x0cb8, 0xc559) to usb_device_id table for
      Realtek RTL8852BE.
      
      The device info from /sys/kernel/debug/usb/devices as below.
      
      T:  Bus=03 Lev=01 Prnt=01 Port=02 Cnt=01 Dev#=  2 Spd=12   MxCh= 0
      D:  Ver= 1.00 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
      P:  Vendor=0cb8 ProdID=c559 Rev= 0.00
      S:  Manufacturer=Realtek
      S:  Product=Bluetooth Radio
      S:  SerialNumber=00e04c000001
      C:* #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=500mA
      I:* If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=1ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      I:  If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      Signed-off-by: default avatarArtem Lukyanov <dukzcry@ya.ru>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      393b4916
    • Samuel Holland's avatar
      dt-bindings: net: realtek-bluetooth: Add RTL8723DS · ba6ae1fb
      Samuel Holland authored
      RTL8723DS is another variant of the RTL8723 WiFi + Bluetooth chip. It is
      already supported by the hci_uart/btrtl driver. Document the compatible.
      Acked-by: default avatarRob Herring <robh@kernel.org>
      Reviewed-by: default avatarAlistair Francis <alistair@alistair23.me>
      Signed-off-by: default avatarSamuel Holland <samuel@sholland.org>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      ba6ae1fb
    • Andy Chi's avatar
      Bluetooth: btusb: Add a new VID/PID 0489/e0f2 for MT7922 · 13fcc94d
      Andy Chi authored
      Add VID/PID 0489/e0f2 for MediaTek MT7922 Bluetooth chip. Found
      and tested with HP ProBook.
      
      From /sys/kernel/debug/usb/devices:
      
      T:  Bus=03 Lev=01 Prnt=01 Port=02 Cnt=01 Dev#=  2 Spd=480  MxCh= 0
      D:  Ver= 2.10 Cls=ef(misc ) Sub=02 Prot=01 MxPS=64 #Cfgs=  1
      P:  Vendor=0489 ProdID=e0f2 Rev= 1.00
      S:  Manufacturer=MediaTek Inc.
      S:  Product=Wireless_Device
      S:  SerialNumber=000000000
      C:* #Ifs= 3 Cfg#= 1 Atr=e0 MxPwr=100mA
      A:  FirstIf#= 0 IfCount= 3 Cls=e0(wlcon) Sub=01 Prot=01
      I:* If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=125us
      E:  Ad=82(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      I:  If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      I:  If#= 1 Alt= 6 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  63 Ivl=1ms
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  63 Ivl=1ms
      I:* If#= 2 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=(none)
      E:  Ad=8a(I) Atr=03(Int.) MxPS=  64 Ivl=125us
      E:  Ad=0a(O) Atr=03(Int.) MxPS=  64 Ivl=125us
      I:  If#= 2 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=(none)
      E:  Ad=8a(I) Atr=03(Int.) MxPS= 512 Ivl=125us
      E:  Ad=0a(O) Atr=03(Int.) MxPS= 512 Ivl=125us
      Signed-off-by: default avatarAndy Chi <andy.chi@canonical.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      13fcc94d
    • Luca Weiss's avatar
      dt-bindings: bluetooth: broadcom: add BCM43430A0 & BCM43430A1 · d4e9b8b8
      Luca Weiss authored
      Document the compatible string for BCM43430A0 bluetooth used in lg-lenok
      and BCM43430A1 used in asus-sparrow.
      Signed-off-by: default avatarLuca Weiss <luca@z3ntu.xyz>
      Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Acked-by: default avatarRob Herring <robh@kernel.org>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      d4e9b8b8
    • Yang Yingliang's avatar
      Bluetooth: hci_bcm4377: Fix missing pci_disable_device() on error in bcm4377_probe() · b1e05cfb
      Yang Yingliang authored
      pci_disable_device() need be called while module exiting, switch to use
      pcim_enable(), pci_disable_device() will be called in pcim_release()
      after probe() failure.
      
      Fixes: ab80b2cec05f ("Bluetooth: hci_bcm4377: Add new driver for BCM4377 PCIe boards")
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Reviewed-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      b1e05cfb
    • Raman Varabets's avatar
      Bluetooth: btusb: Add Realtek 8761BUV support ID 0x2B89:0x8761 · ac09bb3f
      Raman Varabets authored
      Identifies as "Realtek Bluetooth Radio";
      used in UGREEN CM390 (P/N 80889).
      
      Device description at /sys/kernel/debug/usb/devices:
      
      T:  Bus=01 Lev=02 Prnt=02 Port=01 Cnt=01 Dev#=  7 Spd=12   MxCh= 0
      D:  Ver= 1.10 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
      P:  Vendor=2b89 ProdID=8761 Rev= 2.00
      S:  Manufacturer=Realtek
      S:  Product=Bluetooth Radio
      S:  SerialNumber=00E04C239987
      C:* #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=500mA
      I:* If#= 0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=81(I) Atr=03(Int.) MxPS=  16 Ivl=1ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   0 Ivl=1ms
      I:  If#= 1 Alt= 1 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=   9 Ivl=1ms
      I:  If#= 1 Alt= 2 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  17 Ivl=1ms
      I:  If#= 1 Alt= 3 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  25 Ivl=1ms
      I:  If#= 1 Alt= 4 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  33 Ivl=1ms
      I:  If#= 1 Alt= 5 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
      E:  Ad=03(O) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      E:  Ad=83(I) Atr=01(Isoc) MxPS=  49 Ivl=1ms
      Signed-off-by: default avatarRaman Varabets <linux-bluetooth@cyborgize.sg>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      ac09bb3f
    • Sven Peter's avatar
      Bluetooth: hci_bcm4377: Add new driver for BCM4377 PCIe boards · 8a061276
      Sven Peter authored
      Broadcom BCM4377/4378/4387 are dual WiFi/Bluetooth boards found in Apple
      machines. This driver adds support for the Bluetooth function which
      exposes a shared memory IPC protocol over PCIe to tunnel HCI traffic.
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      8a061276
    • Sven Peter's avatar
      Bluetooth: Add quirk to disable MWS Transport Configuration · ffcb0a44
      Sven Peter authored
      Broadcom 4378/4387 controllers found in Apple Silicon Macs claim to
      support getting MWS Transport Layer Configuration,
      
      < HCI Command: Read Local Supported... (0x04|0x0002) plen 0
      > HCI Event: Command Complete (0x0e) plen 68
            Read Local Supported Commands (0x04|0x0002) ncmd 1
              Status: Success (0x00)
      [...]
                Get MWS Transport Layer Configuration (Octet 30 - Bit 3)]
      [...]
      
      , but then don't actually allow the required command:
      
      > HCI Event: Command Complete (0x0e) plen 15
            Get MWS Transport Layer Configuration (0x05|0x000c) ncmd 1
              Status: Command Disallowed (0x0c)
              Number of transports: 0
              Baud rate list: 0 entries
              00 00 00 00 00 00 00 00 00 00
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      ffcb0a44
    • Sven Peter's avatar
      Bluetooth: Add quirk to disable extended scanning · 392fca35
      Sven Peter authored
      Broadcom 4377 controllers found in Apple x86 Macs with the T2 chip
      claim to support extended scanning when querying supported states,
      
      < HCI Command: LE Read Supported St.. (0x08|0x001c) plen 0
      > HCI Event: Command Complete (0x0e) plen 12
            LE Read Supported States (0x08|0x001c) ncmd 1
              Status: Success (0x00)
              States: 0x000003ffffffffff
      [...]
                LE Set Extended Scan Parameters (Octet 37 - Bit 5)
                LE Set Extended Scan Enable (Octet 37 - Bit 6)
      [...]
      
      , but then fail to actually implement the extended scanning:
      
      < HCI Command: LE Set Extended Sca.. (0x08|0x0041) plen 8
              Own address type: Random (0x01)
              Filter policy: Accept all advertisement (0x00)
              PHYs: 0x01
              Entry 0: LE 1M
                Type: Active (0x01)
                Interval: 11.250 msec (0x0012)
                Window: 11.250 msec (0x0012)
      > HCI Event: Command Complete (0x0e) plen 4
            LE Set Extended Scan Parameters (0x08|0x0041) ncmd 1
              Status: Unknown HCI Command (0x01)
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      392fca35
    • Sven Peter's avatar
      Bluetooth: hci_event: Ignore reserved bits in LE Extended Adv Report · ad38e55e
      Sven Peter authored
      Broadcom controllers present on Apple Silicon devices use the upper
      8 bits of the event type in the LE Extended Advertising Report for
      the channel on which the frame has been received.
      These bits are reserved according to the Bluetooth spec anyway such that
      we can just drop them to ensure that the advertising results are parsed
      correctly.
      
      The following excerpt from a btmon trace shows a report received on
      channel 37 by these controllers:
      
      > HCI Event: LE Meta Event (0x3e) plen 55
            LE Extended Advertising Report (0x0d)
              Num reports: 1
              Entry 0
                Event type: 0x2513
                  Props: 0x0013
                    Connectable
                    Scannable
                    Use legacy advertising PDUs
                  Data status: Complete
                  Reserved (0x2500)
                Legacy PDU Type: Reserved (0x2513)
                Address type: Public (0x00)
                Address: XX:XX:XX:XX:XX:XX (Shenzhen Jingxun Software [...])
                Primary PHY: LE 1M
                Secondary PHY: No packets
                SID: no ADI field (0xff)
                TX power: 127 dBm
                RSSI: -76 dBm (0xb4)
                Periodic advertising interval: 0.00 msec (0x0000)
                Direct address type: Public (0x00)
                Direct address: 00:00:00:00:00:00 (OUI 00-00-00)
                Data length: 0x1d
                [...]
              Flags: 0x18
                Simultaneous LE and BR/EDR (Controller)
                Simultaneous LE and BR/EDR (Host)
              Company: Harman International Industries, Inc. (87)
                Data: [...]
              Service Data (UUID 0xfddf):
              Name (complete): JBL Flip 5
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      ad38e55e
    • Sven Peter's avatar
      arm64: dts: apple: t8103: Add Bluetooth controller · 7a73b976
      Sven Peter authored
      Add bluetooth controller nodes and the required brcm,board-type
      properties to be able to select the correct firmware to all board
      device trees.
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      7a73b976
    • Sven Peter's avatar
      dt-bindings: net: Add Broadcom BCM4377 family PCIe Bluetooth · c9176e10
      Sven Peter authored
      These chips are combined Wi-Fi/Bluetooth radios which expose a
      PCI subfunction for the Bluetooth part.
      They are found in Apple machines such as the x86 models with the T2
      chip or the arm64 models with the M1 or M2 chips.
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Reviewed-by: default avatarRob Herring <robh@kernel.org>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      c9176e10
    • Sven Peter's avatar
      dt-bindings: net: Add generic Bluetooth controller · 45564c4e
      Sven Peter authored
      Bluetooth controllers share the common local-bd-address property.
      Add a generic YAML schema to replace bluetooth.txt for those.
      Signed-off-by: default avatarSven Peter <sven@svenpeter.dev>
      Reviewed-by: default avatarRob Herring <robh@kernel.org>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      45564c4e
    • Marek Vasut's avatar
      Bluetooth: hci_bcm: Add CYW4373A0 support · 02d056a3
      Marek Vasut authored
      CYW4373A0 is a Wi-Fi + Bluetooth combo device from Cypress.
      This chip is present e.g. on muRata 2AE module.
      
      This chip has additional quirk where the HCI command 0xfc45, used on
      older chips to switch UART clock from 24 MHz to 48 MHz, to support
      baudrates over 3 Mbdps, is no longer recognized by this newer chip.
      This newer chip can configure the 4 Mbdps baudrate without the need
      to issue HCI command 0xfc45, so add flag to indicate this and do not
      issue the command on this chip to avoid failure to set 4 Mbdps baud
      rate.
      
      It is not clear whether there is a way to determine which chip does
      and which chip does not support the HCI command 0xfc45, other than
      trial and error.
      Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      02d056a3
    • Marek Vasut's avatar
      dt-bindings: net: broadcom-bluetooth: Add CYW4373A0 DT binding · 892913f0
      Marek Vasut authored
      CYW4373A0 is a Wi-Fi + Bluetooth combo device from Cypress.
      This chip is present e.g. on muRata 2AE module. Extend the
      binding with its DT compatible.
      Acked-by: default avatarRob Herring <robh@kernel.org>
      Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      892913f0
    • Kang Minchul's avatar
      Bluetooth: Use kzalloc instead of kmalloc/memset · 3958e877
      Kang Minchul authored
      Replace kmalloc+memset by kzalloc
      for better readability and simplicity.
      
      This addresses the cocci warning below:
      
      WARNING: kzalloc should be used for d, instead of kmalloc/memset
      Signed-off-by: default avatarKang Minchul <tegongkang@gmail.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      3958e877
    • Shengyu Qu's avatar
      Bluetooth: btusb: Add more device IDs for WCN6855 · ca2a9944
      Shengyu Qu authored
      Add IDs to usb_device_id table for WCN6855. IDs are extracted from Windows
      driver of Lenovo Thinkpad T14 Gen 2(Driver version 1.0.0.1205 Windows 10)
      
      Windows driver download address:
      https://pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/
      thinkpad-t-series-laptops/thinkpad-t14-gen-2-type-20xk-20xl/downloads
      /driver-list/
      Signed-off-by: default avatarShengyu Qu <wiagn233@outlook.com>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      ca2a9944
    • Christophe JAILLET's avatar
      Bluetooth: Fix EALREADY and ELOOP cases in bt_status() · 63db780a
      Christophe JAILLET authored
      'err' is known to be <0 at this point.
      
      So, some cases can not be reached because of a missing "-".
      Add it.
      
      Fixes: ca2045e0 ("Bluetooth: Add bt_status")
      Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      63db780a
    • Luiz Augusto von Dentz's avatar
      Bluetooth: Add CONFIG_BT_LE_L2CAP_ECRED · 462fcd53
      Luiz Augusto von Dentz authored
      This adds CONFIG_BT_LE_L2CAP_ECRED which can be used to enable L2CAP
      Enhanced Credit Flow Control Mode by default, previously it was only
      possible to set it via module parameter (e.g. bluetooth.enable_ecred=1).
      
      Since L2CAP ECRED mode is required by the likes of EATT which is
      recommended for LE Audio this enables it by default.
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      Tested-By: default avatarTedd Ho-Jeong An <tedd.an@intel.com>
      462fcd53
    • Luiz Augusto von Dentz's avatar
      Bluetooth: btusb: Default CONFIG_BT_HCIBTUSB_POLL_SYNC=y · db112235
      Luiz Augusto von Dentz authored
      poll_sync has been proven to fix races of USB data and event endpoints
      so this enables it by default.
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      Tested-by: default avatarTedd Ho-Jeong An <tedd.an@intel.com>
      db112235
    • Luiz Augusto von Dentz's avatar
      Bluetooth: btusb: Add CONFIG_BT_HCIBTUSB_POLL_SYNC · bb1afb29
      Luiz Augusto von Dentz authored
      This adds CONFIG_BT_HCIBTUSB_POLL_SYNC which can be used to set the
      default behavior of Bluetooth USB controller with respect to poll
      synchronization of its endpoits.
      Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
      Tested-by: default avatarTedd Ho-Jeong An <tedd.an@intel.com>
      bb1afb29