Searched refs:f_index (Results 1 – 12 of 12) sorted by relevance
/linux-6.12.1/drivers/media/i2c/ |
D | ov9734.c | 347 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 349 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OV9734_DATA_LANES; in to_pixel_rate() 356 static u64 to_pixels_per_line(u32 hts, u32 f_index) in to_pixels_per_line() argument 358 u64 ppl = hts * to_pixel_rate(f_index); in to_pixels_per_line()
|
D | og01a1b.c | 448 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 450 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OG01A1B_DATA_LANES; in to_pixel_rate() 457 static u64 to_pixels_per_line(u32 hts, u32 f_index) in to_pixels_per_line() argument 459 u64 ppl = hts * to_pixel_rate(f_index); in to_pixels_per_line()
|
D | ov5675.c | 520 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 522 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OV5675_DATA_LANES; in to_pixel_rate() 529 static u64 to_pixels_per_line(u32 hts, u32 f_index) in to_pixels_per_line() argument 531 u64 ppl = hts * to_pixel_rate(f_index); in to_pixels_per_line()
|
D | ov08d10.c | 636 u32 f_index, u8 nlanes) in to_rate() argument 638 u64 pixel_rate = link_freq_menu[f_index] * 2 * nlanes; in to_rate() 646 u32 f_index, u8 nlanes) in to_pixels_per_line() argument 648 u64 ppl = hts * to_rate(link_freq_menu, f_index, nlanes); in to_pixels_per_line()
|
D | ov8856.c | 1603 u32 f_index, u8 nlanes) in to_rate() argument 1605 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * nlanes; in to_rate() 1613 u32 f_index, u8 nlanes) in to_pixels_per_line() argument 1615 u64 ppl = hts * to_rate(link_freq_menu_items, f_index, nlanes); in to_pixels_per_line()
|
D | ov02a10.c | 249 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 251 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OV02A10_DATA_LANES; in to_pixel_rate()
|
D | hi847.c | 2189 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 2191 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * HI847_DATA_LANES; in to_pixel_rate()
|
D | hi556.c | 654 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 656 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * HI556_DATA_LANES; in to_pixel_rate()
|
D | ov2740.c | 549 static u64 to_pixel_rate(u32 f_index) in to_pixel_rate() argument 551 u64 pixel_rate = link_freq_menu_items[f_index] * 2 * OV2740_DATA_LANES; in to_pixel_rate()
|
D | gc08a3.c | 1067 static u64 gc08a3_to_pixel_rate(u32 f_index) in gc08a3_to_pixel_rate() argument 1070 gc08a3_link_freq_menu_items[f_index] * 2 * GC08A3_DATA_LANES; in gc08a3_to_pixel_rate()
|
D | gc05a2.c | 1123 static u64 gc05a2_to_pixel_rate(u32 f_index) in gc05a2_to_pixel_rate() argument 1126 gc05a2_link_freq_menu_items[f_index] * 2 * GC05A2_DATA_LANES; in gc05a2_to_pixel_rate()
|
/linux-6.12.1/drivers/net/ethernet/broadcom/genet/ |
D | bcmgenet.c | 444 static void bcmgenet_hfb_enable_filter(struct bcmgenet_priv *priv, u32 f_index) in bcmgenet_hfb_enable_filter() argument 449 offset = HFB_FLT_ENABLE_V3PLUS + (f_index < 32) * sizeof(u32); in bcmgenet_hfb_enable_filter() 451 reg |= (1 << (f_index % 32)); in bcmgenet_hfb_enable_filter() 458 static void bcmgenet_hfb_disable_filter(struct bcmgenet_priv *priv, u32 f_index) in bcmgenet_hfb_disable_filter() argument 465 if (f_index < 32) { in bcmgenet_hfb_disable_filter() 466 reg1 &= ~(1 << (f_index % 32)); in bcmgenet_hfb_disable_filter() 469 reg &= ~(1 << (f_index % 32)); in bcmgenet_hfb_disable_filter() 480 u32 f_index, u32 rx_queue) in bcmgenet_hfb_set_filter_rx_queue_mapping() argument 485 offset = f_index / 8; in bcmgenet_hfb_set_filter_rx_queue_mapping() 487 reg &= ~(0xF << (4 * (f_index % 8))); in bcmgenet_hfb_set_filter_rx_queue_mapping() [all …]
|