/* * This file is part of the MicroPython project, http://micropython.org/ * * The MIT License (MIT) * * Copyright (c) 2022 Damien P. George * Copyright (c) 2022 Jim Mussared * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #ifndef MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H #define MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H // The board-level config will be included here, so it can set some CYW43 values. #include "py/mpconfig.h" #include "py/mperrno.h" #include "py/mphal.h" #include "extmod/modnetwork.h" #include "pendsv.h" #include "sdio.h" #define CYW43_USE_SPI (0) #define CYW43_LWIP (1) #define CYW43_USE_STATS (0) #ifndef CYW43_CHIPSET_FIRMWARE_INCLUDE_FILE #define CYW43_CHIPSET_FIRMWARE_INCLUDE_FILE "lib/cyw43-driver/firmware/w4343WA1_7_45_98_50_combined.h" #endif #ifndef CYW43_WIFI_NVRAM_INCLUDE_FILE #define CYW43_WIFI_NVRAM_INCLUDE_FILE "lib/cyw43-driver/firmware/wifi_nvram_1dx.h" #endif #define CYW43_IOCTL_TIMEOUT_US (1000000) #define CYW43_SLEEP_MAX (50) #define CYW43_NETUTILS (1) #define CYW43_CLEAR_SDIO_INT (1) #define CYW43_EPERM MP_EPERM // Operation not permitted #define CYW43_EIO MP_EIO // I/O error #define CYW43_EINVAL MP_EINVAL // Invalid argument #define CYW43_ETIMEDOUT MP_ETIMEDOUT // Connection timed out #define CYW43_THREAD_ENTER MICROPY_PY_LWIP_ENTER #define CYW43_THREAD_EXIT MICROPY_PY_LWIP_EXIT #define CYW43_THREAD_LOCK_CHECK #define CYW43_HOST_NAME mod_network_hostname_data #define CYW43_SDPCM_SEND_COMMON_WAIT __WFI(); #define CYW43_DO_IOCTL_WAIT __WFI(); #define CYW43_ARRAY_SIZE(a) MP_ARRAY_SIZE(a) #define CYW43_HAL_PIN_MODE_INPUT MP_HAL_PIN_MODE_INPUT #define CYW43_HAL_PIN_MODE_OUTPUT MP_HAL_PIN_MODE_OUTPUT #define CYW43_HAL_PIN_PULL_NONE MP_HAL_PIN_PULL_NONE #define CYW43_HAL_PIN_PULL_UP MP_HAL_PIN_PULL_UP #define CYW43_HAL_PIN_PULL_DOWN MP_HAL_PIN_PULL_DOWN #define CYW43_HAL_MAC_WLAN0 MP_HAL_MAC_WLAN0 #define cyw43_hal_ticks_us mp_hal_ticks_us #define cyw43_hal_ticks_ms mp_hal_ticks_ms #define cyw43_hal_pin_obj_t mp_hal_pin_obj_t #define cyw43_hal_pin_read mp_hal_pin_read #define cyw43_hal_pin_low mp_hal_pin_low #define cyw43_hal_pin_high mp_hal_pin_high #define cyw43_hal_get_mac mp_hal_get_mac #define cyw43_hal_get_mac_ascii mp_hal_get_mac_ascii #define cyw43_hal_generate_laa_mac mp_hal_generate_laa_mac #define cyw43_delay_us mp_hal_delay_us #define cyw43_delay_ms mp_hal_delay_ms #define CYW43_PIN_WL_REG_ON MICROPY_HW_WL_REG_ON #define CYW43_PIN_WL_HOST_WAKE MICROPY_HW_WL_HOST_WAKE #define CYW43_PIN_WL_SDIO_1 MICROPY_HW_SDIO_D1 #define CYW43_PIN_BT_REG_ON MICROPY_HW_BT_REG_ON #ifdef MICROPY_HW_BT_HOST_WAKE #define CYW43_PIN_BT_HOST_WAKE MICROPY_HW_BT_HOST_WAKE #endif #ifdef MICROPY_HW_BT_DEV_WAKE #define CYW43_PIN_BT_DEV_WAKE MICROPY_HW_BT_DEV_WAKE #endif #ifdef MICROPY_HW_BT_CTS #define CYW43_PIN_BT_CTS MICROPY_HW_BT_CTS #endif #if MICROPY_HW_ENABLE_RF_SWITCH #define CYW43_PIN_WL_RFSW_VDD pin_WL_RFSW_VDD #endif #define cyw43_schedule_internal_poll_dispatch(func) pendsv_schedule_dispatch(PENDSV_DISPATCH_CYW43, func) static inline void cyw43_hal_pin_config(cyw43_hal_pin_obj_t pin, uint8_t mode, uint8_t pull, uint8_t alt) { machine_pin_set_mode(pin, mode); } static inline void cyw43_hal_pin_config_irq_falling(cyw43_hal_pin_obj_t pin, int enable) { if (enable) { machine_pin_config(pin, PIN_MODE_IT_FALLING, PIN_PULL_UP_100K, 0, 0, PIN_AF_MODE_ALT5); } } static inline void cyw43_sdio_init(void) { sdio_init(NVIC_EncodePriority(NVIC_PRIORITYGROUP_4, 14, 0)); } static inline void cyw43_sdio_reinit(void) { sdio_reenable(); } static inline void cyw43_sdio_deinit(void) { sdio_deinit(); } static inline void cyw43_sdio_set_irq(bool enable) { sdio_enable_irq(enable); } static inline void cyw43_sdio_enable_high_speed_4bit(void) { sdio_enable_high_speed_4bit(); } static inline int cyw43_sdio_transfer(uint32_t cmd, uint32_t arg, uint32_t *resp) { return sdio_transfer(cmd, arg, resp); } static inline int cyw43_sdio_transfer_cmd53(bool write, uint32_t block_size, uint32_t arg, size_t len, uint8_t *buf) { return sdio_transfer_cmd53(write, block_size, arg, len, buf); } #define CYW43_EVENT_POLL_HOOK MICROPY_EVENT_POLL_HOOK #endif // MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H