├── .gitattributes ├── .gitignore ├── IOs ├── IOs.json ├── ana.v ├── di.v ├── dio.v └── do.v ├── IPs ├── GPIO │ ├── GPIO.v │ ├── VIP │ │ └── GPIO_VIP.v │ └── verify │ │ ├── main.c │ │ └── sw │ │ └── gpio.c ├── IPs.json ├── PWM │ ├── PWM.v │ ├── VIP │ │ └── PWM_VIP.v │ ├── apb2pwm.v │ └── verify │ │ ├── main.c │ │ └── sw │ │ ├── pwm_drv.c │ │ ├── pwm_drv.h │ │ └── pwm_regs.h ├── SPI │ ├── VIPs │ │ ├── 23LC512.v │ │ └── 25xx128 │ │ │ ├── 25AA128.v │ │ │ └── 25LC128.v │ ├── apb2spi.v │ ├── spi_master.v │ └── verify │ │ ├── main.c │ │ └── sw │ │ ├── 23lc512_drv.c │ │ ├── 23lc512_drv.h │ │ ├── spi_drv.c │ │ ├── spi_drv.h │ │ └── spi_regs.h ├── SRAM │ ├── AHB2MEM.v │ ├── AHBSRAM.v │ ├── SRAM_8Kx32.v │ └── openstriVe_soc_mem.v ├── UART │ └── UART_SF.v ├── VIPs │ ├── 11xx080 │ │ ├── M11AA080.v │ │ └── M11LC080.v │ └── 93xx56x │ │ ├── 93AA56A.v │ │ ├── 93AA56B.v │ │ ├── 93AA56C.v │ │ ├── 93C56A.v │ │ ├── 93C56B.v │ │ ├── 93C56C.v │ │ ├── 93LC56A.v │ │ ├── 93LC56B.v │ │ └── 93LC56C.v ├── counter │ └── counter.v ├── flash │ ├── SST26VF064B.v │ ├── SST26WF080B.v │ └── controller │ │ ├── QSIXIP2w.v │ │ ├── qspi_xip_cache32x16_ahb.v │ │ ├── qspi_xip_cache32x8_ahb.v │ │ └── qspi_xip_cache_ahb.v ├── i2c │ ├── VIPs │ │ ├── 24xx64 │ │ │ ├── 24AA64.v │ │ │ ├── 24FC64.v │ │ │ └── 24LC64.v │ │ ├── MCP79410.v │ │ └── i2c_slave_vip.v │ ├── apb2i2c.v │ ├── i2c.v │ └── verify │ │ ├── main.c │ │ └── sw │ │ ├── i2c_drv.c │ │ ├── i2c_drv.h │ │ └── i2c_regs.h ├── timer │ ├── TIMER32.v │ └── verify │ │ ├── main.c │ │ └── sw │ │ ├── tmr_drv.c │ │ ├── tmr_drv.h │ │ └── tmr_regs.h └── watchdog │ └── WDT32.v ├── Images ├── AHB.png ├── APB.png ├── APBs.jpg ├── HierarchicalTesting.jpg ├── IOpads.jpg ├── IP_VIP.jpg ├── IP_wrapper.jpg ├── IPs.jpg ├── IPs2.jpg ├── SoC.jpg ├── externalComponent.jpg ├── externalComponent2.jpg ├── flow.jpg ├── multi_buses.jpg └── multi_masters.jpg ├── JSON_format_doc ├── IPs │ ├── IPs_JSON.txt │ ├── IPs_example.json │ └── Readme.md ├── SoC │ ├── Readme.md │ ├── soc_JSON.txt │ ├── soc_example_dummyMaster.json │ └── soc_example_realMaster.json ├── masters │ ├── Readme.md │ ├── masters_JSON.txt │ └── masters_example.json └── subsystems │ ├── Readme.md │ ├── subsystem_JSON.txt │ └── subsystem_example.json ├── LICENSE ├── README.md ├── compile.sh ├── masters ├── CM0 │ └── build │ │ ├── Makefile │ │ ├── main.c │ │ ├── simple.ld │ │ └── sw │ │ ├── 23lc512_drv.c │ │ ├── 23lc512_drv.h │ │ ├── PMIC_regs.h │ │ ├── base_addr.h │ │ ├── cm0_startup.s │ │ ├── dbgio_drv.c │ │ ├── dbgio_drv.h │ │ ├── gpio.c │ │ ├── i2c_drv.c │ │ ├── i2c_drv.h │ │ ├── i2c_regs.h │ │ ├── macros.h │ │ ├── pwm_drv.c │ │ ├── pwm_drv.h │ │ ├── pwm_regs.h │ │ ├── spi_drv.c │ │ ├── spi_drv.h │ │ ├── spi_regs.h │ │ ├── start.c │ │ ├── start.o │ │ ├── start.s │ │ ├── tmr_drv.c │ │ ├── tmr_drv.h │ │ └── tmr_regs.h ├── CM3 │ ├── CM3_SYS.v │ └── build │ │ ├── Makefile │ │ ├── main.c │ │ ├── simple.ld │ │ └── sw │ │ ├── 23lc512_drv.c │ │ ├── 23lc512_drv.h │ │ ├── PMIC_regs.h │ │ ├── cm0_startup.s │ │ ├── dbgio_drv.c │ │ ├── dbgio_drv.h │ │ ├── gpio.c │ │ ├── i2c_drv.c │ │ ├── i2c_drv.h │ │ ├── i2c_regs.h │ │ ├── macros.h │ │ ├── pwm_drv.c │ │ ├── pwm_drv.h │ │ ├── pwm_regs.h │ │ ├── spi_drv.c │ │ ├── spi_drv.h │ │ ├── spi_regs.h │ │ ├── start.c │ │ ├── start.o │ │ ├── start.s │ │ ├── tmr_drv.c │ │ ├── tmr_drv.h │ │ └── tmr_regs.h ├── N5 │ ├── NfiVe.v │ └── build │ │ ├── build.sh │ │ ├── crt0.S │ │ ├── link.ld │ │ ├── main.c │ │ └── sw │ │ ├── 23lc512_drv.c │ │ ├── 23lc512_drv.h │ │ ├── PMIC_regs.h │ │ ├── base_addr.h │ │ ├── cm0_startup.s │ │ ├── dbgio_drv.c │ │ ├── dbgio_drv.h │ │ ├── gpio.c │ │ ├── i2c_drv.c │ │ ├── i2c_drv.h │ │ ├── i2c_regs.h │ │ ├── macros.h │ │ ├── pwm_drv.c │ │ ├── pwm_drv.h │ │ ├── pwm_regs.h │ │ ├── spi_drv.c │ │ ├── spi_drv.h │ │ ├── spi_regs.h │ │ ├── start.c │ │ ├── start.o │ │ ├── start.s │ │ ├── tmr_drv.c │ │ ├── tmr_drv.h │ │ └── tmr_regs.h └── masters.json ├── src ├── AHB │ ├── ahb_arbiter_gen.js │ ├── ahb_buses2master.js │ ├── ahb_master_gen.js │ ├── ahb_masters_mul_gen.js │ ├── ahblite_bus_gen.js │ ├── ahblite_master_gen.js │ ├── ahblite_master_wrapper.js │ ├── ahblite_sys_gen.js │ └── ahblite_tb_gen.js ├── APB │ ├── ahb2apb_bridge_gen.js │ ├── apb_bus_gen.js │ ├── apb_sys_gen.js │ └── apb_tb_gen.js ├── sys_gen.js ├── utils │ └── utils.js └── wrapper.js └── systems ├── CM0 └── Demo │ ├── apb.json │ └── demo.json ├── CM3 └── Raptor │ ├── apb.json │ └── raptor.json └── N5 ├── Demo ├── apb.json └── demo.json ├── FPGA_test ├── apb.json └── raptor.json └── Raptor ├── apb.json └── raptor.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/.gitignore -------------------------------------------------------------------------------- /IOs/IOs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IOs/IOs.json -------------------------------------------------------------------------------- /IOs/ana.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IOs/ana.v -------------------------------------------------------------------------------- /IOs/di.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IOs/di.v -------------------------------------------------------------------------------- /IOs/dio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IOs/dio.v -------------------------------------------------------------------------------- /IOs/do.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IOs/do.v -------------------------------------------------------------------------------- /IPs/GPIO/GPIO.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/GPIO/GPIO.v -------------------------------------------------------------------------------- /IPs/GPIO/VIP/GPIO_VIP.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/GPIO/VIP/GPIO_VIP.v -------------------------------------------------------------------------------- /IPs/GPIO/verify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/GPIO/verify/main.c -------------------------------------------------------------------------------- /IPs/GPIO/verify/sw/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/GPIO/verify/sw/gpio.c -------------------------------------------------------------------------------- /IPs/IPs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/IPs.json -------------------------------------------------------------------------------- /IPs/PWM/PWM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/PWM.v -------------------------------------------------------------------------------- /IPs/PWM/VIP/PWM_VIP.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/VIP/PWM_VIP.v -------------------------------------------------------------------------------- /IPs/PWM/apb2pwm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/apb2pwm.v -------------------------------------------------------------------------------- /IPs/PWM/verify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/verify/main.c -------------------------------------------------------------------------------- /IPs/PWM/verify/sw/pwm_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/verify/sw/pwm_drv.c -------------------------------------------------------------------------------- /IPs/PWM/verify/sw/pwm_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/verify/sw/pwm_drv.h -------------------------------------------------------------------------------- /IPs/PWM/verify/sw/pwm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/PWM/verify/sw/pwm_regs.h -------------------------------------------------------------------------------- /IPs/SPI/VIPs/23LC512.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/VIPs/23LC512.v -------------------------------------------------------------------------------- /IPs/SPI/VIPs/25xx128/25AA128.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/VIPs/25xx128/25AA128.v -------------------------------------------------------------------------------- /IPs/SPI/VIPs/25xx128/25LC128.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/VIPs/25xx128/25LC128.v -------------------------------------------------------------------------------- /IPs/SPI/apb2spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/apb2spi.v -------------------------------------------------------------------------------- /IPs/SPI/spi_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/spi_master.v -------------------------------------------------------------------------------- /IPs/SPI/verify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/main.c -------------------------------------------------------------------------------- /IPs/SPI/verify/sw/23lc512_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/sw/23lc512_drv.c -------------------------------------------------------------------------------- /IPs/SPI/verify/sw/23lc512_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/sw/23lc512_drv.h -------------------------------------------------------------------------------- /IPs/SPI/verify/sw/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/sw/spi_drv.c -------------------------------------------------------------------------------- /IPs/SPI/verify/sw/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/sw/spi_drv.h -------------------------------------------------------------------------------- /IPs/SPI/verify/sw/spi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SPI/verify/sw/spi_regs.h -------------------------------------------------------------------------------- /IPs/SRAM/AHB2MEM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SRAM/AHB2MEM.v -------------------------------------------------------------------------------- /IPs/SRAM/AHBSRAM.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SRAM/AHBSRAM.v -------------------------------------------------------------------------------- /IPs/SRAM/SRAM_8Kx32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SRAM/SRAM_8Kx32.v -------------------------------------------------------------------------------- /IPs/SRAM/openstriVe_soc_mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/SRAM/openstriVe_soc_mem.v -------------------------------------------------------------------------------- /IPs/UART/UART_SF.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/UART/UART_SF.v -------------------------------------------------------------------------------- /IPs/VIPs/11xx080/M11AA080.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/11xx080/M11AA080.v -------------------------------------------------------------------------------- /IPs/VIPs/11xx080/M11LC080.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/11xx080/M11LC080.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93AA56A.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93AA56A.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93AA56B.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93AA56B.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93AA56C.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93AA56C.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93C56A.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93C56A.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93C56B.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93C56B.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93C56C.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93C56C.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93LC56A.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93LC56A.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93LC56B.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93LC56B.v -------------------------------------------------------------------------------- /IPs/VIPs/93xx56x/93LC56C.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/VIPs/93xx56x/93LC56C.v -------------------------------------------------------------------------------- /IPs/counter/counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/counter/counter.v -------------------------------------------------------------------------------- /IPs/flash/SST26VF064B.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/SST26VF064B.v -------------------------------------------------------------------------------- /IPs/flash/SST26WF080B.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/SST26WF080B.v -------------------------------------------------------------------------------- /IPs/flash/controller/QSIXIP2w.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/controller/QSIXIP2w.v -------------------------------------------------------------------------------- /IPs/flash/controller/qspi_xip_cache32x16_ahb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/controller/qspi_xip_cache32x16_ahb.v -------------------------------------------------------------------------------- /IPs/flash/controller/qspi_xip_cache32x8_ahb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/controller/qspi_xip_cache32x8_ahb.v -------------------------------------------------------------------------------- /IPs/flash/controller/qspi_xip_cache_ahb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/flash/controller/qspi_xip_cache_ahb.v -------------------------------------------------------------------------------- /IPs/i2c/VIPs/24xx64/24AA64.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/VIPs/24xx64/24AA64.v -------------------------------------------------------------------------------- /IPs/i2c/VIPs/24xx64/24FC64.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/VIPs/24xx64/24FC64.v -------------------------------------------------------------------------------- /IPs/i2c/VIPs/24xx64/24LC64.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/VIPs/24xx64/24LC64.v -------------------------------------------------------------------------------- /IPs/i2c/VIPs/MCP79410.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/VIPs/MCP79410.v -------------------------------------------------------------------------------- /IPs/i2c/VIPs/i2c_slave_vip.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/VIPs/i2c_slave_vip.v -------------------------------------------------------------------------------- /IPs/i2c/apb2i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/apb2i2c.v -------------------------------------------------------------------------------- /IPs/i2c/i2c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/i2c.v -------------------------------------------------------------------------------- /IPs/i2c/verify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/verify/main.c -------------------------------------------------------------------------------- /IPs/i2c/verify/sw/i2c_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/verify/sw/i2c_drv.c -------------------------------------------------------------------------------- /IPs/i2c/verify/sw/i2c_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/verify/sw/i2c_drv.h -------------------------------------------------------------------------------- /IPs/i2c/verify/sw/i2c_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/i2c/verify/sw/i2c_regs.h -------------------------------------------------------------------------------- /IPs/timer/TIMER32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/timer/TIMER32.v -------------------------------------------------------------------------------- /IPs/timer/verify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/timer/verify/main.c -------------------------------------------------------------------------------- /IPs/timer/verify/sw/tmr_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/timer/verify/sw/tmr_drv.c -------------------------------------------------------------------------------- /IPs/timer/verify/sw/tmr_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/timer/verify/sw/tmr_drv.h -------------------------------------------------------------------------------- /IPs/timer/verify/sw/tmr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/timer/verify/sw/tmr_regs.h -------------------------------------------------------------------------------- /IPs/watchdog/WDT32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/IPs/watchdog/WDT32.v -------------------------------------------------------------------------------- /Images/AHB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/AHB.png -------------------------------------------------------------------------------- /Images/APB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/APB.png -------------------------------------------------------------------------------- /Images/APBs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/APBs.jpg -------------------------------------------------------------------------------- /Images/HierarchicalTesting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/HierarchicalTesting.jpg -------------------------------------------------------------------------------- /Images/IOpads.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/IOpads.jpg -------------------------------------------------------------------------------- /Images/IP_VIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/IP_VIP.jpg -------------------------------------------------------------------------------- /Images/IP_wrapper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/IP_wrapper.jpg -------------------------------------------------------------------------------- /Images/IPs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/IPs.jpg -------------------------------------------------------------------------------- /Images/IPs2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/IPs2.jpg -------------------------------------------------------------------------------- /Images/SoC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/SoC.jpg -------------------------------------------------------------------------------- /Images/externalComponent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/externalComponent.jpg -------------------------------------------------------------------------------- /Images/externalComponent2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/externalComponent2.jpg -------------------------------------------------------------------------------- /Images/flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/flow.jpg -------------------------------------------------------------------------------- /Images/multi_buses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/multi_buses.jpg -------------------------------------------------------------------------------- /Images/multi_masters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/Images/multi_masters.jpg -------------------------------------------------------------------------------- /JSON_format_doc/IPs/IPs_JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/IPs/IPs_JSON.txt -------------------------------------------------------------------------------- /JSON_format_doc/IPs/IPs_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/IPs/IPs_example.json -------------------------------------------------------------------------------- /JSON_format_doc/IPs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/IPs/Readme.md -------------------------------------------------------------------------------- /JSON_format_doc/SoC/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/SoC/Readme.md -------------------------------------------------------------------------------- /JSON_format_doc/SoC/soc_JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/SoC/soc_JSON.txt -------------------------------------------------------------------------------- /JSON_format_doc/SoC/soc_example_dummyMaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/SoC/soc_example_dummyMaster.json -------------------------------------------------------------------------------- /JSON_format_doc/SoC/soc_example_realMaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/SoC/soc_example_realMaster.json -------------------------------------------------------------------------------- /JSON_format_doc/masters/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/masters/Readme.md -------------------------------------------------------------------------------- /JSON_format_doc/masters/masters_JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/masters/masters_JSON.txt -------------------------------------------------------------------------------- /JSON_format_doc/masters/masters_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/masters/masters_example.json -------------------------------------------------------------------------------- /JSON_format_doc/subsystems/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/subsystems/Readme.md -------------------------------------------------------------------------------- /JSON_format_doc/subsystems/subsystem_JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/subsystems/subsystem_JSON.txt -------------------------------------------------------------------------------- /JSON_format_doc/subsystems/subsystem_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/JSON_format_doc/subsystems/subsystem_example.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/compile.sh -------------------------------------------------------------------------------- /masters/CM0/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/Makefile -------------------------------------------------------------------------------- /masters/CM0/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/main.c -------------------------------------------------------------------------------- /masters/CM0/build/simple.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/simple.ld -------------------------------------------------------------------------------- /masters/CM0/build/sw/23lc512_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/23lc512_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/23lc512_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/23lc512_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/PMIC_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/PMIC_regs.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/base_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/base_addr.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/cm0_startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/cm0_startup.s -------------------------------------------------------------------------------- /masters/CM0/build/sw/dbgio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/dbgio_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/dbgio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/dbgio_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/gpio.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/i2c_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/i2c_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/i2c_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/i2c_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/i2c_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/i2c_regs.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/macros.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/pwm_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/pwm_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/pwm_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/pwm_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/pwm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/pwm_regs.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/spi_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/spi_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/spi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/spi_regs.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/start.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/start.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/start.o -------------------------------------------------------------------------------- /masters/CM0/build/sw/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/start.s -------------------------------------------------------------------------------- /masters/CM0/build/sw/tmr_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/tmr_drv.c -------------------------------------------------------------------------------- /masters/CM0/build/sw/tmr_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/tmr_drv.h -------------------------------------------------------------------------------- /masters/CM0/build/sw/tmr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM0/build/sw/tmr_regs.h -------------------------------------------------------------------------------- /masters/CM3/CM3_SYS.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/CM3_SYS.v -------------------------------------------------------------------------------- /masters/CM3/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/Makefile -------------------------------------------------------------------------------- /masters/CM3/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/main.c -------------------------------------------------------------------------------- /masters/CM3/build/simple.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/simple.ld -------------------------------------------------------------------------------- /masters/CM3/build/sw/23lc512_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/23lc512_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/23lc512_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/23lc512_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/PMIC_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/PMIC_regs.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/cm0_startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/cm0_startup.s -------------------------------------------------------------------------------- /masters/CM3/build/sw/dbgio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/dbgio_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/dbgio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/dbgio_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/gpio.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/i2c_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/i2c_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/i2c_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/i2c_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/i2c_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/i2c_regs.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/macros.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/pwm_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/pwm_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/pwm_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/pwm_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/pwm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/pwm_regs.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/spi_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/spi_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/spi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/spi_regs.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/start.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/start.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/start.o -------------------------------------------------------------------------------- /masters/CM3/build/sw/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/start.s -------------------------------------------------------------------------------- /masters/CM3/build/sw/tmr_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/tmr_drv.c -------------------------------------------------------------------------------- /masters/CM3/build/sw/tmr_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/tmr_drv.h -------------------------------------------------------------------------------- /masters/CM3/build/sw/tmr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/CM3/build/sw/tmr_regs.h -------------------------------------------------------------------------------- /masters/N5/NfiVe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/NfiVe.v -------------------------------------------------------------------------------- /masters/N5/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/build.sh -------------------------------------------------------------------------------- /masters/N5/build/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/crt0.S -------------------------------------------------------------------------------- /masters/N5/build/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/link.ld -------------------------------------------------------------------------------- /masters/N5/build/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/main.c -------------------------------------------------------------------------------- /masters/N5/build/sw/23lc512_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/23lc512_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/23lc512_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/23lc512_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/PMIC_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/PMIC_regs.h -------------------------------------------------------------------------------- /masters/N5/build/sw/base_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/base_addr.h -------------------------------------------------------------------------------- /masters/N5/build/sw/cm0_startup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/cm0_startup.s -------------------------------------------------------------------------------- /masters/N5/build/sw/dbgio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/dbgio_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/dbgio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/dbgio_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/gpio.c -------------------------------------------------------------------------------- /masters/N5/build/sw/i2c_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/i2c_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/i2c_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/i2c_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/i2c_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/i2c_regs.h -------------------------------------------------------------------------------- /masters/N5/build/sw/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/macros.h -------------------------------------------------------------------------------- /masters/N5/build/sw/pwm_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/pwm_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/pwm_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/pwm_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/pwm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/pwm_regs.h -------------------------------------------------------------------------------- /masters/N5/build/sw/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/spi_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/spi_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/spi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/spi_regs.h -------------------------------------------------------------------------------- /masters/N5/build/sw/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/start.c -------------------------------------------------------------------------------- /masters/N5/build/sw/start.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/start.o -------------------------------------------------------------------------------- /masters/N5/build/sw/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/start.s -------------------------------------------------------------------------------- /masters/N5/build/sw/tmr_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/tmr_drv.c -------------------------------------------------------------------------------- /masters/N5/build/sw/tmr_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/tmr_drv.h -------------------------------------------------------------------------------- /masters/N5/build/sw/tmr_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/N5/build/sw/tmr_regs.h -------------------------------------------------------------------------------- /masters/masters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/masters/masters.json -------------------------------------------------------------------------------- /src/AHB/ahb_arbiter_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahb_arbiter_gen.js -------------------------------------------------------------------------------- /src/AHB/ahb_buses2master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahb_buses2master.js -------------------------------------------------------------------------------- /src/AHB/ahb_master_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahb_master_gen.js -------------------------------------------------------------------------------- /src/AHB/ahb_masters_mul_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahb_masters_mul_gen.js -------------------------------------------------------------------------------- /src/AHB/ahblite_bus_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahblite_bus_gen.js -------------------------------------------------------------------------------- /src/AHB/ahblite_master_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahblite_master_gen.js -------------------------------------------------------------------------------- /src/AHB/ahblite_master_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahblite_master_wrapper.js -------------------------------------------------------------------------------- /src/AHB/ahblite_sys_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahblite_sys_gen.js -------------------------------------------------------------------------------- /src/AHB/ahblite_tb_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/AHB/ahblite_tb_gen.js -------------------------------------------------------------------------------- /src/APB/ahb2apb_bridge_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/APB/ahb2apb_bridge_gen.js -------------------------------------------------------------------------------- /src/APB/apb_bus_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/APB/apb_bus_gen.js -------------------------------------------------------------------------------- /src/APB/apb_sys_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/APB/apb_sys_gen.js -------------------------------------------------------------------------------- /src/APB/apb_tb_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/APB/apb_tb_gen.js -------------------------------------------------------------------------------- /src/sys_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/sys_gen.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/src/wrapper.js -------------------------------------------------------------------------------- /systems/CM0/Demo/apb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/CM0/Demo/apb.json -------------------------------------------------------------------------------- /systems/CM0/Demo/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/CM0/Demo/demo.json -------------------------------------------------------------------------------- /systems/CM3/Raptor/apb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/CM3/Raptor/apb.json -------------------------------------------------------------------------------- /systems/CM3/Raptor/raptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/CM3/Raptor/raptor.json -------------------------------------------------------------------------------- /systems/N5/Demo/apb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/Demo/apb.json -------------------------------------------------------------------------------- /systems/N5/Demo/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/Demo/demo.json -------------------------------------------------------------------------------- /systems/N5/FPGA_test/apb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/FPGA_test/apb.json -------------------------------------------------------------------------------- /systems/N5/FPGA_test/raptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/FPGA_test/raptor.json -------------------------------------------------------------------------------- /systems/N5/Raptor/apb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/Raptor/apb.json -------------------------------------------------------------------------------- /systems/N5/Raptor/raptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/habibagamal/SoC_Automation/HEAD/systems/N5/Raptor/raptor.json --------------------------------------------------------------------------------