Home
last modified time | relevance | path

Searched full:mfp (Results 1 – 25 of 27) sorted by relevance

12

/Zephyr-latest/include/zephyr/dt-bindings/pinctrl/
Dnumaker-m46x-pinctrl.h178 /* PA.0 MFP */
196 /* PA.1 MFP */
214 /* PA.2 MFP */
231 /* PA.3 MFP */
249 /* PA.4 MFP */
265 /* PA.5 MFP */
281 /* PA.6 MFP */
301 /* PA.7 MFP */
320 /* PA.8 MFP */
339 /* PA.9 MFP */
[all …]
Dnumicro-pinctrl.h22 * - mfp [ 0 : 3 ]
28 * @param mfp Multi-function value (0..15)
30 #define NUMICRO_PINMUX(port, pin, mfp) \ argument
33 (((mfp) & NUMICRO_MFP_MASK) << NUMICRO_MFP_SHIFT))
/Zephyr-latest/drivers/pinctrl/
Dpinctrl_numicro.c26 #define REG_MFP(port, pin) (*(volatile uint32_t *)((uint32_t)DT_INST_REG_ADDR_BY_NAME(0, mfp) + \
33 #define MFP_CTL(pin, mfp) ((mfp) << (((pin) % 8) * 4)) argument
97 uint32_t mfp = NUMICRO_MFP(pins[i].pinmux); in pinctrl_configure_pins() local
100 MFP_CTL(pin, mfp); in pinctrl_configure_pins()
Dpinctrl_numaker.c13 #define MFP_BASE DT_INST_REG_ADDR_BY_NAME(0, mfp)
/Zephyr-latest/samples/drivers/counter/alarm/boards/
Dbl5340_dvk_nrf5340_cpuapp.overlay8 /* Connect MCP7940N MFP pin TP9 to P0.04 */
/Zephyr-latest/dts/bindings/rtc/
Dmicrochip,mcp7940n.yaml21 Host input connected to the MCP7940N MFP open drain output pin
/Zephyr-latest/subsys/bluetooth/controller/util/
Dmayfly.c29 static uint8_t mfp[MAYFLY_CALLEE_COUNT]; variable
67 mfp[callee_id] = 1U; in mayfly_enable()
122 mfp[callee_id] = 1U; in mayfly_enqueue()
185 if (!mfp[callee_id]) { in mayfly_run()
188 mfp[callee_id] = 0U; in mayfly_run()
249 mfp[callee_id] = 1U; in mayfly_run()
/Zephyr-latest/tests/boards/espressif/wifi/src/
Dmain.c50 "(len)", "Chan (Band)", "RSSI", "Security", "BSSID", "MFP"); in wifi_scan_result()
62 wifi_mfp_txt(entry->mfp)); in wifi_scan_result()
172 params.mfp = WIFI_MFP_OPTIONAL; in wifi_connect()
/Zephyr-latest/include/zephyr/net/
Dwifi.h196 /** MFP disabled. */
198 /** MFP optional. */
200 /** MFP required. */
210 /** Helper function to get user-friendly MFP name.*/
211 const char *wifi_mfp_txt(enum wifi_mfp_options mfp);
Dwifi_mgmt.h508 /** MFP options */
509 enum wifi_mfp_options mfp; member
538 /** MFP options */
539 enum wifi_mfp_options mfp; member
689 /** MFP options, see enum wifi_mfp_options */
690 enum wifi_mfp_options mfp; member
/Zephyr-latest/dts/arm/nuvoton/
Dm48x.dtsi44 reg-names = "mfp", "mfos";
Dm2l31x.dtsi163 reg-names = "mfos", "mfp";
Dm46x.dtsi191 reg-names = "mfos", "mfp";
/Zephyr-latest/drivers/wifi/nxp/
Dnxp_wifi_drv.c492 if (params->mfp == WIFI_MFP_REQUIRED) { in nxp_wifi_start_ap()
495 } else if (params->mfp == WIFI_MFP_OPTIONAL) { in nxp_wifi_start_ap()
702 res.mfp = WIFI_MFP_REQUIRED; in nxp_wifi_process_results()
704 res.mfp = WIFI_MFP_OPTIONAL; in nxp_wifi_process_results()
888 if (params->mfp == WIFI_MFP_REQUIRED) { in nxp_wifi_connect()
891 } else if (params->mfp == WIFI_MFP_OPTIONAL) { in nxp_wifi_connect()
1057 status->mfp = in nxp_wifi_uap_status()
1137 status->mfp = nxp_wlan_network.security.mfpr ? WIFI_MFP_REQUIRED : in nxp_wifi_status()
/Zephyr-latest/subsys/net/l2/wifi/
Dwifi_mgmt.c102 const char *wifi_mfp_txt(enum wifi_mfp_options mfp) in wifi_mfp_txt() argument
104 switch (mfp) { in wifi_mfp_txt()
1379 /* MFP setting (default: optional) */ in __stored_creds_to_params()
1381 params->mfp = WIFI_MFP_DISABLE; in __stored_creds_to_params()
1383 params->mfp = WIFI_MFP_REQUIRED; in __stored_creds_to_params()
1385 params->mfp = WIFI_MFP_OPTIONAL; in __stored_creds_to_params()
Dwifi_shell.c195 "Num", "SSID", "(len)", "Chan (Band)", "RSSI", "Security", "BSSID", "MFP"); in handle_wifi_scan_result()
210 wifi_mfp_txt(entry->mfp)); in handle_wifi_scan_result()
626 params->mfp = WIFI_MFP_OPTIONAL; in __wifi_args_to_params()
713 PR_ERROR("MFP not supported for security type %s\n", in __wifi_args_to_params()
717 params->mfp = atoi(state->optarg); in __wifi_args_to_params()
1149 PR("MFP: %s\n", wifi_mfp_txt(status.mfp)); in cmd_wifi_status()
1215 PR("MFP: %s\n", wifi_mfp_txt(status.mfp)); in cmd_wifi_ap_status()
3411 "-w --ieee-80211w=<MFP> (optional: needs security type to be specified)\n"
3654 "[-w, --ieee-80211w]: MFP (optional: needs security type to be specified)\n"
/Zephyr-latest/drivers/can/
Dcan_numaker.c104 /* Configure pinmux (NuMaker's SYS MFP) */ in can_numaker_init_unlocked()
/Zephyr-latest/drivers/wifi/nrf_wifi/src/
Dwifi_mgmt_scan.c348 res.mfp = drv_to_wifi_mgmt_mfp(r->mfp_flag); in nrf_wifi_event_proc_disp_scan_res_zep()
/Zephyr-latest/modules/hostap/src/
Dsupp_api.c1244 if (params->mfp) { in wpas_add_and_config_network()
1246 resp.network_id, params->mfp)) { in wpas_add_and_config_network()
1463 wpa_printf(MSG_ERROR, "Invalid mfp mapping %d", supp_mfp_option);
1544 status->mfp = get_mfp(ssid->ieee80211w);
2397 if (!hostapd_cli_cmd_v("set ieee80211w %d", params->mfp)) {
2533 status->mfp = get_mfp(bss->ieee80211w);
/Zephyr-latest/drivers/wifi/eswifi/
Deswifi_core.c527 status->mfp = WIFI_MFP_DISABLE; in eswifi_mgmt_iface_status()
/Zephyr-latest/drivers/i2c/
Di2c_numaker.c713 /* Configure pinmux (NuMaker's SYS MFP) */ in i2c_numaker_init()
/Zephyr-latest/drivers/counter/
Drtc_mcp7940n.c595 * not connected to the MC7940N MFP pin. It can also be used to check if an
/Zephyr-latest/drivers/wifi/esp32/src/
Desp_wifi_drv.c768 status->mfp = WIFI_MFP_DISABLE; in esp32_wifi_status()
/Zephyr-latest/drivers/wifi/esp_at/
Desp.c1048 status->mfp = WIFI_MFP_UNKNOWN; in esp_mgmt_iface_status()
/Zephyr-latest/drivers/usb/udc/
Dudc_numaker.c325 /* Configure pinmux (NuMaker's SYS MFP) */ in numaker_usbd_hw_setup()

12