Home
last modified time | relevance | path

Searched refs:l2 (Results 1 – 25 of 57) sorted by relevance

123

/Zephyr-latest/arch/sparc/core/
Dwindow_trap.S26 std %l2, [%sp + 0x08]
31 sll %l3, (CONFIG_SPARC_NWIN-1), %l2
38 wr %l3, %l2, %wim
47 rett %l2
66 ldd [%sp + 0x08], %l2
78 rett %l2
116 std %l2, [%sp + 0x08]
166 jmp %l2
167 rett %l2 + 4
Dsw_trap_set_pil.S42 jmp %l2
43 rett %l2 + 4
Dinterrupt_trap.S36 mov %l2, %l1
37 add %l2, 4, %l2
66 std %l2, [%sp + 0x08]
99 st %l2, [%sp + ISF_NPC_OFFSET] /* npc */
262 ld [%fp + ISF_NPC_OFFSET], %l2 /* npc */
312 ldd [%g1 + 0x08], %l2
335 rett %l2
Dswitch.S36 std %l2, [%o1 + _thread_offset_to_l2]
74 std %l2, [%sp + 0x08]
122 ldd [%o0 + _thread_offset_to_l2], %l2
Dfault_trap.S60 std %l2, [%sp + 0x08]
94 std %l2, [%sp + 96 + __struct_arch_esf_npc_OFFSET] /* npc wim */
/Zephyr-latest/subsys/net/l2/
DKconfig7 bool "Dummy l2 layer"
14 source "subsys/net/l2/dummy/Kconfig"
17 source "subsys/net/l2/virtual/Kconfig"
19 source "subsys/net/l2/ethernet/Kconfig"
21 source "subsys/net/l2/ppp/Kconfig"
28 source "subsys/net/l2/ieee802154/Kconfig"
30 source "subsys/net/l2/openthread/Kconfig"
45 source "subsys/net/l2/canbus/Kconfig"
67 source "subsys/net/l2/wifi/Kconfig"
/Zephyr-latest/include/zephyr/
Dirq_multilevel.h34 uint32_t l2: CONFIG_2ND_LEVEL_INTERRUPT_BITS; member
61 return irq.bits.l2 - 1; in _z_l2_irq()
75 if (z_irq.bits.l2 != 0) { in _z_irq_get_level()
144 .l2 = irq + 1, in irq_to_level_2()
218 .l2 = 0, in irq_to_level_3()
356 } else if (z_irq.bits.l2 != 0) { in irq_increment()
357 z_irq.bits.l2 += val; in irq_increment()
/Zephyr-latest/include/zephyr/net/
Dconn_mgr_monitor.h83 void conn_mgr_ignore_l2(const struct net_l2 *l2);
92 void conn_mgr_watch_l2(const struct net_l2 *l2);
Dnet_if.h651 const struct net_l2 * const l2; member
928 return iface->if_dev->l2; in net_if_l2()
1369 struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
3265 .l2 = &(NET_L2_GET_NAME(_l2)), \
3293 .l2 = &(NET_L2_GET_NAME(OFFLOADED_NETDEV)), \
3321 api, l2, l2_ctx_type, mtu) \ argument
3327 NET_IF_INIT(dev_id, instance, l2, mtu, NET_IF_MAX_CONFIGS)
3330 config, prio, api, l2, l2_ctx_type, mtu) \ argument
3332 pm, data, config, prio, api, l2, \
3355 api, l2, l2_ctx_type, mtu) \ argument
[all …]
/Zephyr-latest/tests/net/ieee802154/l2/
DCMakeLists.txt5 project(l2) project
11 ${ZEPHYR_BASE}/subsys/net/l2/ieee802154
/Zephyr-latest/subsys/net/conn_mgr/
Dconn_mgr_monitor.c363 static bool iface_uses_l2(struct net_if *iface, const struct net_l2 *l2) in iface_uses_l2() argument
365 return (!l2 && net_if_offload(iface)) || in iface_uses_l2()
366 (net_if_l2(iface) == l2); in iface_uses_l2()
369 void conn_mgr_ignore_l2(const struct net_l2 *l2) in conn_mgr_ignore_l2() argument
377 if (iface_uses_l2(iface, l2)) { in conn_mgr_ignore_l2()
385 void conn_mgr_watch_l2(const struct net_l2 *l2) in conn_mgr_watch_l2() argument
393 if (iface_uses_l2(iface, l2)) { in conn_mgr_watch_l2()
/Zephyr-latest/soc/intel/intel_adsp/cavs/
Dmultiprocessing.c108 CAVS_INTCTRL[cpu_num].l2.clear = CAVS_L2_IDC; in soc_start_core()
188 CAVS_INTCTRL[core].l2.clear = CAVS_L2_IDC; in soc_mp_init()
220 CAVS_INTCTRL[id].l2.set = irq_mask; in soc_adsp_halt_cpu()
/Zephyr-latest/subsys/net/l2/dummy/
DKconfig4 source "subsys/net/l2/dummy/any/Kconfig"
/Zephyr-latest/subsys/net/l2/canbus/
DKconfig5 bool "CANBUS RAW l2 layer"
/Zephyr-latest/boards/snps/hsdk/support/
Dopenocd.cfg66 $_TARGETNAME2 arc cache l2 auto 1
81 $_TARGETNAME3 arc cache l2 auto 1
97 $_TARGETNAME4 arc cache l2 auto 1
112 $_TARGETNAME1 arc cache l2 auto 1
Dopenocd-2-cores.cfg66 $_TARGETNAME2 arc cache l2 auto 1
81 $_TARGETNAME1 arc cache l2 auto 1
/Zephyr-latest/boards/snps/hsdk4xd/support/
Dopenocd.cfg66 $_TARGETNAME2 arc cache l2 auto 1
81 $_TARGETNAME3 arc cache l2 auto 1
97 $_TARGETNAME4 arc cache l2 auto 1
112 $_TARGETNAME1 arc cache l2 auto 1
/Zephyr-latest/tests/net/arp/
DCMakeLists.txt11 ${ZEPHYR_BASE}/subsys/net/l2/ethernet
/Zephyr-latest/tests/net/ieee802154/6lo_fragment/
DCMakeLists.txt11 ${ZEPHYR_BASE}/subsys/net/l2/ieee802154
/Zephyr-latest/subsys/net/
DCMakeLists.txt8 add_subdirectory(l2)
DKconfig27 source "subsys/net/l2/Kconfig"
/Zephyr-latest/include/zephyr/arch/sparc/
Dthread.h44 uint32_t l2; member
/Zephyr-latest/arch/sparc/core/offsets/
Doffsets.c24 GEN_OFFSET_SYM(_callee_saved_t, l2);
/Zephyr-latest/samples/subsys/zbus/priority_boost/src/
Dmain.c11 ZBUS_CHAN_DEFINE(chan_a, int, NULL, NULL, ZBUS_OBSERVERS(l1, ms1, ms2, s1, l2), 0);
115 ZBUS_LISTENER_DEFINE(l2, l2_callback);
/Zephyr-latest/subsys/net/l2/ethernet/
DCMakeLists.txt7 zephyr_include_directories(${ZEPHYR_BASE}/subsys/net/l2)

123