/Zephyr-latest/include/zephyr/dt-bindings/pinctrl/ |
D | numaker-m46x-pinctrl.h | 178 /* 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 …]
|
D | numicro-pinctrl.h | 22 * - 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/ |
D | pinctrl_numicro.c | 26 #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()
|
D | pinctrl_numaker.c | 13 #define MFP_BASE DT_INST_REG_ADDR_BY_NAME(0, mfp)
|
/Zephyr-latest/samples/drivers/counter/alarm/boards/ |
D | bl5340_dvk_nrf5340_cpuapp.overlay | 8 /* Connect MCP7940N MFP pin TP9 to P0.04 */
|
/Zephyr-latest/dts/bindings/rtc/ |
D | microchip,mcp7940n.yaml | 21 Host input connected to the MCP7940N MFP open drain output pin
|
/Zephyr-latest/subsys/bluetooth/controller/util/ |
D | mayfly.c | 29 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/ |
D | main.c | 50 "(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/ |
D | wifi.h | 196 /** 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);
|
D | wifi_mgmt.h | 508 /** 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/ |
D | m48x.dtsi | 44 reg-names = "mfp", "mfos";
|
D | m2l31x.dtsi | 163 reg-names = "mfos", "mfp";
|
D | m46x.dtsi | 191 reg-names = "mfos", "mfp";
|
/Zephyr-latest/drivers/wifi/nxp/ |
D | nxp_wifi_drv.c | 492 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/ |
D | wifi_mgmt.c | 102 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()
|
D | wifi_shell.c | 195 "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/ |
D | can_numaker.c | 104 /* Configure pinmux (NuMaker's SYS MFP) */ in can_numaker_init_unlocked()
|
/Zephyr-latest/drivers/wifi/nrf_wifi/src/ |
D | wifi_mgmt_scan.c | 348 res.mfp = drv_to_wifi_mgmt_mfp(r->mfp_flag); in nrf_wifi_event_proc_disp_scan_res_zep()
|
/Zephyr-latest/modules/hostap/src/ |
D | supp_api.c | 1244 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/ |
D | eswifi_core.c | 527 status->mfp = WIFI_MFP_DISABLE; in eswifi_mgmt_iface_status()
|
/Zephyr-latest/drivers/i2c/ |
D | i2c_numaker.c | 713 /* Configure pinmux (NuMaker's SYS MFP) */ in i2c_numaker_init()
|
/Zephyr-latest/drivers/counter/ |
D | rtc_mcp7940n.c | 595 * not connected to the MC7940N MFP pin. It can also be used to check if an
|
/Zephyr-latest/drivers/wifi/esp32/src/ |
D | esp_wifi_drv.c | 768 status->mfp = WIFI_MFP_DISABLE; in esp32_wifi_status()
|
/Zephyr-latest/drivers/wifi/esp_at/ |
D | esp.c | 1048 status->mfp = WIFI_MFP_UNKNOWN; in esp_mgmt_iface_status()
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_numaker.c | 325 /* Configure pinmux (NuMaker's SYS MFP) */ in numaker_usbd_hw_setup()
|