smbios_data.py: Update Bluetooth defaults

2011 MacBook Air and Mac minis natively shipped with Bluetooth 4.0 modules:
https://everymac.com/systems/by_capability/macs-with-bluetooth-different-bluetooth-capabilities.html

This commit does not affect on-model building, as hardware detection is still enforced
This commit is contained in:
Mykola Grymalyuk
2022-05-17 11:45:45 -06:00
parent 15026d8c42
commit 8981cad20d
2 changed files with 31 additions and 31 deletions

View File

@@ -3,13 +3,13 @@ import enum
class bluetooth_data(enum.IntEnum):
# Bluetooth Chipsets
NonApplicable = 0
BRCM2045 = 1 # TODO: Rename chipset, currently guessing MacPro1,1-3,1 name
BRCM2046 = 2 # BT 2.1
BRCM2070 = 3 # BT 2.1
BRCM20702_v1 = 4 # BT 4.0 - 2012
BRCM20702_v2 = 5 # BT 4.0 - 2013+
BRCM20703 = 6 # BT 4.2
BRCM20703_UART = 9 # BRCM20703 over UART, BT 4.2
UART = 10 # T2
PCIe = 20 # Apple Silicon
NonApplicable = 0
APPLE_CSR = 1 # BT 2.0 - Apple rebranded CSR chipset
BRCM2046 = 2 # BT 2.1
BRCM2070 = 3 # BT 2.1
BRCM20702_v1 = 4 # BT 4.0 - 2011/2012
BRCM20702_v2 = 5 # BT 4.0 - 2013+
BRCM20703 = 6 # BT 4.2
BRCM20703_UART = 9 # BRCM20703 over UART, BT 4.2
UART = 10 # T2
PCIe = 20 # Apple Silicon