├── .dir-locals.el ├── .gitignore ├── Config.in.app-image ├── Config.in.kernel ├── Config.in.optee ├── Config.in.secure ├── Config.in.u-boot ├── Kconfig ├── LICENSES └── MIT.txt ├── Makefile ├── Makefile-mplab ├── README.md ├── README.txt ├── autoload.py ├── config ├── .gitignore ├── Makefile ├── Makefile.kconfig ├── POTFILES.in ├── README.at91bootstrap ├── check.sh ├── conf.c ├── confdata.c ├── expr.c ├── expr.h ├── foo.h ├── gconf.c ├── gconf.glade ├── images.c ├── kconfig-language.txt ├── kconfig-to-at91bootstrap.patch ├── kconfig_load.c ├── kxgettext.c ├── lex.zconf.c_shipped ├── lkc.h ├── lkc_proto.h ├── lxdialog │ ├── .gitignore │ ├── BIG.FAT.WARNING │ ├── check-lxdialog.sh │ ├── checklist.c │ ├── dialog.h │ ├── inputbox.c │ ├── menubox.c │ ├── textbox.c │ ├── util.c │ └── yesno.c ├── mconf.c ├── menu.c ├── qconf.cc ├── qconf.h ├── streamline_config.pl ├── symbol.c ├── util.c ├── zconf.gperf ├── zconf.hash.c_shipped ├── zconf.l ├── zconf.tab.c_shipped └── zconf.y ├── configs ├── ourasi_ddr2_ebdf_qspi_uboot_defconfig ├── ourasi_ddr2_ebsd0_uboot_defconfig ├── ourasi_ddr2_ebsd1_uboot_defconfig ├── ourasi_ddr2_ebsd2_uboot_defconfig ├── ourasi_ddr3_eb_bkptnone_defconfig ├── ourasi_ddr3_ebdf_qspi_uboot_defconfig ├── ourasi_ddr3_ebnf_uboot_defconfig ├── ourasi_ddr3_ebsd0_uboot_defconfig ├── ourasi_ddr3_ebsd1_uboot_defconfig ├── ourasi_ddr3_ebsd2_uboot_defconfig ├── ourasi_lpddr2_eb_bkptnone_defconfig ├── ourasi_lpddr2_ebsd0_uboot_defconfig ├── ourasi_lpddr2_ebsd1_uboot_defconfig ├── ourasi_lpddr2_ebsd2_uboot_defconfig ├── ourasi_lpddr3_eb_bkptnone_defconfig ├── ourasi_lpddr3_ebsd0_uboot_defconfig ├── ourasi_lpddr3_ebsd1_uboot_defconfig ├── ourasi_lpddr3_ebsd2_uboot_defconfig ├── sam9x60_curiosity_bkptnone_defconfig ├── sam9x60_curiositynf_uboot_defconfig ├── sam9x60_curiositysd1_uboot_defconfig ├── sam9x60_curiositysd_uboot_defconfig ├── sam9x60_ddr2_sip_eb_bkptnone_defconfig ├── sam9x60_ddr2_sip_ebdf_qspi_linux_image_dt_defconfig ├── sam9x60_ddr2_sip_ebdf_qspi_uboot_defconfig ├── sam9x60_ddr2_sip_ebnf_linux_image_dt_defconfig ├── sam9x60_ddr2_sip_ebnf_uboot_defconfig ├── sam9x60_ddr2_sip_ebsd_linux_image_dt_defconfig ├── sam9x60_ddr2_sip_ebsd_uboot_defconfig ├── sam9x60_sdr_sip_eb_bkptnone_defconfig ├── sam9x60_sdr_sip_ebdf_qspi_linux_image_dt_defconfig ├── sam9x60_sdr_sip_ebdf_qspi_uboot_defconfig ├── sam9x60_sdr_sip_ebnf_linux_image_dt_defconfig ├── sam9x60_sdr_sip_ebnf_uboot_defconfig ├── sam9x60_sdr_sip_ebsd_linux_image_dt_defconfig ├── sam9x60_sdr_sip_ebsd_uboot_defconfig ├── sam9x60ek_bkptnone_defconfig ├── sam9x60ekdf_qspi_linux_image_dt_defconfig ├── sam9x60ekdf_qspi_uboot_defconfig ├── sam9x60eknf_linux_image_dt_defconfig ├── sam9x60eknf_uboot_defconfig ├── sam9x60eksd_linux_image_dt_defconfig ├── sam9x60eksd_uboot_defconfig ├── sam9x75_curiosity_bkptnone_defconfig ├── sam9x75_curiositydf_qspi_uboot_defconfig ├── sam9x75_curiositynf_uboot_defconfig ├── sam9x75_curiositysd_uboot_defconfig ├── sam9x75_som1g_nf_uboot_defconfig ├── sam9x75_som1g_sd_uboot_defconfig ├── sam9x75_som2g_nf_uboot_defconfig ├── sam9x75_som2g_sd_uboot_defconfig ├── sam9x75_som512m_nf_uboot_defconfig ├── sam9x75_som512m_sd_uboot_defconfig ├── sam9x75eb_bkptnone_defconfig ├── sam9x75ebdf_qspi_uboot_defconfig ├── sam9x75ebnf_linux_image_dt_defconfig ├── sam9x75ebnf_uboot_defconfig ├── sam9x75ebsd1_uboot_defconfig ├── sam9x75ebsd_uboot_defconfig ├── sama5d27_som1_bkptnone_defconfig ├── sama5d27_som1_ek-opteesd_uboot_defconfig ├── sama5d27_som1_ekqspi_uboot_defconfig ├── sama5d27_som1_eksd1_uboot_defconfig ├── sama5d27_som1_eksd_uboot_defconfig ├── sama5d27_wlsom1_ek-bsrsd_uboot_defconfig ├── sama5d27_wlsom1_ek-opteesd_uboot_defconfig ├── sama5d27_wlsom1_ek_bkptnone_defconfig ├── sama5d27_wlsom1_ekdf_qspi_uboot_defconfig ├── sama5d27_wlsom1_eksd_uboot_defconfig ├── sama5d29_curiosity-bsrsd_uboot_defconfig ├── sama5d29_curiosity_bkptnone_defconfig ├── sama5d29_curiositydf_qspi_uboot_defconfig ├── sama5d29_curiositysd1_uboot_defconfig ├── sama5d29_curiositysd_fb_uboot_defconfig ├── sama5d29_curiositysd_uboot_defconfig ├── sama5d2_icp-bsrsd_uboot_defconfig ├── sama5d2_icpdf_qspi_linux_image_dt_defconfig ├── sama5d2_icpdf_qspi_uboot_defconfig ├── sama5d2_icpsd_linux_image_dt_defconfig ├── sama5d2_icpsd_uboot_defconfig ├── sama5d2_ptc_ek_bkptnone_defconfig ├── sama5d2_ptc_ekdf_qspi_uboot_defconfig ├── sama5d2_ptc_eknf_uboot_defconfig ├── sama5d2_ptc_eksd1_uboot_defconfig ├── sama5d2_ptc_eksd_uboot_defconfig ├── sama5d2_xplained-bsrdf_uboot_defconfig ├── sama5d2_xplained-bsrsd_uboot_defconfig ├── sama5d2_xplained-opteesd_uboot_defconfig ├── sama5d2_xplained_bkptnone_defconfig ├── sama5d2_xplaineddf_qspi_uboot_defconfig ├── sama5d2_xplaineddf_uboot_defconfig ├── sama5d2_xplainedemmc_uboot_defconfig ├── sama5d2_xplainedsd_uboot_defconfig ├── sama5d3_edsnf_uboot_defconfig ├── sama5d3_xplained_bkptnone_defconfig ├── sama5d3_xplainednf_uboot_defconfig ├── sama5d3_xplainedsd_uboot_defconfig ├── sama5d3ek_bkptnone_defconfig ├── sama5d3xekdf_uboot_defconfig ├── sama5d3xeknf_uboot_defconfig ├── sama5d3xeksd1_uboot_defconfig ├── sama5d3xeksd_uboot_defconfig ├── sama5d4_xplaineddf_uboot_secure_defconfig ├── sama5d4_xplainednf_uboot_secure_defconfig ├── sama5d4_xplainedsd0_uboot_secure_defconfig ├── sama5d4_xplainedsd_uboot_secure_defconfig ├── sama5d4ekdf_uboot_secure_defconfig ├── sama5d4eknf_uboot_secure_defconfig ├── sama5d4eksd0_uboot_secure_defconfig ├── sama5d4eksd_uboot_secure_defconfig ├── sama7d65_curiosity-bsrnf_uboot_defconfig ├── sama7d65_curiosity-bsrsd1_uboot_defconfig ├── sama7d65_curiosity_bkptnone_defconfig ├── sama7d65_curiosity_pro-bsrnf_uboot_defconfig ├── sama7d65_curiosity_pro-bsrsd1_uboot_defconfig ├── sama7d65_curiosity_pro_bkptnone_defconfig ├── sama7d65_curiosity_prodf_qspi_uboot_defconfig ├── sama7d65_curiosity_pronf_uboot_defconfig ├── sama7d65_curiosity_prosd1_uboot_defconfig ├── sama7d65_curiositydf_qspi_uboot_defconfig ├── sama7d65_curiositynf_fb_uboot_defconfig ├── sama7d65_curiositynf_uboot_defconfig ├── sama7d65_curiositysd1_fb_uboot_defconfig ├── sama7d65_curiositysd1_uboot_defconfig ├── sama7d65_som1g_nf_uboot_defconfig ├── sama7d65_som1g_qspi_uboot_defconfig ├── sama7d65_som2g_nf_uboot_defconfig ├── sama7d65_som2g_qspi_uboot_defconfig ├── sama7d65_som4g_nf_uboot_defconfig ├── sama7d65_som4g_qspi_uboot_defconfig ├── sama7d65_som512m_bkptnone_defconfig ├── sama7d65_som512m_qspi_uboot_defconfig ├── sama7g54_curiositydf_qspi_uboot_defconfig ├── sama7g54_curiositynf_uboot_defconfig ├── sama7g54_curiositysd_uboot_defconfig ├── sama7g54_som1g_nf_uboot_defconfig ├── sama7g54_som1g_sd_uboot_defconfig ├── sama7g54_som2g_nf_uboot_defconfig ├── sama7g54_som2g_sd_uboot_defconfig ├── sama7g54_som4g_nf_uboot_defconfig ├── sama7g54_som4g_sd_uboot_defconfig ├── sama7g5_ddr2_ebemmc_uboot_defconfig ├── sama7g5_ddr2_ebnf_uboot_defconfig ├── sama7g5_ddr2_ebsd_uboot_defconfig ├── sama7g5_ddr3_ebdf_qspi_uboot_defconfig ├── sama7g5_ddr3_ebemmc_uboot_defconfig ├── sama7g5_ddr3_ebnf_uboot_defconfig ├── sama7g5_ddr3_ebsd_uboot_defconfig ├── sama7g5_lpddr2_ebemmc_uboot_defconfig ├── sama7g5_lpddr2_ebnf_uboot_defconfig ├── sama7g5_lpddr2_ebsd_uboot_defconfig ├── sama7g5_lpddr3_ebdf_qspi_uboot_defconfig ├── sama7g5_lpddr3_ebemmc_uboot_defconfig ├── sama7g5_lpddr3_ebnf_uboot_defconfig ├── sama7g5_lpddr3_ebsd_uboot_defconfig ├── sama7g5ek-bsremmc_uboot_defconfig ├── sama7g5ek-bsrsd_uboot_defconfig ├── sama7g5ek-opteesd_uboot_defconfig ├── sama7g5ek_bkptnone_defconfig ├── sama7g5ekdf_qspi_fb_uboot_defconfig ├── sama7g5ekdf_qspi_uboot_defconfig ├── sama7g5ekemmc_linux_image_dt_defconfig ├── sama7g5ekemmc_uboot_defconfig ├── sama7g5eksd_fb_uboot_defconfig ├── sama7g5eksd_linux_image_dt_defconfig └── sama7g5eksd_uboot_defconfig ├── crt0_gnu.S ├── device ├── Config.in ├── Config.in.clk ├── Config.in.dev ├── Config.in.mach ├── chips.mk ├── device_cpp.mk ├── sam9x60 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sam9x60.c │ └── sam9x60_board.h ├── sam9x7 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sam9x7.c │ └── sam9x7_board.h ├── sama5d2 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sama5d2.c │ └── sama5d2_board.h ├── sama5d3 │ ├── Config.in │ ├── Config.in.device │ ├── sama5d3.c │ └── sama5d3_board.h ├── sama5d4 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sama5d4.c │ └── sama5d4_board.h ├── sama7d65 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sama7d65.c │ └── sama7d65_board.h └── sama7g5 │ ├── Config.in │ ├── Config.in.con │ ├── Config.in.device │ ├── sama7g5.c │ └── sama7g5_board.h ├── driver ├── Config.in.dataflash ├── Config.in.dram ├── Config.in.driver ├── Config.in.memory ├── Config.in.nandflash ├── Config.in.nvm ├── act8865.c ├── at24xx.c ├── at91-qspi │ ├── qspi-common.c │ ├── qspi-common.h │ ├── qspi-sama7g5.c │ └── qspi.c ├── at91_aes.c ├── at91_aicredir.c ├── at91_flexcom.c ├── at91_mci.c ├── at91_pio.c ├── at91_pit.c ├── at91_rstc.c ├── at91_slowclk.c ├── at91_spi.c ├── at91_twi.c ├── at91_usart.c ├── at91_wdt.c ├── at91_wdt2.c ├── at91_xdmac.c ├── backup.c ├── board_hw_info.c ├── board_hw_init.c ├── common.c ├── dataflash.c ├── ddramc.c ├── debug.c ├── driver.mk ├── driver_cpp.mk ├── ds24xx.c ├── fast_boot_init.c ├── flash.c ├── hamming.c ├── hdmi_SiI9022.c ├── l1cache.c ├── led.c ├── load_kernel.c ├── lp310_l2cc.c ├── macb.c ├── matrix.c ├── mci_media.c ├── mcp16502.c ├── mmu.c ├── monitor │ ├── mon_init.S │ ├── mon_switch.S │ └── mon_vectors.S ├── nandflash.c ├── optee │ ├── optee.c │ └── optee_switch.S ├── pit64b.c ├── pm.c ├── pmc │ ├── clk-common.c │ ├── clk-common.h │ ├── generic-clk.c │ ├── master-clk-sama7g5.c │ ├── master-clk.c │ ├── periph-clk-sam9x5.c │ ├── pll-clk-sam9x60.c │ ├── pll-clk.c │ └── utmi-clk.c ├── pmecc.c ├── publ.c ├── publ_regs.h ├── sdcard.c ├── sdhc.c ├── sdramc.c ├── secure.c ├── sfrbu.c ├── shdwc.c ├── spi_flash.c ├── spi_flash │ ├── sfdp.c │ ├── spi_flash.c │ ├── spi_nor.c │ └── spi_nor_ids.c ├── svc_handler.S ├── svc_mgr.c ├── tz_utils.c ├── tzc400.c ├── umctl2.c ├── umctl2_regs.h └── wm8904.c ├── elf32-littlearm-tz.lds ├── elf32-littlearm.lds ├── fast-boot ├── Config.in.fastboot ├── fast_boot.h ├── libfastboot_nand.a ├── libfastboot_qspi.a └── libfastboot_sd.a ├── fs ├── include │ ├── diskio.h │ ├── ff.h │ ├── ffconf.h │ ├── integer.h │ └── media.h └── src │ ├── diskio.c │ ├── fat.mk │ ├── ff.c │ └── option │ └── ccsbcs.c ├── host-utilities ├── host.mk └── setlocalversion ├── include ├── act8865.h ├── aes.h ├── arch │ ├── at91-qspi │ │ ├── qspi-sam9x60.h │ │ ├── qspi-sama5d2.h │ │ ├── qspi-sama7g5.h │ │ └── qspi.h │ ├── at91_aes.h │ ├── at91_ccfg.h │ ├── at91_dbgu.h │ ├── at91_ddrsdrc.h │ ├── at91_eefc.h │ ├── at91_matrix.h │ ├── at91_mci.h │ ├── at91_nand_ecc.h │ ├── at91_pio.h │ ├── at91_pit.h │ ├── at91_pmc │ │ ├── pmc-v1.h │ │ ├── pmc-v2.h │ │ ├── pmc-v3.h │ │ └── pmc.h │ ├── at91_rstc.h │ ├── at91_sdramc.h │ ├── at91_sfr.h │ ├── at91_sfrbu.h │ ├── at91_slowclk.h │ ├── at91_smc.h │ ├── at91_spi.h │ ├── at91_twi.h │ ├── at91_wdt.h │ ├── at91_wdt2.h │ ├── at91_xdmac.h │ ├── lp310_l2cc.h │ ├── sam9x60.h │ ├── sam9x7.h │ ├── sama5_smc.h │ ├── sama5d2.h │ ├── sama5d3x.h │ ├── sama5d4.h │ ├── sama7d65.h │ ├── sama7g5.h │ ├── tz_matrix.h │ └── tzc400.h ├── at24xx.h ├── atmel_mci.h ├── backup.h ├── barriers.h ├── bitops.h ├── board.h ├── board_hw_info.h ├── common.h ├── cp15.h ├── dataflash.h ├── ddr_device.h ├── ddr_jedec.h ├── ddramc.h ├── debug.h ├── div.h ├── dram_helpers.h ├── ds24xx.h ├── fdt.h ├── flash.h ├── flexcom.h ├── gpio.h ├── hamming.h ├── hardware.h ├── hdmi_SiI9022.h ├── l1cache.h ├── l2cc.h ├── led.h ├── macb.h ├── matrix.h ├── mci_media.h ├── mcp16502.h ├── mmu.h ├── mmu_cp15.h ├── mon.h ├── mon_macros.h ├── nand.h ├── nandflash.h ├── optee.h ├── pm.h ├── pmc.h ├── pmecc.h ├── psram.h ├── publ.h ├── qspi_flash.h ├── rstc.h ├── sdcard.h ├── sdhc.h ├── sdhc_cal.h ├── sdramc.h ├── secure.h ├── sfr_aicredir.h ├── shdwc.h ├── slowclk.h ├── spi.h ├── spi_flash.h ├── spi_flash │ ├── sfdp.h │ ├── spi_flash.h │ └── spi_nor.h ├── string.h ├── svc_mgr.h ├── timer.h ├── twi.h ├── types.h ├── tz_utils.h ├── tzc400-interface.h ├── umctl2.h ├── umctl2_jedec.h ├── umctl2_timing.h ├── usart.h ├── watchdog.h ├── wm8904.h └── xdmac.h ├── lib ├── consttime_memequal.c ├── div.c ├── eabi_utils.c ├── fdt.c ├── lib.mk └── string.c ├── main.c ├── nbproject ├── .gitignore ├── configurations.xml ├── get_sam_ba_version.bat └── project.xml ├── scripts ├── __init__.py ├── addpmecchead.py ├── bitfieldsparser.py ├── get_sram_size.sh ├── mpconfig │ ├── LICENSE.kconfiglib.txt │ ├── README.kconfiglib.rst │ ├── __init__.py │ ├── defconfig.py │ ├── events.py │ ├── genconfig.py │ ├── kconfiglib.py │ ├── knodeinfo.py │ ├── mpconfig.py │ └── mpproconfig.py ├── pmecc_head.json └── pmecc_head.py └── toplevel_cpp.mk /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.in.app-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Config.in.app-image -------------------------------------------------------------------------------- /Config.in.kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Config.in.kernel -------------------------------------------------------------------------------- /Config.in.optee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Config.in.optee -------------------------------------------------------------------------------- /Config.in.secure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Config.in.secure -------------------------------------------------------------------------------- /Config.in.u-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Config.in.u-boot -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile-mplab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/Makefile-mplab -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/README.txt -------------------------------------------------------------------------------- /autoload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/autoload.py -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/.gitignore -------------------------------------------------------------------------------- /config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/Makefile -------------------------------------------------------------------------------- /config/Makefile.kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/Makefile.kconfig -------------------------------------------------------------------------------- /config/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/POTFILES.in -------------------------------------------------------------------------------- /config/README.at91bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/README.at91bootstrap -------------------------------------------------------------------------------- /config/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/check.sh -------------------------------------------------------------------------------- /config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/conf.c -------------------------------------------------------------------------------- /config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/confdata.c -------------------------------------------------------------------------------- /config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/expr.c -------------------------------------------------------------------------------- /config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/expr.h -------------------------------------------------------------------------------- /config/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/foo.h -------------------------------------------------------------------------------- /config/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/gconf.c -------------------------------------------------------------------------------- /config/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/gconf.glade -------------------------------------------------------------------------------- /config/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/images.c -------------------------------------------------------------------------------- /config/kconfig-language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/kconfig-language.txt -------------------------------------------------------------------------------- /config/kconfig-to-at91bootstrap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/kconfig-to-at91bootstrap.patch -------------------------------------------------------------------------------- /config/kconfig_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/kconfig_load.c -------------------------------------------------------------------------------- /config/kxgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/kxgettext.c -------------------------------------------------------------------------------- /config/lex.zconf.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lex.zconf.c_shipped -------------------------------------------------------------------------------- /config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lkc.h -------------------------------------------------------------------------------- /config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lkc_proto.h -------------------------------------------------------------------------------- /config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /config/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /config/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/util.c -------------------------------------------------------------------------------- /config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/mconf.c -------------------------------------------------------------------------------- /config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/menu.c -------------------------------------------------------------------------------- /config/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/qconf.cc -------------------------------------------------------------------------------- /config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/qconf.h -------------------------------------------------------------------------------- /config/streamline_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/streamline_config.pl -------------------------------------------------------------------------------- /config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/symbol.c -------------------------------------------------------------------------------- /config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/util.c -------------------------------------------------------------------------------- /config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/zconf.gperf -------------------------------------------------------------------------------- /config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/zconf.l -------------------------------------------------------------------------------- /config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/config/zconf.y -------------------------------------------------------------------------------- /configs/ourasi_ddr2_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr2_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr2_ebsd0_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr2_ebsd0_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr2_ebsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr2_ebsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr2_ebsd2_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr2_ebsd2_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_ebsd0_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_ebsd0_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_ebsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_ebsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_ddr3_ebsd2_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_ddr3_ebsd2_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr2_eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr2_eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr2_ebsd0_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr2_ebsd0_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr2_ebsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr2_ebsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr2_ebsd2_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr2_ebsd2_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr3_eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr3_eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr3_ebsd0_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr3_ebsd0_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr3_ebsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr3_ebsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/ourasi_lpddr3_ebsd2_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/ourasi_lpddr3_ebsd2_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_curiosity_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_curiosity_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_curiositynf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_curiositynf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_curiositysd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_curiositysd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_curiositysd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_curiositysd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebdf_qspi_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebdf_qspi_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebnf_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebnf_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebsd_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebsd_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_ddr2_sip_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_ddr2_sip_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebdf_qspi_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebdf_qspi_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebnf_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebnf_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebsd_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebsd_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60_sdr_sip_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60_sdr_sip_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60ek_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60ek_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x60ekdf_qspi_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60ekdf_qspi_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60ekdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60ekdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60eknf_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60eknf_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60eknf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60eknf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x60eksd_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60eksd_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x60eksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x60eksd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_curiosity_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_curiosity_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_curiositydf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_curiositydf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_curiositynf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_curiositynf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_curiositysd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_curiositysd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som1g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som1g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som1g_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som1g_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som2g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som2g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som2g_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som2g_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som512m_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som512m_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75_som512m_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75_som512m_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75eb_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75eb_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sam9x75ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75ebnf_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75ebnf_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sam9x75ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75ebsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75ebsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sam9x75ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sam9x75ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_som1_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_som1_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_som1_ek-opteesd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_som1_ek-opteesd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_som1_ekqspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_som1_ekqspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_som1_eksd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_som1_eksd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_som1_eksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_som1_eksd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_wlsom1_ek-bsrsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_wlsom1_ek-bsrsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_wlsom1_ek-opteesd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_wlsom1_ek-opteesd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_wlsom1_ek_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_wlsom1_ek_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_wlsom1_ekdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_wlsom1_ekdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d27_wlsom1_eksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d27_wlsom1_eksd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiosity-bsrsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiosity-bsrsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiosity_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiosity_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiositydf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiositydf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiositysd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiositysd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiositysd_fb_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiositysd_fb_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d29_curiositysd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d29_curiositysd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_icp-bsrsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_icp-bsrsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_icpdf_qspi_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_icpdf_qspi_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_icpdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_icpdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_icpsd_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_icpsd_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_icpsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_icpsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_ptc_ek_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_ptc_ek_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_ptc_ekdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_ptc_ekdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_ptc_eknf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_ptc_eknf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_ptc_eksd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_ptc_eksd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_ptc_eksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_ptc_eksd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplained-bsrdf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplained-bsrdf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplained-bsrsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplained-bsrsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplained-opteesd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplained-opteesd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplained_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplained_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplaineddf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplaineddf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplaineddf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplaineddf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplainedemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplainedemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d2_xplainedsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d2_xplainedsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3_edsnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3_edsnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3_xplained_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3_xplained_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d3_xplainednf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3_xplainednf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3_xplainedsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3_xplainedsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3ek_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3ek_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama5d3xekdf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3xekdf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3xeknf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3xeknf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3xeksd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3xeksd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d3xeksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d3xeksd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama5d4_xplaineddf_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4_xplaineddf_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4_xplainednf_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4_xplainednf_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4_xplainedsd0_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4_xplainedsd0_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4_xplainedsd_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4_xplainedsd_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4ekdf_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4ekdf_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4eknf_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4eknf_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4eksd0_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4eksd0_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama5d4eksd_uboot_secure_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama5d4eksd_uboot_secure_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity-bsrnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity-bsrnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity-bsrsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity-bsrsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_pro-bsrnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_pro-bsrnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_pro-bsrsd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_pro-bsrsd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_pro_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_pro_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_prodf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_prodf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_pronf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_pronf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiosity_prosd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiosity_prosd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiositydf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiositydf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiositynf_fb_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiositynf_fb_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiositynf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiositynf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiositysd1_fb_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiositysd1_fb_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_curiositysd1_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_curiositysd1_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som1g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som1g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som1g_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som1g_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som2g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som2g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som2g_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som2g_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som4g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som4g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som4g_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som4g_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som512m_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som512m_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama7d65_som512m_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7d65_som512m_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_curiositydf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_curiositydf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_curiositynf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_curiositynf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_curiositysd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_curiositysd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som1g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som1g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som1g_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som1g_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som2g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som2g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som2g_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som2g_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som4g_nf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som4g_nf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g54_som4g_sd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g54_som4g_sd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr2_ebemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr2_ebemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr2_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr2_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr2_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr2_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr3_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr3_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr3_ebemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr3_ebemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr3_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr3_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_ddr3_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_ddr3_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr2_ebemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr2_ebemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr2_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr2_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr2_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr2_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr3_ebdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr3_ebdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr3_ebemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr3_ebemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr3_ebnf_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr3_ebnf_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5_lpddr3_ebsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5_lpddr3_ebsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ek-bsremmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ek-bsremmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ek-bsrsd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ek-bsrsd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ek-opteesd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ek-opteesd_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ek_bkptnone_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ek_bkptnone_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ekdf_qspi_fb_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ekdf_qspi_fb_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ekdf_qspi_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ekdf_qspi_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ekemmc_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ekemmc_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sama7g5ekemmc_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5ekemmc_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5eksd_fb_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5eksd_fb_uboot_defconfig -------------------------------------------------------------------------------- /configs/sama7g5eksd_linux_image_dt_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5eksd_linux_image_dt_defconfig -------------------------------------------------------------------------------- /configs/sama7g5eksd_uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/configs/sama7g5eksd_uboot_defconfig -------------------------------------------------------------------------------- /crt0_gnu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/crt0_gnu.S -------------------------------------------------------------------------------- /device/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/Config.in -------------------------------------------------------------------------------- /device/Config.in.clk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/Config.in.clk -------------------------------------------------------------------------------- /device/Config.in.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/Config.in.dev -------------------------------------------------------------------------------- /device/Config.in.mach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/Config.in.mach -------------------------------------------------------------------------------- /device/chips.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/chips.mk -------------------------------------------------------------------------------- /device/device_cpp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/device_cpp.mk -------------------------------------------------------------------------------- /device/sam9x60/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x60/Config.in -------------------------------------------------------------------------------- /device/sam9x60/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x60/Config.in.con -------------------------------------------------------------------------------- /device/sam9x60/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x60/Config.in.device -------------------------------------------------------------------------------- /device/sam9x60/sam9x60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x60/sam9x60.c -------------------------------------------------------------------------------- /device/sam9x60/sam9x60_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x60/sam9x60_board.h -------------------------------------------------------------------------------- /device/sam9x7/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x7/Config.in -------------------------------------------------------------------------------- /device/sam9x7/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x7/Config.in.con -------------------------------------------------------------------------------- /device/sam9x7/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x7/Config.in.device -------------------------------------------------------------------------------- /device/sam9x7/sam9x7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x7/sam9x7.c -------------------------------------------------------------------------------- /device/sam9x7/sam9x7_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sam9x7/sam9x7_board.h -------------------------------------------------------------------------------- /device/sama5d2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d2/Config.in -------------------------------------------------------------------------------- /device/sama5d2/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d2/Config.in.con -------------------------------------------------------------------------------- /device/sama5d2/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d2/Config.in.device -------------------------------------------------------------------------------- /device/sama5d2/sama5d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d2/sama5d2.c -------------------------------------------------------------------------------- /device/sama5d2/sama5d2_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d2/sama5d2_board.h -------------------------------------------------------------------------------- /device/sama5d3/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d3/Config.in -------------------------------------------------------------------------------- /device/sama5d3/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d3/Config.in.device -------------------------------------------------------------------------------- /device/sama5d3/sama5d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d3/sama5d3.c -------------------------------------------------------------------------------- /device/sama5d3/sama5d3_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d3/sama5d3_board.h -------------------------------------------------------------------------------- /device/sama5d4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d4/Config.in -------------------------------------------------------------------------------- /device/sama5d4/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d4/Config.in.con -------------------------------------------------------------------------------- /device/sama5d4/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d4/Config.in.device -------------------------------------------------------------------------------- /device/sama5d4/sama5d4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d4/sama5d4.c -------------------------------------------------------------------------------- /device/sama5d4/sama5d4_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama5d4/sama5d4_board.h -------------------------------------------------------------------------------- /device/sama7d65/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7d65/Config.in -------------------------------------------------------------------------------- /device/sama7d65/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7d65/Config.in.con -------------------------------------------------------------------------------- /device/sama7d65/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7d65/Config.in.device -------------------------------------------------------------------------------- /device/sama7d65/sama7d65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7d65/sama7d65.c -------------------------------------------------------------------------------- /device/sama7d65/sama7d65_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7d65/sama7d65_board.h -------------------------------------------------------------------------------- /device/sama7g5/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7g5/Config.in -------------------------------------------------------------------------------- /device/sama7g5/Config.in.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7g5/Config.in.con -------------------------------------------------------------------------------- /device/sama7g5/Config.in.device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7g5/Config.in.device -------------------------------------------------------------------------------- /device/sama7g5/sama7g5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7g5/sama7g5.c -------------------------------------------------------------------------------- /device/sama7g5/sama7g5_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/device/sama7g5/sama7g5_board.h -------------------------------------------------------------------------------- /driver/Config.in.dataflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.dataflash -------------------------------------------------------------------------------- /driver/Config.in.dram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.dram -------------------------------------------------------------------------------- /driver/Config.in.driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.driver -------------------------------------------------------------------------------- /driver/Config.in.memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.memory -------------------------------------------------------------------------------- /driver/Config.in.nandflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.nandflash -------------------------------------------------------------------------------- /driver/Config.in.nvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/Config.in.nvm -------------------------------------------------------------------------------- /driver/act8865.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/act8865.c -------------------------------------------------------------------------------- /driver/at24xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at24xx.c -------------------------------------------------------------------------------- /driver/at91-qspi/qspi-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91-qspi/qspi-common.c -------------------------------------------------------------------------------- /driver/at91-qspi/qspi-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91-qspi/qspi-common.h -------------------------------------------------------------------------------- /driver/at91-qspi/qspi-sama7g5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91-qspi/qspi-sama7g5.c -------------------------------------------------------------------------------- /driver/at91-qspi/qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91-qspi/qspi.c -------------------------------------------------------------------------------- /driver/at91_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_aes.c -------------------------------------------------------------------------------- /driver/at91_aicredir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_aicredir.c -------------------------------------------------------------------------------- /driver/at91_flexcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_flexcom.c -------------------------------------------------------------------------------- /driver/at91_mci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_mci.c -------------------------------------------------------------------------------- /driver/at91_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_pio.c -------------------------------------------------------------------------------- /driver/at91_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_pit.c -------------------------------------------------------------------------------- /driver/at91_rstc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_rstc.c -------------------------------------------------------------------------------- /driver/at91_slowclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_slowclk.c -------------------------------------------------------------------------------- /driver/at91_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_spi.c -------------------------------------------------------------------------------- /driver/at91_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_twi.c -------------------------------------------------------------------------------- /driver/at91_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_usart.c -------------------------------------------------------------------------------- /driver/at91_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_wdt.c -------------------------------------------------------------------------------- /driver/at91_wdt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_wdt2.c -------------------------------------------------------------------------------- /driver/at91_xdmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/at91_xdmac.c -------------------------------------------------------------------------------- /driver/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/backup.c -------------------------------------------------------------------------------- /driver/board_hw_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/board_hw_info.c -------------------------------------------------------------------------------- /driver/board_hw_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/board_hw_init.c -------------------------------------------------------------------------------- /driver/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/common.c -------------------------------------------------------------------------------- /driver/dataflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/dataflash.c -------------------------------------------------------------------------------- /driver/ddramc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/ddramc.c -------------------------------------------------------------------------------- /driver/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/debug.c -------------------------------------------------------------------------------- /driver/driver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/driver.mk -------------------------------------------------------------------------------- /driver/driver_cpp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/driver_cpp.mk -------------------------------------------------------------------------------- /driver/ds24xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/ds24xx.c -------------------------------------------------------------------------------- /driver/fast_boot_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/fast_boot_init.c -------------------------------------------------------------------------------- /driver/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/flash.c -------------------------------------------------------------------------------- /driver/hamming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/hamming.c -------------------------------------------------------------------------------- /driver/hdmi_SiI9022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/hdmi_SiI9022.c -------------------------------------------------------------------------------- /driver/l1cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/l1cache.c -------------------------------------------------------------------------------- /driver/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/led.c -------------------------------------------------------------------------------- /driver/load_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/load_kernel.c -------------------------------------------------------------------------------- /driver/lp310_l2cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/lp310_l2cc.c -------------------------------------------------------------------------------- /driver/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/macb.c -------------------------------------------------------------------------------- /driver/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/matrix.c -------------------------------------------------------------------------------- /driver/mci_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/mci_media.c -------------------------------------------------------------------------------- /driver/mcp16502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/mcp16502.c -------------------------------------------------------------------------------- /driver/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/mmu.c -------------------------------------------------------------------------------- /driver/monitor/mon_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/monitor/mon_init.S -------------------------------------------------------------------------------- /driver/monitor/mon_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/monitor/mon_switch.S -------------------------------------------------------------------------------- /driver/monitor/mon_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/monitor/mon_vectors.S -------------------------------------------------------------------------------- /driver/nandflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/nandflash.c -------------------------------------------------------------------------------- /driver/optee/optee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/optee/optee.c -------------------------------------------------------------------------------- /driver/optee/optee_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/optee/optee_switch.S -------------------------------------------------------------------------------- /driver/pit64b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pit64b.c -------------------------------------------------------------------------------- /driver/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pm.c -------------------------------------------------------------------------------- /driver/pmc/clk-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/clk-common.c -------------------------------------------------------------------------------- /driver/pmc/clk-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/clk-common.h -------------------------------------------------------------------------------- /driver/pmc/generic-clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/generic-clk.c -------------------------------------------------------------------------------- /driver/pmc/master-clk-sama7g5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/master-clk-sama7g5.c -------------------------------------------------------------------------------- /driver/pmc/master-clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/master-clk.c -------------------------------------------------------------------------------- /driver/pmc/periph-clk-sam9x5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/periph-clk-sam9x5.c -------------------------------------------------------------------------------- /driver/pmc/pll-clk-sam9x60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/pll-clk-sam9x60.c -------------------------------------------------------------------------------- /driver/pmc/pll-clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/pll-clk.c -------------------------------------------------------------------------------- /driver/pmc/utmi-clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmc/utmi-clk.c -------------------------------------------------------------------------------- /driver/pmecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/pmecc.c -------------------------------------------------------------------------------- /driver/publ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/publ.c -------------------------------------------------------------------------------- /driver/publ_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/publ_regs.h -------------------------------------------------------------------------------- /driver/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/sdcard.c -------------------------------------------------------------------------------- /driver/sdhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/sdhc.c -------------------------------------------------------------------------------- /driver/sdramc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/sdramc.c -------------------------------------------------------------------------------- /driver/secure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/secure.c -------------------------------------------------------------------------------- /driver/sfrbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/sfrbu.c -------------------------------------------------------------------------------- /driver/shdwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/shdwc.c -------------------------------------------------------------------------------- /driver/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/spi_flash.c -------------------------------------------------------------------------------- /driver/spi_flash/sfdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/spi_flash/sfdp.c -------------------------------------------------------------------------------- /driver/spi_flash/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/spi_flash/spi_flash.c -------------------------------------------------------------------------------- /driver/spi_flash/spi_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/spi_flash/spi_nor.c -------------------------------------------------------------------------------- /driver/spi_flash/spi_nor_ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/spi_flash/spi_nor_ids.c -------------------------------------------------------------------------------- /driver/svc_handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/svc_handler.S -------------------------------------------------------------------------------- /driver/svc_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/svc_mgr.c -------------------------------------------------------------------------------- /driver/tz_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/tz_utils.c -------------------------------------------------------------------------------- /driver/tzc400.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/tzc400.c -------------------------------------------------------------------------------- /driver/umctl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/umctl2.c -------------------------------------------------------------------------------- /driver/umctl2_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/umctl2_regs.h -------------------------------------------------------------------------------- /driver/wm8904.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/driver/wm8904.c -------------------------------------------------------------------------------- /elf32-littlearm-tz.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/elf32-littlearm-tz.lds -------------------------------------------------------------------------------- /elf32-littlearm.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/elf32-littlearm.lds -------------------------------------------------------------------------------- /fast-boot/Config.in.fastboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fast-boot/Config.in.fastboot -------------------------------------------------------------------------------- /fast-boot/fast_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fast-boot/fast_boot.h -------------------------------------------------------------------------------- /fast-boot/libfastboot_nand.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fast-boot/libfastboot_nand.a -------------------------------------------------------------------------------- /fast-boot/libfastboot_qspi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fast-boot/libfastboot_qspi.a -------------------------------------------------------------------------------- /fast-boot/libfastboot_sd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fast-boot/libfastboot_sd.a -------------------------------------------------------------------------------- /fs/include/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/include/diskio.h -------------------------------------------------------------------------------- /fs/include/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/include/ff.h -------------------------------------------------------------------------------- /fs/include/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/include/ffconf.h -------------------------------------------------------------------------------- /fs/include/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/include/integer.h -------------------------------------------------------------------------------- /fs/include/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/include/media.h -------------------------------------------------------------------------------- /fs/src/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/src/diskio.c -------------------------------------------------------------------------------- /fs/src/fat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/src/fat.mk -------------------------------------------------------------------------------- /fs/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/src/ff.c -------------------------------------------------------------------------------- /fs/src/option/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/fs/src/option/ccsbcs.c -------------------------------------------------------------------------------- /host-utilities/host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/host-utilities/host.mk -------------------------------------------------------------------------------- /host-utilities/setlocalversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/host-utilities/setlocalversion -------------------------------------------------------------------------------- /include/act8865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/act8865.h -------------------------------------------------------------------------------- /include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/aes.h -------------------------------------------------------------------------------- /include/arch/at91-qspi/qspi-sam9x60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91-qspi/qspi-sam9x60.h -------------------------------------------------------------------------------- /include/arch/at91-qspi/qspi-sama5d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91-qspi/qspi-sama5d2.h -------------------------------------------------------------------------------- /include/arch/at91-qspi/qspi-sama7g5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91-qspi/qspi-sama7g5.h -------------------------------------------------------------------------------- /include/arch/at91-qspi/qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91-qspi/qspi.h -------------------------------------------------------------------------------- /include/arch/at91_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_aes.h -------------------------------------------------------------------------------- /include/arch/at91_ccfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_ccfg.h -------------------------------------------------------------------------------- /include/arch/at91_dbgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_dbgu.h -------------------------------------------------------------------------------- /include/arch/at91_ddrsdrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_ddrsdrc.h -------------------------------------------------------------------------------- /include/arch/at91_eefc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_eefc.h -------------------------------------------------------------------------------- /include/arch/at91_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_matrix.h -------------------------------------------------------------------------------- /include/arch/at91_mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_mci.h -------------------------------------------------------------------------------- /include/arch/at91_nand_ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_nand_ecc.h -------------------------------------------------------------------------------- /include/arch/at91_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pio.h -------------------------------------------------------------------------------- /include/arch/at91_pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pit.h -------------------------------------------------------------------------------- /include/arch/at91_pmc/pmc-v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pmc/pmc-v1.h -------------------------------------------------------------------------------- /include/arch/at91_pmc/pmc-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pmc/pmc-v2.h -------------------------------------------------------------------------------- /include/arch/at91_pmc/pmc-v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pmc/pmc-v3.h -------------------------------------------------------------------------------- /include/arch/at91_pmc/pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_pmc/pmc.h -------------------------------------------------------------------------------- /include/arch/at91_rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_rstc.h -------------------------------------------------------------------------------- /include/arch/at91_sdramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_sdramc.h -------------------------------------------------------------------------------- /include/arch/at91_sfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_sfr.h -------------------------------------------------------------------------------- /include/arch/at91_sfrbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_sfrbu.h -------------------------------------------------------------------------------- /include/arch/at91_slowclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_slowclk.h -------------------------------------------------------------------------------- /include/arch/at91_smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_smc.h -------------------------------------------------------------------------------- /include/arch/at91_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_spi.h -------------------------------------------------------------------------------- /include/arch/at91_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_twi.h -------------------------------------------------------------------------------- /include/arch/at91_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_wdt.h -------------------------------------------------------------------------------- /include/arch/at91_wdt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_wdt2.h -------------------------------------------------------------------------------- /include/arch/at91_xdmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/at91_xdmac.h -------------------------------------------------------------------------------- /include/arch/lp310_l2cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/lp310_l2cc.h -------------------------------------------------------------------------------- /include/arch/sam9x60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sam9x60.h -------------------------------------------------------------------------------- /include/arch/sam9x7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sam9x7.h -------------------------------------------------------------------------------- /include/arch/sama5_smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama5_smc.h -------------------------------------------------------------------------------- /include/arch/sama5d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama5d2.h -------------------------------------------------------------------------------- /include/arch/sama5d3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama5d3x.h -------------------------------------------------------------------------------- /include/arch/sama5d4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama5d4.h -------------------------------------------------------------------------------- /include/arch/sama7d65.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama7d65.h -------------------------------------------------------------------------------- /include/arch/sama7g5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/sama7g5.h -------------------------------------------------------------------------------- /include/arch/tz_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/tz_matrix.h -------------------------------------------------------------------------------- /include/arch/tzc400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/arch/tzc400.h -------------------------------------------------------------------------------- /include/at24xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/at24xx.h -------------------------------------------------------------------------------- /include/atmel_mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/atmel_mci.h -------------------------------------------------------------------------------- /include/backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/backup.h -------------------------------------------------------------------------------- /include/barriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/barriers.h -------------------------------------------------------------------------------- /include/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/bitops.h -------------------------------------------------------------------------------- /include/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/board.h -------------------------------------------------------------------------------- /include/board_hw_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/board_hw_info.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/cp15.h -------------------------------------------------------------------------------- /include/dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/dataflash.h -------------------------------------------------------------------------------- /include/ddr_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/ddr_device.h -------------------------------------------------------------------------------- /include/ddr_jedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/ddr_jedec.h -------------------------------------------------------------------------------- /include/ddramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/ddramc.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/div.h -------------------------------------------------------------------------------- /include/dram_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/dram_helpers.h -------------------------------------------------------------------------------- /include/ds24xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/ds24xx.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/flash.h -------------------------------------------------------------------------------- /include/flexcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/flexcom.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/hamming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/hamming.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/hdmi_SiI9022.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/hdmi_SiI9022.h -------------------------------------------------------------------------------- /include/l1cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/l1cache.h -------------------------------------------------------------------------------- /include/l2cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/l2cc.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/led.h -------------------------------------------------------------------------------- /include/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/macb.h -------------------------------------------------------------------------------- /include/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/matrix.h -------------------------------------------------------------------------------- /include/mci_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mci_media.h -------------------------------------------------------------------------------- /include/mcp16502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mcp16502.h -------------------------------------------------------------------------------- /include/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mmu.h -------------------------------------------------------------------------------- /include/mmu_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mmu_cp15.h -------------------------------------------------------------------------------- /include/mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mon.h -------------------------------------------------------------------------------- /include/mon_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/mon_macros.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/nandflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/nandflash.h -------------------------------------------------------------------------------- /include/optee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/optee.h -------------------------------------------------------------------------------- /include/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/pm.h -------------------------------------------------------------------------------- /include/pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/pmc.h -------------------------------------------------------------------------------- /include/pmecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/pmecc.h -------------------------------------------------------------------------------- /include/psram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/psram.h -------------------------------------------------------------------------------- /include/publ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/publ.h -------------------------------------------------------------------------------- /include/qspi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/qspi_flash.h -------------------------------------------------------------------------------- /include/rstc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/rstc.h -------------------------------------------------------------------------------- /include/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/sdcard.h -------------------------------------------------------------------------------- /include/sdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/sdhc.h -------------------------------------------------------------------------------- /include/sdhc_cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/sdhc_cal.h -------------------------------------------------------------------------------- /include/sdramc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/sdramc.h -------------------------------------------------------------------------------- /include/secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/secure.h -------------------------------------------------------------------------------- /include/sfr_aicredir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/sfr_aicredir.h -------------------------------------------------------------------------------- /include/shdwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/shdwc.h -------------------------------------------------------------------------------- /include/slowclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/slowclk.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/spi_flash.h -------------------------------------------------------------------------------- /include/spi_flash/sfdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/spi_flash/sfdp.h -------------------------------------------------------------------------------- /include/spi_flash/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/spi_flash/spi_flash.h -------------------------------------------------------------------------------- /include/spi_flash/spi_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/spi_flash/spi_nor.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/string.h -------------------------------------------------------------------------------- /include/svc_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/svc_mgr.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/twi.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/types.h -------------------------------------------------------------------------------- /include/tz_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/tz_utils.h -------------------------------------------------------------------------------- /include/tzc400-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/tzc400-interface.h -------------------------------------------------------------------------------- /include/umctl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/umctl2.h -------------------------------------------------------------------------------- /include/umctl2_jedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/umctl2_jedec.h -------------------------------------------------------------------------------- /include/umctl2_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/umctl2_timing.h -------------------------------------------------------------------------------- /include/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/usart.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /include/wm8904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/wm8904.h -------------------------------------------------------------------------------- /include/xdmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/include/xdmac.h -------------------------------------------------------------------------------- /lib/consttime_memequal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/consttime_memequal.c -------------------------------------------------------------------------------- /lib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/div.c -------------------------------------------------------------------------------- /lib/eabi_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/eabi_utils.c -------------------------------------------------------------------------------- /lib/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/fdt.c -------------------------------------------------------------------------------- /lib/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/lib.mk -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/lib/string.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/main.c -------------------------------------------------------------------------------- /nbproject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/nbproject/.gitignore -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/get_sam_ba_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/nbproject/get_sam_ba_version.bat -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/addpmecchead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/addpmecchead.py -------------------------------------------------------------------------------- /scripts/bitfieldsparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/bitfieldsparser.py -------------------------------------------------------------------------------- /scripts/get_sram_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/get_sram_size.sh -------------------------------------------------------------------------------- /scripts/mpconfig/LICENSE.kconfiglib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/LICENSE.kconfiglib.txt -------------------------------------------------------------------------------- /scripts/mpconfig/README.kconfiglib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/README.kconfiglib.rst -------------------------------------------------------------------------------- /scripts/mpconfig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/mpconfig/defconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/defconfig.py -------------------------------------------------------------------------------- /scripts/mpconfig/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/events.py -------------------------------------------------------------------------------- /scripts/mpconfig/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/genconfig.py -------------------------------------------------------------------------------- /scripts/mpconfig/kconfiglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/kconfiglib.py -------------------------------------------------------------------------------- /scripts/mpconfig/knodeinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/knodeinfo.py -------------------------------------------------------------------------------- /scripts/mpconfig/mpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/mpconfig.py -------------------------------------------------------------------------------- /scripts/mpconfig/mpproconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/mpconfig/mpproconfig.py -------------------------------------------------------------------------------- /scripts/pmecc_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/pmecc_head.json -------------------------------------------------------------------------------- /scripts/pmecc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/scripts/pmecc_head.py -------------------------------------------------------------------------------- /toplevel_cpp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux4sam/at91bootstrap/HEAD/toplevel_cpp.mk --------------------------------------------------------------------------------