Home
last modified time | relevance | path

Searched full:mru (Results 1 – 19 of 19) sorted by relevance

/Zephyr-latest/subsys/net/l2/ppp/
Dlcp.c152 ctx->lcp.my_options.mru = net_if_get_mtu(ctx->iface); in lcp_lower_up()
192 /* TODO: Set MRU/MTU of the network interface here */ in lcp_up()
220 return net_pkt_write_be16(pkt, ctx->lcp.my_options.mru); in lcp_add_mru()
227 uint16_t mru; in lcp_ack_mru() local
230 if (oplen != sizeof(mru)) { in lcp_ack_mru()
234 ret = net_pkt_read(pkt, &mru, sizeof(mru)); in lcp_ack_mru()
238 if (mru != ctx->lcp.my_options.mru) { in lcp_ack_mru()
239 /* Didn't acked our MRU: */ in lcp_ack_mru()
250 uint16_t mru; in lcp_nak_mru() local
253 if (oplen != sizeof(mru)) { in lcp_nak_mru()
[all …]
DKconfig59 bool "LCP MRU option support"
61 Enable support for LCP MRU option.
Dmisc.c304 return "MRU"; in ppp_option2str()
Dfsm.c407 len = MIN(len, ctx->lcp.my_options.mru); in ppp_send_pkt()
508 data_len = MIN(data_len, ctx->lcp.my_options.mru); in ppp_send_pkt()
1056 if (length > ctx->lcp.my_options.mru) { in ppp_fsm_input()
/Zephyr-latest/dts/bindings/mbox/
Dnxp,s32-mru.yaml7 The MRU couples with a processor and allows to receive messages from senders,
8 which are other modules or processors. The interrupts from each MRU instance
20 of receive channels on the MRU instance coupled with the core, for instance in
21 a devicetree overlay. In turn, the sender(s) must enable the MRU instance of the
39 compatible: "nxp,s32-mru"
53 It should be set by the receiver core coupled with this MRU instance.
/Zephyr-latest/drivers/mbox/
DKconfig.nxp_s325 bool "NXP S32 Message Receive Unit (MRU) driver"
10 Driver for NXP S32 Message Receive Unit (MRU).
Dmbox_nxp_s32_mru.c247 /* Callback wrapper to adapt MRU's baremetal driver callback to Zephyr's mbox driver callback */
/Zephyr-latest/soc/nxp/s32/s32ze/
Dsoc.h31 /* MRU */
/Zephyr-latest/drivers/ethernet/
Deth_nxp_s32_netc_priv.h36 * Get the first MRU mailbox address for an specific mbox handle
37 * mbox[0] addr = MRU base addr + (channel × channel offset), with channel=1..N
Deth_nxp_s32_netc_vsi.c66 LOG_ERR("Failed to enable MRU channel %u", in nxp_s32_eth_iface_init()
Deth_nxp_s32_netc.c76 LOG_ERR("Failed to register MRU callback on channel %u", in nxp_s32_eth_initialize_common()
Deth_nxp_s32_netc_psi.c204 LOG_ERR("Failed to enable MRU channel %u", in nxp_s32_eth_iface_init()
/Zephyr-latest/drivers/net/
DKconfig32 int "PPP MTU and MRU"
35 This options sets MTU and MRU for PPP link.
/Zephyr-latest/dts/arm/nxp/
Dnxp_s32z27x_r52.dtsi574 compatible = "nxp,s32-mru";
582 compatible = "nxp,s32-mru";
590 compatible = "nxp,s32-mru";
598 compatible = "nxp,s32-mru";
606 compatible = "nxp,s32-mru";
614 compatible = "nxp,s32-mru";
622 compatible = "nxp,s32-mru";
630 compatible = "nxp,s32-mru";
706 reg-names = "sic", "rx_fifo", "rx_fifo_ctrl", "mru";
720 reg-names = "sic", "rx_fifo", "rx_fifo_ctrl", "mru";
/Zephyr-latest/include/zephyr/net/
Dppp.h33 /** PPP maximum receive unit (MRU) */
374 uint16_t mru; member
/Zephyr-latest/boards/nxp/s32z2xxdc2/doc/
Dindex.rst35 | MRU | on-chip | mbox |
/Zephyr-latest/drivers/can/
Dcan_nxp_s32_canxl.c1230 .base_mru = (CANXL_MRU_Type *)DT_INST_REG_ADDR_BY_NAME(n, mru), \
/Zephyr-latest/doc/releases/
Drelease-notes-3.3.rst806 * Added NXP S32 Message Receive Unit (MRU) driver.
1372 - :dtcompatible:`nxp,s32-mru`
Drelease-notes-2.6.rst727 * Added PPP LCP MRU option support.