Home
last modified time | relevance | path

Searched refs:ptable (Results 1 – 25 of 58) sorted by relevance

123

/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dbcm_l2_filter.c65 arp_table_t *ptable; in bcm_l2_parp_dump_table() local
67 ptable = arp_tbl; in bcm_l2_parp_dump_table()
69 entry = ptable->parp_table[idx]; in bcm_l2_parp_dump_table()
81 entry = ptable->parp_candidate_list; in bcm_l2_parp_dump_table()
101 void deinit_l2_filter_arp_table(osl_t* osh, arp_table_t* ptable) in deinit_l2_filter_arp_table() argument
103 MFREE(osh, ptable, sizeof(arp_table_t)); in deinit_l2_filter_arp_table()
346 arp_table_t *ptable; in bcm_l2_filter_parp_modifyentry() local
360 ptable = arp_tbl; in bcm_l2_filter_parp_modifyentry()
362 entry = ptable->parp_table[idx]; in bcm_l2_filter_parp_modifyentry()
364 entry = ptable->parp_candidate_list; in bcm_l2_filter_parp_modifyentry()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dbcm_l2_filter.c65 arp_table_t *ptable; in bcm_l2_parp_dump_table() local
67 ptable = arp_tbl; in bcm_l2_parp_dump_table()
69 entry = ptable->parp_table[idx]; in bcm_l2_parp_dump_table()
81 entry = ptable->parp_candidate_list; in bcm_l2_parp_dump_table()
101 void deinit_l2_filter_arp_table(osl_t* osh, arp_table_t* ptable) in deinit_l2_filter_arp_table() argument
103 MFREE(osh, ptable, sizeof(arp_table_t)); in deinit_l2_filter_arp_table()
346 arp_table_t *ptable; in bcm_l2_filter_parp_modifyentry() local
360 ptable = arp_tbl; in bcm_l2_filter_parp_modifyentry()
362 entry = ptable->parp_table[idx]; in bcm_l2_filter_parp_modifyentry()
364 entry = ptable->parp_candidate_list; in bcm_l2_filter_parp_modifyentry()
[all …]
/OK3568_Linux_fs/kernel/drivers/soc/qcom/
H A Dsmem.c687 struct smem_ptable *ptable; in qcom_smem_get_ptable() local
690 ptable = smem->regions[0].virt_base + smem->regions[0].size - SZ_4K; in qcom_smem_get_ptable()
691 if (memcmp(ptable->magic, SMEM_PTABLE_MAGIC, sizeof(ptable->magic))) in qcom_smem_get_ptable()
694 version = le32_to_cpu(ptable->version); in qcom_smem_get_ptable()
700 return ptable; in qcom_smem_get_ptable()
705 struct smem_ptable *ptable; in qcom_smem_get_item_count() local
708 ptable = qcom_smem_get_ptable(smem); in qcom_smem_get_item_count()
709 if (IS_ERR_OR_NULL(ptable)) in qcom_smem_get_item_count()
712 info = (struct smem_info *)&ptable->entry[ptable->num_entries]; in qcom_smem_get_item_count()
771 struct smem_ptable *ptable; in qcom_smem_set_global_partition() local
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dprocesspptables.c122 const ATOM_PPLIB_VCE_Clock_Voltage_Limit_Table *ptable = in get_vce_clock_voltage_limit_table_size() local
125 …table_size = sizeof(uint8_t) + ptable->numEntries * sizeof(ATOM_PPLIB_VCE_Clock_Voltage_Limit_Reco… in get_vce_clock_voltage_limit_table_size()
313 struct phm_cac_tdp_table **ptable, in get_cac_tdp_table() argument
335 *ptable = tdp_table; in get_cac_tdp_table()
378 struct phm_clock_voltage_dependency_table **ptable, in get_clock_voltage_dependency_table() argument
403 *ptable = dep_table; in get_clock_voltage_dependency_table()
409 struct phm_clock_array **ptable, in get_valid_clk() argument
425 *ptable = clock_table; in get_valid_clk()
1209 struct phm_uvd_clock_voltage_dependency_table **ptable, in get_uvd_clock_voltage_limit_table() argument
1236 *ptable = uvd_table; in get_uvd_clock_voltage_limit_table()
[all …]
H A Dsmu8_hwmgr.c72 struct phm_vce_clock_voltage_dependency_table *ptable = in smu8_get_eclk_level() local
78 for (i = 0; i < (int)ptable->count; i++) { in smu8_get_eclk_level()
79 if (clock <= ptable->entries[i].ecclk) in smu8_get_eclk_level()
86 for (i = ptable->count - 1; i >= 0; i--) { in smu8_get_eclk_level()
87 if (clock >= ptable->entries[i].ecclk) in smu8_get_eclk_level()
133 struct phm_uvd_clock_voltage_dependency_table *ptable = in smu8_get_uvd_level() local
139 for (i = 0; i < (int)ptable->count; i++) { in smu8_get_uvd_level()
140 if (clock <= ptable->entries[i].vclk) in smu8_get_uvd_level()
147 for (i = ptable->count - 1; i >= 0; i--) { in smu8_get_uvd_level()
148 if (clock >= ptable->entries[i].vclk) in smu8_get_uvd_level()
[all …]
H A Dsmu10_hwmgr.c439 struct smu10_voltage_dependency_table *ptable; in smu10_get_clock_voltage_dependency_table() local
441 ptable = kzalloc(struct_size(ptable, entries, num_entry), GFP_KERNEL); in smu10_get_clock_voltage_dependency_table()
442 if (NULL == ptable) in smu10_get_clock_voltage_dependency_table()
445 ptable->count = num_entry; in smu10_get_clock_voltage_dependency_table()
447 for (i = 0; i < ptable->count; i++) { in smu10_get_clock_voltage_dependency_table()
448 ptable->entries[i].clk = pclk_dependency_table->Freq * 100; in smu10_get_clock_voltage_dependency_table()
449 ptable->entries[i].vol = pclk_dependency_table->Vol; in smu10_get_clock_voltage_dependency_table()
453 *pptable = ptable; in smu10_get_clock_voltage_dependency_table()
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dbcm_l2_filter.h73 void deinit_l2_filter_arp_table(osl_t* osh, arp_table_t* ptable);
92 void bcm_l2_filter_parp_get_smac(arp_table_t* ptable, void* smac);
93 void bcm_l2_filter_parp_get_cmac(arp_table_t* ptable, void* cmac);
94 void bcm_l2_filter_parp_set_smac(arp_table_t* ptable, void* smac);
95 void bcm_l2_filter_parp_set_cmac(arp_table_t* ptable, void* cmac);
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dbcm_l2_filter.h73 void deinit_l2_filter_arp_table(osl_t* osh, arp_table_t* ptable);
92 void bcm_l2_filter_parp_get_smac(arp_table_t* ptable, void* smac);
93 void bcm_l2_filter_parp_get_cmac(arp_table_t* ptable, void* cmac);
94 void bcm_l2_filter_parp_set_smac(arp_table_t* ptable, void* smac);
95 void bcm_l2_filter_parp_set_cmac(arp_table_t* ptable, void* cmac);
/OK3568_Linux_fs/kernel/arch/m68k/mm/
H A Dmotorola.c107 #define PD_PAGE(ptable) (list_entry(ptable, struct page, lru)) argument
121 unsigned long ptable = (unsigned long)table; in init_pointer_table() local
122 unsigned long page = ptable & PAGE_MASK; in init_pointer_table()
123 unsigned int mask = 1U << ((ptable - page)/ptable_size(type)); in init_pointer_table()
132 pr_debug("init_pointer_table: %lx, %x\n", ptable, PD_MARKBITS(dp)); in init_pointer_table()
190 unsigned long ptable = (unsigned long)table; in free_pointer_table() local
191 unsigned long page = ptable & PAGE_MASK; in free_pointer_table()
192 unsigned int mask = 1U << ((ptable - page)/ptable_size(type)); in free_pointer_table()
/OK3568_Linux_fs/kernel/drivers/net/wireless/ti/wlcore/
H A Dboot.c189 memcpy(&partition, &wl->ptable[PART_DOWN], sizeof(partition)); in wl1271_boot_upload_firmware_chunk()
197 partition_limit = wl->ptable[PART_DOWN].mem.size; in wl1271_boot_upload_firmware_chunk()
205 wl->ptable[PART_DOWN].mem.size; in wl1271_boot_upload_firmware_chunk()
411 ret = wlcore_set_partition(wl, &wl->ptable[PART_WORK]); in wlcore_boot_upload_nvs()
439 ret = wlcore_set_partition(wl, &wl->ptable[PART_BOOT]); in wlcore_boot_run_firmware()
523 ret = wlcore_set_partition(wl, &wl->ptable[PART_WORK]); in wlcore_boot_run_firmware()
/OK3568_Linux_fs/buildroot/package/rtl8821au/
H A D0001-Fix-implicit-fallthrough-comments-for-kernel-5.3.patch19 ptable->func = &OnAuthClient;
25 _mgt_dispatcher(padapter, ptable, precv_frame);
/OK3568_Linux_fs/u-boot/lib/optee_clientApi/
H A DOpteeClientRkNewFs_v2.c266 struct rkss_file_table *ptable; in rkss_dump_ptable() local
271 ptable = rkss_info[i].table; in rkss_dump_ptable()
279 ptable->used == 0 ? 'F':'T', ptable->name, in rkss_dump_ptable()
280 ptable->index, ptable->size); in rkss_dump_ptable()
282 ptable++; in rkss_dump_ptable()
350 struct rkss_file_table *ptable, unsigned int *out_area_index) in rkss_get_fileinfo_by_index() argument
374 memcpy(ptable, p, sizeof(struct rkss_file_table)); in rkss_get_fileinfo_by_index()
380 struct rkss_file_table *ptable, unsigned int *out_area_index) in rkss_get_fileinfo_by_name() argument
405 memcpy(ptable, p, sizeof(struct rkss_file_table)); in rkss_get_fileinfo_by_name()
H A DOpteeClientRkFs_v2.c263 struct rkss_file_table *ptable; in rkss_dump_ptable() local
268 ptable = rkss_info[i].table; in rkss_dump_ptable()
276 ptable->used == 0 ? 'F':'T', ptable->name, in rkss_dump_ptable()
277 ptable->index, ptable->size); in rkss_dump_ptable()
279 ptable++; in rkss_dump_ptable()
347 struct rkss_file_table *ptable, unsigned int *out_area_index) in rkss_get_fileinfo_by_index() argument
371 memcpy(ptable, p, sizeof(struct rkss_file_table)); in rkss_get_fileinfo_by_index()
377 struct rkss_file_table *ptable, unsigned int *out_area_index) in rkss_get_fileinfo_by_name() argument
402 memcpy(ptable, p, sizeof(struct rkss_file_table)); in rkss_get_fileinfo_by_name()
/OK3568_Linux_fs/kernel/include/linux/
H A Dsfi.h88 #define SFI_GET_NUM_ENTRIES(ptable, entry_type) \ argument
89 ((ptable->header.len - sizeof(struct sfi_table_header)) / \
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Dsfi.h33 #define SFI_GET_NUM_ENTRIES(ptable, entry_type) \ argument
34 ((ptable->header.len - sizeof(struct sfi_table_header)) / \
/OK3568_Linux_fs/kernel/drivers/net/wireless/ti/wl18xx/
H A Dmain.c715 ret = wlcore_set_partition(wl, &wl->ptable[PART_TOP_PRCM_ELP_SOC]); in wl18xx_set_clk()
849 ret = wlcore_set_partition(wl, &wl->ptable[PART_BOOT]); in wl18xx_pre_boot()
873 ret = wlcore_set_partition(wl, &wl->ptable[PART_BOOT]); in wl18xx_pre_upload()
899 ret = wlcore_set_partition(wl, &wl->ptable[PART_PHY_INIT]); in wl18xx_pre_upload()
925 &wl->ptable[PART_TOP_PRCM_ELP_SOC]); in wl18xx_pre_upload()
938 ret = wlcore_set_partition(wl, &wl->ptable[PART_PHY_INIT]); in wl18xx_pre_upload()
957 ret = wlcore_set_partition(wl, &wl->ptable[PART_PHY_INIT]); in wl18xx_set_mac_and_phy()
1348 ret = wlcore_set_partition(wl, &wl->ptable[PART_TOP_PRCM_ELP_SOC]); in wl18xx_get_pg_ver()
1384 ret = wlcore_set_partition(wl, &wl->ptable[PART_BOOT]); in wl18xx_get_pg_ver()
1480 ret = wlcore_set_partition(wl, &wl->ptable[PART_TOP_PRCM_ELP_SOC]); in wl18xx_get_mac()
[all …]
/OK3568_Linux_fs/kernel/drivers/sfi/
H A Dsfi_acpi.c76 #define XSDT_GET_NUM_ENTRIES(ptable, entry_type) \ argument
77 ((ptable->header.length - sizeof(struct acpi_table_header)) / \
/OK3568_Linux_fs/kernel/drivers/input/rmi4/
H A Drmi_f34v7.c354 const struct partition_table *ptable; in rmi_f34v7_parse_partition_table() local
358 ptable = partition_table + index; in rmi_f34v7_parse_partition_table()
359 partition_length = le16_to_cpu(ptable->partition_length); in rmi_f34v7_parse_partition_table()
360 physical_address = le16_to_cpu(ptable->start_physical_address); in rmi_f34v7_parse_partition_table()
363 __func__, i, sizeof(struct partition_table), ptable); in rmi_f34v7_parse_partition_table()
364 switch (ptable->partition_id & 0x1f) { in rmi_f34v7_parse_partition_table()
468 u8 *ptable; in rmi_f34v7_read_queries() local
559 ptable = f34->v7.read_config_buf; in rmi_f34v7_read_queries()
568 rmi_f34v7_parse_partition_table(f34, ptable, in rmi_f34v7_read_queries()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/ovmf/ovmf/
H A Dovmf-shell-image.wks4 bootloader --ptable gpt --timeout=5
/OK3568_Linux_fs/yocto/poky/scripts/lib/wic/canned-wks/
H A Defi-bootdisk.wks.in1 bootloader --ptable gpt
H A Ddirectdisk-gpt.wks9 bootloader --ptable gpt --timeout=0 --append="rootwait rootfstype=ext4 video=vesafb vga=0x318 con…
H A Dmkefidisk.wks11 bootloader --ptable gpt --timeout=5 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0"
H A Dsystemd-bootdisk.wks11 bootloader --ptable gpt --timeout=5 --append="rootwait rootfstype=ext4 console=ttyS0,115200 console…
/OK3568_Linux_fs/yocto/poky/meta-selftest/wic/
H A Doverlayfs_etc.wks.in4 bootloader --ptable gpt --timeout=1 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0 ${O…
/OK3568_Linux_fs/yocto/poky/meta-yocto-bsp/wic/
H A Dgenericx86.wks.in7 bootloader --ptable gpt --timeout=5 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0"

123