Home
last modified time | relevance | path

Searched refs:bus_params (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/dev/athk/ath10k/
H A Dahb.c734 struct ath10k_bus_params bus_params = {}; in ath10k_ahb_probe() local
788 bus_params.dev_type = ATH10K_DEV_TYPE_LL; in ath10k_ahb_probe()
789 bus_params.chip_id = ath10k_ahb_soc_read32(ar, SOC_CHIP_ID_ADDRESS); in ath10k_ahb_probe()
790 if (bus_params.chip_id == 0xffffffff) { in ath10k_ahb_probe()
796 ret = ath10k_core_register(ar, &bus_params); in ath10k_ahb_probe()
H A Dusb.c1000 struct ath10k_bus_params bus_params = {}; in ath10k_usb_probe() local
1037 bus_params.dev_type = ATH10K_DEV_TYPE_HL; in ath10k_usb_probe()
1039 bus_params.chip_id = 0; in ath10k_usb_probe()
1040 bus_params.hl_msdu_ids = true; in ath10k_usb_probe()
1041 ret = ath10k_core_register(ar, &bus_params); in ath10k_usb_probe()
H A Dpci.c3635 struct ath10k_bus_params bus_params = {}; in ath10k_pci_probe() local
3766 bus_params.dev_type = ATH10K_DEV_TYPE_LL; in ath10k_pci_probe()
3767 bus_params.link_can_suspend = true; in ath10k_pci_probe()
3773 bus_params.chip_id = in ath10k_pci_probe()
3775 if (bus_params.chip_id != 0xffffffff) { in ath10k_pci_probe()
3777 bus_params.chip_id)) { in ath10k_pci_probe()
3790 bus_params.chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS); in ath10k_pci_probe()
3791 if (bus_params.chip_id == 0xffffffff) { in ath10k_pci_probe()
3796 if (!ath10k_pci_chip_is_supported(pdev->device, bus_params.chip_id)) { in ath10k_pci_probe()
3801 ret = ath10k_core_register(ar, &bus_params); in ath10k_pci_probe()
[all …]
H A Dsnoc.c1338 struct ath10k_bus_params bus_params = {}; in ath10k_snoc_fw_indication() local
1351 bus_params.dev_type = ATH10K_DEV_TYPE_LL; in ath10k_snoc_fw_indication()
1352 bus_params.chip_id = ar_snoc->target_info.soc_version; in ath10k_snoc_fw_indication()
1353 ret = ath10k_core_register(ar, &bus_params); in ath10k_snoc_fw_indication()
H A Dsdio.c2516 struct ath10k_bus_params bus_params = {}; in ath10k_sdio_probe() local
2612 bus_params.dev_type = ATH10K_DEV_TYPE_HL; in ath10k_sdio_probe()
2614 bus_params.chip_id = 0; in ath10k_sdio_probe()
2615 bus_params.hl_msdu_ids = true; in ath10k_sdio_probe()
2619 ret = ath10k_core_register(ar, &bus_params); in ath10k_sdio_probe()
H A Dcore.h1355 const struct ath10k_bus_params *bus_params);
H A Dcore.c3591 const struct ath10k_bus_params *bus_params) in ath10k_core_register() argument
3593 ar->bus_param = *bus_params; in ath10k_core_register()