forked from adafruit/circuitpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
97 changed files
with
8,189 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build-*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,253 @@ | ||
# This file is part of the MicroPython project, http://micropython.org/ | ||
# | ||
# The MIT License (MIT) | ||
# | ||
# Copyright (c) 2019 Dan Halbert for Adafruit Industries | ||
# Copyright (c) 2019 Artur Pacholec | ||
# | ||
# 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. | ||
|
||
# Select the board to build for. | ||
ifeq ($(BOARD),) | ||
$(error You must provide a BOARD parameter) | ||
else | ||
ifeq ($(wildcard boards/$(BOARD)/.),) | ||
$(error Invalid BOARD specified) | ||
endif | ||
endif | ||
|
||
# If the build directory is not given, make it reflect the board name. | ||
BUILD ?= build-$(BOARD) | ||
|
||
include ../../py/mkenv.mk | ||
# Board-specific | ||
include boards/$(BOARD)/mpconfigboard.mk | ||
# Port-specific | ||
include mpconfigport.mk | ||
# CircuitPython-specific | ||
include $(TOP)/py/circuitpy_mpconfig.mk | ||
|
||
# qstr definitions (must come before including py.mk) | ||
QSTR_DEFS = qstrdefsport.h | ||
|
||
# include py core make definitions | ||
include $(TOP)/py/py.mk | ||
|
||
include $(TOP)/supervisor/supervisor.mk | ||
|
||
# Include make rules and variables common across CircuitPython builds. | ||
include $(TOP)/py/circuitpy_defns.mk | ||
|
||
CROSS_COMPILE = arm-none-eabi- | ||
|
||
INC += \ | ||
-I. \ | ||
-I../.. \ | ||
-I../lib/mp-readline \ | ||
-I../lib/timeutils \ | ||
-I../../lib/tinyusb/src \ | ||
-I../../supervisor/shared/usb \ | ||
-I$(BUILD) \ | ||
-Iboards/ \ | ||
-Iboards/$(BOARD) \ | ||
-Iperipherals/ \ | ||
-Iperipherals/mimxrt10xx/ \ | ||
-Isdk/CMSIS/Include \ | ||
-Isdk/devices/$(CHIP_FAMILY) \ | ||
-Isdk/devices/$(CHIP_FAMILY)/drivers \ | ||
|
||
# NDEBUG disables assert() statements. This reduces code size pretty dramatically, per tannewt. | ||
|
||
CFLAGS += -Os -DNDEBUG | ||
|
||
# TinyUSB defines | ||
CFLAGS += -DCFG_TUSB_MCU=OPT_MCU_MIMXRT10XX -DCFG_TUD_MIDI_RX_BUFSIZE=128 -DCFG_TUD_CDC_RX_BUFSIZE=256 -DCFG_TUD_MIDI_TX_BUFSIZE=128 -DCFG_TUD_CDC_TX_BUFSIZE=256 -DCFG_TUD_MSC_BUFSIZE=1024 | ||
|
||
#Debugging/Optimization | ||
ifeq ($(DEBUG), 1) | ||
CFLAGS += -ggdb | ||
# You may want to disable -flto if it interferes with debugging. | ||
#CFLAGS += -flto -flto-partition=none | ||
# You may want to enable these flags to make setting breakpoints easier. | ||
CFLAGS += -fno-inline -fno-ipa-sra | ||
else | ||
# -finline-limit can shrink the image size. | ||
# -finline-limit=80 or so is similar to not having it on. | ||
# There is no simple default value, though. | ||
|
||
# Do a default shrink for small builds. | ||
ifndef CFLAGS_INLINE_LIMIT | ||
ifeq ($(CIRCUITPY_SMALL_BUILD),1) | ||
CFLAGS_INLINE_LIMIT = 50 | ||
endif | ||
endif | ||
|
||
ifdef CFLAGS_INLINE_LIMIT | ||
CFLAGS += -finline-limit=$(CFLAGS_INLINE_LIMIT) | ||
endif | ||
#CFLAGS += -flto -flto-partition=none | ||
endif | ||
|
||
CFLAGS += $(INC) -Wall -Wno-cast-align -std=gnu11 -nostdlib $(BASE_CFLAGS) $(CFLAGS_MOD) $(COPT) | ||
|
||
CFLAGS += \ | ||
-mthumb \ | ||
-mapcs \ | ||
-mcpu=cortex-m7 \ | ||
-mfloat-abi=hard \ | ||
-mfpu=fpv5-sp-d16 \ | ||
-DCPU_$(CHIP_VARIANT) \ | ||
-DDEBUG \ | ||
-DXIP_EXTERNAL_FLASH=1 \ | ||
-DXIP_BOOT_HEADER_ENABLE=1 \ | ||
-D__START=main \ | ||
-Os -g3 -Wno-unused-parameter \ | ||
-ffunction-sections -fdata-sections -fstack-usage \ | ||
-D__STARTUP_CLEAR_BSS | ||
|
||
LDFLAGS = $(CFLAGS) -nostartfiles -fshort-enums -Wl,-nostdlib -Wl,-T,$(LD_FILE) -Wl,-Map=$@.map -Wl,-cref -Wl,-gc-sections -specs=nano.specs | ||
LIBS := -lgcc -lc -lnosys -lm | ||
|
||
# Use toolchain libm if we're not using our own. | ||
ifndef INTERNAL_LIBM | ||
LIBS += -lm | ||
endif | ||
|
||
LDFLAGS += -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-sp-d16 -mthumb -mapcs | ||
BOOTLOADER_SIZE := 0x6000C000 | ||
|
||
SRC_SDK := \ | ||
drivers/fsl_adc.c \ | ||
drivers/fsl_cache.c \ | ||
drivers/fsl_clock.c \ | ||
drivers/fsl_common.c \ | ||
drivers/fsl_flexspi.c \ | ||
drivers/fsl_gpio.c \ | ||
drivers/fsl_lpi2c.c \ | ||
drivers/fsl_lpspi.c \ | ||
drivers/fsl_lpuart.c \ | ||
drivers/fsl_ocotp.c \ | ||
drivers/fsl_pwm.c \ | ||
drivers/fsl_snvs_hp.c \ | ||
drivers/fsl_tempmon.c \ | ||
drivers/fsl_trng.c \ | ||
system_$(CHIP_FAMILY).c \ | ||
|
||
SRC_SDK := $(addprefix sdk/devices/$(CHIP_FAMILY)/, $(SRC_SDK)) | ||
|
||
SRC_C = \ | ||
background.c \ | ||
boards/$(BOARD)/board.c \ | ||
boards/$(BOARD)/pins.c \ | ||
fatfs_port.c \ | ||
lib/mp-readline/readline.c \ | ||
lib/oofatfs/ff.c \ | ||
lib/oofatfs/option/ccsbcs.c \ | ||
lib/timeutils/timeutils.c \ | ||
lib/utils/buffer_helper.c \ | ||
lib/utils/context_manager_helpers.c \ | ||
lib/utils/interrupt_char.c \ | ||
lib/utils/pyexec.c \ | ||
lib/utils/stdout_helpers.c \ | ||
lib/utils/sys_stdio_mphal.c \ | ||
lib/tinyusb/src/portable/nxp/transdimension/dcd_transdimension.c \ | ||
mphalport.c \ | ||
peripherals/mimxrt10xx/$(CHIP_FAMILY)/clocks.c \ | ||
peripherals/mimxrt10xx/$(CHIP_FAMILY)/periph.c \ | ||
peripherals/mimxrt10xx/$(CHIP_FAMILY)/pins.c \ | ||
reset.c \ | ||
supervisor/flexspi_nor_flash_ops.c \ | ||
supervisor/shared/memory.c \ | ||
tick.c | ||
|
||
ifeq ($(CIRCUITPY_NETWORK),1) | ||
CFLAGS += -DMICROPY_PY_NETWORK=1 | ||
|
||
SRC_MOD += lib/netutils/netutils.c | ||
|
||
ifneq ($(MICROPY_PY_WIZNET5K),0) | ||
WIZNET5K_DIR=drivers/wiznet5k | ||
INC += -I$(TOP)/$(WIZNET5K_DIR) | ||
CFLAGS_MOD += -DMICROPY_PY_WIZNET5K=$(MICROPY_PY_WIZNET5K) -D_WIZCHIP_=$(MICROPY_PY_WIZNET5K) | ||
SRC_MOD += $(addprefix $(WIZNET5K_DIR)/,\ | ||
ethernet/w$(MICROPY_PY_WIZNET5K)/w$(MICROPY_PY_WIZNET5K).c \ | ||
ethernet/wizchip_conf.c \ | ||
ethernet/socket.c \ | ||
internet/dns/dns.c \ | ||
internet/dhcp/dhcp.c \ | ||
) | ||
|
||
endif # MICROPY_PY_WIZNET5K | ||
endif # CIRCUITPY_NETWORK | ||
|
||
ifeq ($(CIRCUITPY_NETWORK),1) | ||
ifneq ($(MICROPY_PY_WIZNET5K),0) | ||
SRC_SHARED_MODULE += wiznet/__init__.c wiznet/wiznet5k.c | ||
endif | ||
endif | ||
|
||
# TODO | ||
#ifeq ($(CIRCUITPY_AUDIOBUSIO),1) | ||
#SRC_C += peripherals/samd/i2s.c peripherals/samd/$(CHIP_FAMILY)/i2s.c | ||
#endif | ||
# | ||
SRC_COMMON_HAL_EXPANDED = $(addprefix shared-bindings/, $(SRC_COMMON_HAL)) \ | ||
$(addprefix shared-bindings/, $(SRC_BINDINGS_ENUMS)) \ | ||
$(addprefix common-hal/, $(SRC_COMMON_HAL)) | ||
|
||
SRC_SHARED_MODULE_EXPANDED = $(addprefix shared-bindings/, $(SRC_SHARED_MODULE)) \ | ||
$(addprefix shared-module/, $(SRC_SHARED_MODULE)) \ | ||
$(addprefix shared-module/, $(SRC_SHARED_MODULE_INTERNAL)) | ||
|
||
SRC_S = \ | ||
sdk/devices/$(CHIP_FAMILY)/gcc/startup_$(CHIP_FAMILY).S \ | ||
supervisor/cpu.S | ||
|
||
OBJ = $(PY_O) $(SUPERVISOR_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o)) | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_SDK:.c=.o)) | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_COMMON_HAL_EXPANDED:.c=.o)) | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_SHARED_MODULE_EXPANDED:.c=.o)) | ||
ifeq ($(INTERNAL_LIBM),1) | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_LIBM:.c=.o)) | ||
endif | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_S:.S=.o)) | ||
OBJ += $(addprefix $(BUILD)/, $(SRC_MOD:.c=.o)) | ||
|
||
SRC_QSTR += $(SRC_C) $(SRC_SUPERVISOR) $(SRC_COMMON_HAL_EXPANDED) $(SRC_SHARED_MODULE_EXPANDED) | ||
|
||
all: $(BUILD)/firmware.bin $(BUILD)/firmware.uf2 | ||
|
||
$(BUILD)/firmware.elf: $(LD_FILE) $(OBJ) | ||
$(STEPECHO) "LINK $@" | ||
$(Q)$(CC) -o $@ $(LDFLAGS) $(filter-out $<,$^) -Wl,--start-group $(LIBS) -Wl,--end-group | ||
|
||
$(BUILD)/firmware.bin: $(BUILD)/firmware.elf | ||
$(STEPECHO) "Create $@" | ||
$(Q)$(OBJCOPY) -O binary -j .interrupts -j .text -j .ARM.exidx -j .data $^ $@ | ||
|
||
$(BUILD)/firmware.uf2: $(BUILD)/firmware.bin | ||
$(STEPECHO) "Create $@" | ||
$(Q)$(PYTHON3) $(TOP)/tools/uf2/utils/uf2conv.py -b $(BOOTLOADER_SIZE) -f MIMXRT10XX -c -o $@ $^ | ||
|
||
include $(TOP)/py/mkrules.mk | ||
|
||
# Print out the value of a make variable. | ||
# https://stackoverflow.com/questions/16467718/how-to-print-out-a-variable-in-makefile | ||
print-%: | ||
@echo $* = $($*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# CircuitPython Port To The NXP i.MX RT10xx Series | ||
|
||
This is a port of CircuitPython to the i.MX RT10xx series of chips. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* This file is part of the MicroPython project, http://micropython.org/ | ||
* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2017 Scott Shawcroft for Adafruit Industries | ||
* Copyright (c) 2019 Artur Pacholec | ||
* | ||
* 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. | ||
*/ | ||
#include "background.h" | ||
|
||
//#include "audio_dma.h" | ||
#include "tick.h" | ||
#include "supervisor/filesystem.h" | ||
#include "supervisor/shared/tick.h" | ||
#include "supervisor/usb.h" | ||
|
||
#include "py/runtime.h" | ||
#include "shared-module/network/__init__.h" | ||
#include "supervisor/shared/stack.h" | ||
|
||
// TODO | ||
#ifdef CIRCUITPY_DISPLAYIO | ||
//#include "shared-module/displayio/__init__.h" | ||
#endif | ||
|
||
volatile uint64_t last_finished_tick = 0; | ||
|
||
bool stack_ok_so_far = true; | ||
|
||
static bool running_background_tasks = false; | ||
|
||
void background_tasks_reset(void) { | ||
running_background_tasks = false; | ||
} | ||
|
||
void run_background_tasks(void) { | ||
// Don't call ourselves recursively. | ||
if (running_background_tasks) { | ||
return; | ||
} | ||
assert_heap_ok(); | ||
running_background_tasks = true; | ||
|
||
#if CIRCUITPY_AUDIOIO || CIRCUITPY_AUDIOBUSIO | ||
audio_dma_background(); | ||
#endif | ||
#if CIRCUITPY_DISPLAYIO | ||
displayio_background(); | ||
#endif | ||
|
||
#if CIRCUITPY_NETWORK | ||
network_module_background(); | ||
#endif | ||
filesystem_background(); | ||
usb_background(); | ||
running_background_tasks = false; | ||
assert_heap_ok(); | ||
|
||
last_finished_tick = supervisor_ticks_ms64(); | ||
} | ||
|
||
bool background_tasks_ok(void) { | ||
return supervisor_ticks_ms64() - last_finished_tick < 1000; | ||
} |
Oops, something went wrong.