├── .github.old └── workflows │ └── regression-tests.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── applications └── MobileNetV1 │ ├── DORY_network │ ├── ConvBNRelu0_weights.hex │ ├── ConvBNRelu10_weights.hex │ ├── ConvBNRelu12_weights.hex │ ├── ConvBNRelu14_weights.hex │ ├── ConvBNRelu16_weights.hex │ ├── ConvBNRelu18_weights.hex │ ├── ConvBNRelu20_weights.hex │ ├── ConvBNRelu22_weights.hex │ ├── ConvBNRelu24_weights.hex │ ├── ConvBNRelu26_weights.hex │ ├── ConvBNRelu2_weights.hex │ ├── ConvBNRelu4_weights.hex │ ├── ConvBNRelu6_weights.hex │ ├── ConvBNRelu8_weights.hex │ ├── ConvDWBNRelu11_weights.hex │ ├── ConvDWBNRelu13_weights.hex │ ├── ConvDWBNRelu15_weights.hex │ ├── ConvDWBNRelu17_weights.hex │ ├── ConvDWBNRelu19_weights.hex │ ├── ConvDWBNRelu1_weights.hex │ ├── ConvDWBNRelu21_weights.hex │ ├── ConvDWBNRelu23_weights.hex │ ├── ConvDWBNRelu25_weights.hex │ ├── ConvDWBNRelu3_weights.hex │ ├── ConvDWBNRelu5_weights.hex │ ├── ConvDWBNRelu7_weights.hex │ ├── ConvDWBNRelu9_weights.hex │ ├── Gemm28_weights.hex │ ├── inc │ │ ├── dory.h │ │ ├── layerAveragePoolRelu27.h │ │ ├── layerConvBNRelu0.h │ │ ├── layerConvBNRelu10.h │ │ ├── layerConvBNRelu12.h │ │ ├── layerConvBNRelu14.h │ │ ├── layerConvBNRelu14L3.h │ │ ├── layerConvBNRelu2.h │ │ ├── layerConvBNRelu24.h │ │ ├── layerConvBNRelu24L3.h │ │ ├── layerConvBNRelu26.h │ │ ├── layerConvBNRelu26L3.h │ │ ├── layerConvBNRelu2L3.h │ │ ├── layerConvBNRelu4.h │ │ ├── layerConvBNRelu6.h │ │ ├── layerConvBNRelu8.h │ │ ├── layerConvDWBNRelu1.h │ │ ├── layerConvDWBNRelu11.h │ │ ├── layerConvDWBNRelu13.h │ │ ├── layerConvDWBNRelu23.h │ │ ├── layerConvDWBNRelu25.h │ │ ├── layerConvDWBNRelu3.h │ │ ├── layerConvDWBNRelu3L3.h │ │ ├── layerConvDWBNRelu3_p_b.h │ │ ├── layerConvDWBNRelu3_p_t.h │ │ ├── layerConvDWBNRelu5.h │ │ ├── layerConvDWBNRelu7.h │ │ ├── layerConvDWBNRelu9.h │ │ ├── layerGemm28_last.h │ │ ├── layerGemm28_lastL3.h │ │ ├── mchan_test.h │ │ ├── mem_controller.h │ │ ├── network.h │ │ ├── pulp_nn_kernels.h │ │ └── pulp_nn_utils.h │ ├── inputs.hex │ └── src │ │ ├── dory.c │ │ ├── layerAveragePoolRelu27.c │ │ ├── layerConvBNRelu0.c │ │ ├── layerConvBNRelu10.c │ │ ├── layerConvBNRelu12.c │ │ ├── layerConvBNRelu14.c │ │ ├── layerConvBNRelu14L3.c │ │ ├── layerConvBNRelu2.c │ │ ├── layerConvBNRelu24.c │ │ ├── layerConvBNRelu24L3.c │ │ ├── layerConvBNRelu26.c │ │ ├── layerConvBNRelu26L3.c │ │ ├── layerConvBNRelu2L3.c │ │ ├── layerConvBNRelu4.c │ │ ├── layerConvBNRelu6.c │ │ ├── layerConvBNRelu8.c │ │ ├── layerConvDWBNRelu1.c │ │ ├── layerConvDWBNRelu11.c │ │ ├── layerConvDWBNRelu13.c │ │ ├── layerConvDWBNRelu23.c │ │ ├── layerConvDWBNRelu25.c │ │ ├── layerConvDWBNRelu3.c │ │ ├── layerConvDWBNRelu3L3.c │ │ ├── layerConvDWBNRelu3_p_b.c │ │ ├── layerConvDWBNRelu3_p_t.c │ │ ├── layerConvDWBNRelu5.c │ │ ├── layerConvDWBNRelu7.c │ │ ├── layerConvDWBNRelu9.c │ │ ├── layerGemm28_last.c │ │ ├── layerGemm28_lastL3.c │ │ ├── mem_controller.c │ │ ├── network.c │ │ ├── pulp_nn_add.c │ │ ├── pulp_nn_avgpool.c │ │ ├── pulp_nn_conv_Co_parallel.c │ │ ├── pulp_nn_conv_HoWo_parallel.c │ │ ├── pulp_nn_conv_Ho_parallel.c │ │ ├── pulp_nn_depthwise_3x3_s1.c │ │ ├── pulp_nn_depthwise_generic.c │ │ ├── pulp_nn_linear.c │ │ ├── pulp_nn_linear_out_32.c │ │ ├── pulp_nn_matmul.c │ │ ├── pulp_nn_maxpool.c │ │ ├── pulp_nn_pointwise_Co_parallel.c │ │ ├── pulp_nn_pointwise_HoWo_parallel.c │ │ ├── pulp_nn_pointwise_Ho_parallel.c │ │ ├── pulp_nn_utils.c │ │ └── test_template.c │ └── Makefile ├── bin ├── plp_flash_stimuli.py ├── plp_mkflash ├── slm_hyper.py └── stim_utils.py ├── configs ├── common.sh ├── pulp-open-nn.sh ├── pulp-open-rnnext.sh ├── pulp-open.sh └── siracusa.sh ├── rtos ├── pmsis │ ├── pmsis_api │ │ ├── LICENSE │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── chips.rst │ │ │ ├── conf.py │ │ │ ├── dox.mk │ │ │ ├── drivers.rst │ │ │ ├── headers │ │ │ │ └── groups.h │ │ │ ├── index.rst │ │ │ ├── mainpage.md │ │ │ ├── make.bat │ │ │ ├── pmsis.dxy.in │ │ │ ├── requirements.txt │ │ │ └── rtos.rst │ │ ├── include │ │ │ └── pmsis │ │ │ │ ├── chips │ │ │ │ ├── default.h │ │ │ │ ├── gap8 │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── pad.h │ │ │ │ │ ├── perf.h │ │ │ │ │ └── pmu.h │ │ │ │ └── vega │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── pad.h │ │ │ │ │ └── perf.h │ │ │ │ ├── cluster │ │ │ │ ├── cl_malloc.h │ │ │ │ ├── cl_pmsis_api.h │ │ │ │ ├── cl_pmsis_types.h │ │ │ │ ├── cluster_sync │ │ │ │ │ ├── cl_synchronisation.h │ │ │ │ │ ├── cl_to_fc_delegate.h │ │ │ │ │ └── fc_to_cl_delegate.h │ │ │ │ ├── cluster_team │ │ │ │ │ └── cl_team.h │ │ │ │ └── dma │ │ │ │ │ ├── cl_dma.h │ │ │ │ │ └── cl_dma_decompressor.h │ │ │ │ ├── device.h │ │ │ │ ├── drivers │ │ │ │ ├── aes.h │ │ │ │ ├── asrc.h │ │ │ │ ├── cpi.h │ │ │ │ ├── dmacpy.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hyperbus.h │ │ │ │ ├── i2c.h │ │ │ │ ├── i2c_slave.h │ │ │ │ ├── i2s.h │ │ │ │ ├── octospi.h │ │ │ │ ├── pad.h │ │ │ │ ├── perf.h │ │ │ │ ├── pmu.h │ │ │ │ ├── pwm.h │ │ │ │ ├── rtc.h │ │ │ │ ├── spi.h │ │ │ │ └── uart.h │ │ │ │ ├── errno.h │ │ │ │ ├── mem_slab.h │ │ │ │ ├── pmsis_types.h │ │ │ │ ├── rtos │ │ │ │ ├── assert.h │ │ │ │ ├── event_kernel │ │ │ │ │ └── event_kernel.h │ │ │ │ ├── malloc │ │ │ │ │ ├── cl_l1_malloc.h │ │ │ │ │ ├── fc_l1_malloc.h │ │ │ │ │ ├── l2_malloc.h │ │ │ │ │ ├── malloc_internal.h │ │ │ │ │ └── pi_malloc.h │ │ │ │ ├── os_frontend_api │ │ │ │ │ ├── freq.h │ │ │ │ │ ├── os.h │ │ │ │ │ └── pmsis_time.h │ │ │ │ ├── pi_log.h │ │ │ │ ├── pulpos.h │ │ │ │ └── rtos.h │ │ │ │ └── task.h │ │ ├── jenkins │ │ │ └── sdk.mk │ │ └── tools │ │ │ └── export.mk │ └── pmsis_bsp │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── ble │ │ ├── ble.c │ │ └── nina_b112 │ │ │ ├── nina_b112.c │ │ │ ├── nina_b112_defines.h │ │ │ └── nina_b112_old.c │ │ ├── bootloader │ │ └── bootloader_utility.c │ │ ├── bsp │ │ ├── ai_deck.c │ │ ├── gapoc_a.c │ │ ├── gapoc_b.c │ │ ├── gapoc_b_v2.c │ │ ├── gapuino.c │ │ ├── pulp.c │ │ ├── siracusa.c │ │ ├── vega.c │ │ └── wolfe.c │ │ ├── camera │ │ ├── camera.c │ │ ├── gc0308 │ │ │ ├── gc0308.c │ │ │ └── gc0308.h │ │ ├── himax │ │ │ ├── himax.c │ │ │ └── himax.h │ │ ├── mt9v034 │ │ │ ├── mt9v034.c │ │ │ └── mt9v034.h │ │ ├── ov5640 │ │ │ ├── ov5640.c │ │ │ └── ov5640.h │ │ ├── ov7670 │ │ │ ├── ov7670.c │ │ │ └── ov7670.h │ │ ├── pixart │ │ │ ├── pixart.c │ │ │ └── pixart.h │ │ └── thermeye │ │ │ ├── thermeye.c │ │ │ └── thermeye_defines.h │ │ ├── crc │ │ └── md5.c │ │ ├── display │ │ ├── display.c │ │ └── ili9341 │ │ │ ├── ili9341.c │ │ │ └── ili9341.h │ │ ├── docs │ │ ├── Makefile │ │ ├── ble.rst │ │ ├── camera.rst │ │ ├── conf.py │ │ ├── display.rst │ │ ├── dox.mk │ │ ├── flash.rst │ │ ├── fs.rst │ │ ├── headers │ │ │ └── groups.h │ │ ├── index.rst │ │ ├── mainpage.md │ │ ├── make.bat │ │ ├── pmsis.dxy.in │ │ ├── ram.rst │ │ └── requirements.txt │ │ ├── eeprom │ │ ├── 24XX1025.c │ │ └── virtual_eeprom.c │ │ ├── flash │ │ ├── flash.c │ │ ├── hyperflash │ │ │ └── hyperflash.c │ │ ├── mram │ │ │ └── mram-v2.c │ │ └── spiflash │ │ │ ├── atxp032.c │ │ │ └── spiflash.c │ │ ├── fs │ │ ├── fs.c │ │ ├── host_fs │ │ │ ├── host_fs.c │ │ │ ├── semihost.c │ │ │ └── semihost.h │ │ ├── lfs │ │ │ ├── lfs.c │ │ │ ├── lfs_util.c │ │ │ ├── lfs_util.h │ │ │ └── pi_lfs.c │ │ └── read_fs │ │ │ └── read_fs.c │ │ ├── include │ │ └── bsp │ │ │ ├── ai_deck.h │ │ │ ├── ble.h │ │ │ ├── ble │ │ │ ├── nina_b112.h │ │ │ └── nina_b112 │ │ │ │ └── nina_b112_old.h │ │ │ ├── bootloader_utility.h │ │ │ ├── bsp.h │ │ │ ├── buffer.h │ │ │ ├── camera.h │ │ │ ├── camera │ │ │ ├── gc0308.h │ │ │ ├── himax.h │ │ │ ├── mt9v034.h │ │ │ ├── ov5640.h │ │ │ ├── ov7670.h │ │ │ ├── pixart.h │ │ │ └── thermeye.h │ │ │ ├── crc │ │ │ └── md5.h │ │ │ ├── debug.h │ │ │ ├── display.h │ │ │ ├── display │ │ │ └── ili9341.h │ │ │ ├── eeprom.h │ │ │ ├── eeprom │ │ │ ├── 24xx1025.h │ │ │ └── virtual_eeprom.h │ │ │ ├── eeprom_slave.h │ │ │ ├── flash.h │ │ │ ├── flash │ │ │ ├── atxp032.h │ │ │ ├── hyperflash.h │ │ │ ├── mram.h │ │ │ └── spiflash.h │ │ │ ├── flash_partition.h │ │ │ ├── fs.h │ │ │ ├── fs │ │ │ ├── LICENSE_LFS.md │ │ │ ├── hostfs.h │ │ │ ├── lfs.h │ │ │ ├── pi_lfs.h │ │ │ └── readfs.h │ │ │ ├── gapoc_a.h │ │ │ ├── gapoc_b.h │ │ │ ├── gapoc_b_v2.h │ │ │ ├── gapuino.h │ │ │ ├── ota.h │ │ │ ├── ota_utility.h │ │ │ ├── partition.h │ │ │ ├── pulp.h │ │ │ ├── ram.h │ │ │ ├── ram │ │ │ ├── aps25xxxn.h │ │ │ ├── hyperram.h │ │ │ └── spiram.h │ │ │ ├── siracusa.h │ │ │ ├── transport.h │ │ │ ├── transport │ │ │ └── nina_w10.h │ │ │ ├── updater.h │ │ │ ├── vega.h │ │ │ └── wolfe.h │ │ ├── jenkins │ │ └── sdk.mk │ │ ├── ota │ │ ├── ota.c │ │ ├── ota_utility.c │ │ └── updater.c │ │ ├── partition │ │ ├── flash_partition.c │ │ └── partition.c │ │ ├── ram │ │ ├── alloc_extern.c │ │ ├── extern_alloc.h │ │ ├── hyperram │ │ │ └── hyperram.c │ │ ├── ram.c │ │ └── spiram │ │ │ ├── aps25xxxn.c │ │ │ └── spiram.c │ │ ├── rules │ │ ├── freertos_bsp_rules.mk │ │ ├── gap_sdk.mk │ │ ├── pulp_sdk.mk │ │ ├── pulpos.mk │ │ └── pulpos │ │ │ ├── rules.mk │ │ │ └── src.mk │ │ ├── src.mk │ │ ├── transport │ │ ├── nina_w10 │ │ │ ├── firmware │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── main │ │ │ │ │ ├── component.mk │ │ │ │ │ └── nina_w10_fw.c │ │ │ └── nina_w10.c │ │ └── transport.c │ │ └── zephyr │ │ └── CMakeLists.txt └── pulpos │ ├── common │ ├── Makefile │ ├── bin │ │ └── pos-size │ ├── include │ │ ├── pmsis.h │ │ └── pos │ │ │ ├── data │ │ │ ├── alloc.h │ │ │ ├── cluster.h │ │ │ ├── data.h │ │ │ ├── kernel.h │ │ │ ├── lock.h │ │ │ ├── sched.h │ │ │ └── soc_event.h │ │ │ └── implem │ │ │ ├── alloc.h │ │ │ ├── alloc_pool.h │ │ │ ├── cluster.h │ │ │ ├── dma.h │ │ │ ├── freq.h │ │ │ ├── implem.h │ │ │ ├── irq.h │ │ │ ├── kernel.h │ │ │ ├── link.h │ │ │ ├── lock.h │ │ │ ├── pe.h │ │ │ ├── perf.h │ │ │ ├── soc_event.h │ │ │ ├── task.h │ │ │ └── trace.h │ ├── kernel │ │ ├── alloc.c │ │ ├── alloc_pool.c │ │ ├── crt0.S │ │ ├── device.c │ │ ├── fll-v1.c │ │ ├── freq-domains.c │ │ ├── init.c │ │ ├── irq.c │ │ ├── irq_asm.S │ │ ├── kernel.c │ │ ├── log.c │ │ ├── soc_event.c │ │ ├── soc_event_eu.S │ │ ├── soc_event_v2_itc.S │ │ ├── task.c │ │ ├── task_asm.S │ │ ├── time.c │ │ └── time_asm.S │ ├── lib │ │ ├── libc │ │ │ └── minimal │ │ │ │ ├── fprintf.c │ │ │ │ ├── include │ │ │ │ ├── ctype.h │ │ │ │ ├── io.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ └── string.h │ │ │ │ ├── io.c │ │ │ │ ├── prf.c │ │ │ │ ├── semihost.c │ │ │ │ ├── semihost.h │ │ │ │ └── sprintf.c │ │ └── omp │ │ │ ├── include │ │ │ └── omp.h │ │ │ ├── omp.c │ │ │ ├── ompRt.h │ │ │ └── omp_wrapper_gcc.c │ └── rules │ │ ├── pulpos.mk │ │ └── pulpos │ │ ├── configs │ │ └── default.mk │ │ ├── default_rules.mk │ │ └── src.mk │ ├── pulp │ ├── drivers │ │ ├── cluster │ │ │ ├── cluster.c │ │ │ └── pe-eu-v3.S │ │ ├── hyperbus │ │ │ └── hyperbus-v3.c │ │ ├── siracusa_padmux │ │ │ ├── include │ │ │ │ ├── siracusa_padctrl.h │ │ │ │ ├── siracusa_pads_debug_regs.h │ │ │ │ └── siracusa_pads_functional_regs.h │ │ │ ├── siracusa_pads_debug_regs.hjson │ │ │ ├── siracusa_pads_functional_regs.hjson │ │ │ └── src │ │ │ │ └── siracusa_padctrl.c │ │ ├── uart │ │ │ └── uart-v1.c │ │ └── udma │ │ │ └── udma-v3.c │ ├── include │ │ └── pos │ │ │ ├── chips │ │ │ ├── pulp │ │ │ │ ├── config.h │ │ │ │ └── soc.h │ │ │ └── siracusa │ │ │ │ ├── config.h │ │ │ │ └── soc.h │ │ │ ├── data │ │ │ ├── hyperbus.h │ │ │ ├── spim.h │ │ │ ├── uart.h │ │ │ └── udma-v3.h │ │ │ └── implem │ │ │ └── udma-v3.h │ ├── kernel │ │ └── chips │ │ │ ├── pulp │ │ │ ├── link.ld │ │ │ └── soc.c │ │ │ └── siracusa │ │ │ ├── link.ld │ │ │ ├── pll.c │ │ │ └── soc.c │ └── rules │ │ └── pulpos │ │ └── targets │ │ ├── pulp.mk │ │ ├── pulp_nn.mk │ │ └── siracusa.mk │ ├── pulp_archi │ ├── LICENSE │ ├── Makefile │ ├── SConstruct │ ├── arch │ │ └── pulp │ │ │ ├── APB_SOC_CTRL_reference.md │ │ │ ├── APB_SOC_CTRL_reference.md.html │ │ │ ├── CLUSTER_CRTL_UNIT_reference.md │ │ │ └── CLUSTER_ICACHE_CTRL_reference.md │ ├── doc │ │ ├── APB_GPIO_reference.xlsx │ │ ├── CL_EVENT_UNIT_reference.xlsx │ │ ├── FC_EVENT_UNIT_reference.xlsx │ │ ├── HYPER_V2_reference.xlsx │ │ ├── PULPISSIMO_APB_SOC_CTRL_reference.xlsx │ │ ├── RTC_UNIT_reference.xlsx │ │ ├── TIMER_UNIT_reference.xlsx │ │ ├── WOLFE_APB_SOC_CTRL_reference.xlsx │ │ ├── gap │ │ │ └── APB_SOC_CTRL_reference.xlsx │ │ ├── gpio │ │ │ └── APB_GPIO_V3_reference.xlsx │ │ ├── hwce │ │ │ ├── HWCE_v4_reference.xlsx │ │ │ └── HWCE_v5_reference.xlsx │ │ ├── mchan │ │ │ └── CL_DMA_v7_reference.xlsx │ │ ├── pwm │ │ │ └── pwm_v1.xlsx │ │ ├── udma │ │ │ ├── CAM_CPI_V1_reference.xlsx │ │ │ ├── MEMCPY_v1_reference.xlsx │ │ │ ├── MRAM_reference.xlsx │ │ │ └── i2s │ │ │ │ ├── I2S_V1_reference.xlsx │ │ │ │ ├── I2S_V2_reference.xlsx │ │ │ │ └── I2S_V3_reference.xlsx │ │ └── vega │ │ │ └── APB_SOC_CTRL_reference.xlsx │ └── include │ │ └── archi │ │ ├── chips │ │ ├── arnold │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── bigpulp │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── devchip │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── fulmine │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── gap │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── padframe.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── gap8 │ │ ├── honey │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── padframe.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── multino │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── neuraghe │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── oprecompkw │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── pulp │ │ │ ├── apb_soc.h │ │ │ ├── apb_soc_ctrl.h │ │ │ ├── apb_soc_ctrl │ │ │ │ ├── apb_soc_ctrl.h │ │ │ │ ├── apb_soc_ctrl_accessors.h │ │ │ │ ├── apb_soc_ctrl_cmd.h │ │ │ │ ├── apb_soc_ctrl_constants.h │ │ │ │ ├── apb_soc_ctrl_groups.h │ │ │ │ ├── apb_soc_ctrl_gvsoc.h │ │ │ │ ├── apb_soc_ctrl_macros.h │ │ │ │ ├── apb_soc_ctrl_regfields.h │ │ │ │ ├── apb_soc_ctrl_regfields_accessors.h │ │ │ │ ├── apb_soc_ctrl_regmap.h │ │ │ │ ├── apb_soc_ctrl_regs.h │ │ │ │ └── apb_soc_ctrl_structs.h │ │ │ ├── cluster_ctrl_unit │ │ │ │ ├── cluster_ctrl_unit.h │ │ │ │ ├── cluster_ctrl_unit_accessors.h │ │ │ │ ├── cluster_ctrl_unit_cmd.h │ │ │ │ ├── cluster_ctrl_unit_constants.h │ │ │ │ ├── cluster_ctrl_unit_groups.h │ │ │ │ ├── cluster_ctrl_unit_gvsoc.h │ │ │ │ ├── cluster_ctrl_unit_macros.h │ │ │ │ ├── cluster_ctrl_unit_regfields.h │ │ │ │ ├── cluster_ctrl_unit_regfields_accessors.h │ │ │ │ ├── cluster_ctrl_unit_regmap.h │ │ │ │ ├── cluster_ctrl_unit_regs.h │ │ │ │ └── cluster_ctrl_unit_structs.h │ │ │ ├── cluster_icache_ctrl │ │ │ │ ├── cluster_icache_ctrl.h │ │ │ │ ├── cluster_icache_ctrl_accessors.h │ │ │ │ ├── cluster_icache_ctrl_cmd.h │ │ │ │ ├── cluster_icache_ctrl_constants.h │ │ │ │ ├── cluster_icache_ctrl_groups.h │ │ │ │ ├── cluster_icache_ctrl_gvsoc.h │ │ │ │ ├── cluster_icache_ctrl_macros.h │ │ │ │ ├── cluster_icache_ctrl_regfields.h │ │ │ │ ├── cluster_icache_ctrl_regfields_accessors.h │ │ │ │ ├── cluster_icache_ctrl_regmap.h │ │ │ │ ├── cluster_icache_ctrl_regs.h │ │ │ │ └── cluster_icache_ctrl_structs.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ ├── pulp.h │ │ │ └── pulp_archi.h │ │ ├── pulp_v1 │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── pulpissimo │ │ │ ├── apb_soc.h │ │ │ ├── apb_soc_ctrl.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── pulpissimo_v1 │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── quentin │ │ │ ├── apb_soc.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── siracusa │ │ │ ├── apb_soc.h │ │ │ ├── apb_soc_ctrl.h │ │ │ ├── apb_soc_ctrl │ │ │ │ ├── apb_soc_ctrl.h │ │ │ │ ├── apb_soc_ctrl_accessors.h │ │ │ │ ├── apb_soc_ctrl_cmd.h │ │ │ │ ├── apb_soc_ctrl_constants.h │ │ │ │ ├── apb_soc_ctrl_groups.h │ │ │ │ ├── apb_soc_ctrl_gvsoc.h │ │ │ │ ├── apb_soc_ctrl_macros.h │ │ │ │ ├── apb_soc_ctrl_regfields.h │ │ │ │ ├── apb_soc_ctrl_regfields_accessors.h │ │ │ │ ├── apb_soc_ctrl_regmap.h │ │ │ │ ├── apb_soc_ctrl_regs.h │ │ │ │ └── apb_soc_ctrl_structs.h │ │ │ ├── cluster_ctrl_unit │ │ │ │ ├── cluster_ctrl_unit.h │ │ │ │ ├── cluster_ctrl_unit_accessors.h │ │ │ │ ├── cluster_ctrl_unit_cmd.h │ │ │ │ ├── cluster_ctrl_unit_constants.h │ │ │ │ ├── cluster_ctrl_unit_groups.h │ │ │ │ ├── cluster_ctrl_unit_gvsoc.h │ │ │ │ ├── cluster_ctrl_unit_macros.h │ │ │ │ ├── cluster_ctrl_unit_regfields.h │ │ │ │ ├── cluster_ctrl_unit_regfields_accessors.h │ │ │ │ ├── cluster_ctrl_unit_regmap.h │ │ │ │ ├── cluster_ctrl_unit_regs.h │ │ │ │ └── cluster_ctrl_unit_structs.h │ │ │ ├── cluster_icache_ctrl │ │ │ │ ├── cluster_icache_ctrl.h │ │ │ │ ├── cluster_icache_ctrl_accessors.h │ │ │ │ ├── cluster_icache_ctrl_cmd.h │ │ │ │ ├── cluster_icache_ctrl_constants.h │ │ │ │ ├── cluster_icache_ctrl_groups.h │ │ │ │ ├── cluster_icache_ctrl_gvsoc.h │ │ │ │ ├── cluster_icache_ctrl_macros.h │ │ │ │ ├── cluster_icache_ctrl_regfields.h │ │ │ │ ├── cluster_icache_ctrl_regfields_accessors.h │ │ │ │ ├── cluster_icache_ctrl_regmap.h │ │ │ │ ├── cluster_icache_ctrl_regs.h │ │ │ │ └── cluster_icache_ctrl_structs.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ ├── pulp.h │ │ │ └── pulp_archi.h │ │ ├── usoc_v1 │ │ │ ├── apb_soc.h │ │ │ ├── gpio.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vega │ │ │ ├── apb_soc.h │ │ │ ├── apb_soc_ctrl.h │ │ │ ├── memory_map.h.in │ │ │ ├── pmu.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc2 │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc2_1 │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc3 │ │ │ ├── apb_soc.h │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc3_1 │ │ │ ├── apb_soc.h │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc3_5 │ │ │ ├── apb_soc.h │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── vivosoc4 │ │ │ ├── apb_soc.h │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ ├── memory_map.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ └── wolfe │ │ │ ├── apb_soc.h │ │ │ ├── apb_soc_ctrl_new.h │ │ │ ├── memory_map.h │ │ │ ├── pmu.h │ │ │ ├── properties.h │ │ │ └── pulp.h │ │ ├── cluster_ctrl │ │ └── cluster_ctrl_v2.h │ │ ├── dma │ │ ├── mchan_v3.h │ │ ├── mchan_v5.h │ │ ├── mchan_v6.h │ │ └── mchan_v7.h │ │ ├── efuse │ │ └── efuse_v1.h │ │ ├── eu │ │ ├── eu_v1.h │ │ ├── eu_v3.h │ │ └── eu_v4.h │ │ ├── fll │ │ ├── fll_v0.h │ │ └── fll_v1.h │ │ ├── gap_utils.h │ │ ├── gpio │ │ ├── gpio_v2.h │ │ ├── gpio_v2_new.h │ │ └── gpio_v3.h │ │ ├── gvsoc │ │ └── gvsoc.h │ │ ├── hwce │ │ ├── hwce_v4_old.h │ │ ├── hwce_v5.h │ │ └── v4 │ │ │ ├── hwce.h │ │ │ ├── hwce_accessors.h │ │ │ ├── hwce_constants.h │ │ │ ├── hwce_groups.h │ │ │ ├── hwce_gvsoc.h │ │ │ ├── hwce_macros.h │ │ │ ├── hwce_regfields.h │ │ │ ├── hwce_regfields_accessors.h │ │ │ ├── hwce_regmap.h │ │ │ ├── hwce_regs.h │ │ │ └── hwce_structs.h │ │ ├── hwme │ │ └── hwme_v1.h │ │ ├── ima │ │ └── ima_v1.h │ │ ├── itc │ │ └── itc_v1.h │ │ ├── maestro │ │ ├── maestro_v1.h │ │ ├── maestro_v1_new.h │ │ ├── maestro_v2.h │ │ ├── maestro_v2_new.h │ │ └── maestro_v3.h │ │ ├── mailbox │ │ └── mailbox_v0.h │ │ ├── or1k │ │ └── spr-defs.h │ │ ├── pulp.h │ │ ├── pulp_defs.h │ │ ├── pwm │ │ ├── pwm_v1.h │ │ └── v1 │ │ │ ├── pwm_v1.h │ │ │ ├── pwm_v1_accessors.h │ │ │ ├── pwm_v1_constants.h │ │ │ ├── pwm_v1_groups.h │ │ │ ├── pwm_v1_gvsoc.h │ │ │ ├── pwm_v1_macros.h │ │ │ ├── pwm_v1_regfields.h │ │ │ ├── pwm_v1_regmap.h │ │ │ ├── pwm_v1_regs.h │ │ │ └── pwm_v1_structs.h │ │ ├── rab │ │ └── rab_v1.h │ │ ├── riscv │ │ ├── builtins_v2.h │ │ ├── builtins_v2_emu.h │ │ ├── pcer_v1.h │ │ ├── pcer_v2.h │ │ ├── priv_1.9.h │ │ ├── priv_1_10.h │ │ ├── priv_1_7.h │ │ └── priv_1_9.h │ │ ├── rtc │ │ └── rtc_v2.h │ │ ├── soc_eu │ │ ├── soc_eu_v1.h │ │ ├── soc_eu_v2.h │ │ └── soc_eu_v3.h │ │ ├── spim │ │ └── spi_v1.h │ │ ├── stdout │ │ ├── stdout_v2.h │ │ └── stdout_v3.h │ │ ├── timer │ │ └── timer_v2.h │ │ ├── udma │ │ ├── cpi │ │ │ ├── udma_cpi_v1.h │ │ │ └── udma_cpi_v1_old.h │ │ ├── csi2 │ │ │ └── udma_csi2_v1.h │ │ ├── hyper │ │ │ ├── udma_hyper_v1.h │ │ │ ├── udma_hyper_v2.h │ │ │ ├── udma_hyper_v3.h │ │ │ └── udma_hyper_v3_siracusa.h │ │ ├── i2c │ │ │ ├── udma_i2c_v1.h │ │ │ └── udma_i2c_v2.h │ │ ├── i2s │ │ │ ├── udma_i2s_v1.h │ │ │ ├── udma_i2s_v1_new.h │ │ │ ├── udma_i2s_v2.h │ │ │ └── v3 │ │ │ │ ├── udma_i2s_v3.h │ │ │ │ ├── udma_i2s_v3_accessors.h │ │ │ │ ├── udma_i2s_v3_constants.h │ │ │ │ ├── udma_i2s_v3_groups.h │ │ │ │ ├── udma_i2s_v3_gvsoc.h │ │ │ │ ├── udma_i2s_v3_macros.h │ │ │ │ ├── udma_i2s_v3_regfields.h │ │ │ │ ├── udma_i2s_v3_regmap.h │ │ │ │ ├── udma_i2s_v3_regs.h │ │ │ │ └── udma_i2s_v3_structs.h │ │ ├── memcpy │ │ │ └── v1 │ │ │ │ ├── udma_memcpy_v1.h │ │ │ │ ├── udma_memcpy_v1_accessors.h │ │ │ │ ├── udma_memcpy_v1_constants.h │ │ │ │ ├── udma_memcpy_v1_groups.h │ │ │ │ ├── udma_memcpy_v1_gvsoc.h │ │ │ │ ├── udma_memcpy_v1_macros.h │ │ │ │ ├── udma_memcpy_v1_regfields.h │ │ │ │ ├── udma_memcpy_v1_regmap.h │ │ │ │ ├── udma_memcpy_v1_regs.h │ │ │ │ └── udma_memcpy_v1_structs.h │ │ ├── mram │ │ │ └── udma_mram_v1.h │ │ ├── spim │ │ │ ├── udma_spim_v1.h │ │ │ ├── udma_spim_v2.h │ │ │ └── udma_spim_v3.h │ │ ├── tcdm │ │ │ └── udma_tcdm_v1.h │ │ ├── uart │ │ │ └── udma_uart_v1.h │ │ ├── udma_v1.h │ │ ├── udma_v2.h │ │ └── udma_v3.h │ │ ├── utils.h │ │ ├── vendors │ │ ├── dolphin │ │ │ └── rtc.h │ │ ├── iid │ │ │ └── quiddikey_v1.h │ │ └── lnt │ │ │ └── csi2_v1.h │ │ └── xne │ │ └── xne_v1.h │ └── pulp_hal │ ├── LICENSE │ ├── Makefile │ ├── SConstruct │ ├── include │ └── hal │ │ ├── apb_soc │ │ ├── apb_soc_v1.h │ │ ├── apb_soc_v2.h │ │ ├── apb_soc_v3.h │ │ └── apb_soc_v4.h │ │ ├── bitfield.h │ │ ├── chips │ │ ├── arnold │ │ │ └── pulp.h │ │ ├── bigpulp │ │ │ └── pulp.h │ │ ├── devchip │ │ │ └── pulp.h │ │ ├── fulmine │ │ │ └── pulp.h │ │ ├── gap │ │ │ ├── apb_soc.h │ │ │ ├── efuse.h │ │ │ └── pulp.h │ │ ├── gap8 │ │ ├── gap_rev1 │ │ │ ├── efuse.h │ │ │ └── pulp.h │ │ ├── honey │ │ │ ├── fll.h │ │ │ └── pulp.h │ │ ├── multino │ │ │ └── pulp.h │ │ ├── neuraghe │ │ │ ├── pulp.h │ │ │ └── pulp.h~ │ │ ├── oprecompkw │ │ │ └── pulp.h │ │ ├── pulp │ │ │ └── pulp.h │ │ ├── pulp_v1 │ │ │ └── pulp.h │ │ ├── pulpissimo │ │ │ └── pulp.h │ │ ├── pulpissimo_v1 │ │ │ └── pulp.h │ │ ├── quentin │ │ │ └── pulp.h │ │ ├── siracusa │ │ │ ├── chip_config_regs.h │ │ │ ├── cluster_write_fifo_regs.h │ │ │ ├── i3c_regs.h │ │ │ ├── pll.h │ │ │ ├── pll_regs.h │ │ │ └── pulp.h │ │ ├── usoc_v1 │ │ │ ├── apb_soc.h │ │ │ ├── gpio.h │ │ │ └── pulp.h │ │ ├── vega │ │ │ ├── efuse.h │ │ │ ├── pulp.h │ │ │ └── pulp.h~ │ │ ├── vivosoc2 │ │ │ ├── pulp.h │ │ │ └── pulp.h~ │ │ ├── vivosoc2_1 │ │ │ └── pulp.h │ │ ├── vivosoc3 │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ └── pulp.h │ │ ├── vivosoc3_1 │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ └── pulp.h │ │ ├── vivosoc3_5 │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ └── pulp.h │ │ ├── vivosoc4 │ │ │ ├── fll.h │ │ │ ├── freq.h │ │ │ └── pulp.h │ │ └── wolfe │ │ │ └── pulp.h │ │ ├── cluster_ctrl │ │ └── cluster_ctrl_v2.h │ │ ├── debug_bridge │ │ └── debug_bridge.h │ │ ├── dma │ │ ├── mchan_v4.h │ │ ├── mchan_v5.h │ │ ├── mchan_v6.h │ │ └── mchan_v7.h │ │ ├── efuse │ │ └── efuse_v1.h │ │ ├── eu │ │ ├── eu_v1.h │ │ ├── eu_v1_ids.h │ │ └── eu_v3.h │ │ ├── fll │ │ └── fll_v1.h │ │ ├── gpio │ │ ├── gpio_v0.h │ │ ├── gpio_v2.h │ │ └── gpio_v3.h │ │ ├── gvsoc │ │ └── gvsoc.h │ │ ├── hwce │ │ ├── hwce_v4.h │ │ └── hwce_v5.h │ │ ├── hwme │ │ └── hwme_v1.h │ │ ├── icache │ │ ├── icache_ctrl_v1.h │ │ └── icache_ctrl_v2.h │ │ ├── ima │ │ └── ima_v1.h │ │ ├── itc │ │ └── itc_v1.h │ │ ├── maestro │ │ ├── pmu_v1.h │ │ ├── pmu_v2.h │ │ └── pmu_v3.h │ │ ├── mailbox │ │ └── mailbox_v0.h │ │ ├── or1k │ │ ├── or10nv2_builtins.h │ │ └── or1k_v5.h │ │ ├── periph │ │ └── spi_v1.h │ │ ├── pulp.h │ │ ├── pulp_io.h │ │ ├── pwm │ │ └── pwm_v1.h │ │ ├── rab │ │ └── rab_v1.h │ │ ├── riscv │ │ ├── builtins_v2.h │ │ ├── builtins_v2_emu.h │ │ ├── riscv_v3.h │ │ ├── riscv_v4.h │ │ ├── riscv_v5.h │ │ └── types.h │ │ ├── rom │ │ └── rom_v2.h │ │ ├── rtc │ │ └── rtc_v2.h │ │ ├── soc_eu │ │ ├── soc_eu_v1.h │ │ ├── soc_eu_v2.h │ │ └── soc_eu_v3.h │ │ ├── tb │ │ └── tb.h │ │ ├── timer │ │ ├── timer_v1.h │ │ └── timer_v2.h │ │ ├── tryx │ │ └── tryx_v1.h │ │ ├── udma │ │ ├── cpi │ │ │ └── udma_cpi_v1.h │ │ ├── csi2 │ │ │ └── udma_csi2_v1.h │ │ ├── hyper │ │ │ ├── udma_hyper_v1.h │ │ │ ├── udma_hyper_v2.h │ │ │ └── udma_hyper_v3.h │ │ ├── i2c │ │ │ ├── udma_i2c_v1.h │ │ │ └── udma_i2c_v2.h │ │ ├── i2s │ │ │ └── udma_i2s_v1.h │ │ ├── spim │ │ │ ├── udma_spim_v1.h │ │ │ ├── udma_spim_v2.h │ │ │ └── udma_spim_v3.h │ │ ├── tcdm │ │ │ └── udma_tcdm_v1.h │ │ ├── uart │ │ │ └── udma_uart_v1.h │ │ ├── udma_v1.h │ │ ├── udma_v2.h │ │ └── udma_v3.h │ │ ├── utils.h │ │ ├── vendors │ │ ├── dolphin │ │ │ └── rtc.h │ │ ├── iid │ │ │ └── quiddikey_v1.h │ │ └── lnt │ │ │ └── csi2_v1.h │ │ └── xne │ │ └── xne_v1.h │ └── src │ └── hal │ ├── mailbox │ └── mailbox_v0.c │ ├── rab │ └── rab_v1.c │ └── tryx │ └── tryx_v1.c ├── rules ├── dpi-models.mk ├── gap-configs.mk ├── json-tools.mk ├── pulp-debug-bridge.mk └── pulpos.mk ├── tests ├── README.md ├── cluster │ ├── call │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ ├── fork │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ ├── fork_power │ │ ├── Makefile │ │ └── test.c │ └── testset.cfg ├── dma │ ├── 1d │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ └── testset.cfg ├── flash │ ├── simple │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ ├── testset.cfg │ └── with_ram │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg ├── fs │ ├── read │ │ ├── Makefile │ │ ├── files │ │ │ ├── flash_file_0.bin │ │ │ └── flash_file_1.bin │ │ ├── test.c │ │ └── testset.cfg │ └── testset.cfg ├── hello │ ├── Makefile │ ├── test.c │ └── testset.cfg ├── perf │ ├── double_buffering │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ ├── matmult │ │ ├── Makefile │ │ ├── stats.h │ │ ├── test.c │ │ └── testset.cfg │ └── testset.cfg ├── ram │ ├── simple │ │ ├── Makefile │ │ ├── test.c │ │ └── testset.cfg │ └── testset.cfg ├── redmule │ ├── gemm │ │ ├── Makefile │ │ ├── archi_redmule.h │ │ ├── hal_redmule.h │ │ ├── inc │ │ │ ├── config.h │ │ │ ├── golden.h │ │ │ ├── tensor_dim.h │ │ │ ├── w_2D.h │ │ │ ├── w_input.h │ │ │ ├── x_2D.h │ │ │ ├── x_input.h │ │ │ ├── y_2D.h │ │ │ ├── y_input.h │ │ │ ├── z_2D.h │ │ │ └── z_output.h │ │ ├── redmule_test.c │ │ └── testset.cfg │ └── testset.cfg ├── testset.cfg └── uart │ ├── loopback │ ├── Makefile │ ├── config.ini │ ├── test.c │ └── testset.cfg │ └── testset.cfg └── tools ├── dpi-models ├── LICENSE ├── Makefile ├── dpi_rules.mk ├── ext │ ├── nosv │ │ └── svdpi.h │ └── sv │ │ └── include │ │ └── questa │ │ └── dpiheader.h ├── include │ ├── common │ │ ├── .telnet_proxy.hpp.swp │ │ └── telnet_proxy.hpp │ └── dpi │ │ ├── models.hpp │ │ └── tb_driver.h ├── models │ ├── Makefile │ ├── camera │ │ ├── Makefile │ │ └── camera.cpp │ ├── eeprom │ │ ├── Makefile │ │ └── eeprom.cpp │ ├── flash │ │ └── spiflash │ │ │ ├── Makefile │ │ │ └── spiflash.cpp │ ├── jtag │ │ └── proxy │ │ │ ├── Makefile │ │ │ └── proxy.cpp │ ├── lcd │ │ ├── Makefile │ │ └── ili9341.cpp │ ├── microphone │ │ ├── Makefile │ │ └── i2s_microphone.cpp │ ├── ram │ │ └── spiram │ │ │ ├── Makefile │ │ │ └── spiram.cpp │ ├── test │ │ └── spim_verif │ │ │ ├── Makefile │ │ │ └── spim_verif.cpp │ ├── uart │ │ └── uart │ │ │ ├── Makefile │ │ │ └── uart.cpp │ └── wifi │ │ ├── Makefile │ │ └── nina_w10.cpp └── src │ ├── cpi.cpp │ ├── ctrl.cpp │ ├── dpi.cpp │ ├── gpio.cpp │ ├── i2c.cpp │ ├── i2s.cpp │ ├── jtag.cpp │ ├── models.cpp │ ├── qspim.cpp │ ├── telnet_proxy.cpp │ └── uart.cpp ├── gap-configs ├── CMake │ ├── FindAddJsonTools.cmake │ ├── FindAddPulpConfigs.cmake │ └── FindPythonModule.cmake ├── CMakeLists.txt ├── Makefile ├── SConstruct ├── bin │ ├── comp_gen.py │ ├── plpconf_new │ ├── plpfiles │ ├── plpinfo │ ├── pulp_config_gen │ └── pulp_graph_gen ├── configs │ ├── boards │ │ ├── ai_deck.json │ │ ├── drone_eth_shield_v2.json │ │ ├── gap.json │ │ ├── gapoc_a.json │ │ ├── gapoc_a_revb.json │ │ ├── gapoc_a_spi.json │ │ ├── gapoc_a_spi_revb.json │ │ ├── gapoc_b.json │ │ ├── gapoc_b_revb.json │ │ ├── gapoc_b_spi_revb.json │ │ ├── gapuino.json │ │ ├── gapuino_revb.json │ │ ├── gapuino_revc.json │ │ ├── gapuino_spi.json │ │ ├── gapuino_spi_revb.json │ │ ├── gapuino_spi_revc.json │ │ └── lucy.json │ ├── chips │ │ ├── arnold │ │ │ ├── apb_soc.json │ │ │ ├── arnold.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ └── udma.json │ │ ├── bigpulp-juno │ │ │ ├── apb_soc.json │ │ │ ├── bigpulp-juno.json │ │ │ ├── defaults.json │ │ │ └── padframe.json │ │ ├── bigpulp-standalone │ │ │ ├── apb_soc.json │ │ │ ├── bigpulp.json │ │ │ ├── defaults.json │ │ │ └── padframe.json │ │ ├── bigpulp-z-7045 │ │ │ ├── apb_soc.json │ │ │ ├── bigpulp-z-7045.json │ │ │ ├── defaults.json │ │ │ └── padframe.json │ │ ├── bigpulp-zu9eg │ │ │ ├── apb_soc.json │ │ │ ├── bigpulp-zu9eg.json │ │ │ ├── defaults.json │ │ │ └── padframe.json │ │ ├── bigpulp │ │ │ ├── apb_soc.json │ │ │ ├── bigpulp.json │ │ │ ├── defaults.json │ │ │ └── padframe.json │ │ ├── gap │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── gap.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ └── udma.json │ │ ├── gap8_revc │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── gap8_revc.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ └── udma.json │ │ ├── gap_rev1 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── gap_rev1.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ └── udma.json │ │ ├── hero-z-7045 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ └── hero-z-7045.json │ │ ├── multino │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── multino.json │ │ │ └── padframe.json │ │ ├── neuraghe │ │ │ ├── neuraghe.json │ │ │ ├── neuraghe_system.json │ │ │ └── soc.json │ │ ├── oprecompkw │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── job_fifo.json │ │ │ └── oprecompkw.json │ │ ├── oprecompkw_sa │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── job_fifo.json │ │ │ ├── oprecompkw_sa.json │ │ │ └── padframe.json │ │ ├── oprecompkw_sfloat │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── job_fifo.json │ │ │ └── oprecompkw_sfloat.json │ │ ├── oprecompkw_sfloat_sa │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── job_fifo.json │ │ │ ├── oprecompkw_sfloat_sa.json │ │ │ └── padframe.json │ │ ├── oprecompkw_sfloat_sa_dual_regfile │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── job_fifo.json │ │ │ ├── oprecompkw_sfloat_sa_dual_regfile.json │ │ │ └── padframe.json │ │ ├── pulp │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulp.json │ │ │ ├── pulp_nn.json │ │ │ ├── pulp_rnnext.json │ │ │ └── udma.json │ │ ├── pulp_v1 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulp_v1.json │ │ │ └── udma.json │ │ ├── pulp_v2 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulp_v2.json │ │ │ └── udma.json │ │ ├── pulpissimo-microriscy │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulpissimo-microriscy.json │ │ │ └── udma.json │ │ ├── pulpissimo-riscy │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulpissimo-riscy.json │ │ │ └── udma.json │ │ ├── pulpissimo-zeroriscy │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulpissimo-zeroriscy.json │ │ │ └── udma.json │ │ ├── pulpissimo │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulpissimo.json │ │ │ ├── pulpissimo_ibex.json │ │ │ ├── pulpissimo_rnnext.json │ │ │ └── udma.json │ │ ├── pulpissimo_v1 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pulpissimo_v1.json │ │ │ └── udma.json │ │ ├── usoc_v1 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── udma.json │ │ │ └── usoc_v1.json │ │ ├── vega │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ ├── soc_events.json │ │ │ ├── udma.json │ │ │ └── vega.json │ │ ├── vivosoc2 │ │ │ ├── vivosoc2.json │ │ │ └── vivosoc2_system.json │ │ ├── vivosoc2_1 │ │ │ ├── vivosoc2_1.json │ │ │ └── vivosoc2_1_system.json │ │ ├── vivosoc3 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── udma.json │ │ │ └── vivosoc3.json │ │ ├── vivosoc3_1 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── udma.json │ │ │ └── vivosoc3_1.json │ │ ├── vivosoc3_5 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── udma.json │ │ │ └── vivosoc3_5.json │ │ ├── vivosoc4 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── udma.json │ │ │ └── vivosoc4.json │ │ ├── wolfe │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ ├── udma.json │ │ │ └── wolfe.json │ │ └── wolfe_16 │ │ │ ├── apb_soc.json │ │ │ ├── defaults.json │ │ │ ├── padframe.json │ │ │ ├── pmu.json │ │ │ ├── udma.json │ │ │ ├── wolfe.json │ │ │ └── wolfe_16.json │ ├── config │ │ ├── ai_deck.json │ │ ├── gap.json │ │ ├── gap8_revc.json │ │ ├── gap_rev1.json │ │ ├── gapoc_a.json │ │ ├── gapoc_a_revb.json │ │ ├── gapoc_a_spi_revb.json │ │ ├── gapoc_b.json │ │ ├── gapoc_b_revb.json │ │ ├── gapoc_b_spi_revb.json │ │ ├── gapuino.json │ │ ├── gapuino_revb.json │ │ ├── gapuino_revb_spi.json │ │ ├── gapuino_revc.json │ │ ├── gapuino_spi.json │ │ ├── lucy.json │ │ ├── pulp.json │ │ ├── pulp_nn.json │ │ ├── pulp_rnnext.json │ │ ├── pulpissimo.json │ │ ├── pulpissimo_bitext.json │ │ ├── pulpissimo_ibex.json │ │ ├── pulpissimo_rnnext.json │ │ ├── vega.json │ │ └── wolfe.json │ ├── defaults.json │ ├── devices │ │ ├── camera.json │ │ ├── camera.rst │ │ ├── eeprom.json │ │ ├── eeprom.rst │ │ ├── hyperflash.json │ │ ├── hyperflash.rst │ │ ├── hyperram.json │ │ ├── hyperram.rst │ │ ├── i2s_microphone.json │ │ ├── i2s_microphone.rst │ │ ├── jtag_proxy.json │ │ ├── jtag_proxy.rst │ │ ├── lcd_ili9341.json │ │ ├── lcd_ili9341.rst │ │ ├── microphone.json │ │ ├── nina_w10.json │ │ ├── nina_w10.rst │ │ ├── speaker.json │ │ ├── spiflash.json │ │ ├── spiflash.rst │ │ ├── spiflash_s26ks512.json │ │ ├── spim_verif.json │ │ ├── spim_verif.rst │ │ ├── spiram.json │ │ ├── spiram.rst │ │ ├── testbench.json │ │ ├── uart_checker.json │ │ ├── uart_tb.json │ │ └── uart_tb.rst │ ├── fpgas │ │ ├── pulp │ │ │ └── genesys2.json │ │ ├── pulpissimo │ │ │ └── genesys2.json │ │ └── pulpissimo_ibex │ │ │ └── genesys2.json │ ├── ips │ │ ├── adv_dbg_unit │ │ │ └── adv_dbg_unit.json │ │ ├── apb_soc │ │ │ ├── apb_soc_template.json │ │ │ ├── apb_soc_v1.json │ │ │ ├── apb_soc_v2.json │ │ │ ├── apb_soc_v3.json │ │ │ ├── apb_soc_v3_help.json │ │ │ ├── apb_soc_v4.json │ │ │ └── apb_soc_vivosoc3.json │ │ ├── archi_host │ │ │ └── archi_host_v1.json │ │ ├── cache │ │ │ └── cache.json │ │ ├── cluster │ │ │ ├── cluster_v3.json │ │ │ ├── cluster_v4.json │ │ │ ├── cluster_v5.json │ │ │ ├── cluster_v5_fpu.json │ │ │ ├── cluster_v5_template.json │ │ │ ├── cluster_v6.json │ │ │ └── cluster_v6_template.json │ │ ├── cluster_ctrl │ │ │ └── cluster_ctrl_v2.json │ │ ├── debug │ │ │ ├── pulp_tap.json │ │ │ ├── riscv_dtm.json │ │ │ └── riscv_dtm_old.json │ │ ├── dpi │ │ │ └── chip_wrapper.json │ │ ├── efuse │ │ │ └── efuse_v1.json │ │ ├── event_unit │ │ │ ├── eu_v1.json │ │ │ ├── eu_v3.json │ │ │ ├── eu_v3_sec.json │ │ │ └── eu_v4.json │ │ ├── fll │ │ │ └── fll_v1.json │ │ ├── fulmine │ │ │ └── padframe.json │ │ ├── gpio │ │ │ ├── gpio_v2.json │ │ │ └── gpio_v3.json │ │ ├── hwacc │ │ │ └── hwacc.json │ │ ├── hwce │ │ │ ├── hwce_v4.json │ │ │ └── hwce_v5.json │ │ ├── hwme │ │ │ └── hwme_v1.json │ │ ├── icache_ctrl │ │ │ ├── icache_ctrl_v1.json │ │ │ └── icache_ctrl_v2.json │ │ ├── ima │ │ │ └── ima_v1.json │ │ ├── interco │ │ │ ├── converter.json │ │ │ ├── interleaver.json │ │ │ ├── l1_interleaver.json │ │ │ ├── l1_tas.json │ │ │ └── router.json │ │ ├── itc │ │ │ └── itc_v1.json │ │ ├── mailbox │ │ │ └── mailbox_v0.json │ │ ├── mchan │ │ │ ├── mchan_v4.json │ │ │ ├── mchan_v5.json │ │ │ ├── mchan_v6.json │ │ │ └── mchan_v7.json │ │ ├── memory │ │ │ └── ddr.json │ │ ├── misc │ │ │ └── clock.json │ │ ├── mram │ │ │ └── mram.json │ │ ├── ne16 │ │ │ └── ne16.json │ │ ├── or1k │ │ │ └── or10n_v2.json │ │ ├── padframe │ │ │ └── padframe_v1.json │ │ ├── pmu │ │ │ ├── pmu_v1.json │ │ │ ├── pmu_v2.json │ │ │ ├── pmu_v3.json │ │ │ └── pmu_v4.json │ │ ├── quentin │ │ │ ├── padframe.json │ │ │ └── soc_quentin.json │ │ ├── rab │ │ │ └── rab_v1.json │ │ ├── riscv │ │ │ ├── ariane.json │ │ │ ├── ibex.json │ │ │ ├── microriscy.json │ │ │ ├── ri5ky_v0.json │ │ │ ├── ri5ky_v1.json │ │ │ ├── ri5ky_v2.json │ │ │ ├── ri5ky_v2_1_10.json │ │ │ ├── ri5ky_v2_5_sfloat_single_regfile.json │ │ │ ├── ri5ky_v2_5_sfloat_single_regfile_sec.json │ │ │ ├── ri5ky_v2_6_sfloat_single_regfile.json │ │ │ ├── ri5ky_v2_6_sfloat_single_regfile_int64.json │ │ │ ├── ri5ky_v2_6_sfloat_single_regfile_pulpnn.json │ │ │ ├── ri5ky_v2_6_sfloat_single_regfile_rnnext.json │ │ │ ├── ri5ky_v2_6_sfloat_single_regfile_sec.json │ │ │ ├── ri5ky_v2_a.json │ │ │ ├── ri5ky_v2_cplx.json │ │ │ ├── ri5ky_v2_fpu.json │ │ │ ├── ri5ky_v2_fpu_1_10.json │ │ │ ├── ri5ky_v2_fpu_1_10_bitext.json │ │ │ ├── ri5ky_v2_fpu_1_10_pulpnn.json │ │ │ ├── ri5ky_v2_fpu_1_10_rnnext.json │ │ │ ├── ri5ky_v2_fpu_a.json │ │ │ ├── ri5ky_v2_fpu_ilp32f.json │ │ │ ├── ri5ky_v2_fpu_sec.json │ │ │ ├── ri5ky_v2_sec.json │ │ │ ├── ri5ky_v2_sfloat.json │ │ │ ├── ri5ky_v2_sfloat_single_regfile.json │ │ │ ├── ri5ky_v2_sfloat_single_regfile_sec.json │ │ │ └── zeroriscy.json │ │ ├── rom │ │ │ └── rom_v2.json │ │ ├── rtc │ │ │ ├── rtc.json │ │ │ └── rtc_v2.json │ │ ├── soc │ │ │ ├── soc_v4.2.json │ │ │ ├── soc_v4.3.json │ │ │ └── soc_v4.4.json │ │ ├── soc_eu │ │ │ ├── soc_eu_v1.json │ │ │ ├── soc_eu_v2.json │ │ │ └── soc_eu_v3.json │ │ ├── spi_master │ │ │ └── spi_master_v1.json │ │ ├── stdout │ │ │ ├── stdout_v2.json │ │ │ └── stdout_v3.json │ │ ├── timer │ │ │ ├── timer_v1.json │ │ │ └── timer_v2.json │ │ ├── tryx │ │ │ └── tryx_v1.json │ │ ├── uart │ │ │ └── uart_v0.json │ │ ├── udma │ │ │ ├── i2s │ │ │ │ └── udma_i2s_v2.json │ │ │ ├── udma_v1.json │ │ │ ├── udma_v2.json │ │ │ ├── udma_v3.json │ │ │ └── udma_v4.json │ │ ├── vega │ │ │ ├── padframe.json │ │ │ ├── soc.json │ │ │ └── udma.json │ │ ├── vendors │ │ │ ├── dolphin │ │ │ │ └── rtc.json │ │ │ ├── iid │ │ │ │ └── quiddikey_v1.json │ │ │ └── lnt │ │ │ │ └── csi2_v1.json │ │ ├── vivosoc3 │ │ │ └── padframe.json │ │ └── xne │ │ │ └── xne_v1.json │ ├── periph │ │ ├── camera.json │ │ ├── dpi_wrapper.json │ │ ├── eeprom.json │ │ ├── hyper.json │ │ ├── hyperflash.json │ │ ├── hyperram.json │ │ ├── i2s_microphone.json │ │ ├── jtag_proxy.json │ │ ├── olds │ │ │ └── microphone.json │ │ ├── ov7670.json │ │ ├── spiflash.json │ │ ├── spim_verif.json │ │ └── uart_tb.json │ ├── platforms │ │ ├── board.json │ │ ├── fpga.json │ │ ├── gvsoc.json │ │ ├── netlist.json │ │ ├── pgpin.json │ │ └── rtl.json │ ├── power_models │ │ ├── core │ │ │ ├── riscy.json │ │ │ └── values │ │ │ │ ├── clock_gated.json │ │ │ │ ├── insn.json │ │ │ │ └── leakage.json │ │ └── l1 │ │ │ ├── l1.json │ │ │ └── values │ │ │ ├── idle.json │ │ │ ├── leakage.json │ │ │ ├── read_16.json │ │ │ ├── read_32.json │ │ │ ├── read_8.json │ │ │ ├── write_16.json │ │ │ ├── write_32.json │ │ │ └── write_8.json │ ├── pulp_chip_common.json │ ├── pulp_system_common.json │ └── tools │ │ ├── debug-bridge │ │ ├── cable_ftdi.json │ │ ├── cable_jtag-proxy.json │ │ └── debug_bridge.json │ │ ├── openocd │ │ └── openocd.json │ │ ├── plt_loader │ │ └── plt_loader.json │ │ ├── rt │ │ └── rt.json │ │ ├── runner │ │ └── runner.json │ │ └── vp │ │ └── injector.json └── python │ ├── generators │ ├── __init__.py │ └── v1 │ │ ├── __init__.py │ │ ├── chip_gen.py │ │ ├── cluster_gen.py │ │ ├── comp_gen.py │ │ ├── config_gen.py │ │ ├── config_rtl_gen.py │ │ ├── devices │ │ ├── __init__.py │ │ ├── camera_gen.py │ │ ├── eeprom_gen.py │ │ ├── hyper_gen.py │ │ ├── i2s_microphone_gen.py │ │ ├── jtag_proxy_gen.py │ │ ├── lcd_ili9341_gen.py │ │ ├── nina_w10_gen.py │ │ ├── spiflash_gen.py │ │ ├── spiflash_s26ks512_gen.py │ │ ├── spim_verif_gen.py │ │ ├── spiram.py │ │ ├── spiram_gen.py │ │ └── uart_tb_gen.py │ │ ├── soc_gen.py │ │ ├── system_gen.py │ │ ├── system_rtl_gen.py │ │ ├── top_gen.py │ │ └── top_rtl_gen.py │ ├── gtkw_new.py │ ├── plpconfig.py │ └── pulp_config.py ├── gapy ├── README.md ├── binary.py ├── common.py ├── configs │ ├── boards │ │ ├── gap8_common.json │ │ ├── gap8_reva_common.json │ │ ├── gap8_revb_common.json │ │ └── gap8_revc_common.json │ ├── common.json │ ├── devices │ │ └── flash │ │ │ ├── hyperflash.json │ │ │ ├── spiflash.json │ │ │ ├── spiflash_atxp032.json │ │ │ └── spiflash_s26ks512.json │ ├── platforms │ │ ├── board.json │ │ ├── fpga.json │ │ ├── gvsoc.json │ │ └── rtl.json │ └── tools │ │ └── gapy.json ├── elf2bin.py ├── errors.py ├── flash.py ├── gapy ├── gen-debug-info ├── gen-debug-info-src │ ├── CMakeLists.txt │ ├── LICENSE │ ├── ext │ │ ├── alloca-conf.h │ │ ├── ansidecl.h │ │ ├── bfd │ │ │ ├── bfd-in3.h │ │ │ ├── bfd.h │ │ │ ├── bfd_stdint.h │ │ │ ├── bfdver.h │ │ │ ├── config.h │ │ │ ├── elf32-riscv.c │ │ │ ├── elf32-target.h │ │ │ ├── elf64-riscv.c │ │ │ ├── elf64-target.h │ │ │ ├── libbfd.a │ │ │ ├── stmp-bfd-h │ │ │ └── targmatch.h │ │ ├── bfdlink.h │ │ ├── binary-io.h │ │ ├── bout.h │ │ ├── demangle.h │ │ ├── dis-asm.h │ │ ├── dwarf2.h │ │ ├── dyn-string.h │ │ ├── environ.h │ │ ├── fibheap.h │ │ ├── filenames.h │ │ ├── floatformat.h │ │ ├── fnmatch.h │ │ ├── fopen-bin.h │ │ ├── fopen-same.h │ │ ├── fopen-vms.h │ │ ├── gcc-c-interface.h │ │ ├── gcc-interface.h │ │ ├── gdbm.h │ │ ├── getopt.h │ │ ├── gomp-constants.h │ │ ├── hashtab.h │ │ ├── hp-symtab.h │ │ ├── ieee.h │ │ ├── leb128.h │ │ ├── libbfd.a │ │ ├── libiberty.a │ │ ├── libiberty.h │ │ ├── longlong.h │ │ ├── lto-symtab.h │ │ ├── md5.h │ │ ├── oasys.h │ │ ├── objalloc.h │ │ ├── obstack.h │ │ ├── os9k.h │ │ ├── partition.h │ │ ├── plugin-api.h │ │ ├── progress.h │ │ ├── safe-ctype.h │ │ ├── sha1.h │ │ ├── simple-object.h │ │ ├── sort.h │ │ ├── splay-tree.h │ │ ├── symcat.h │ │ ├── timeval-utils.h │ │ ├── vtv-change-permission.h │ │ ├── xregex.h │ │ ├── xregex2.h │ │ ├── xtensa-config.h │ │ ├── xtensa-isa-internal.h │ │ └── xtensa-isa.h │ └── main.cpp ├── gen_flash_image.py ├── gen_lfs.py ├── gen_partition.py ├── gen_readfs.py ├── json_tools.py ├── openocd │ └── __init__.py ├── partition │ ├── __init__.py │ ├── partitions_single_app.csv │ ├── partitions_single_app_phy.csv │ └── partitions_two_ota.csv ├── requirements.txt ├── rules │ ├── flash.mk │ ├── littlefs.mk │ ├── readfs.mk │ └── run.mk ├── run.py ├── runner │ ├── __init__.py │ ├── board │ │ └── board_runner.py │ ├── board_runner.py │ ├── chips │ │ ├── gap8.py │ │ ├── pulp.py │ │ └── vega.py │ ├── default_runner.py │ └── rtl │ │ ├── chips │ │ ├── gap8.py │ │ ├── pulp.py │ │ └── vega.py │ │ └── rtl_runner.py ├── targets │ ├── ai_deck.json │ ├── gapoc_a.json │ ├── gapoc_a_v2.json │ ├── gapoc_a_v2_spi.json │ ├── gapoc_b.json │ ├── gapoc_b_v2.json │ ├── gapoc_b_v2_spi.json │ ├── gapuino.json │ ├── gapuino_spi.json │ ├── gapuino_v2.json │ ├── gapuino_v2_spi.json │ ├── gapuino_v3.json │ ├── gapuino_v3_spi.json │ ├── pulp.json │ ├── pulp_nn.json │ └── pulp_rnnext.json └── traces.py ├── jenkins └── sdk_version.txt ├── json-tools ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── include │ ├── jsmn.h │ └── json.hpp ├── python │ ├── __init__.py │ └── json_tools.py └── src │ ├── jsmn.cpp │ └── json.cpp ├── pulp-debug-bridge ├── LICENSE ├── Makefile ├── README.md ├── bin │ ├── flasher-gap │ └── plpbridge ├── include │ └── debug_bridge │ │ ├── debug_bridge.h │ │ └── proxy.hpp ├── python │ └── bridge │ │ ├── chips │ │ ├── arnold.py │ │ ├── fulmine.py │ │ ├── gap.py │ │ ├── gap8_revc.py │ │ ├── gap_rev1.py │ │ ├── pulp.py │ │ ├── pulpissimo.py │ │ ├── pulpissimo_v2.py │ │ ├── usoc_v1.py │ │ ├── vega.py │ │ ├── vivosoc3.py │ │ └── wolfe.py │ │ ├── debug_bridge.py │ │ ├── default_debug_bridge.py │ │ └── jtag.py └── src │ ├── cable.hpp │ ├── cables │ ├── adv_dbg_itf │ │ ├── adv_dbg_itf.cpp │ │ └── adv_dbg_itf.hpp │ ├── ftdi │ │ ├── ftdi.cpp │ │ └── ftdi.hpp │ ├── jtag-proxy │ │ ├── jtag-proxy.cpp │ │ └── jtag-proxy.hpp │ ├── jtag.cpp │ └── log.h │ ├── gdb-server │ ├── breakpoints.cpp │ ├── gdb-server.cpp │ ├── gdb-server.h │ ├── gdb-server.hpp │ ├── rsp.cpp │ └── target.cpp │ ├── python_wrapper.cpp │ └── reqloop.cpp └── rules └── pmsis_rules.mk /.github.old/workflows/regression-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/.github.old/workflows/regression-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | BUILD/ 3 | build/ 4 | install/ 5 | .sconsign.dblite 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/README.md -------------------------------------------------------------------------------- /applications/MobileNetV1/DORY_network/inc/dory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/applications/MobileNetV1/DORY_network/inc/dory.h -------------------------------------------------------------------------------- /applications/MobileNetV1/DORY_network/inputs.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/applications/MobileNetV1/DORY_network/inputs.hex -------------------------------------------------------------------------------- /applications/MobileNetV1/DORY_network/src/dory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/applications/MobileNetV1/DORY_network/src/dory.c -------------------------------------------------------------------------------- /applications/MobileNetV1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/applications/MobileNetV1/Makefile -------------------------------------------------------------------------------- /bin/plp_flash_stimuli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/bin/plp_flash_stimuli.py -------------------------------------------------------------------------------- /bin/plp_mkflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/bin/plp_mkflash -------------------------------------------------------------------------------- /bin/slm_hyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/bin/slm_hyper.py -------------------------------------------------------------------------------- /bin/stim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/bin/stim_utils.py -------------------------------------------------------------------------------- /configs/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/configs/common.sh -------------------------------------------------------------------------------- /configs/pulp-open-nn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/configs/pulp-open-nn.sh -------------------------------------------------------------------------------- /configs/pulp-open-rnnext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/configs/pulp-open-rnnext.sh -------------------------------------------------------------------------------- /configs/pulp-open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/configs/pulp-open.sh -------------------------------------------------------------------------------- /configs/siracusa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/configs/siracusa.sh -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/LICENSE -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/Makefile -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/chips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/chips.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/conf.py -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/dox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/dox.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/drivers.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/headers/groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/headers/groups.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/index.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/mainpage.md -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/make.bat -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/pmsis.dxy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/pmsis.dxy.in -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/requirements.txt -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/docs/rtos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/docs/rtos.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/chips/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/chips/default.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/device.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/aes.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/asrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/asrc.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/cpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/cpi.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/gpio.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2c.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/i2s.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/pad.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/perf.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/pmu.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/pwm.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/rtc.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/spi.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/drivers/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/drivers/uart.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/errno.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/mem_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/mem_slab.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/pmsis_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/pmsis_types.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/rtos/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/rtos/assert.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/rtos/pi_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/rtos/pi_log.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/rtos/pulpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/rtos/pulpos.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/rtos/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/rtos/rtos.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/include/pmsis/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/include/pmsis/task.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/jenkins/sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/jenkins/sdk.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_api/tools/export.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_api/tools/export.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/LICENSE -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/Makefile -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ble/ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ble/ble.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ble/nina_b112/nina_b112.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ble/nina_b112/nina_b112.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ble/nina_b112/nina_b112_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ble/nina_b112/nina_b112_old.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/ai_deck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/ai_deck.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/gapoc_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/gapoc_a.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/gapoc_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/gapoc_b.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/gapoc_b_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/gapoc_b_v2.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/gapuino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/gapuino.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/pulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/pulp.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/siracusa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/siracusa.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/vega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/vega.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/bsp/wolfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/bsp/wolfe.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/camera.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/gc0308/gc0308.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/gc0308/gc0308.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/gc0308/gc0308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/gc0308/gc0308.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/himax/himax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/himax/himax.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/himax/himax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/himax/himax.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/mt9v034/mt9v034.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/mt9v034/mt9v034.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/mt9v034/mt9v034.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/mt9v034/mt9v034.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/ov5640/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/ov5640/ov5640.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/ov5640/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/ov5640/ov5640.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/ov7670/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/ov7670/ov7670.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/ov7670/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/ov7670/ov7670.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/pixart/pixart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/pixart/pixart.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/pixart/pixart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/pixart/pixart.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/camera/thermeye/thermeye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/camera/thermeye/thermeye.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/crc/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/crc/md5.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/display/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/display/display.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/display/ili9341/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/display/ili9341/ili9341.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/display/ili9341/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/display/ili9341/ili9341.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/Makefile -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/ble.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/ble.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/camera.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/conf.py -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/display.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/dox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/dox.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/flash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/flash.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/fs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/fs.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/headers/groups.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/index.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/mainpage.md -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/make.bat -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/pmsis.dxy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/pmsis.dxy.in -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/ram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/ram.rst -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/docs/requirements.txt -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/eeprom/24XX1025.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/eeprom/24XX1025.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/eeprom/virtual_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/eeprom/virtual_eeprom.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/flash/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/flash/flash.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/flash/hyperflash/hyperflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/flash/hyperflash/hyperflash.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/flash/mram/mram-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/flash/mram/mram-v2.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/flash/spiflash/atxp032.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/flash/spiflash/atxp032.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/flash/spiflash/spiflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/flash/spiflash/spiflash.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/fs.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/host_fs/host_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/host_fs/host_fs.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/host_fs/semihost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/host_fs/semihost.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/host_fs/semihost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/host_fs/semihost.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/lfs/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/lfs/lfs.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/lfs/lfs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/lfs/lfs_util.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/lfs/lfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/lfs/lfs_util.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/lfs/pi_lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/lfs/pi_lfs.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/fs/read_fs/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/fs/read_fs/read_fs.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ai_deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ai_deck.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ble.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ble/nina_b112.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ble/nina_b112.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/bsp.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/buffer.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/gc0308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/gc0308.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/himax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/himax.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/mt9v034.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/mt9v034.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/ov5640.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/ov7670.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/pixart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/pixart.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/camera/thermeye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/camera/thermeye.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/crc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/crc/md5.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/debug.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/display.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/display/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/display/ili9341.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/eeprom.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/eeprom/24xx1025.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/eeprom/24xx1025.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/eeprom_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/eeprom_slave.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/flash.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/flash/atxp032.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/flash/atxp032.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/flash/mram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/flash/mram.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/flash/spiflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/flash/spiflash.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/flash_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/flash_partition.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs/LICENSE_LFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs/LICENSE_LFS.md -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs/hostfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs/hostfs.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs/lfs.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs/pi_lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs/pi_lfs.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/fs/readfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/fs/readfs.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/gapoc_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/gapoc_a.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/gapoc_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/gapoc_b.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/gapoc_b_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/gapoc_b_v2.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/gapuino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/gapuino.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ota.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ota_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ota_utility.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/partition.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/pulp.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ram.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ram/aps25xxxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ram/aps25xxxn.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ram/hyperram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ram/hyperram.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/ram/spiram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/ram/spiram.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/siracusa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/siracusa.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/transport.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/updater.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/vega.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/vega.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/include/bsp/wolfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/include/bsp/wolfe.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/jenkins/sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/jenkins/sdk.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ota/ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ota/ota.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ota/ota_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ota/ota_utility.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ota/updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ota/updater.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/partition/flash_partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/partition/flash_partition.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/partition/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/partition/partition.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/alloc_extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/alloc_extern.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/extern_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/extern_alloc.h -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/hyperram/hyperram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/hyperram/hyperram.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/ram.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/spiram/aps25xxxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/spiram/aps25xxxn.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/ram/spiram/spiram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/ram/spiram/spiram.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/freertos_bsp_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/freertos_bsp_rules.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/gap_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/gap_sdk.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/pulp_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/pulp_sdk.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/pulpos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/pulpos.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/pulpos/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/pulpos/rules.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/rules/pulpos/src.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/src.mk -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/transport/nina_w10/firmware/Makefile: -------------------------------------------------------------------------------- 1 | PROJECT_NAME := nina_w10_fw 2 | 3 | include $(IDF_PATH)/make/project.mk 4 | 5 | -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/transport/nina_w10/nina_w10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/transport/nina_w10/nina_w10.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/transport/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/transport/transport.c -------------------------------------------------------------------------------- /rtos/pmsis/pmsis_bsp/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pmsis/pmsis_bsp/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /rtos/pulpos/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/Makefile -------------------------------------------------------------------------------- /rtos/pulpos/common/bin/pos-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/bin/pos-size -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pmsis.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/alloc.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/cluster.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/data.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/kernel.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/lock.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/sched.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/data/soc_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/data/soc_event.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/alloc.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/alloc_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/alloc_pool.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/cluster.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/dma.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/freq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/freq.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/implem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/implem.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/irq.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/kernel.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/link.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/lock.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/pe.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/perf.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/soc_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/soc_event.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/task.h -------------------------------------------------------------------------------- /rtos/pulpos/common/include/pos/implem/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/include/pos/implem/trace.h -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/alloc.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/alloc_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/alloc_pool.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/crt0.S -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/device.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/fll-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/fll-v1.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/freq-domains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/freq-domains.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/init.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/irq.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/irq_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/irq_asm.S -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/kernel.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/log.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/soc_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/soc_event.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/soc_event_eu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/soc_event_eu.S -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/soc_event_v2_itc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/soc_event_v2_itc.S -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/task.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/task_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/task_asm.S -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/time.c -------------------------------------------------------------------------------- /rtos/pulpos/common/kernel/time_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/kernel/time_asm.S -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/fprintf.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/include/io.h -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/io.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/prf.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/semihost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/semihost.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/semihost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/semihost.h -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/libc/minimal/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/libc/minimal/sprintf.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/omp/include/omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/omp/include/omp.h -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/omp/omp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/omp/omp.c -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/omp/ompRt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/omp/ompRt.h -------------------------------------------------------------------------------- /rtos/pulpos/common/lib/omp/omp_wrapper_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/lib/omp/omp_wrapper_gcc.c -------------------------------------------------------------------------------- /rtos/pulpos/common/rules/pulpos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/rules/pulpos.mk -------------------------------------------------------------------------------- /rtos/pulpos/common/rules/pulpos/configs/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/rules/pulpos/configs/default.mk -------------------------------------------------------------------------------- /rtos/pulpos/common/rules/pulpos/default_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/rules/pulpos/default_rules.mk -------------------------------------------------------------------------------- /rtos/pulpos/common/rules/pulpos/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/common/rules/pulpos/src.mk -------------------------------------------------------------------------------- /rtos/pulpos/pulp/drivers/cluster/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/drivers/cluster/cluster.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/drivers/cluster/pe-eu-v3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/drivers/cluster/pe-eu-v3.S -------------------------------------------------------------------------------- /rtos/pulpos/pulp/drivers/hyperbus/hyperbus-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/drivers/hyperbus/hyperbus-v3.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/drivers/uart/uart-v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/drivers/uart/uart-v1.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/drivers/udma/udma-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/drivers/udma/udma-v3.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/chips/pulp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/chips/pulp/config.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/chips/pulp/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/chips/pulp/soc.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/chips/siracusa/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/chips/siracusa/soc.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/data/hyperbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/data/hyperbus.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/data/spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/data/spim.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/data/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/data/uart.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/data/udma-v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/data/udma-v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/include/pos/implem/udma-v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/include/pos/implem/udma-v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp/kernel/chips/pulp/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/kernel/chips/pulp/link.ld -------------------------------------------------------------------------------- /rtos/pulpos/pulp/kernel/chips/pulp/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/kernel/chips/pulp/soc.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/kernel/chips/siracusa/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/kernel/chips/siracusa/link.ld -------------------------------------------------------------------------------- /rtos/pulpos/pulp/kernel/chips/siracusa/pll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/kernel/chips/siracusa/pll.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/kernel/chips/siracusa/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/kernel/chips/siracusa/soc.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp/rules/pulpos/targets/pulp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/rules/pulpos/targets/pulp.mk -------------------------------------------------------------------------------- /rtos/pulpos/pulp/rules/pulpos/targets/pulp_nn.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/rules/pulpos/targets/pulp_nn.mk -------------------------------------------------------------------------------- /rtos/pulpos/pulp/rules/pulpos/targets/siracusa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp/rules/pulpos/targets/siracusa.mk -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/LICENSE -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/Makefile -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/SConstruct -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/APB_GPIO_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../rtl/gap/docs/IP_REFERENCES/APB_GPIO_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/HYPER_V2_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../rtl/vega/fe/ips/udma/udma_hyperbus_octospi/docs/HYPERBUS_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/RTC_UNIT_reference.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/doc/RTC_UNIT_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/TIMER_UNIT_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../rtl/vega/fe/ips/timer_unit/doc/TIMER_UNIT_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/gap/APB_SOC_CTRL_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/gap_rev1/docs/IP_REFERENCES/APB_SOC_CTRL_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/gpio/APB_GPIO_V3_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/fe/ips/apb/apb_gpio/docs/APB_GPIO_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/hwce/HWCE_v4_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/gap_master/docs/IP_REFERENCES/HWCE_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/hwce/HWCE_v5_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/fe/ips/hwce-new/docs/HWCE_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/mchan/CL_DMA_v7_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/fe/ips/mchan/doc/CL_DMA_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/pwm/pwm_v1.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/gap8_revc/docs/IP_REFERENCES/APB_ADV_TIMER_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/udma/CAM_CPI_V1_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/fe/ips/udma/udma_camera/doc/CAM_CPI_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/udma/MEMCPY_v1_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/gap8_revc/fe/ips/udma/doc/MEMCPY_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/udma/MRAM_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/fe/ips/udma/udma_mram/docs/MRAM_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/udma/i2s/I2S_V1_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../../rtl/gap_rev1/fe/ips/udma/doc/I2S_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/udma/i2s/I2S_V2_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../../rtl/vega/fe/ips/udma/udma_i2s/doc/I2S_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/doc/vega/APB_SOC_CTRL_reference.xlsx: -------------------------------------------------------------------------------- 1 | ../../../../rtl/vega/docs/IP_REFERENCES/APB_SOC_CTRL_reference.xlsx -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/chips/gap8: -------------------------------------------------------------------------------- 1 | gap -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/chips/pulp/pulp_archi.h: -------------------------------------------------------------------------------- 1 | pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/chips/siracusa/pulp_archi.h: -------------------------------------------------------------------------------- 1 | pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/eu/eu_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/eu/eu_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/eu/eu_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/eu/eu_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/eu/eu_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/eu/eu_v4.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/fll/fll_v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/fll/fll_v0.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/fll/fll_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/fll/fll_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/gap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/gap_utils.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/gvsoc/gvsoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/gvsoc/gvsoc.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/ima/ima_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/ima/ima_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/itc/itc_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/itc/itc_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/pulp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/pulp_defs.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/pwm/pwm_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/pwm/pwm_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/rab/rab_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/rab/rab_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/rtc/rtc_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/rtc/rtc_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/spim/spi_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/spim/spi_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/utils.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_archi/include/archi/xne/xne_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_archi/include/archi/xne/xne_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/LICENSE -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/Makefile -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/SConstruct -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/bitfield.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/gap/efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/chips/gap/efuse.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/gap/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/chips/gap/pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/gap8: -------------------------------------------------------------------------------- 1 | gap -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/honey/fll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/chips/honey/fll.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/pulp/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/chips/pulp/pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/chips/vega/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/chips/vega/pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/dma/mchan_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/dma/mchan_v4.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/dma/mchan_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/dma/mchan_v5.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/dma/mchan_v6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/dma/mchan_v6.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/dma/mchan_v7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/dma/mchan_v7.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/efuse/efuse_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/efuse/efuse_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/eu/eu_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/eu/eu_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/eu/eu_v1_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/eu/eu_v1_ids.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/eu/eu_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/eu/eu_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/fll/fll_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/fll/fll_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v0.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/gpio/gpio_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/gvsoc/gvsoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/gvsoc/gvsoc.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/hwce/hwce_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/hwce/hwce_v4.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/hwce/hwce_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/hwce/hwce_v5.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/hwme/hwme_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/hwme/hwme_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/ima/ima_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/ima/ima_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/itc/itc_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/itc/itc_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/maestro/pmu_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/or1k/or1k_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/or1k/or1k_v5.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/periph/spi_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/periph/spi_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/pulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/pulp.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/pulp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/pulp_io.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/pwm/pwm_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/pwm/pwm_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/rab/rab_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/rab/rab_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v4.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/riscv/riscv_v5.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/riscv/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/riscv/types.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/rom/rom_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/rom/rom_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/rtc/rtc_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/rtc/rtc_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/tb/tb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/tb/tb.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/timer/timer_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/timer/timer_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/timer/timer_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/timer/timer_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/tryx/tryx_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/tryx/tryx_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/udma/udma_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/udma/udma_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/udma/udma_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/udma/udma_v2.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/udma/udma_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/udma/udma_v3.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/utils.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/include/hal/xne/xne_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/include/hal/xne/xne_v1.h -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/src/hal/mailbox/mailbox_v0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/src/hal/mailbox/mailbox_v0.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/src/hal/rab/rab_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/src/hal/rab/rab_v1.c -------------------------------------------------------------------------------- /rtos/pulpos/pulp_hal/src/hal/tryx/tryx_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rtos/pulpos/pulp_hal/src/hal/tryx/tryx_v1.c -------------------------------------------------------------------------------- /rules/dpi-models.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rules/dpi-models.mk -------------------------------------------------------------------------------- /rules/gap-configs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rules/gap-configs.mk -------------------------------------------------------------------------------- /rules/json-tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rules/json-tools.mk -------------------------------------------------------------------------------- /rules/pulp-debug-bridge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rules/pulp-debug-bridge.mk -------------------------------------------------------------------------------- /rules/pulpos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/rules/pulpos.mk -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/cluster/call/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/call/Makefile -------------------------------------------------------------------------------- /tests/cluster/call/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/call/test.c -------------------------------------------------------------------------------- /tests/cluster/call/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/call/testset.cfg -------------------------------------------------------------------------------- /tests/cluster/fork/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/fork/Makefile -------------------------------------------------------------------------------- /tests/cluster/fork/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/fork/test.c -------------------------------------------------------------------------------- /tests/cluster/fork/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/fork/testset.cfg -------------------------------------------------------------------------------- /tests/cluster/fork_power/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/fork_power/Makefile -------------------------------------------------------------------------------- /tests/cluster/fork_power/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/fork_power/test.c -------------------------------------------------------------------------------- /tests/cluster/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/cluster/testset.cfg -------------------------------------------------------------------------------- /tests/dma/1d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/dma/1d/Makefile -------------------------------------------------------------------------------- /tests/dma/1d/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/dma/1d/test.c -------------------------------------------------------------------------------- /tests/dma/1d/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/dma/1d/testset.cfg -------------------------------------------------------------------------------- /tests/dma/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/dma/testset.cfg -------------------------------------------------------------------------------- /tests/flash/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/simple/Makefile -------------------------------------------------------------------------------- /tests/flash/simple/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/simple/test.c -------------------------------------------------------------------------------- /tests/flash/simple/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/simple/testset.cfg -------------------------------------------------------------------------------- /tests/flash/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/testset.cfg -------------------------------------------------------------------------------- /tests/flash/with_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/with_ram/Makefile -------------------------------------------------------------------------------- /tests/flash/with_ram/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/with_ram/test.c -------------------------------------------------------------------------------- /tests/flash/with_ram/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/flash/with_ram/testset.cfg -------------------------------------------------------------------------------- /tests/fs/read/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/read/Makefile -------------------------------------------------------------------------------- /tests/fs/read/files/flash_file_0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/read/files/flash_file_0.bin -------------------------------------------------------------------------------- /tests/fs/read/files/flash_file_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/read/files/flash_file_1.bin -------------------------------------------------------------------------------- /tests/fs/read/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/read/test.c -------------------------------------------------------------------------------- /tests/fs/read/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/read/testset.cfg -------------------------------------------------------------------------------- /tests/fs/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/fs/testset.cfg -------------------------------------------------------------------------------- /tests/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/hello/Makefile -------------------------------------------------------------------------------- /tests/hello/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/hello/test.c -------------------------------------------------------------------------------- /tests/hello/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/hello/testset.cfg -------------------------------------------------------------------------------- /tests/perf/double_buffering/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/double_buffering/Makefile -------------------------------------------------------------------------------- /tests/perf/double_buffering/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/double_buffering/test.c -------------------------------------------------------------------------------- /tests/perf/double_buffering/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/double_buffering/testset.cfg -------------------------------------------------------------------------------- /tests/perf/matmult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/matmult/Makefile -------------------------------------------------------------------------------- /tests/perf/matmult/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/matmult/stats.h -------------------------------------------------------------------------------- /tests/perf/matmult/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/matmult/test.c -------------------------------------------------------------------------------- /tests/perf/matmult/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/matmult/testset.cfg -------------------------------------------------------------------------------- /tests/perf/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/perf/testset.cfg -------------------------------------------------------------------------------- /tests/ram/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/ram/simple/Makefile -------------------------------------------------------------------------------- /tests/ram/simple/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/ram/simple/test.c -------------------------------------------------------------------------------- /tests/ram/simple/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/ram/simple/testset.cfg -------------------------------------------------------------------------------- /tests/ram/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/ram/testset.cfg -------------------------------------------------------------------------------- /tests/redmule/gemm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/Makefile -------------------------------------------------------------------------------- /tests/redmule/gemm/archi_redmule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/archi_redmule.h -------------------------------------------------------------------------------- /tests/redmule/gemm/hal_redmule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/hal_redmule.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/config.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/golden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/golden.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/tensor_dim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/tensor_dim.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/w_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/w_2D.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/w_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/w_input.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/x_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/x_2D.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/x_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/x_input.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/y_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/y_2D.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/y_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/y_input.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/z_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/z_2D.h -------------------------------------------------------------------------------- /tests/redmule/gemm/inc/z_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/inc/z_output.h -------------------------------------------------------------------------------- /tests/redmule/gemm/redmule_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/redmule_test.c -------------------------------------------------------------------------------- /tests/redmule/gemm/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/gemm/testset.cfg -------------------------------------------------------------------------------- /tests/redmule/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/redmule/testset.cfg -------------------------------------------------------------------------------- /tests/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/testset.cfg -------------------------------------------------------------------------------- /tests/uart/loopback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/uart/loopback/Makefile -------------------------------------------------------------------------------- /tests/uart/loopback/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/uart/loopback/config.ini -------------------------------------------------------------------------------- /tests/uart/loopback/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/uart/loopback/test.c -------------------------------------------------------------------------------- /tests/uart/loopback/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/uart/loopback/testset.cfg -------------------------------------------------------------------------------- /tests/uart/testset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tests/uart/testset.cfg -------------------------------------------------------------------------------- /tools/dpi-models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/LICENSE -------------------------------------------------------------------------------- /tools/dpi-models/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/dpi_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/dpi_rules.mk -------------------------------------------------------------------------------- /tools/dpi-models/ext/nosv/svdpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/ext/nosv/svdpi.h -------------------------------------------------------------------------------- /tools/dpi-models/ext/sv/include/questa/dpiheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/ext/sv/include/questa/dpiheader.h -------------------------------------------------------------------------------- /tools/dpi-models/include/common/telnet_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/include/common/telnet_proxy.hpp -------------------------------------------------------------------------------- /tools/dpi-models/include/dpi/models.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/include/dpi/models.hpp -------------------------------------------------------------------------------- /tools/dpi-models/include/dpi/tb_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/include/dpi/tb_driver.h -------------------------------------------------------------------------------- /tools/dpi-models/models/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/camera/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/camera/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/camera/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/camera/camera.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/eeprom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/eeprom/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/eeprom/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/eeprom/eeprom.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/flash/spiflash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/flash/spiflash/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/jtag/proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/jtag/proxy/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/jtag/proxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/jtag/proxy/proxy.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/lcd/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/lcd/ili9341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/lcd/ili9341.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/microphone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/microphone/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/ram/spiram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/ram/spiram/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/ram/spiram/spiram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/ram/spiram/spiram.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/test/spim_verif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/test/spim_verif/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/uart/uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/uart/uart/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/uart/uart/uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/uart/uart/uart.cpp -------------------------------------------------------------------------------- /tools/dpi-models/models/wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/wifi/Makefile -------------------------------------------------------------------------------- /tools/dpi-models/models/wifi/nina_w10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/models/wifi/nina_w10.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/cpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/cpi.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/ctrl.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/dpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/dpi.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/gpio.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/i2c.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/i2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/i2s.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/jtag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/jtag.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/models.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/qspim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/qspim.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/telnet_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/telnet_proxy.cpp -------------------------------------------------------------------------------- /tools/dpi-models/src/uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/dpi-models/src/uart.cpp -------------------------------------------------------------------------------- /tools/gap-configs/CMake/FindAddJsonTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/CMake/FindAddJsonTools.cmake -------------------------------------------------------------------------------- /tools/gap-configs/CMake/FindAddPulpConfigs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/CMake/FindAddPulpConfigs.cmake -------------------------------------------------------------------------------- /tools/gap-configs/CMake/FindPythonModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/CMake/FindPythonModule.cmake -------------------------------------------------------------------------------- /tools/gap-configs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/CMakeLists.txt -------------------------------------------------------------------------------- /tools/gap-configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/Makefile -------------------------------------------------------------------------------- /tools/gap-configs/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/SConstruct -------------------------------------------------------------------------------- /tools/gap-configs/bin/comp_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/comp_gen.py -------------------------------------------------------------------------------- /tools/gap-configs/bin/plpconf_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/plpconf_new -------------------------------------------------------------------------------- /tools/gap-configs/bin/plpfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/plpfiles -------------------------------------------------------------------------------- /tools/gap-configs/bin/plpinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/plpinfo -------------------------------------------------------------------------------- /tools/gap-configs/bin/pulp_config_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/pulp_config_gen -------------------------------------------------------------------------------- /tools/gap-configs/bin/pulp_graph_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/bin/pulp_graph_gen -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/ai_deck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/ai_deck.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gap.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapoc_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapoc_a.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapoc_a_revb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapoc_a_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapoc_a_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapoc_a_spi.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapoc_b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapoc_b.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapoc_b_revb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapoc_b_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapuino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapuino.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapuino_revb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapuino_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapuino_revc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapuino_revc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/gapuino_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/gapuino_spi.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/boards/lucy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/boards/lucy.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/arnold/arnold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/arnold/arnold.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/arnold/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/arnold/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/apb_soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/apb_soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/defaults.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/gap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/gap.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/padframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/padframe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap8_revc/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap8_revc/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap_rev1/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap_rev1/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/gap_rev1/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/gap_rev1/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/neuraghe/soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/neuraghe/soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/apb_soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/apb_soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/defaults.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/padframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/padframe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/pulp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/pulp.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/pulp_nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/pulp_nn.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp_v1/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp_v1/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulp_v2/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/pulp_v2/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulpissimo-riscy/apb_soc.json: -------------------------------------------------------------------------------- 1 | ../pulpissimo/apb_soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulpissimo-riscy/defaults.json: -------------------------------------------------------------------------------- 1 | ../pulpissimo/defaults.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulpissimo-riscy/padframe.json: -------------------------------------------------------------------------------- 1 | ../pulpissimo/padframe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/pulpissimo-riscy/udma.json: -------------------------------------------------------------------------------- 1 | ../pulpissimo/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/usoc_v1/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/usoc_v1/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/apb_soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/apb_soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/defaults.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/padframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/padframe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vega/vega.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vega/vega.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vivosoc3/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vivosoc3/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/vivosoc4/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/vivosoc4/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe/apb_soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe/apb_soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe/wolfe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe/wolfe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe_16/pmu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe_16/pmu.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/chips/wolfe_16/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/chips/wolfe_16/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/ai_deck.json: -------------------------------------------------------------------------------- 1 | ../boards/ai_deck.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gap.json: -------------------------------------------------------------------------------- 1 | ../chips/gap/gap.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gap8_revc.json: -------------------------------------------------------------------------------- 1 | ../chips/gap8_revc/gap8_revc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gap_rev1.json: -------------------------------------------------------------------------------- 1 | ../chips/gap_rev1/gap_rev1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_a.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_a.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_a_revb.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_a_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_a_spi_revb.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_a_spi_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_b.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_b.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_b_revb.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_b_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapoc_b_spi_revb.json: -------------------------------------------------------------------------------- 1 | ../boards/gapoc_b_spi_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapuino.json: -------------------------------------------------------------------------------- 1 | ../boards/gapuino.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapuino_revb.json: -------------------------------------------------------------------------------- 1 | ../boards/gapuino_revb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapuino_revc.json: -------------------------------------------------------------------------------- 1 | ../boards/gapuino_revc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/gapuino_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/config/gapuino_spi.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/lucy.json: -------------------------------------------------------------------------------- 1 | ../boards/lucy.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulp.json: -------------------------------------------------------------------------------- 1 | ../chips/pulp/pulp.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulp_nn.json: -------------------------------------------------------------------------------- 1 | ../chips/pulp/pulp_nn.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulp_rnnext.json: -------------------------------------------------------------------------------- 1 | ../chips/pulp/pulp_rnnext.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulpissimo.json: -------------------------------------------------------------------------------- 1 | ../chips/pulpissimo/pulpissimo.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulpissimo_ibex.json: -------------------------------------------------------------------------------- 1 | ../chips/pulpissimo/pulpissimo_ibex.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/pulpissimo_rnnext.json: -------------------------------------------------------------------------------- 1 | ../chips/pulpissimo/pulpissimo_rnnext.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/vega.json: -------------------------------------------------------------------------------- 1 | ../chips/vega/vega.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/config/wolfe.json: -------------------------------------------------------------------------------- 1 | ../chips/wolfe/wolfe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/defaults.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/camera.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/camera.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/eeprom.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/eeprom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/eeprom.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/hyperflash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/hyperflash.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/hyperflash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/hyperflash.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/hyperram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/hyperram.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/hyperram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/hyperram.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/jtag_proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/jtag_proxy.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/jtag_proxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/jtag_proxy.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/lcd_ili9341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/lcd_ili9341.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/lcd_ili9341.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/lcd_ili9341.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/microphone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/microphone.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/nina_w10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/nina_w10.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/nina_w10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/nina_w10.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/speaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/speaker.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spiflash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spiflash.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spiflash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spiflash.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spim_verif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spim_verif.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spim_verif.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spim_verif.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spiram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spiram.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/spiram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/spiram.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/testbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/testbench.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/uart_tb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/uart_tb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/devices/uart_tb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/devices/uart_tb.rst -------------------------------------------------------------------------------- /tools/gap-configs/configs/fpgas/pulp/genesys2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/fpgas/pulp/genesys2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/cache/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/cache/cache.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/debug/pulp_tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/debug/pulp_tap.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/debug/riscv_dtm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/debug/riscv_dtm.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/dpi/chip_wrapper.json: -------------------------------------------------------------------------------- 1 | { 2 | "vp_component": "utils.dpi_chip_wrapper" 3 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/efuse/efuse_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/efuse/efuse_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/fll/fll_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/fll/fll_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/fulmine/padframe.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1 3 | 4 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/gpio/gpio_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/gpio/gpio_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/gpio/gpio_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/gpio/gpio_v3.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/hwacc/hwacc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/hwacc/hwacc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/hwce/hwce_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/hwce/hwce_v4.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/hwce/hwce_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/hwce/hwce_v5.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/hwme/hwme_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/hwme/hwme_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/ima/ima_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/ima/ima_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/interco/l1_tas.json: -------------------------------------------------------------------------------- 1 | { 2 | "vp_class": "pulp/cluster/l1_tas" 3 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/interco/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/interco/router.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/itc/itc_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/itc/itc_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/mchan/mchan_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/mchan/mchan_v4.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/mchan/mchan_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/mchan/mchan_v5.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/mchan/mchan_v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/mchan/mchan_v6.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/mchan/mchan_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/mchan/mchan_v7.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/memory/ddr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/memory/ddr.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/misc/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/misc/clock.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/mram/mram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/mram/mram.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/ne16/ne16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/ne16/ne16.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/or1k/or10n_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/or1k/or10n_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/pmu/pmu_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/pmu/pmu_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/pmu/pmu_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/pmu/pmu_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/pmu/pmu_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/pmu/pmu_v3.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/pmu/pmu_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/pmu/pmu_v4.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/rab/rab_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/rab/rab_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/ariane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/ariane.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/ibex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/ibex.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/ri5ky_v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/ri5ky_v0.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/ri5ky_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/ri5ky_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/ri5ky_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/ri5ky_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/riscv/zeroriscy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/riscv/zeroriscy.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/rom/rom_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/rom/rom_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/rtc/rtc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version" : 1 3 | } 4 | -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/rtc/rtc_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/rtc/rtc_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/soc/soc_v4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/soc/soc_v4.2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/soc/soc_v4.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/soc/soc_v4.3.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/soc/soc_v4.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/soc/soc_v4.4.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/timer/timer_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/timer/timer_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/timer/timer_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/timer/timer_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/tryx/tryx_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/tryx/tryx_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/uart/uart_v0.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 0 3 | } 4 | -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/udma/udma_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/udma/udma_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/udma/udma_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/udma/udma_v2.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/udma/udma_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/udma/udma_v3.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/udma/udma_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/udma/udma_v4.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/vega/padframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/vega/padframe.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/vega/soc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/vega/soc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/vega/udma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/vega/udma.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/ips/xne/xne_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/ips/xne/xne_v1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/camera.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/dpi_wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/dpi_wrapper.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/eeprom.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/hyper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/hyper.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/hyperflash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/hyperflash.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/hyperram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/hyperram.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/jtag_proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/jtag_proxy.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/ov7670.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/ov7670.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/spiflash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/spiflash.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/spim_verif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/spim_verif.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/periph/uart_tb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/periph/uart_tb.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/board.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/fpga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/fpga.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/gvsoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/gvsoc.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/netlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/netlist.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/pgpin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/pgpin.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/platforms/rtl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/platforms/rtl.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/power_models/l1/l1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/power_models/l1/l1.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/pulp_chip_common.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/pulp_system_common.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/tools/debug-bridge/cable_ftdi.json: -------------------------------------------------------------------------------- 1 | { 2 | "ftdi" :{ 3 | } 4 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/tools/openocd/openocd.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tools/gap-configs/configs/tools/rt/rt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/tools/rt/rt.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/tools/runner/runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/tools/runner/runner.json -------------------------------------------------------------------------------- /tools/gap-configs/configs/tools/vp/injector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/configs/tools/vp/injector.json -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/chip_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/generators/v1/chip_gen.py -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/comp_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/generators/v1/comp_gen.py -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/soc_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/generators/v1/soc_gen.py -------------------------------------------------------------------------------- /tools/gap-configs/python/generators/v1/top_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/generators/v1/top_gen.py -------------------------------------------------------------------------------- /tools/gap-configs/python/gtkw_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/gtkw_new.py -------------------------------------------------------------------------------- /tools/gap-configs/python/plpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/plpconfig.py -------------------------------------------------------------------------------- /tools/gap-configs/python/pulp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gap-configs/python/pulp_config.py -------------------------------------------------------------------------------- /tools/gapy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/README.md -------------------------------------------------------------------------------- /tools/gapy/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/binary.py -------------------------------------------------------------------------------- /tools/gapy/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/common.py -------------------------------------------------------------------------------- /tools/gapy/configs/boards/gap8_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/boards/gap8_common.json -------------------------------------------------------------------------------- /tools/gapy/configs/boards/gap8_reva_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/boards/gap8_reva_common.json -------------------------------------------------------------------------------- /tools/gapy/configs/boards/gap8_revb_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/boards/gap8_revb_common.json -------------------------------------------------------------------------------- /tools/gapy/configs/boards/gap8_revc_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/boards/gap8_revc_common.json -------------------------------------------------------------------------------- /tools/gapy/configs/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/common.json -------------------------------------------------------------------------------- /tools/gapy/configs/devices/flash/spiflash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/devices/flash/spiflash.json -------------------------------------------------------------------------------- /tools/gapy/configs/platforms/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/platforms/board.json -------------------------------------------------------------------------------- /tools/gapy/configs/platforms/fpga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/platforms/fpga.json -------------------------------------------------------------------------------- /tools/gapy/configs/platforms/gvsoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/platforms/gvsoc.json -------------------------------------------------------------------------------- /tools/gapy/configs/platforms/rtl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/configs/platforms/rtl.json -------------------------------------------------------------------------------- /tools/gapy/configs/tools/gapy.json: -------------------------------------------------------------------------------- 1 | { 2 | "verbose": false 3 | } -------------------------------------------------------------------------------- /tools/gapy/elf2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/elf2bin.py -------------------------------------------------------------------------------- /tools/gapy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/errors.py -------------------------------------------------------------------------------- /tools/gapy/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/flash.py -------------------------------------------------------------------------------- /tools/gapy/gapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gapy -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/LICENSE -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/alloca-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/alloca-conf.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/ansidecl.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/bfd-in3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfd/bfd-in3.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/bfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfd/bfd.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/bfdver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfd/bfdver.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfd/config.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/libbfd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfd/libbfd.a -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfd/stmp-bfd-h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bfdlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bfdlink.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/binary-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/binary-io.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/bout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/bout.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/demangle.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/dis-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/dis-asm.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/dwarf2.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/dyn-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/dyn-string.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/environ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/environ.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/fibheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/fibheap.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/filenames.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/floatformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/floatformat.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/fnmatch.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/fopen-bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/fopen-bin.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/fopen-same.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/fopen-same.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/fopen-vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/fopen-vms.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/gdbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/gdbm.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/getopt.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/hashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/hashtab.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/hp-symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/hp-symtab.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/ieee.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/leb128.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/libbfd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/libbfd.a -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/libiberty.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/libiberty.a -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/libiberty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/libiberty.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/longlong.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/lto-symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/lto-symtab.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/md5.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/oasys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/oasys.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/objalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/objalloc.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/obstack.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/os9k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/os9k.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/partition.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/plugin-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/plugin-api.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/progress.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/safe-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/safe-ctype.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/sha1.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/sort.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/splay-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/splay-tree.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/symcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/symcat.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/xregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/xregex.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/xregex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/xregex2.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/ext/xtensa-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/ext/xtensa-isa.h -------------------------------------------------------------------------------- /tools/gapy/gen-debug-info-src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen-debug-info-src/main.cpp -------------------------------------------------------------------------------- /tools/gapy/gen_flash_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen_flash_image.py -------------------------------------------------------------------------------- /tools/gapy/gen_lfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen_lfs.py -------------------------------------------------------------------------------- /tools/gapy/gen_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen_partition.py -------------------------------------------------------------------------------- /tools/gapy/gen_readfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/gen_readfs.py -------------------------------------------------------------------------------- /tools/gapy/json_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/json_tools.py -------------------------------------------------------------------------------- /tools/gapy/openocd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/openocd/__init__.py -------------------------------------------------------------------------------- /tools/gapy/partition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/partition/__init__.py -------------------------------------------------------------------------------- /tools/gapy/partition/partitions_single_app.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/partition/partitions_single_app.csv -------------------------------------------------------------------------------- /tools/gapy/partition/partitions_two_ota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/partition/partitions_two_ota.csv -------------------------------------------------------------------------------- /tools/gapy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/requirements.txt -------------------------------------------------------------------------------- /tools/gapy/rules/flash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/rules/flash.mk -------------------------------------------------------------------------------- /tools/gapy/rules/littlefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/rules/littlefs.mk -------------------------------------------------------------------------------- /tools/gapy/rules/readfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/rules/readfs.mk -------------------------------------------------------------------------------- /tools/gapy/rules/run.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/rules/run.mk -------------------------------------------------------------------------------- /tools/gapy/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/run.py -------------------------------------------------------------------------------- /tools/gapy/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gapy/runner/board/board_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/board/board_runner.py -------------------------------------------------------------------------------- /tools/gapy/runner/board_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/board_runner.py -------------------------------------------------------------------------------- /tools/gapy/runner/chips/gap8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/chips/gap8.py -------------------------------------------------------------------------------- /tools/gapy/runner/chips/pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/chips/pulp.py -------------------------------------------------------------------------------- /tools/gapy/runner/chips/vega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/chips/vega.py -------------------------------------------------------------------------------- /tools/gapy/runner/default_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/default_runner.py -------------------------------------------------------------------------------- /tools/gapy/runner/rtl/chips/gap8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/rtl/chips/gap8.py -------------------------------------------------------------------------------- /tools/gapy/runner/rtl/chips/pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/rtl/chips/pulp.py -------------------------------------------------------------------------------- /tools/gapy/runner/rtl/chips/vega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/rtl/chips/vega.py -------------------------------------------------------------------------------- /tools/gapy/runner/rtl/rtl_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/runner/rtl/rtl_runner.py -------------------------------------------------------------------------------- /tools/gapy/targets/ai_deck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/ai_deck.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_a.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_a_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_a_v2.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_a_v2_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_a_v2_spi.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_b.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_b_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_b_v2.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapoc_b_v2_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapoc_b_v2_spi.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino_spi.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino_v2.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino_v2_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino_v2_spi.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino_v3.json -------------------------------------------------------------------------------- /tools/gapy/targets/gapuino_v3_spi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/gapuino_v3_spi.json -------------------------------------------------------------------------------- /tools/gapy/targets/pulp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/pulp.json -------------------------------------------------------------------------------- /tools/gapy/targets/pulp_nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/pulp_nn.json -------------------------------------------------------------------------------- /tools/gapy/targets/pulp_rnnext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/targets/pulp_rnnext.json -------------------------------------------------------------------------------- /tools/gapy/traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/gapy/traces.py -------------------------------------------------------------------------------- /tools/jenkins/sdk_version.txt: -------------------------------------------------------------------------------- 1 | 02b61e14504b78af458843a065627174933ba6f9 2 | -------------------------------------------------------------------------------- /tools/json-tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/json-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/LICENSE -------------------------------------------------------------------------------- /tools/json-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/Makefile -------------------------------------------------------------------------------- /tools/json-tools/include/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/include/jsmn.h -------------------------------------------------------------------------------- /tools/json-tools/include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/include/json.hpp -------------------------------------------------------------------------------- /tools/json-tools/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/json-tools/python/json_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/python/json_tools.py -------------------------------------------------------------------------------- /tools/json-tools/src/jsmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/src/jsmn.cpp -------------------------------------------------------------------------------- /tools/json-tools/src/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/json-tools/src/json.cpp -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/LICENSE -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/Makefile -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/README.md -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/bin/flasher-gap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/bin/flasher-gap -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/bin/plpbridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/bin/plpbridge -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/python/bridge/jtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/python/bridge/jtag.py -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/cable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/cable.hpp -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/cables/jtag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/cables/jtag.cpp -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/cables/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/cables/log.h -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/gdb-server/rsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/gdb-server/rsp.cpp -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/python_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/python_wrapper.cpp -------------------------------------------------------------------------------- /tools/pulp-debug-bridge/src/reqloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/pulp-debug-bridge/src/reqloop.cpp -------------------------------------------------------------------------------- /tools/rules/pmsis_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-sdk/HEAD/tools/rules/pmsis_rules.mk --------------------------------------------------------------------------------