Home
last modified time | relevance | path

Searched refs:max_frame_size (Results 1 – 25 of 61) sorted by relevance

123

/kernel/linux/linux-5.10/drivers/tty/
Dsynclinkmp.c181 u32 max_frame_size; /* as set by device config */ member
926 if (count > info->max_frame_size) { in write()
945 min(info->max_frame_size - info->tx_count - 1, in write()
946 info->max_frame_size - info->tx_put)); in write()
954 if (info->tx_put >= info->max_frame_size) in write()
955 info->tx_put -= info->max_frame_size; in write()
1010 if (info->tx_count < info->max_frame_size - 1) { in put_char()
1012 if (info->tx_put >= info->max_frame_size) in put_char()
1013 info->tx_put -= info->max_frame_size; in put_char()
1126 ret = info->max_frame_size - info->tx_count - 1; in write_room()
[all …]
Dsynclink_gt.c270 u32 max_frame_size; /* as set by device config */ member
769 if (!info->tx_buf || (count > info->max_frame_size)) in write()
805 if (info->tx_count < info->max_frame_size) { in put_char()
1181 info->irq_level, info->max_frame_size); in line_info()
2348 info->tx_buf = kmalloc(info->max_frame_size, GFP_KERNEL); in startup()
3258 info->tmp_rbuf = kmalloc(info->max_frame_size + 5, GFP_KERNEL); in alloc_tmp_rbuf()
3262 info->flag_buf = kzalloc(info->max_frame_size + 5, GFP_KERNEL); in alloc_tmp_rbuf()
3446 info->max_frame_size = maxframe[info->line]; in add_device()
3460 if (info->max_frame_size < 4096) in add_device()
3461 info->max_frame_size = 4096; in add_device()
[all …]
Dsynclink.c206 u32 max_frame_size; /* as set by device config */ member
2267 return info->max_frame_size; in mgsl_chars_in_buffer()
3548 BuffersPerFrame = (unsigned short)(info->max_frame_size/DMABUFFERSIZE); in mgsl_allocate_dma_buffers()
3549 if ( info->max_frame_size % DMABUFFERSIZE ) in mgsl_allocate_dma_buffers()
3786 info->intermediate_rxbuffer = kmalloc(info->max_frame_size, GFP_KERNEL | GFP_DMA); in mgsl_alloc_intermediate_rxbuffer_memory()
3790 info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL); in mgsl_alloc_intermediate_rxbuffer_memory()
3844 kmalloc(info->max_frame_size, GFP_KERNEL); in mgsl_alloc_intermediate_txbuffer_memory()
4089 info->max_frame_size = maxframe[info->line]; in mgsl_add_device()
4117 if ( info->max_frame_size < 4096 ) in mgsl_add_device()
4118 info->max_frame_size = 4096; in mgsl_add_device()
[all …]
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/
Domapfb-main.c406 static void shrink_height(unsigned long max_frame_size, in shrink_height() argument
410 var->yres_virtual = max_frame_size / in shrink_height()
420 static void shrink_width(unsigned long max_frame_size, in shrink_width() argument
424 var->xres_virtual = max_frame_size / var->yres_virtual / in shrink_width()
446 unsigned long max_frame_size = ofbi->region->size; in check_fb_size() local
452 if (check_vrfb_fb_size(max_frame_size, var)) in check_fb_size()
454 max_frame_size, var->xres_virtual, bytespp) * in check_fb_size()
457 if (check_vrfb_fb_size(max_frame_size, var)) { in check_fb_size()
465 DBG("max frame size %lu, line size %lu\n", max_frame_size, line_size); in check_fb_size()
467 if (line_size * var->yres_virtual > max_frame_size) in check_fb_size()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_mfw_req.h145 u32 max_frame_size; /* Max Frame Size. bytes */ member
/kernel/linux/linux-5.10/drivers/net/ethernet/atheros/atl1e/
Datl1e_main.c432 adapter->hw.max_frame_size = new_mtu; in atl1e_change_mtu()
601 hw->max_frame_size = adapter->netdev->mtu; in atl1e_sw_init()
602 hw->rx_jumbo_th = (hw->max_frame_size + ETH_HLEN + in atl1e_sw_init()
726 + adapter->hw.max_frame_size in atl1e_init_ring_resources()
937 if (hw->max_frame_size <= 1500) { in atl1e_configure_tx()
938 jumbo_thresh = hw->max_frame_size + extra_size; in atl1e_configure_tx()
939 } else if (hw->max_frame_size < 6*1024) { in atl1e_configure_tx()
941 (hw->max_frame_size + extra_size) * 2 / 3; in atl1e_configure_tx()
943 jumbo_thresh = (hw->max_frame_size + extra_size) / 2; in atl1e_configure_tx()
1119 AT_WRITE_REG(hw, REG_MTU, hw->max_frame_size + ETH_HLEN + in atl1e_configure()
Datl1e.h315 u16 max_frame_size; member
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ixgb/
Dixgb_main.c214 if ((hw->max_frame_size != max_frame) || in ixgb_up()
215 (hw->max_frame_size != in ixgb_up()
218 hw->max_frame_size = max_frame; in ixgb_up()
220 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT); in ixgb_up()
222 if (hw->max_frame_size > in ixgb_up()
285 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT); in ixgb_reset()
286 if (hw->max_frame_size > in ixgb_reset()
560 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH; in ixgb_sw_init()
561 adapter->rx_buffer_len = hw->max_frame_size + 8; /* + 8 for errata */ in ixgb_sw_init()
/kernel/linux/linux-5.10/include/linux/
Dti_wilink_st.h66 unsigned short max_frame_size; member
/kernel/linux/linux-5.10/drivers/staging/qlge/
Dqlge_mpi.c728 mbcp->mbox_in[2] = qdev->max_frame_size; in ql_mb_set_port_cfg()
830 qdev->max_frame_size = mbcp->mbox_out[2]; in ql_mb_get_port_cfg()
1129 qdev->max_frame_size == CFG_DEFAULT_MAX_FRAME_SIZE) in ql_mpi_port_cfg_work()
1133 qdev->max_frame_size = CFG_DEFAULT_MAX_FRAME_SIZE; in ql_mpi_port_cfg_work()
/kernel/linux/linux-5.10/drivers/char/pcmcia/
Dsynclink_cs.c177 u32 max_frame_size; member
532 info->max_frame_size = 4096; in mgslpc_probe()
872 if (buf->count >= info->max_frame_size) { in rx_ready_hdlc()
1655 rc = info->tx_active ? info->max_frame_size : 0; in mgslpc_chars_in_buffer()
2621 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size; in rx_alloc_buffers()
2638 info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL); in rx_alloc_buffers()
2691 info->max_frame_size = maxframe[info->line]; in mgslpc_add_device()
2705 if (info->max_frame_size < 4096) in mgslpc_add_device()
2706 info->max_frame_size = 4096; in mgslpc_add_device()
2707 else if (info->max_frame_size > 65535) in mgslpc_add_device()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igbvf/
Digbvf.h217 u32 max_frame_size; member
Dnetdev.c1218 int max_frame_size; in igbvf_set_rlpml() local
1221 max_frame_size = adapter->max_frame_size + VLAN_TAG_SIZE; in igbvf_set_rlpml()
1225 e1000_rlpml_set_vf(hw, max_frame_size); in igbvf_set_rlpml()
1631 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; in igbvf_sw_init()
2416 adapter->max_frame_size = max_frame; in igbvf_change_mtu()
/kernel/linux/linux-5.10/sound/soc/qcom/qdsp6/
Dq6asm.h42 u32 max_frame_size; member
/kernel/linux/linux-5.10/include/uapi/sound/
Dcompress_params.h330 __u16 max_frame_size; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/sound/
Dcompress_params.h176 __u16 max_frame_size; member
/kernel/linux/linux-5.10/drivers/video/fbdev/omap/
Domapfb_main.c466 unsigned long max_frame_size; in set_fb_var() local
521 max_frame_size = fbdev->mem_desc.region[plane->idx].size; in set_fb_var()
523 if (line_size * var->yres_virtual > max_frame_size) { in set_fb_var()
525 line_size = max_frame_size / var->yres_virtual; in set_fb_var()
531 var->yres_virtual = max_frame_size / line_size; in set_fb_var()
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
Dice_common.h131 ice_aq_set_mac_cfg(struct ice_hw *hw, u16 max_frame_size, struct ice_sq_cd *cd);
Dice_common.c427 li->max_frame_size = le16_to_cpu(link_data.max_frame_size); in ice_aq_get_link_info()
460 li->max_frame_size); in ice_aq_get_link_info()
519 ice_aq_set_mac_cfg(struct ice_hw *hw, u16 max_frame_size, struct ice_sq_cd *cd) in ice_aq_set_mac_cfg() argument
526 if (max_frame_size == 0) in ice_aq_set_mac_cfg()
531 cmd->max_frame_size = cpu_to_le16(max_frame_size); in ice_aq_set_mac_cfg()
Dice_virtchnl_pf.c1900 u16 max_frame_size; in ice_vc_get_max_frame_size() local
1902 max_frame_size = pi->phy.link_info.max_frame_size; in ice_vc_get_max_frame_size()
1905 max_frame_size -= VLAN_HLEN; in ice_vc_get_max_frame_size()
1907 return max_frame_size; in ice_vc_get_max_frame_size()
2985 u16 max_frame_size = ice_vc_get_max_frame_size(vf); in ice_vc_cfg_qs_msg() local
2999 if (qpi->rxq.max_pkt_size > max_frame_size || in ice_vc_cfg_qs_msg()
/kernel/linux/linux-5.10/drivers/net/ethernet/oki-semi/pch_gbe/
Dpch_gbe_main.c1452 adapter->hw.mac.max_frame_size + PCH_GBE_DMA_ALIGN + NET_IP_ALIGN; in pch_gbe_alloc_tx_buffers()
1971 hw->mac.max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; in pch_gbe_sw_init()
1990 hw->mac.min_frame_size, hw->mac.max_frame_size); in pch_gbe_sw_init()
2204 adapter->hw.mac.max_frame_size = max_frame; in pch_gbe_change_mtu()
2209 adapter->hw.mac.max_frame_size = max_frame; in pch_gbe_change_mtu()
2215 adapter->hw.mac.max_frame_size); in pch_gbe_change_mtu()
Dpch_gbe.h335 u32 max_frame_size; member
/kernel/linux/linux-5.10/drivers/net/ethernet/atheros/atlx/
Datl2.h389 u16 max_frame_size; member
/kernel/linux/linux-5.10/drivers/scsi/bnx2i/
Dbnx2i_init.c389 stats->max_frame_size = hba->netdev->mtu; in bnx2i_get_stats()
/kernel/linux/linux-5.10/drivers/net/ethernet/atheros/atl1c/
Datl1c.h373 u16 max_frame_size; member

123