├── .gitattributes ├── .gitignore ├── .mailmap ├── COPYING ├── Documentation ├── .gitignore ├── barebox.svg ├── boards.rst ├── boards │ ├── aarch64-qemu-virt.rst │ ├── am335x.rst │ ├── am335x │ │ └── phytec-som.rst │ ├── arm-qemu-vexpress.rst │ ├── bcm2835.rst │ ├── cirrus-logic.rst │ ├── davinci.rst │ ├── digic.rst │ ├── edb9xxx │ │ ├── cirrus_logic_edb9301.rst │ │ ├── cirrus_logic_edb9302.rst │ │ ├── cirrus_logic_edb9302a.rst │ │ ├── cirrus_logic_edb9307.rst │ │ ├── cirrus_logic_edb9307a.rst │ │ ├── cirrus_logic_edb9312.rst │ │ ├── cirrus_logic_edb9315.rst │ │ └── cirrus_logic_edb9315a.rst │ ├── efi.rst │ ├── garz-fricke.rst │ ├── ibase-mi991af.rst │ ├── imx.rst │ ├── imx │ │ ├── Element14-WaRP7.rst │ │ ├── Garz-Fricke-Cupid.rst │ │ ├── Garz-Fricke-Vincell.rst │ │ ├── Karo-TX25.rst │ │ ├── Karo-TX6.rst │ │ ├── Phytec-phyCARD-i.MX27.rst │ │ ├── Phytec-phyCORE-i.MX27.rst │ │ ├── Phytec-phyCORE-i.MX31.rst │ │ ├── Phytec-phyCORE-i.MX35.rst │ │ ├── Wandboard.rst │ │ ├── amazon-kindle-mx50.rst │ │ ├── amazon-kindle3.rst │ │ ├── eukrea_cpuimx27.rst │ │ └── synertronixx_scb9328.rst │ ├── mips.rst │ ├── mips │ │ ├── dlink-dir-320.rst │ │ ├── img-ci20.rst │ │ ├── loongson_ls1b.rst │ │ ├── qemu-malta.rst │ │ ├── ritmix-rzx50.rst │ │ └── tplink-mr3020.rst │ ├── mvebu.rst │ ├── mvebu │ │ └── Netgear-ReadyNAS-2120.rst │ ├── mxs.rst │ ├── mxs │ │ ├── Chumby-Falconwing.rst │ │ ├── Freescale-i.MX23-evk.rst │ │ ├── KaRo-TX28.rst │ │ └── Olimex-olinuxino.rst │ ├── omap.rst │ ├── openrisc.rst │ ├── powerpc.rst │ ├── powerpc │ │ └── Phytec-phyCORE-MPC5200-Tiny.rst │ ├── pxa.rst │ ├── pxa │ │ └── Phytec-phyCORE-PXA270.rst │ ├── rk3288.rst │ ├── rk3288 │ │ └── phytec-som.rst │ ├── rockchip.rst │ ├── s3c │ │ └── Digi-a9m2440.rst │ ├── samsung.rst │ ├── sandbox.rst │ ├── socfpga.rst │ ├── tegra.rst │ ├── uemd.rst │ └── x86.rst ├── commands.rst ├── conf.py ├── devicetree │ ├── bindings │ │ ├── README │ │ ├── barebox │ │ │ ├── barebox,environment.rst │ │ │ └── barebox,state.rst │ │ ├── firmware │ │ │ ├── altr,passive-serial.txt │ │ │ └── altr,socfpga-fpga-mgr.txt │ │ ├── leds │ │ │ └── common.rst │ │ ├── misc │ │ │ ├── fsl,imx-iim.rst │ │ │ └── fsl,imx-ocotp.rst │ │ ├── mtd │ │ │ ├── m25p80.rst │ │ │ └── partition.txt │ │ └── rtc │ │ │ └── dallas,ds1307.rst │ └── index.rst ├── filesystems.rst ├── filesystems │ ├── fat.rst │ ├── nfs.rst │ ├── pstore.rst │ ├── ramfs.rst │ ├── smhfs.rst │ ├── squashfs.rst │ └── tftp.rst ├── gen_commands.py ├── glossary.rst ├── index.rst └── user │ ├── automount.rst │ ├── barebox.rst │ ├── bootchooser.rst │ ├── booting-linux.rst │ ├── defaultenv-2.rst │ ├── devicetree.rst │ ├── driver-model.rst │ ├── framebuffer.rst │ ├── hush.rst │ ├── imd.rst │ ├── introduction.rst │ ├── memory-areas.rst │ ├── multi-image.rst │ ├── networking.rst │ ├── pbl.rst │ ├── random.rst │ ├── remote-control.rst │ ├── reset-reason.rst │ ├── state.rst │ ├── system-reset.rst │ ├── system-setup.rst │ ├── ubi.rst │ ├── updating.rst │ ├── usb.rst │ ├── user-manual.rst │ └── variables.rst ├── Kbuild ├── Kconfig ├── MAKEALL ├── Makefile ├── README ├── README_ZH.md ├── TODO ├── arch ├── arm │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── Makefile │ │ ├── a9m2410 │ │ │ ├── Makefile │ │ │ ├── a9m2410.c │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ └── lowlevel_init.S │ │ ├── a9m2440 │ │ │ ├── Makefile │ │ │ ├── a9m2410dev.c │ │ │ ├── a9m2440.c │ │ │ ├── baseboards.h │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ └── lowlevel_init.S │ │ ├── afi-gf │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── defaultenv-gf │ │ │ │ └── boot │ │ │ │ │ └── sd │ │ │ └── lowlevel.c │ │ ├── altera-socdk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── animeo_ip │ │ │ ├── Makefile │ │ │ ├── defaultenv-animeo_ip │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── archosg9 │ │ │ ├── Makefile │ │ │ ├── archos_features.c │ │ │ ├── archos_features.h │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── sd-card-android │ │ │ │ │ ├── sd-card-linux │ │ │ │ │ ├── usb-android │ │ │ │ │ └── usb-linux │ │ │ │ ├── init │ │ │ │ │ ├── automount2 │ │ │ │ │ ├── bootsource │ │ │ │ │ └── splash │ │ │ │ └── menu │ │ │ │ │ ├── 11-boot-flash │ │ │ │ │ ├── action │ │ │ │ │ └── title │ │ │ │ │ ├── 12-boot-sd │ │ │ │ │ ├── action │ │ │ │ │ └── title │ │ │ │ │ └── 13-boot-usb │ │ │ │ │ ├── action │ │ │ │ │ └── title │ │ │ ├── feature_list.h │ │ │ ├── lowlevel.c │ │ │ ├── mux.c │ │ │ └── mux.h │ │ ├── at91rm9200ek │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-at91rm9200ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9260ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9260ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9261ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9261ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── at91sam9263ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9263ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── lowlevel_init.c │ │ │ └── of_init.c │ │ ├── at91sam9m10g45ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9m10g45ek │ │ │ │ ├── bin │ │ │ │ │ ├── boot_board │ │ │ │ │ └── menu_boot │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9m10ihd │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── android │ │ │ │ │ ├── mmc │ │ │ │ │ ├── net │ │ │ │ │ └── net-usb │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ ├── mtdparts-001-nand │ │ │ │ │ ├── mtdparts-002-m25p80 │ │ │ │ │ └── splash │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── hw_version.c │ │ │ ├── hw_version.h │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9n12ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9n12ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── at91sam9x5ek │ │ │ ├── Makefile │ │ │ ├── defaultenv-at91sam9x5ek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── hw_version.c │ │ │ ├── hw_version.h │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── avnet-zedboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ └── nv │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── flash_header.c │ │ │ └── lowlevel.c │ │ ├── beagle │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-beagle │ │ │ │ ├── boot │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand-ubi │ │ │ │ │ └── nand-ubi-dt │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nand │ │ │ │ └── network │ │ │ │ │ └── eth0-discover │ │ │ └── lowlevel.c │ │ ├── beaglebone │ │ │ ├── Makefile │ │ │ ├── beaglebone.h │ │ │ ├── board.c │ │ │ ├── defaultenv-beaglebone │ │ │ │ ├── boot │ │ │ │ │ └── sd │ │ │ │ └── init │ │ │ │ │ └── usb-limit-1300 │ │ │ └── lowlevel.c │ │ ├── boundarydevices-nitrogen6 │ │ │ ├── 1066mhz_4x128mx16.imxcfg │ │ │ ├── 1066mhz_4x256mx16.imxcfg │ │ │ ├── 1066mhz_4x512mx16-qp.imxcfg │ │ │ ├── 800mhz_4x128mx16.imxcfg │ │ │ ├── 800mhz_4x256mx16.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-nitrogen6dl-1g.imxcfg │ │ │ ├── flash-header-nitrogen6dl-2g.imxcfg │ │ │ ├── flash-header-nitrogen6q-1g.imxcfg │ │ │ ├── flash-header-nitrogen6q-2g.imxcfg │ │ │ ├── flash-header-nitrogen6qp-max.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── ram-base.imxcfg │ │ ├── canon-a1100 │ │ │ ├── Makefile │ │ │ └── lowlevel.c │ │ ├── ccxmx51 │ │ │ ├── Makefile │ │ │ ├── ccxmx51.c │ │ │ ├── ccxmx51.h │ │ │ ├── ccxmx51js.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nand │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ └── boot.default │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── ccxmx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-ccxmx53_1gib.imxcfg │ │ │ ├── flash-header-imx53-ccxmx53_512mb.imxcfg │ │ │ └── lowlevel.c │ │ ├── chumby_falconwing │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── boot │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── falconwing.c │ │ │ └── lowlevel.c │ │ ├── clep7212 │ │ │ ├── Makefile │ │ │ ├── clep7212.c │ │ │ ├── defaultenv-clep7212 │ │ │ │ ├── boot │ │ │ │ │ └── nor │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── linux.bootargs.console │ │ │ │ │ └── linux.bootargs.debug │ │ │ └── lowlevel.c │ │ ├── cm-fx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-cm-fx6.imxcfg │ │ │ └── lowlevel.c │ │ ├── crystalfontz-cfa10036 │ │ │ ├── Makefile │ │ │ ├── cfa10036.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc-ext3 │ │ │ │ ├── init │ │ │ │ │ └── automount │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── hwdetect.c │ │ │ ├── hwdetect.h │ │ │ └── lowlevel.c │ │ ├── datamodul-edm-qmx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc │ │ │ │ └── init │ │ │ │ │ └── automount │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── delphi-poc20 │ │ │ └── env │ │ │ │ └── boot │ │ │ │ └── mmc │ │ ├── dfi-fs700-m60 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-fs700-m60-6q-micron.imxcfg │ │ │ ├── flash-header-fs700-m60-6q-nanya.imxcfg │ │ │ ├── flash-header-fs700-m60-6s.imxcfg │ │ │ └── lowlevel.c │ │ ├── dss11 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── duckbill │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── ebv-socrates │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── edb93xx │ │ │ ├── Makefile │ │ │ ├── early_udelay.h │ │ │ ├── edb93xx.c │ │ │ ├── edb93xx.h │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── boot │ │ │ │ │ ├── flash_partition │ │ │ │ │ ├── init │ │ │ │ │ ├── set_nor_parts │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_rootfs │ │ │ │ └── config │ │ │ ├── flash_cfg.c │ │ │ ├── pll_cfg.c │ │ │ ├── pll_cfg.h │ │ │ ├── sdram_cfg.c │ │ │ └── sdram_cfg.h │ │ ├── efika-mx-smartbook │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-efikasb │ │ │ │ ├── bin │ │ │ │ │ └── lvds_init │ │ │ │ ├── boot │ │ │ │ │ ├── hd-internal │ │ │ │ │ └── mmc-left │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ │ └── network │ │ │ │ │ └── eth0-discover │ │ │ ├── env │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── linux.bootargs.console │ │ │ │ │ ├── linux.bootargs.lpj │ │ │ │ │ └── linux.bootargs.quiet │ │ │ ├── flash-header-imx51-genesi-efikasb.imxcfg │ │ │ └── lowlevel.c │ │ ├── element14-warp7 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7-warp.imxcfg │ │ │ └── lowlevel.c │ │ ├── eltec-hipercam │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-eltec-hipercam.imxcfg │ │ │ └── lowlevel.c │ │ ├── embedsky-e9 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-e9 │ │ │ │ ├── boot │ │ │ │ │ ├── mmc1 │ │ │ │ │ └── mmc3 │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── hostname │ │ │ ├── flash-header-e9.imxcfg │ │ │ └── lowlevel.c │ │ ├── embedsky-tq210 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ ├── config │ │ │ │ ├── init │ │ │ │ │ ├── net │ │ │ │ │ └── ps1 │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── dev.nand0.partitions │ │ │ │ │ └── fb0.enable │ │ │ ├── lowlevel.c │ │ │ └── tq210.c │ │ ├── embest-riotboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-embest-riotboard.imxcfg │ │ │ └── lowlevel.c │ │ ├── eukrea_cpuimx25 │ │ │ ├── Makefile │ │ │ ├── defaultenv-eukrea_cpuimx25 │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── eukrea_cpuimx25.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── eukrea_cpuimx27 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ ├── eukrea_cpuimx27.c │ │ │ └── lowlevel_init.S │ │ ├── eukrea_cpuimx35 │ │ │ ├── Makefile │ │ │ ├── defaultenv-eukrea_cpuimx35 │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── eukrea_cpuimx35.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── eukrea_cpuimx51 │ │ │ ├── Makefile │ │ │ ├── defaultenv-eukrea_cpuimx51 │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── eukrea_cpuimx51.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── forlinx-ok210 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── config-board │ │ │ │ ├── init │ │ │ │ │ ├── fb │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── net │ │ │ │ └── network │ │ │ │ │ └── eth0 │ │ │ ├── lowlevel.c │ │ │ └── ok210.c │ │ ├── freescale-mx21-ads │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── bin │ │ │ │ │ └── init │ │ │ ├── imx21ads.c │ │ │ └── lowlevel_init.S │ │ ├── freescale-mx23-evk │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ └── mx23-evk.c │ │ ├── freescale-mx25-3ds │ │ │ ├── 3stack.c │ │ │ ├── Makefile │ │ │ ├── defaultenv-freescale-mx25-3ds │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel_init.S │ │ ├── freescale-mx27-ads │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ ├── imx27ads.c │ │ │ └── lowlevel_init.S │ │ ├── freescale-mx28-evk │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ └── mx28-evk.c │ │ ├── freescale-mx35-3ds │ │ │ ├── 3stack.c │ │ │ ├── Makefile │ │ │ ├── board-mx35_3stack.h │ │ │ ├── defaultenv-freescale-mx35-3ds │ │ │ │ └── config │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel_init.S │ │ ├── freescale-mx51-babbage │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-common.imxcfg │ │ │ ├── flash-header-imx51-babbage-xload.imxcfg │ │ │ ├── flash-header-imx51-babbage.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx53-qsb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-loco.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx53-smd │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-freescale-mx53-smd │ │ │ │ └── config │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx53-vmx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx53-vmx53.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6-sabrelite │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-sabrelite.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6-sabresd │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-sabresd.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx6sx-sabresdb │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6sx-sabresdb.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-mx7-sabresd │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx7-sabresd.imxcfg │ │ │ └── lowlevel.c │ │ ├── freescale-vf610-twr │ │ │ ├── Makefile │ │ │ ├── flash-header-vf610-twr.imxcfg │ │ │ └── lowlevel.c │ │ ├── friendlyarm-mini2440 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ ├── config-board │ │ │ │ └── init │ │ │ │ │ └── mtdparts-nand │ │ │ ├── lowlevel_init.S │ │ │ └── mini2440.c │ │ ├── friendlyarm-mini6410 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-friendlyarm-mini6410 │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ └── mini6410.c │ │ ├── friendlyarm-tiny210 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── lowlevel.c │ │ │ └── tiny210.c │ │ ├── friendlyarm-tiny6410 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-friendlyarm-tiny6410 │ │ │ │ └── config │ │ │ ├── development-board.c │ │ │ ├── lowlevel.c │ │ │ ├── tiny6410.c │ │ │ └── tiny6410.h │ │ ├── gateworks-ventana │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-ventana-quad-1gx64.imxcfg │ │ │ ├── gsc.c │ │ │ ├── gsc.h │ │ │ ├── lowlevel.c │ │ │ ├── quad_128x64.imxcfg │ │ │ └── ram-base.imxcfg │ │ ├── gk802 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── globalscale-guruplug │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── globalscale-mirabox │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── guf-cupid │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-guf-cupid │ │ │ │ └── config │ │ │ └── lowlevel.c │ │ ├── guf-neso │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-guf-neso │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ └── pll_init.S │ │ ├── guf-santaro │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── guf-vincell │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── haba-knx │ │ │ ├── Makefile │ │ │ ├── defaultenv-haba-knx │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── highbank │ │ │ ├── Makefile │ │ │ ├── defaultenv-highbank │ │ │ │ ├── boot.d │ │ │ │ │ ├── 010-ahci-boot │ │ │ │ │ ├── 011-ahci │ │ │ │ │ ├── 020-mmc-boot │ │ │ │ │ ├── 021-mmc │ │ │ │ │ ├── 030-net │ │ │ │ │ └── 031-net-eth1 │ │ │ │ ├── boot │ │ │ │ │ ├── ahci │ │ │ │ │ ├── ahci-boot │ │ │ │ │ ├── mmc │ │ │ │ │ ├── mmc-boot │ │ │ │ │ ├── net │ │ │ │ │ └── net-eth1 │ │ │ │ ├── data │ │ │ │ │ └── oftree │ │ │ │ ├── init │ │ │ │ │ ├── 001-dtb-probe │ │ │ │ │ └── automount │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── bootm.oftree │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── imx233-olinuxino │ │ │ ├── Makefile │ │ │ ├── defaultenv-imx233-olinuxino │ │ │ │ ├── boot │ │ │ │ │ └── sd │ │ │ │ ├── init │ │ │ │ │ └── automount-sd │ │ │ │ ├── network │ │ │ │ │ └── eth0-discover │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── imx23-olinuxino.c │ │ │ └── lowlevel.c │ │ ├── karo-tx25 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ └── init │ │ │ │ │ └── mtdparts-nand │ │ │ ├── flash-header-tx25.imxcfg │ │ │ └── lowlevel.c │ │ ├── karo-tx28 │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ ├── tx28-stk5.c │ │ │ └── tx28.c │ │ ├── karo-tx51 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── config │ │ │ ├── flash-header-karo-tx51.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── tx51.c │ │ ├── karo-tx53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tx53-rev1011.imxcfg │ │ │ ├── flash-header-tx53-revxx30-samsung.imxcfg │ │ │ ├── flash-header-tx53-revxx30.imxcfg │ │ │ └── lowlevel.c │ │ ├── karo-tx6x │ │ │ ├── 1600mhz_4x128mx16.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tx6dl-1g.imxcfg │ │ │ ├── flash-header-tx6dl-512m.imxcfg │ │ │ ├── flash-header-tx6q-1g.imxcfg │ │ │ ├── flash-header-tx6qp-2g.imxcfg │ │ │ ├── lowlevel.c │ │ │ ├── pmic-ltc3676.c │ │ │ ├── pmic-rn5t567.c │ │ │ ├── pmic-rn5t618.c │ │ │ ├── pmic.h │ │ │ └── ram-base.imxcfg │ │ ├── kindle-mx50 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-kindle-mx50 │ │ │ │ ├── boot │ │ │ │ │ └── mmc_kernel │ │ │ │ ├── init │ │ │ │ │ └── usbconsole │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── linux.bootargs.consoleblank │ │ │ │ │ └── linux.bootargs.eink │ │ │ ├── flash-header-kindle-lpddr1.imxcfg │ │ │ ├── flash-header-kindle-lpddr2.imxcfg │ │ │ └── lowlevel.c │ │ ├── kindle3 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc_kernel │ │ │ │ ├── init │ │ │ │ │ ├── serials │ │ │ │ │ └── usbconsole │ │ │ │ └── nv │ │ │ │ │ ├── autoboot_timeout │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── linux.bootargs.base │ │ │ │ │ ├── linux.bootargs.console │ │ │ │ │ └── linux.bootargs.lpj │ │ │ ├── flash-header.imxcfg │ │ │ ├── kindle3.c │ │ │ └── lowlevel.c │ │ ├── kontron-samx6i │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-samx6i-duallite.imxcfg │ │ │ ├── flash-header-samx6i-quad.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── mem.c │ │ ├── lenovo-ix4-300d │ │ │ ├── Makefile │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── lubbock │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nor-ubi │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ └── linux.bootargs.console │ │ │ └── lowlevel.c │ │ ├── mainstone │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nor-ubi │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ └── linux.bootargs.console │ │ │ └── lowlevel.c │ │ ├── marvell-armada-xp-gp │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── mioa701 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── barebox_update │ │ │ │ │ ├── console_mode │ │ │ │ │ ├── dps1_unlock │ │ │ │ │ ├── dps1_update │ │ │ │ │ ├── init │ │ │ │ │ ├── mtd_env_override │ │ │ │ │ └── sdcard_override │ │ │ │ ├── config │ │ │ │ └── data │ │ │ │ │ └── dps1.raw.gz │ │ │ ├── gpio0_poweroff.c │ │ │ ├── lowlevel.c │ │ │ └── mioa701.h │ │ ├── module-mb7707 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── mx31moboard │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── nor │ │ │ │ │ ├── sd │ │ │ │ │ └── usbmsd │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ ├── lowlevel.c │ │ │ └── mx31moboard.c │ │ ├── netgear-rn104 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── netgear-rn2120 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── netx │ │ │ ├── Makefile │ │ │ ├── netx.c │ │ │ └── platform.S │ │ ├── nhk8815 │ │ │ ├── Makefile │ │ │ ├── defaultenv-nhk8815 │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ └── setup.c │ │ ├── nvidia-beaver │ │ │ ├── Makefile │ │ │ ├── beaver-2gb-emmc.bct.cfg │ │ │ ├── board.c │ │ │ └── entry.c │ │ ├── nvidia-jetson-tk1 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── entry.c │ │ │ └── jetson-tk1-2gb-emmc.bct.cfg │ │ ├── nxp-imx6ull-evk │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-nxp-imx6ull-evk.imxcfg │ │ │ └── lowlevel.c │ │ ├── omap343xdsp │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── omap3evm │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── panda │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc │ │ │ │ └── network │ │ │ │ │ └── eth0-discover │ │ │ ├── lowlevel.c │ │ │ └── mux.c │ │ ├── phytec-phycard-imx27 │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ └── pca100.c │ │ ├── phytec-phycard-omap3 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ ├── pca-a-l1.c │ │ │ └── pca-a-l1.h │ │ ├── phytec-phycard-omap4 │ │ │ ├── Makefile │ │ │ ├── defaultenv-phytec-phycard-omap4 │ │ │ │ ├── bin │ │ │ │ │ └── nand_bootstrap │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ ├── mux.c │ │ │ └── pca-a-xl2.c │ │ ├── phytec-phycore-imx27 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pcm038 │ │ │ │ └── boot │ │ │ │ │ ├── nand-ubi │ │ │ │ │ └── nor │ │ │ ├── lowlevel.c │ │ │ ├── pcm038.c │ │ │ ├── pcm970.c │ │ │ └── pll.h │ │ ├── phytec-phycore-imx31 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ └── init │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── mtdparts-nor │ │ │ ├── lowlevel.c │ │ │ └── pcm037.c │ │ ├── phytec-phycore-imx35 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ └── init │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── mtdparts-nor │ │ │ ├── flash-header.imxcfg │ │ │ ├── lowlevel.c │ │ │ └── pcm043.c │ │ ├── phytec-phycore-imx7 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-phytec-phycore-imx7.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-phycore-omap4460 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-phytec-phycore-omap4460 │ │ │ │ ├── bin │ │ │ │ │ ├── init_board │ │ │ │ │ └── nand_bootstrap │ │ │ │ └── config │ │ │ ├── lowlevel.c │ │ │ └── mux.c │ │ ├── phytec-phycore-pxa270 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── env │ │ │ │ ├── init │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ └── linux.bootargs.console │ │ │ └── lowlevel_init.S │ │ ├── phytec-som-am335x │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-am335x │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand │ │ │ │ │ └── spi │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ ├── boot.watchdog_timeout │ │ │ │ │ ├── linux.bootargs.base │ │ │ │ │ └── linux.bootargs.rootfs │ │ │ ├── lowlevel.c │ │ │ └── ram-timings.h │ │ ├── phytec-som-imx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-imx6-phycore │ │ │ │ └── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ ├── defaultenv-physom-imx6 │ │ │ │ ├── boot │ │ │ │ │ ├── mmc │ │ │ │ │ ├── nand │ │ │ │ │ └── spi │ │ │ │ └── init │ │ │ │ │ ├── automount │ │ │ │ │ └── bootsource │ │ │ ├── defaultenv-physom-imx6ul-phycore │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ └── init │ │ │ │ │ └── automount │ │ │ ├── flash-header-phytec-pcaaxl3-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3-2gib.imxcfg │ │ │ ├── flash-header-phytec-pcaaxl3.h │ │ │ ├── flash-header-phytec-pcl063-256mb.imxcfg │ │ │ ├── flash-header-phytec-pcl063-512mb.imxcfg │ │ │ ├── flash-header-phytec-pcl063.h │ │ │ ├── flash-header-phytec-pcm058-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058-2gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058.h │ │ │ ├── flash-header-phytec-pcm058dl-1gib.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl-256mb.imxcfg │ │ │ ├── flash-header-phytec-pcm058dl.h │ │ │ ├── flash-header-phytec-pfla02-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02-1gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-2gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-4gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02-512mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02.h │ │ │ ├── flash-header-phytec-pfla02dl-1gib-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02dl-1gib.imxcfg │ │ │ ├── flash-header-phytec-pfla02dl.h │ │ │ ├── flash-header-phytec-pfla02s-128mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02s-256mb-1bank.imxcfg │ │ │ ├── flash-header-phytec-pfla02s-512mb-1bank.imxcfg │ │ │ └── lowlevel.c │ │ ├── phytec-som-rk3288 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-physom-rk3288 │ │ │ │ ├── boot │ │ │ │ │ ├── emmc │ │ │ │ │ └── mmc │ │ │ │ ├── init │ │ │ │ │ └── automount-mmc │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ └── lowlevel.c │ │ ├── plathome-openblocks-a6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── plathome-openblocks-ax3 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── pm9261 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pm9261 │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── pm9263 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ ├── _update │ │ │ │ │ ├── boot │ │ │ │ │ ├── init │ │ │ │ │ ├── update_kernel │ │ │ │ │ └── update_root │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel_init.c │ │ ├── pm9g45 │ │ │ ├── Makefile │ │ │ ├── defaultenv-pm9g45 │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── qemu-virt64 │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── defaultenv-qemu-virt64 │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── qil-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-qil-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── radxa-rock │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── mshc1 │ │ │ │ │ └── mshc1-old │ │ │ │ ├── init │ │ │ │ │ └── bootsource │ │ │ │ └── nv │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ └── lowlevel.c │ │ ├── raspberry-pi │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ └── init │ │ │ │ │ └── bootargs-base │ │ │ ├── lowlevel.c │ │ │ ├── rpi-common.c │ │ │ └── rpi.h │ │ ├── reflex-achilles │ │ │ ├── Makefile │ │ │ ├── lowlevel.c │ │ │ ├── pinmux-config-arria10.c │ │ │ └── pll-config-arria10.c │ │ ├── sama5d3_xplained │ │ │ ├── Makefile │ │ │ ├── defaultenv-sama5d3_xplained │ │ │ │ └── config │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── sama5d3xek │ │ │ ├── Makefile │ │ │ ├── defaultenv-sama5d3xek │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── hw_version.c │ │ │ ├── hw_version.h │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── sama5d4_xplained │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ ├── mmc │ │ │ │ │ └── nand │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── splash │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── sama5d4_xplained.c │ │ ├── sama5d4ek │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand │ │ │ │ ├── init │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ ├── mtdparts-nor │ │ │ │ │ └── splash │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── sama5d4ek.c │ │ ├── scb9328 │ │ │ ├── Makefile │ │ │ ├── defaultenv-scb9328 │ │ │ │ └── config │ │ │ ├── lowlevel_init.S │ │ │ └── scb9328.c │ │ ├── solidrun-cubox │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── solidrun-microsom │ │ │ ├── 1066mhz-4x128mx16.imxcfg │ │ │ ├── 1066mhz-4x256mx16.imxcfg │ │ │ ├── 1066mhz-64b.imxcfg │ │ │ ├── 800mhz-2x128mx16.imxcfg │ │ │ ├── 800mhz-32b.imxcfg │ │ │ ├── 800mhz-4x128mx16.imxcfg │ │ │ ├── 800mhz-64b.imxcfg │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-microsom-i1.imxcfg │ │ │ ├── flash-header-microsom-i2.imxcfg │ │ │ ├── flash-header-microsom-i2eX.imxcfg │ │ │ ├── flash-header-microsom-i4.imxcfg │ │ │ └── lowlevel.c │ │ ├── technexion-pico-hobbit │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-imx6ul-pico-hobbit-256.imxcfg │ │ │ ├── flash-header-imx6ul-pico-hobbit-512.imxcfg │ │ │ └── lowlevel.c │ │ ├── technexion-wandboard │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── mmc2.1 │ │ │ │ └── init │ │ │ │ │ └── bootsource │ │ │ ├── flash-header-technexion-wandboard.imxcfg │ │ │ └── lowlevel.c │ │ ├── telit-evk-pro3 │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot │ │ │ │ │ └── nand-ubi │ │ │ │ ├── init │ │ │ │ │ ├── mtdparts-nand │ │ │ │ │ └── usb │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ ├── hostname │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── terasic-de0-nano-soc │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── terasic-sockit │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── config.h │ │ │ ├── iocsr_config_cyclone5.c │ │ │ ├── lowlevel.c │ │ │ ├── pinmux_config.c │ │ │ ├── pll_config.h │ │ │ ├── sdram_config.h │ │ │ ├── sequencer_auto.h │ │ │ ├── sequencer_auto_ac_init.c │ │ │ ├── sequencer_auto_inst_init.c │ │ │ └── sequencer_defines.h │ │ ├── tny-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-tny-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── tny_a9260_lowlevel.c │ │ │ ├── tny_a9263_bootstrap.c │ │ │ └── tny_a9263_lowlevel.c │ │ ├── toradex-colibri-t20 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── colibri-t20_256_hsmmc.bct.cfg │ │ │ ├── colibri-t20_256_v11_nand.bct.cfg │ │ │ ├── colibri-t20_256_v12_nand.bct.cfg │ │ │ ├── colibri-t20_512_hsmmc.bct.cfg │ │ │ ├── colibri-t20_512_v11_nand.bct.cfg │ │ │ ├── colibri-t20_512_v12_nand.bct.cfg │ │ │ └── entry.c │ │ ├── toshiba-ac100 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── entry.c │ │ ├── tqma53 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tq-tqma53-1gib.imxcfg │ │ │ ├── flash-header-tq-tqma53-512mib.imxcfg │ │ │ ├── flash-header-tq-tqma53.h │ │ │ ├── flash-header.imxcfg │ │ │ └── lowlevel.c │ │ ├── tqma6x │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-tqma6dl.imxcfg │ │ │ ├── flash-header-tqma6q.imxcfg │ │ │ └── lowlevel.c │ │ ├── turris-omnia │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── udoo │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-mx6-udoo.imxcfg │ │ │ └── lowlevel.c │ │ ├── usb-a926x │ │ │ ├── Makefile │ │ │ ├── defaultenv-usb-a926x │ │ │ │ ├── bin │ │ │ │ │ └── init_board │ │ │ │ └── config │ │ │ ├── init.c │ │ │ ├── usb_a9260_lowlevel.c │ │ │ ├── usb_a9263_bootstrap.c │ │ │ └── usb_a9263_lowlevel.c │ │ ├── usi-topkick │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── kwbimage.cfg │ │ │ └── lowlevel.c │ │ ├── variscite-mx6 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── flash-header-variscite.imxcfg │ │ │ └── lowlevel.c │ │ ├── versatile │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── env │ │ │ │ ├── boot.d │ │ │ │ │ ├── 001-nor │ │ │ │ │ └── 101-nor-update │ │ │ │ ├── boot │ │ │ │ │ ├── nor │ │ │ │ │ └── nor-update │ │ │ │ ├── init │ │ │ │ │ ├── automount │ │ │ │ │ └── mtdparts-nor │ │ │ │ └── nv │ │ │ │ │ ├── boot.default │ │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── versatilepb.c │ │ ├── vexpress │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ └── lowlevel.c │ │ ├── virt2real │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── vscom-baltos │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── lowlevel.c │ │ ├── zii-imx6q-rdu2 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-rdu2 │ │ │ │ └── nv │ │ │ │ │ └── boot.default │ │ │ ├── flash-header-rdu2.imxcfg │ │ │ └── lowlevel.c │ │ ├── zii-vf610-dev │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── defaultenv-zii-vf610-dev │ │ │ │ ├── boot │ │ │ │ │ └── sd │ │ │ │ └── init │ │ │ │ │ ├── automount-sd │ │ │ │ │ └── choose-dtb │ │ │ ├── flash-header-zii-vf610-dev.imxcfg │ │ │ └── lowlevel.c │ │ └── zylonite │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ ├── boot │ │ │ │ └── nand-ubi │ │ │ ├── init │ │ │ │ └── mtdparts-nand │ │ │ └── nv │ │ │ │ ├── hostname │ │ │ │ ├── linux.bootargs.base │ │ │ │ └── linux.bootargs.console │ │ │ ├── lowlevel.c │ │ │ └── zylonite.h │ ├── configs │ │ ├── a9m2410_defconfig │ │ ├── a9m2440_defconfig │ │ ├── am335x_defconfig │ │ ├── am335x_mlo_defconfig │ │ ├── animeo_ip_defconfig │ │ ├── archosg9_defconfig │ │ ├── archosg9_xload_defconfig │ │ ├── at91rm9200ek_defconfig │ │ ├── at91sam9260ek_defconfig │ │ ├── at91sam9261ek_bootstrap_defconfig │ │ ├── at91sam9261ek_defconfig │ │ ├── at91sam9261ek_first_stage_defconfig │ │ ├── at91sam9263ek_defconfig │ │ ├── at91sam9g10ek_defconfig │ │ ├── at91sam9g20ek_defconfig │ │ ├── at91sam9m10g45ek_defconfig │ │ ├── at91sam9m10ihd_defconfig │ │ ├── at91sam9n12ek_defconfig │ │ ├── at91sam9x5ek_defconfig │ │ ├── canon-a1100_defconfig │ │ ├── ccmx51_defconfig │ │ ├── cfa10036_defconfig │ │ ├── chumbyone_defconfig │ │ ├── clps711x_defconfig │ │ ├── cupid_defconfig │ │ ├── datamodul-edm-qmx6_defconfig │ │ ├── dss11_defconfig │ │ ├── duckbill_defconfig │ │ ├── edb93xx_defconfig │ │ ├── efika-mx-smartbook_defconfig │ │ ├── embedsky_tq210_defconfig │ │ ├── eukrea_cpuimx25_defconfig │ │ ├── eukrea_cpuimx27_defconfig │ │ ├── eukrea_cpuimx35_defconfig │ │ ├── eukrea_cpuimx51_defconfig │ │ ├── forlinx_ok210_defconfig │ │ ├── freescale-mx21-ads_defconfig │ │ ├── freescale-mx23-evk_defconfig │ │ ├── freescale-mx25-3ds_defconfig │ │ ├── freescale-mx27-ads_defconfig │ │ ├── freescale-mx28-evk_defconfig │ │ ├── freescale-mx35-3ds_defconfig │ │ ├── freescale-mx53-smd_defconfig │ │ ├── friendlyarm_mini2440_defconfig │ │ ├── friendlyarm_mini6410_defconfig │ │ ├── friendlyarm_tiny210_defconfig │ │ ├── friendlyarm_tiny6410_defconfig │ │ ├── haba_knx_lite_defconfig │ │ ├── highbank_defconfig │ │ ├── imx233-olinuxino_defconfig │ │ ├── imx_defconfig │ │ ├── imx_v7-xload_defconfig │ │ ├── imx_v7_defconfig │ │ ├── kindle3_defconfig │ │ ├── lubbock_defconfig │ │ ├── mainstone_defconfig │ │ ├── mioa701_defconfig │ │ ├── module-mb7707_defconfig │ │ ├── mvebu_defconfig │ │ ├── neso_defconfig │ │ ├── netx_nxdb500_defconfig │ │ ├── nhk8815_defconfig │ │ ├── omap3430_sdp3430_per_uart_defconfig │ │ ├── omap3530_beagle_defconfig │ │ ├── omap3530_beagle_per_uart_defconfig │ │ ├── omap3530_beagle_xload_defconfig │ │ ├── omap3_evm_defconfig │ │ ├── panda_defconfig │ │ ├── panda_xload_defconfig │ │ ├── phytec-phycard-omap3-xload_defconfig │ │ ├── phytec-phycard-omap3_defconfig │ │ ├── phytec-phycard-omap4-xload_defconfig │ │ ├── phytec-phycard-omap4_defconfig │ │ ├── phytec-phycore-imx31_defconfig │ │ ├── phytec-phycore-imx35_defconfig │ │ ├── phytec-phycore-omap4460-xload-mmc_defconfig │ │ ├── phytec-phycore-omap4460-xload-nand_defconfig │ │ ├── phytec-phycore-omap4460_defconfig │ │ ├── phytec-phycore-pxa270_defconfig │ │ ├── pm9261_defconfig │ │ ├── pm9263_defconfig │ │ ├── pm9g45_defconfig │ │ ├── qemu_virt64_defconfig │ │ ├── qil_a9260_128mib_defconfig │ │ ├── qil_a9260_defconfig │ │ ├── qil_a9g20_128mib_defconfig │ │ ├── qil_a9g20_defconfig │ │ ├── rk3188_defconfig │ │ ├── rk3288_defconfig │ │ ├── rpi_defconfig │ │ ├── sama5d3_xplained_defconfig │ │ ├── sama5d3xek_defconfig │ │ ├── sama5d4_xplained_defconfig │ │ ├── sama5d4ek_defconfig │ │ ├── scb9328_defconfig │ │ ├── socfpga-arria10_defconfig │ │ ├── socfpga-xload-2_defconfig │ │ ├── socfpga-xload_defconfig │ │ ├── socfpga_defconfig │ │ ├── tegra_v7_defconfig │ │ ├── telit_evk_pro3_defconfig │ │ ├── tny_a9260_defconfig │ │ ├── tny_a9263_bootstrap_defconfig │ │ ├── tny_a9263_defconfig │ │ ├── tny_a9g20_defconfig │ │ ├── tqma53_defconfig │ │ ├── tx28stk5_defconfig │ │ ├── tx51stk5_defconfig │ │ ├── tx53stk5_defconfig │ │ ├── usb_a9260_defconfig │ │ ├── usb_a9263_128mib_bootstrap_defconfig │ │ ├── usb_a9263_128mib_defconfig │ │ ├── usb_a9263_bootstrap_defconfig │ │ ├── usb_a9263_defconfig │ │ ├── usb_a9g20_128mib_defconfig │ │ ├── usb_a9g20_defconfig │ │ ├── versatilepb_arm1176_defconfig │ │ ├── versatilepb_defconfig │ │ ├── vexpress_defconfig │ │ ├── vincell_defconfig │ │ ├── virt2real_defconfig │ │ ├── zedboard_defconfig │ │ ├── zii_vf610_dev_defconfig │ │ └── zylonite310_defconfig │ ├── cpu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache-armv4.S │ │ ├── cache-armv5.S │ │ ├── cache-armv6.S │ │ ├── cache-armv7.S │ │ ├── cache-armv8.S │ │ ├── cache-l2x0.c │ │ ├── cache.c │ │ ├── cache_64.c │ │ ├── common.c │ │ ├── cpu.c │ │ ├── cpuinfo.c │ │ ├── dtb.c │ │ ├── entry.c │ │ ├── entry.h │ │ ├── exceptions.S │ │ ├── exceptions_64.S │ │ ├── interrupts.c │ │ ├── interrupts_64.c │ │ ├── lowlevel.S │ │ ├── lowlevel_64.S │ │ ├── mmu-early.c │ │ ├── mmu-early_64.c │ │ ├── mmu.c │ │ ├── mmu.h │ │ ├── mmu_64.c │ │ ├── mmu_64.h │ │ ├── mmuinfo.c │ │ ├── no-mmu.c │ │ ├── psci.c │ │ ├── sections.c │ │ ├── setupc.S │ │ ├── setupc_64.S │ │ ├── sm.c │ │ ├── sm_as.S │ │ ├── smccc-call.S │ │ ├── start-pbl.c │ │ ├── start.c │ │ └── uncompress.c │ ├── crypto │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── sha1-armv4-large.S │ │ ├── sha1_glue.c │ │ ├── sha256-armv4.pl │ │ ├── sha256-core.S_shipped │ │ ├── sha256_glue.c │ │ └── sha256_glue.h │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── am335x-afi-gf.dts │ │ ├── am335x-baltos-minimal.dts │ │ ├── am335x-bone-common.dts │ │ ├── am335x-bone-common.dtsi │ │ ├── am335x-bone.dts │ │ ├── am335x-boneblack.dts │ │ ├── am335x-phytec-phycard-som-mlo.dts │ │ ├── am335x-phytec-phycard-som.dts │ │ ├── am335x-phytec-phycard-som.dtsi │ │ ├── am335x-phytec-phycore-som-emmc.dts │ │ ├── am335x-phytec-phycore-som-mlo.dts │ │ ├── am335x-phytec-phycore-som-nand-no-eeprom.dts │ │ ├── am335x-phytec-phycore-som-nand-no-spi-no-eeprom.dts │ │ ├── am335x-phytec-phycore-som-nand-no-spi.dts │ │ ├── am335x-phytec-phycore-som-nand.dts │ │ ├── am335x-phytec-phycore-som.dtsi │ │ ├── am335x-phytec-phyflex-som-mlo.dts │ │ ├── am335x-phytec-phyflex-som-no-eeprom.dts │ │ ├── am335x-phytec-phyflex-som-no-spi-no-eeprom.dts │ │ ├── am335x-phytec-phyflex-som-no-spi.dts │ │ ├── am335x-phytec-phyflex-som.dts │ │ ├── am335x-phytec-phyflex-som.dtsi │ │ ├── am335x-phytec-state.dtsi │ │ ├── am33xx-clocks-strip.dtsi │ │ ├── am33xx-strip.dtsi │ │ ├── am33xx.dtsi │ │ ├── armada-370-mirabox-bb.dts │ │ ├── armada-370-rn104-bb.dts │ │ ├── armada-385-turris-omnia-bb.dts │ │ ├── armada-xp-gp-bb.dts │ │ ├── armada-xp-lenovo-ix4-300d-bb.dts │ │ ├── armada-xp-openblocks-ax3-4-bb.dts │ │ ├── armada-xp-rn2120-bb.dts │ │ ├── at91sam9263ek.dts │ │ ├── at91sam9x5ek.dts │ │ ├── bcm2835-rpi.dts │ │ ├── bcm2836-rpi-2.dts │ │ ├── canon-a1100.dts │ │ ├── digic4.dtsi │ │ ├── dm365.dtsi │ │ ├── dove-cubox-bb.dts │ │ ├── imx25-karo-tx25.dts │ │ ├── imx25.dtsi │ │ ├── imx27-phytec-phycard-s-rdk-bb.dts │ │ ├── imx27-phytec-phycore-rdk.dts │ │ ├── imx28-duckbill.dts │ │ ├── imx50-kindle-common.dtsi │ │ ├── imx50-kindle-d01100.dts │ │ ├── imx50-kindle-d01200.dts │ │ ├── imx50-kindle-ey21.dts │ │ ├── imx50.dtsi │ │ ├── imx51-babbage.dts │ │ ├── imx51-genesi-efika-sb.dts │ │ ├── imx51.dtsi │ │ ├── imx53-ccxmx53.dts │ │ ├── imx53-ccxmx53.dtsi │ │ ├── imx53-guf-vincell-lt.dts │ │ ├── imx53-guf-vincell.dts │ │ ├── imx53-mba53.dts │ │ ├── imx53-qsb-common.dtsi │ │ ├── imx53-qsb.dts │ │ ├── imx53-qsrb.dts │ │ ├── imx53-tqma53.dtsi │ │ ├── imx53-tx53-1011.dts │ │ ├── imx53-tx53-xx30.dts │ │ ├── imx53-voipac-bsb.dts │ │ ├── imx53-voipac-dmm-668.dtsi │ │ ├── imx53.dtsi │ │ ├── imx6dl-cm-fx6.dts │ │ ├── imx6dl-dfi-fs700-m60-6s.dts │ │ ├── imx6dl-eltec-hipercam.dts │ │ ├── imx6dl-hummingboard.dts │ │ ├── imx6dl-hummingboard2.dts │ │ ├── imx6dl-mba6x.dts │ │ ├── imx6dl-nitrogen6x.dts │ │ ├── imx6dl-phytec-pbab01.dts │ │ ├── imx6dl-phytec-pfla02.dtsi │ │ ├── imx6dl-phytec-phyboard-subra.dts │ │ ├── imx6dl-phytec-phycore-som-emmc.dts │ │ ├── imx6dl-phytec-phycore-som-nand.dts │ │ ├── imx6dl-sabrelite.dts │ │ ├── imx6dl-samx6i.dts │ │ ├── imx6dl-tqma6s.dtsi │ │ ├── imx6dl-tx6u.dts │ │ ├── imx6dl-wandboard.dts │ │ ├── imx6dl.dtsi │ │ ├── imx6q-cm-fx6.dts │ │ ├── imx6q-dfi-fs700-m60-6q.dts │ │ ├── imx6q-dmo-edmqmx6.dts │ │ ├── imx6q-embedsky-e9.dts │ │ ├── imx6q-embedsky-e9.dtsi │ │ ├── imx6q-gk802.dts │ │ ├── imx6q-guf-santaro.dts │ │ ├── imx6q-gw54xx.dts │ │ ├── imx6q-h100.dts │ │ ├── imx6q-hummingboard.dts │ │ ├── imx6q-hummingboard2.dts │ │ ├── imx6q-mba6x.dts │ │ ├── imx6q-nitrogen6x.dts │ │ ├── imx6q-phytec-pbaa03.dts │ │ ├── imx6q-phytec-pbab01.dts │ │ ├── imx6q-phytec-pcaaxl3.dtsi │ │ ├── imx6q-phytec-pfla02.dtsi │ │ ├── imx6q-phytec-phyboard-alcor.dts │ │ ├── imx6q-phytec-phyboard-subra.dts │ │ ├── imx6q-phytec-phycore-som-emmc.dts │ │ ├── imx6q-phytec-phycore-som-nand.dts │ │ ├── imx6q-sabrelite.dts │ │ ├── imx6q-sabresd.dts │ │ ├── imx6q-samx6i.dts │ │ ├── imx6q-tqma6q.dtsi │ │ ├── imx6q-tx6q.dts │ │ ├── imx6q-udoo.dts │ │ ├── imx6q-utilite.dts │ │ ├── imx6q-var-custom.dts │ │ ├── imx6q-var-som.dtsi │ │ ├── imx6q-wandboard.dts │ │ ├── imx6q-zii-rdu2.dts │ │ ├── imx6q.dtsi │ │ ├── imx6qdl-cm-fx6.dtsi │ │ ├── imx6qdl-dfi-fs700-m60.dtsi │ │ ├── imx6qdl-gw54xx.dtsi │ │ ├── imx6qdl-hummingboard2.dtsi │ │ ├── imx6qdl-mba6x.dtsi │ │ ├── imx6qdl-nitrogen6_max.dtsi │ │ ├── imx6qdl-nitrogen6x.dtsi │ │ ├── imx6qdl-phytec-pbab01.dtsi │ │ ├── imx6qdl-phytec-pfla02.dtsi │ │ ├── imx6qdl-phytec-phyboard-subra.dtsi │ │ ├── imx6qdl-phytec-phycore-som.dtsi │ │ ├── imx6qdl-sabrelite.dtsi │ │ ├── imx6qdl-sabresd.dtsi │ │ ├── imx6qdl-smarc-samx6i.dtsi │ │ ├── imx6qdl-tqma6x.dtsi │ │ ├── imx6qdl-tx6x.dtsi │ │ ├── imx6qdl-udoo.dtsi │ │ ├── imx6qdl-zii-rdu2.dtsi │ │ ├── imx6qdl.dtsi │ │ ├── imx6qp-nitrogen6_max.dts │ │ ├── imx6qp-zii-rdu2.dts │ │ ├── imx6s-phytec-pbab01.dts │ │ ├── imx6s-phytec-pfla02.dtsi │ │ ├── imx6s-riotboard.dts │ │ ├── imx6sx-sdb.dts │ │ ├── imx6sx.dtsi │ │ ├── imx6ul-phytec-phycore-som.dts │ │ ├── imx6ul-phytec-phycore-som.dtsi │ │ ├── imx6ul-pico-hobbit.dts │ │ ├── imx6ull-14x14-evk.dts │ │ ├── imx6ull-phytec-phycore-som.dts │ │ ├── imx7d-pba-c-09.dtsi │ │ ├── imx7d-peb-av-02.dtsi │ │ ├── imx7d-peb-eval-02.dtsi │ │ ├── imx7d-phyboard-zeta.dts │ │ ├── imx7d-phycore-som.dtsi │ │ ├── imx7d-sdb.dts │ │ ├── imx7s-warp.dts │ │ ├── k1879hb1ya.dtsi │ │ ├── kirkwood-guruplug-server-plus-bb.dts │ │ ├── kirkwood-openblocks_a6-bb.dts │ │ ├── kirkwood-topkick-bb.dts │ │ ├── module-mb7707.dts │ │ ├── rk3188-radxarock.dts │ │ ├── rk3288-phycore-som.dts │ │ ├── skeleton.dtsi │ │ ├── socfpga.dtsi │ │ ├── socfpga_arria10_achilles.dts │ │ ├── socfpga_cyclone5_de0_nano_soc.dts │ │ ├── socfpga_cyclone5_socdk.dts │ │ ├── socfpga_cyclone5_sockit.dts │ │ ├── socfpga_cyclone5_socrates.dts │ │ ├── state-example.dtsi │ │ ├── tegra124-jetson-tk1.dts │ │ ├── tegra124.dtsi │ │ ├── tegra20-colibri-iris.dts │ │ ├── tegra20-colibri.dtsi │ │ ├── tegra20-paz00.dts │ │ ├── tegra20.dtsi │ │ ├── tegra30-beaver.dts │ │ ├── tegra30.dtsi │ │ ├── tps65217.dtsi │ │ ├── versatile-pb.dts │ │ ├── vexpress-v2p-ca15.dts │ │ ├── vexpress-v2p-ca9.dts │ │ ├── vf610-twr.dts │ │ ├── vf610-zii-cfu1-rev-a.dts │ │ ├── vf610-zii-dev-rev-b.dts │ │ ├── vf610-zii-dev-rev-c.dts │ │ ├── vf610-zii-dev.dtsi │ │ ├── vf610-zii-scu4-aib-rev-c.dts │ │ ├── vf610-zii-spu3-rev-a.dts │ │ └── virt2real.dts │ ├── include │ │ └── asm │ │ │ ├── arm-smccc.h │ │ │ ├── armlinux.h │ │ │ ├── assembler.h │ │ │ ├── assembler64.h │ │ │ ├── atomic.h │ │ │ ├── barebox-arm-head.h │ │ │ ├── barebox-arm.h │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache-l2x0.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── cputype.h │ │ │ ├── debug_ll_pl011.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── errata.h │ │ │ ├── esr.h │ │ │ ├── gic.h │ │ │ ├── hardware │ │ │ ├── arm_timer.h │ │ │ └── sp810.h │ │ │ ├── io.h │ │ │ ├── linkage.h │ │ │ ├── memory.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── pgtable.h │ │ │ ├── pgtable64.h │ │ │ ├── posix_types.h │ │ │ ├── proc-armv │ │ │ └── system.h │ │ │ ├── processor.h │ │ │ ├── psci.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── secure.h │ │ │ ├── semihosting.h │ │ │ ├── setup.h │ │ │ ├── stacktrace.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── system_info.h │ │ │ ├── types.h │ │ │ ├── unaligned.h │ │ │ ├── unified.h │ │ │ └── unwind.h │ ├── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ └── pbl.lds.S │ ├── lib32 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── armlinux.c │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── barebox.lds.S │ │ ├── bootm.c │ │ ├── bootu.c │ │ ├── bootz.c │ │ ├── copy_template.S │ │ ├── div0.c │ │ ├── findbit.S │ │ ├── io-readsb.S │ │ ├── io-readsl.S │ │ ├── io-readsw-armv4.S │ │ ├── io-writesb.S │ │ ├── io-writesl.S │ │ ├── io-writesw-armv4.S │ │ ├── io.c │ │ ├── lib1funcs.S │ │ ├── lshrdi3.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── module.c │ │ ├── runtime-offset.S │ │ ├── semihosting-trap.S │ │ ├── semihosting.c │ │ └── unwind.c │ ├── lib64 │ │ ├── Makefile │ │ ├── armlinux.c │ │ ├── barebox.lds.S │ │ ├── copy_template.S │ │ ├── div0.c │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── runtime-offset.S │ │ └── stacktrace.c │ ├── mach-at91 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── at91rm9200.c │ │ ├── at91rm9200_devices.c │ │ ├── at91rm9200_time.c │ │ ├── at91sam9260.c │ │ ├── at91sam9260_devices.c │ │ ├── at91sam9261.c │ │ ├── at91sam9261_devices.c │ │ ├── at91sam9263.c │ │ ├── at91sam9263_devices.c │ │ ├── at91sam9_reset.S │ │ ├── at91sam9g45.c │ │ ├── at91sam9g45_devices.c │ │ ├── at91sam9g45_reset.S │ │ ├── at91sam9n12.c │ │ ├── at91sam9n12_devices.c │ │ ├── at91sam9x5_devices.c │ │ ├── boot_test_cmd.c │ │ ├── bootstrap.c │ │ ├── clock.c │ │ ├── clock.h │ │ ├── generic.h │ │ ├── include │ │ │ └── mach │ │ │ │ ├── at91_dbgu.h │ │ │ │ ├── at91_pio.h │ │ │ │ ├── at91_pit.h │ │ │ │ ├── at91_pmc.h │ │ │ │ ├── at91_rstc.h │ │ │ │ ├── at91_rtt.h │ │ │ │ ├── at91_st.h │ │ │ │ ├── at91_tc.h │ │ │ │ ├── at91_wdt.h │ │ │ │ ├── at91rm9200.h │ │ │ │ ├── at91rm9200_emac.h │ │ │ │ ├── at91rm9200_mc.h │ │ │ │ ├── at91sam9260.h │ │ │ │ ├── at91sam9260_matrix.h │ │ │ │ ├── at91sam9261.h │ │ │ │ ├── at91sam9261_matrix.h │ │ │ │ ├── at91sam9263.h │ │ │ │ ├── at91sam9263_matrix.h │ │ │ │ ├── at91sam926x_board_init.h │ │ │ │ ├── at91sam9_ddrsdr.h │ │ │ │ ├── at91sam9_matrix.h │ │ │ │ ├── at91sam9_sdramc.h │ │ │ │ ├── at91sam9_smc.h │ │ │ │ ├── at91sam9g45.h │ │ │ │ ├── at91sam9g45_matrix.h │ │ │ │ ├── at91sam9n12.h │ │ │ │ ├── at91sam9n12_matrix.h │ │ │ │ ├── at91sam9x5.h │ │ │ │ ├── at91sam9x5_matrix.h │ │ │ │ ├── atmel_hlcdc.h │ │ │ │ ├── barebox-arm-head.h │ │ │ │ ├── board.h │ │ │ │ ├── bootstrap.h │ │ │ │ ├── cpu.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── io.h │ │ │ │ ├── iomux.h │ │ │ │ ├── sama5d3.h │ │ │ │ ├── sama5d3_matrix.h │ │ │ │ └── sama5d4.h │ │ ├── sam9_smc.c │ │ ├── sama5d3.c │ │ ├── sama5d3_devices.c │ │ ├── sama5d4.c │ │ ├── sama5d4_devices.c │ │ └── setup.c │ ├── mach-bcm283x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── core.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── mbox.h │ │ │ │ └── platform.h │ │ └── mbox.c │ ├── mach-clps711x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── devices.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clps711x.h │ │ │ │ └── devices.h │ │ ├── lowlevel.c │ │ └── reset.c │ ├── mach-davinci │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── hardware.h │ │ │ │ ├── serial.h │ │ │ │ └── time.h │ │ └── time.c │ ├── mach-digic │ │ ├── Kconfig │ │ ├── Makefile │ │ └── include │ │ │ └── mach │ │ │ ├── debug_ll.h │ │ │ ├── digic4.h │ │ │ └── uart.h │ ├── mach-ep93xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clocksource.c │ │ ├── gpio.c │ │ ├── header.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── barebox.lds.h │ │ │ │ └── ep93xx-regs.h │ │ ├── led.c │ │ ├── led.h │ │ └── lowlevel_init.S │ ├── mach-highbank │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cache-l2x0.c │ │ ├── core.c │ │ ├── core.h │ │ ├── devices.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices.h │ │ │ │ ├── hardware.h │ │ │ │ └── sysregs.h │ │ ├── reset.c │ │ └── smc.S │ ├── mach-imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── boot.c │ │ ├── clocksource.c │ │ ├── cpu_init.c │ │ ├── devices.c │ │ ├── esdctl-v4.c │ │ ├── esdctl.c │ │ ├── external-nand-boot.c │ │ ├── iim.c │ │ ├── imx-bbu-external-nand.c │ │ ├── imx-bbu-internal.c │ │ ├── imx.c │ │ ├── imx1.c │ │ ├── imx21.c │ │ ├── imx25.c │ │ ├── imx27.c │ │ ├── imx31.c │ │ ├── imx35.c │ │ ├── imx5.c │ │ ├── imx50.c │ │ ├── imx51.c │ │ ├── imx53.c │ │ ├── imx6-mmdc.c │ │ ├── imx6.c │ │ ├── imx7.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── bbu.h │ │ │ │ ├── clock-imx1.h │ │ │ │ ├── clock-imx51_53.h │ │ │ │ ├── clock-imx6.h │ │ │ │ ├── clock-vf610.h │ │ │ │ ├── clock.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices-imx1.h │ │ │ │ ├── devices-imx21.h │ │ │ │ ├── devices-imx25.h │ │ │ │ ├── devices-imx27.h │ │ │ │ ├── devices-imx31.h │ │ │ │ ├── devices-imx35.h │ │ │ │ ├── devices-imx50.h │ │ │ │ ├── devices-imx51.h │ │ │ │ ├── devices-imx53.h │ │ │ │ ├── devices-imx6.h │ │ │ │ ├── devices.h │ │ │ │ ├── esdctl-v4.h │ │ │ │ ├── esdctl.h │ │ │ │ ├── esdhc.h │ │ │ │ ├── generic.h │ │ │ │ ├── habv3-imx25-gencsf.h │ │ │ │ ├── habv4-imx6-gencsf.h │ │ │ │ ├── iim.h │ │ │ │ ├── imx-gpio.h │ │ │ │ ├── imx-ipu-fb.h │ │ │ │ ├── imx-nand.h │ │ │ │ ├── imx-pll.h │ │ │ │ ├── imx1-regs.h │ │ │ │ ├── imx21-regs.h │ │ │ │ ├── imx25-fusemap.h │ │ │ │ ├── imx25-regs.h │ │ │ │ ├── imx27-regs.h │ │ │ │ ├── imx31-regs.h │ │ │ │ ├── imx35-regs.h │ │ │ │ ├── imx5.h │ │ │ │ ├── imx50-regs.h │ │ │ │ ├── imx51-regs.h │ │ │ │ ├── imx53-regs.h │ │ │ │ ├── imx6-anadig.h │ │ │ │ ├── imx6-ccm-regs.h │ │ │ │ ├── imx6-ddr-regs.h │ │ │ │ ├── imx6-fusemap.h │ │ │ │ ├── imx6-mmdc.h │ │ │ │ ├── imx6-regs.h │ │ │ │ ├── imx6.h │ │ │ │ ├── imx6dl-ddr-regs.h │ │ │ │ ├── imx6q-ddr-regs.h │ │ │ │ ├── imx7-ccm-regs.h │ │ │ │ ├── imx7-ddr-regs.h │ │ │ │ ├── imx7-regs.h │ │ │ │ ├── imx7.h │ │ │ │ ├── imx_cpu_types.h │ │ │ │ ├── imxfb.h │ │ │ │ ├── iomux-mx1.h │ │ │ │ ├── iomux-mx21.h │ │ │ │ ├── iomux-mx25.h │ │ │ │ ├── iomux-mx27.h │ │ │ │ ├── iomux-mx2x.h │ │ │ │ ├── iomux-mx31.h │ │ │ │ ├── iomux-mx35.h │ │ │ │ ├── iomux-mx50.h │ │ │ │ ├── iomux-mx51.h │ │ │ │ ├── iomux-mx53.h │ │ │ │ ├── iomux-mx6.h │ │ │ │ ├── iomux-mx7.h │ │ │ │ ├── iomux-v1.h │ │ │ │ ├── iomux-v3.h │ │ │ │ ├── iomux-vf610.h │ │ │ │ ├── ocotp-fusemap.h │ │ │ │ ├── ocotp.h │ │ │ │ ├── revision.h │ │ │ │ ├── spi.h │ │ │ │ ├── usb.h │ │ │ │ ├── vf610-fusemap.h │ │ │ │ ├── vf610-regs.h │ │ │ │ ├── weim.h │ │ │ │ └── xload.h │ │ ├── nand.c │ │ ├── ocotp.c │ │ ├── src.c │ │ ├── usb-imx6.c │ │ ├── xload-common.c │ │ ├── xload-esdhc.c │ │ ├── xload-imx-nand.c │ │ ├── xload-spi.c │ │ └── xload.c │ ├── mach-mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── armada-370-xp.c │ │ ├── common.c │ │ ├── dove.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── armada-370-xp-regs.h │ │ │ │ ├── barebox-arm-head.h │ │ │ │ ├── common.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── dove-regs.h │ │ │ │ ├── dove.h │ │ │ │ ├── kirkwood-regs.h │ │ │ │ ├── kirkwood.h │ │ │ │ ├── lowlevel.h │ │ │ │ └── socid.h │ │ ├── kirkwood.c │ │ └── kwbootimage.c │ ├── mach-mxs │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bcb.c │ │ ├── clocksource-imx23.c │ │ ├── clocksource-imx28.c │ │ ├── imx.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clock.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices.h │ │ │ │ ├── fb.h │ │ │ │ ├── generic.h │ │ │ │ ├── imx-regs.h │ │ │ │ ├── imx23-regs.h │ │ │ │ ├── imx28-regs.h │ │ │ │ ├── init.h │ │ │ │ ├── iomux-imx23.h │ │ │ │ ├── iomux-imx28.h │ │ │ │ ├── iomux.h │ │ │ │ ├── mci.h │ │ │ │ ├── ocotp.h │ │ │ │ ├── power.h │ │ │ │ ├── regs-clkctrl-mx23.h │ │ │ │ ├── regs-clkctrl-mx28.h │ │ │ │ ├── regs-common.h │ │ │ │ ├── regs-lradc.h │ │ │ │ ├── regs-power-mx28.h │ │ │ │ ├── regs-rtc.h │ │ │ │ ├── revision.h │ │ │ │ ├── ssp.h │ │ │ │ └── usb.h │ │ ├── iomux-imx.c │ │ ├── lradc-init.c │ │ ├── mem-init.c │ │ ├── mxs23img.cfg │ │ ├── mxs28img.cfg │ │ ├── ocotp.c │ │ ├── power-init.c │ │ ├── power.c │ │ ├── soc-imx23.c │ │ ├── soc-imx28.c │ │ ├── usb-imx23.c │ │ └── usb-imx28.c │ ├── mach-netx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clocksource.c │ │ ├── eth_firmware.h │ │ ├── generic.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── netx-cm.h │ │ │ │ ├── netx-devices.h │ │ │ │ ├── netx-eth.h │ │ │ │ ├── netx-regs.h │ │ │ │ └── netx-xc.h │ │ ├── interrupts.c │ │ ├── lowlevel_init.S │ │ └── netx-cm.c │ ├── mach-nomadik │ │ ├── 8815.c │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clock.c │ │ ├── clock.h │ │ ├── include │ │ │ └── mach │ │ │ │ ├── board.h │ │ │ │ ├── fsmc.h │ │ │ │ ├── hardware.h │ │ │ │ └── nand.h │ │ ├── reset.c │ │ └── timer.c │ ├── mach-omap │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am33xx_bbu_emmc.c │ │ ├── am33xx_bbu_nand.c │ │ ├── am33xx_bbu_spi_mlo.c │ │ ├── am33xx_clock.c │ │ ├── am33xx_generic.c │ │ ├── am33xx_mux.c │ │ ├── am33xx_scrm.c │ │ ├── auxcr.S │ │ ├── boot_order.c │ │ ├── devices-gpmc-nand.c │ │ ├── dmtimer.c │ │ ├── gpmc.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── am33xx-clock.h │ │ │ │ ├── am33xx-devices.h │ │ │ │ ├── am33xx-generic.h │ │ │ │ ├── am33xx-mux.h │ │ │ │ ├── am33xx-silicon.h │ │ │ │ ├── bbu.h │ │ │ │ ├── clocks.h │ │ │ │ ├── cm-regbits-34xx.h │ │ │ │ ├── control.h │ │ │ │ ├── cpsw.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices.h │ │ │ │ ├── ehci.h │ │ │ │ ├── emac_defs.h │ │ │ │ ├── generic.h │ │ │ │ ├── gpmc.h │ │ │ │ ├── gpmc_nand.h │ │ │ │ ├── intc.h │ │ │ │ ├── mcspi.h │ │ │ │ ├── omap-fb.h │ │ │ │ ├── omap3-clock.h │ │ │ │ ├── omap3-devices.h │ │ │ │ ├── omap3-generic.h │ │ │ │ ├── omap3-mux.h │ │ │ │ ├── omap3-silicon.h │ │ │ │ ├── omap3-smx.h │ │ │ │ ├── omap4-clock.h │ │ │ │ ├── omap4-devices.h │ │ │ │ ├── omap4-generic.h │ │ │ │ ├── omap4-mux.h │ │ │ │ ├── omap4-silicon.h │ │ │ │ ├── omap4_rom_usb.h │ │ │ │ ├── omap4_twl6030_mmc.h │ │ │ │ ├── omap_hsmmc.h │ │ │ │ ├── sdrc.h │ │ │ │ ├── sys_info.h │ │ │ │ ├── syslib.h │ │ │ │ ├── timers.h │ │ │ │ └── wdt.h │ │ ├── omap3_clock.c │ │ ├── omap3_generic.c │ │ ├── omap3_xload_usb.c │ │ ├── omap4_clock.c │ │ ├── omap4_generic.c │ │ ├── omap4_rom_usb.c │ │ ├── omap4_twl6030_mmc.c │ │ ├── omap_devices.c │ │ ├── omap_fb.c │ │ ├── omap_generic.c │ │ ├── s32k_clksource.c │ │ ├── syslib.c │ │ └── xload.c │ ├── mach-pxa │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clocksource.c │ │ ├── common.c │ │ ├── devices.c │ │ ├── gpio.c │ │ ├── include │ │ │ ├── mach │ │ │ │ ├── clock.h │ │ │ │ ├── devices.h │ │ │ │ ├── gpio.h │ │ │ │ ├── hardware.h │ │ │ │ ├── mci_pxa2xx.h │ │ │ │ ├── mfp-pxa27x.h │ │ │ │ ├── mfp-pxa2xx.h │ │ │ │ ├── mfp-pxa3xx.h │ │ │ │ ├── mfp.h │ │ │ │ ├── pxa-regs.h │ │ │ │ ├── pxa25x-regs.h │ │ │ │ ├── pxa27x-regs.h │ │ │ │ ├── pxa2xx-regs.h │ │ │ │ ├── pxa3xx-regs.h │ │ │ │ ├── pxafb.h │ │ │ │ ├── regs-intc.h │ │ │ │ ├── regs-lcd.h │ │ │ │ ├── regs-ost.h │ │ │ │ ├── regs-pwm.h │ │ │ │ └── udc_pxa2xx.h │ │ │ └── plat │ │ │ │ ├── gpio.h │ │ │ │ └── mfp.h │ │ ├── mfp-pxa2xx.c │ │ ├── mfp-pxa3xx.c │ │ ├── pxa2xx.c │ │ ├── pxa3xx.c │ │ ├── sleep.S │ │ ├── speed-pxa25x.c │ │ ├── speed-pxa27x.c │ │ └── speed-pxa3xx.c │ ├── mach-qemu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ └── devices.h │ │ └── virt_devices.c │ ├── mach-rockchip │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── cru_rk3288.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── grf_rk3288.h │ │ │ │ ├── hardware.h │ │ │ │ ├── rk3188-regs.h │ │ │ │ ├── rk3288-regs.h │ │ │ │ └── timer.h │ │ ├── rk3188.c │ │ └── rk3288.c │ ├── mach-samsung │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbu-nand-s3c24x0.c │ │ ├── bbu-nand-s5pcxx.c │ │ ├── clocks-s3c24xx.c │ │ ├── clocks-s3c64xx.c │ │ ├── clocks-s5pcxx.c │ │ ├── generic.c │ │ ├── gpio-s3c24x0.c │ │ ├── gpio-s3c64xx.c │ │ ├── gpio-s5pcxx.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── bbu.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices-s3c24xx.h │ │ │ │ ├── devices-s3c64xx.h │ │ │ │ ├── iomux-s3c24x0.h │ │ │ │ ├── iomux-s3c64xx.h │ │ │ │ ├── iomux-s5pcxx.h │ │ │ │ ├── iomux.h │ │ │ │ ├── s3c-busctl.h │ │ │ │ ├── s3c-clocks.h │ │ │ │ ├── s3c-fb.h │ │ │ │ ├── s3c-generic.h │ │ │ │ ├── s3c-iomap.h │ │ │ │ ├── s3c-mci.h │ │ │ │ ├── s3c24xx-clocks.h │ │ │ │ ├── s3c24xx-fb.h │ │ │ │ ├── s3c24xx-gpio.h │ │ │ │ ├── s3c24xx-iomap.h │ │ │ │ ├── s3c24xx-nand.h │ │ │ │ ├── s3c64xx-clocks.h │ │ │ │ ├── s3c64xx-iomap.h │ │ │ │ ├── s5pcxx-clocks.h │ │ │ │ ├── s5pcxx-iomap.h │ │ │ │ └── s5pcxx-nand.h │ │ ├── lowlevel-s3c24x0.S │ │ ├── lowlevel-s5pcxx.c │ │ ├── mem-s3c24x0.c │ │ ├── mem-s3c64xx.c │ │ ├── mem-s5pcxx.c │ │ ├── reset_source.c │ │ └── s3c-timer.c │ ├── mach-socfpga │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── arria10-bootsource.c │ │ ├── arria10-clock-manager.c │ │ ├── arria10-generic.c │ │ ├── arria10-init.c │ │ ├── arria10-reset-manager.c │ │ ├── arria10-sdram.c │ │ ├── cyclone5-bootsource.c │ │ ├── cyclone5-clock-manager.c │ │ ├── cyclone5-freeze-controller.c │ │ ├── cyclone5-generic.c │ │ ├── cyclone5-init.c │ │ ├── cyclone5-reset-manager.c │ │ ├── cyclone5-scan-manager.c │ │ ├── cyclone5-system-manager.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── arria10-clock-manager.h │ │ │ │ ├── arria10-pinmux.h │ │ │ │ ├── arria10-regs.h │ │ │ │ ├── arria10-reset-manager.h │ │ │ │ ├── arria10-sdram.h │ │ │ │ ├── arria10-system-manager.h │ │ │ │ ├── barebox-arm-head.h │ │ │ │ ├── cyclone5-clock-manager.h │ │ │ │ ├── cyclone5-freeze-controller.h │ │ │ │ ├── cyclone5-regs.h │ │ │ │ ├── cyclone5-reset-manager.h │ │ │ │ ├── cyclone5-scan-manager.h │ │ │ │ ├── cyclone5-sdram-config.h │ │ │ │ ├── cyclone5-sdram.h │ │ │ │ ├── cyclone5-sequencer.c │ │ │ │ ├── cyclone5-sequencer.h │ │ │ │ ├── cyclone5-system-manager.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── generic.h │ │ │ │ ├── nic301.h │ │ │ │ ├── pll_config.h │ │ │ │ ├── sdram_io.h │ │ │ │ ├── system.h │ │ │ │ └── tclrpt.h │ │ ├── nic301.c │ │ └── xload.c │ ├── mach-tegra │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── iomap.h │ │ │ │ ├── lowlevel-dvc.h │ │ │ │ ├── lowlevel.h │ │ │ │ ├── tegra-bbu.h │ │ │ │ ├── tegra-powergate.h │ │ │ │ ├── tegra114-sysctr.h │ │ │ │ ├── tegra124-car.h │ │ │ │ ├── tegra20-car.h │ │ │ │ ├── tegra20-pmc.h │ │ │ │ ├── tegra30-car.h │ │ │ │ └── tegra30-flow.h │ │ ├── tegra-bbu.c │ │ ├── tegra20-pmc.c │ │ ├── tegra20-timer.c │ │ ├── tegra20.c │ │ ├── tegra_avp_init.c │ │ └── tegra_maincomplex_init.c │ ├── mach-uemd │ │ ├── Kconfig │ │ ├── Makefile │ │ └── include │ │ │ └── mach │ │ │ ├── debug_ll.h │ │ │ └── hardware.h │ ├── mach-versatile │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── core.c │ │ └── include │ │ │ └── mach │ │ │ ├── debug_ll.h │ │ │ ├── init.h │ │ │ └── platform.h │ ├── mach-vexpress │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ └── devices.h │ │ ├── reset.c │ │ └── v2m.c │ ├── mach-zynq │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── clk-zynq7000.c │ │ ├── devices.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── barebox.lds.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── devices.h │ │ │ │ ├── zynq-flash-header.h │ │ │ │ └── zynq7000-regs.h │ │ └── zynq.c │ ├── pbl │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── piggy.comp_copy.S │ │ ├── piggy.gzip.S │ │ ├── piggy.lz4.S │ │ ├── piggy.lzo.S │ │ └── piggy.xzkern.S │ └── tools │ │ ├── Makefile │ │ ├── gen-mach-types │ │ └── mach-types ├── blackfin │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ └── ipe337 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── barebox.lds.S │ │ │ ├── cmd_alternate.c │ │ │ ├── config.h │ │ │ ├── env │ │ │ ├── bin │ │ │ │ ├── _alternate │ │ │ │ ├── _update │ │ │ │ ├── boot │ │ │ │ ├── init │ │ │ │ ├── magic.bin │ │ │ │ ├── reset_ageing │ │ │ │ ├── update_application │ │ │ │ ├── update_bareboxenv │ │ │ │ ├── update_kernel │ │ │ │ ├── update_persistent │ │ │ │ └── update_system │ │ │ └── config │ │ │ └── ipe337.c │ ├── configs │ │ └── ipe337_defconfig │ ├── cpu-bf561 │ │ ├── Makefile │ │ ├── init_sdram.S │ │ └── start.S │ ├── include │ │ └── asm │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── blackfin.h │ │ │ ├── blackfin_defs.h │ │ │ ├── byteorder.h │ │ │ ├── common.h │ │ │ ├── cplb.h │ │ │ ├── cpu.h │ │ │ ├── cpu │ │ │ ├── cdefBF531.h │ │ │ ├── cdefBF532.h │ │ │ ├── cdefBF533.h │ │ │ ├── cdefBF53x.h │ │ │ ├── cdefBF561.h │ │ │ ├── cdef_LPBlackfin.h │ │ │ ├── defBF531.h │ │ │ ├── defBF532.h │ │ │ ├── defBF533.h │ │ │ ├── defBF533_extn.h │ │ │ ├── defBF561.h │ │ │ ├── defBF561_extn.h │ │ │ └── def_LPBlackfin.h │ │ │ ├── current.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── entry.h │ │ │ ├── hw_irq.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── linkage.h │ │ │ ├── mem_init.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── page.h │ │ │ ├── page_offset.h │ │ │ ├── posix_types.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── segment.h │ │ │ ├── setup.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── traps.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── ashrdi3.c │ │ ├── asm-offsets.c │ │ ├── bf533_string.c │ │ ├── blackfin_linux.c │ │ ├── board.c │ │ ├── clock.c │ │ ├── cpu.c │ │ ├── divsi3.S │ │ ├── flush.S │ │ ├── gcclib.h │ │ ├── interrupt.S │ │ ├── lshrdi3.c │ │ ├── modsi3.S │ │ ├── module.c │ │ ├── muldi3.c │ │ ├── smulsi3_highpart.S │ │ ├── traps.c │ │ ├── udivsi3.S │ │ ├── umodsi3.S │ │ └── umulsi3_highpart.S ├── mips │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── 8devices-lima │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ ├── black-swift │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ ├── dlink-dir-320 │ │ │ ├── Makefile │ │ │ └── board.c │ │ ├── dptechnics-dpt-module │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ ├── general-ar9331 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ ├── boot │ │ │ │ │ └── spiflash │ │ │ │ ├── config │ │ │ │ ├── index.html │ │ │ │ ├── init │ │ │ │ │ ├── net │ │ │ │ │ └── ps1 │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ └── autoboot_timeout │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ ├── general-ar9344 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ ├── boot │ │ │ │ │ └── spiflash │ │ │ │ ├── config │ │ │ │ ├── index.html │ │ │ │ ├── init │ │ │ │ │ ├── net │ │ │ │ │ └── ps1 │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ └── autoboot_timeout │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ ├── general-rt5350 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ ├── env │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ ├── boot │ │ │ │ │ └── spiflash │ │ │ │ ├── config │ │ │ │ ├── init │ │ │ │ │ ├── net │ │ │ │ │ └── ps1 │ │ │ │ └── nv │ │ │ │ │ ├── allow_color │ │ │ │ │ └── autoboot_timeout │ │ │ └── include │ │ │ │ └── board │ │ │ │ ├── board_pbl_start.h │ │ │ │ └── debug_ll.h │ │ ├── img-ci20 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── include │ │ │ │ └── board │ │ │ │ ├── board_pbl_start.h │ │ │ │ └── debug_ll.h │ │ ├── loongson-ls1b │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── board │ │ │ │ │ ├── board_pbl_start.h │ │ │ │ │ └── debug_ll.h │ │ │ └── serial.c │ │ ├── netgear-wg102 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── board │ │ │ │ │ ├── board_pbl_start.h │ │ │ │ │ └── debug_ll.h │ │ │ └── ram.c │ │ ├── qemu-malta │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── board │ │ │ │ │ ├── board_pbl_start.h │ │ │ │ │ └── debug_ll.h │ │ │ └── init.c │ │ ├── ritmix-rzx50 │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── board │ │ │ │ │ ├── board_pbl_start.h │ │ │ │ │ └── debug_ll.h │ │ │ └── serial.c │ │ ├── tplink-mr3020 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── include │ │ │ │ └── board │ │ │ │ └── board_pbl_start.h │ │ └── tplink-wdr4300 │ │ │ ├── Makefile │ │ │ ├── board.c │ │ │ └── include │ │ │ └── board │ │ │ └── board_pbl_start.h │ ├── boot │ │ ├── Makefile │ │ ├── dtb.c │ │ ├── main_entry-pbl.c │ │ ├── main_entry.c │ │ ├── start-pbl.S │ │ └── start.S │ ├── configs │ │ ├── 8devices-lima_defconfig │ │ ├── black-swift_defconfig │ │ ├── dlink-dir-320_defconfig │ │ ├── dptechnics-dpt-module_defconfig │ │ ├── general-ar9331_defconfig │ │ ├── general-ar9344_defconfig │ │ ├── general-rt5350_defconfig │ │ ├── gxemul-malta_defconfig │ │ ├── img-ci20_defconfig │ │ ├── loongson-ls1b_defconfig │ │ ├── qemu-malta_defconfig │ │ ├── ritmix-rzx50_defconfig │ │ ├── tplink-mr3020_defconfig │ │ └── tplink-wdr4300_defconfig │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ar9331-dptechnics-dpt-module.dts │ │ ├── ar9331.dtsi │ │ ├── ar9344-tl-wdr4300-v1.7.dts │ │ ├── ar9344.dtsi │ │ ├── black-swift.dts │ │ ├── dlink-dir-320.dts │ │ ├── general-ar9331.dts │ │ ├── general-ar9344.dts │ │ ├── general-rt5350.dts │ │ ├── img-ci20.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── jz4755.dtsi │ │ ├── jz4780.dtsi │ │ ├── loongson-ls1b.dts │ │ ├── ls1b.dtsi │ │ ├── qca4531-8devices-lima.dts │ │ ├── qca4531.dtsi │ │ ├── qemu-malta.dts │ │ ├── rt5350.dtsi │ │ ├── rzx50.dts │ │ ├── skeleton.dtsi │ │ └── tplink-mr3020.dts │ ├── include │ │ └── asm │ │ │ ├── addrspace.h │ │ │ ├── asm-offsets.h │ │ │ ├── asm.h │ │ │ ├── barebox.h │ │ │ ├── barrier.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cacheops.h │ │ │ ├── common.h │ │ │ ├── cpu-features.h │ │ │ ├── cpu-info.h │ │ │ ├── cpu.h │ │ │ ├── debug_ll_ns16550.h │ │ │ ├── dma-mapping.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── gt64120.h │ │ │ ├── io.h │ │ │ ├── memory.h │ │ │ ├── mipsregs.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── pbl_macros.h │ │ │ ├── pbl_nmon.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── regdef.h │ │ │ ├── sections.h │ │ │ ├── sgidefs.h │ │ │ ├── stackframe.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ashldi3.c │ │ ├── ashrdi3.c │ │ ├── asm-offsets.c │ │ ├── barebox.lds.S │ │ ├── bootm.c │ │ ├── c-r4k.c │ │ ├── cpu-probe.c │ │ ├── cpuinfo.c │ │ ├── csrc-r4k.c │ │ ├── dma-default.c │ │ ├── genex.S │ │ ├── libgcc.h │ │ ├── lshrdi3.c │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── shutdown.c │ │ └── traps.c │ ├── mach-ar231x │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ar231x.c │ │ ├── ar231x_reset.c │ │ ├── board.c │ │ └── include │ │ │ └── mach │ │ │ ├── ar2312_regs.h │ │ │ ├── ar231x_platform.h │ │ │ ├── debug_ll.h │ │ │ └── pbl_macros.h │ ├── mach-ath79 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbu.c │ │ ├── boot-tplinkfw.c │ │ ├── cpu.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── ar71xx_regs.h │ │ │ │ ├── ath79.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── debug_ll_ar9331.h │ │ │ │ ├── debug_ll_ar9344.h │ │ │ │ ├── pbl_ll_init_ar9344_1.1.h │ │ │ │ ├── pbl_ll_init_qca4531.h │ │ │ │ └── pbl_macros.h │ │ ├── ram.c │ │ └── reset.c │ ├── mach-bcm47xx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ └── hardware.h │ │ └── reset.c │ ├── mach-loongson │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ └── loongson1.h │ │ └── loongson1_reset.c │ ├── mach-malta │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── hardware.h │ │ │ │ └── mach-gt64120.h │ │ ├── pci.c │ │ └── reset.c │ ├── mach-ralink │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── bbu.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── common.h │ │ │ │ ├── debug_ll.h │ │ │ │ ├── pbl_macros.h │ │ │ │ ├── ralink_regs.h │ │ │ │ └── rt305x.h │ │ ├── ram.c │ │ ├── reset.c │ │ └── rt305x.c │ ├── mach-xburst │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── csrc-jz4750.c │ │ ├── include │ │ │ └── mach │ │ │ │ ├── debug_ll.h │ │ │ │ ├── debug_ll_jz4750d.h │ │ │ │ ├── debug_ll_jz4780.h │ │ │ │ ├── devices.h │ │ │ │ ├── jz4750d_regs.h │ │ │ │ └── jz4780.h │ │ └── reset-jz4750.c │ └── pbl │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── piggy.gzip.S │ │ ├── piggy.lz4.S │ │ ├── piggy.lzo.S │ │ ├── piggy.shipped.S │ │ ├── piggy.xzkern.S │ │ └── zbarebox.lds.S ├── nios2 │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ └── generic │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-generic │ │ │ └── config │ │ │ ├── generic.c │ │ │ └── nios_sopc.h │ ├── configs │ │ └── generic_defconfig │ ├── cpu │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cpu.c │ │ ├── exceptions.S │ │ ├── start.S │ │ └── traps.c │ ├── include │ │ └── asm │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── dma-mapping.h │ │ │ ├── dma.h │ │ │ ├── early_printf.h │ │ │ ├── elf.h │ │ │ ├── int-ll64.h │ │ │ ├── io.h │ │ │ ├── mmu.h │ │ │ ├── nios2-io.h │ │ │ ├── nios2.h │ │ │ ├── opcodes.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spi.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── board.c │ │ ├── bootm.c │ │ ├── cache.c │ │ ├── clock.c │ │ ├── early_printf.c │ │ ├── libgcc.c │ │ └── longlong.h ├── openrisc │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ └── generic │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── env │ │ │ └── config │ │ │ └── generic.c │ ├── configs │ │ └── generic_defconfig │ ├── cpu │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cache.c │ │ ├── cpu.c │ │ ├── exceptions.c │ │ └── start.S │ ├── dts │ │ ├── Makefile │ │ └── or1ksim.dts │ ├── include │ │ └── asm │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitops │ │ │ ├── ffs.h │ │ │ └── fls.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── mmu.h │ │ │ ├── openrisc_exc.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── spr-defs.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── system.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ └── lib │ │ ├── Makefile │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── asm-offsets.c │ │ ├── board.c │ │ ├── clock.c │ │ ├── cpuinfo.c │ │ ├── dtb.c │ │ ├── lshrdi3.S │ │ └── muldi3.S ├── ppc │ ├── Kconfig │ ├── Makefile │ ├── boards │ │ ├── .gitignore │ │ ├── freescale-p1010rdb │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── ddr.c │ │ │ ├── defaultenv-freescale-p1010rdb │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── p1010rdb.c │ │ │ ├── p1010rdb.h │ │ │ └── tlb.c │ │ ├── freescale-p1022ds │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── ddr.c │ │ │ ├── defaultenv-freescale-p1022ds │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── ics307_clk.c │ │ │ ├── law.c │ │ │ ├── p1022ds.c │ │ │ ├── p1022ds.h │ │ │ └── tlb.c │ │ ├── freescale-p2020rdb │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── defaultenv-freescale-p2020rdb │ │ │ │ ├── bin │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── p2020rdb.c │ │ │ └── tlb.c │ │ ├── geip-da923rc │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── da923rc.c │ │ │ ├── ddr.c │ │ │ ├── defaultenv-geip-da923rc │ │ │ │ ├── bin │ │ │ │ │ ├── boot │ │ │ │ │ └── init │ │ │ │ └── config │ │ │ ├── law.c │ │ │ ├── nand.c │ │ │ ├── product_data.c │ │ │ ├── product_data.h │ │ │ └── tlb.c │ │ └── pcm030 │ │ │ ├── Makefile │ │ │ ├── barebox.lds.S │ │ │ ├── config.h │ │ │ ├── eeprom.c │ │ │ ├── env │ │ │ ├── init │ │ │ │ └── mtdparts-nor │ │ │ └── nv │ │ │ │ └── linux.bootargs.console │ │ │ ├── mt46v32m16-75.h │ │ │ └── pcm030.c │ ├── configs │ │ ├── da923rc_defconfig │ │ ├── p1010rdb_defconfig │ │ ├── p1022ds_defconfig │ │ ├── p2020rdb_defconfig │ │ └── pcm030_defconfig │ ├── cpu-85xx │ │ ├── Makefile │ │ ├── fixed_ivor.S │ │ ├── mmu.c │ │ ├── resetvec.S │ │ ├── start.S │ │ ├── tlb.c │ │ └── traps.c │ ├── ddr-8xxx │ │ ├── Makefile │ │ ├── common_timing_params.h │ │ ├── ctrl_regs.c │ │ ├── ddr.h │ │ ├── ddr2_dimm_params.c │ │ ├── ddr3_dimm_params.c │ │ ├── ddr_setctrl.c │ │ ├── lc_common_dimm_params.c │ │ ├── main.c │ │ ├── options.c │ │ └── util.c │ ├── include │ │ └── asm │ │ │ ├── atomic.h │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── dma.h │ │ │ ├── e300.h │ │ │ ├── elf.h │ │ │ ├── fsl_ddr_dimm_params.h │ │ │ ├── fsl_ddr_sdram.h │ │ │ ├── fsl_ifc.h │ │ │ ├── fsl_law.h │ │ │ ├── fsl_lbc.h │ │ │ ├── io.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mmu.h │ │ │ ├── module.h │ │ │ ├── pci_io.h │ │ │ ├── posix_types.h │ │ │ ├── ppc_asm.tmpl │ │ │ ├── ppc_defs.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── sections.h │ │ │ ├── sigcontext.h │ │ │ ├── signal.h │ │ │ ├── status_led.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ ├── lib │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── bat_rw.c │ │ ├── board.c │ │ ├── crtsavres.S │ │ ├── extable.c │ │ ├── kgdb.c │ │ ├── misc.S │ │ ├── module.c │ │ ├── ppclinux.c │ │ ├── ppcstring.S │ │ ├── reloc.S │ │ └── ticks.S │ ├── mach-mpc5xxx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── cpu_init.c │ │ ├── firmware_sc_task.impl.S │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ ├── include │ │ │ └── mach │ │ │ │ ├── clock.h │ │ │ │ ├── mpc5xxx.h │ │ │ │ └── sdma.h │ │ ├── io.S │ │ ├── loadtask.c │ │ ├── pci_mpc5200.c │ │ ├── reginfo.c │ │ ├── speed.c │ │ ├── start.S │ │ ├── time.c │ │ └── traps.c │ └── mach-mpc85xx │ │ ├── .gitignore │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── cpu.c │ │ ├── cpu_init.c │ │ ├── cpuid.c │ │ ├── eth-devices.c │ │ ├── fdt.c │ │ ├── fsl_gpio.c │ │ ├── fsl_i2c.c │ │ ├── fsl_law.c │ │ ├── include │ │ └── mach │ │ │ ├── clock.h │ │ │ ├── config_mpc85xx.h │ │ │ ├── early_udelay.h │ │ │ ├── ffs64.h │ │ │ ├── fsl_i2c.h │ │ │ ├── gianfar.h │ │ │ ├── gpio.h │ │ │ ├── immap_85xx.h │ │ │ ├── mmu.h │ │ │ └── mpc85xx.h │ │ ├── speed.c │ │ └── time.c ├── sandbox │ ├── Kconfig │ ├── Makefile │ ├── board │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── barebox.lds.S │ │ ├── board.c │ │ ├── clock.c │ │ ├── console.c │ │ ├── devices.c │ │ ├── dtb.c │ │ ├── env │ │ │ └── network │ │ │ │ └── eth0 │ │ ├── hostfile.c │ │ └── poweroff.c │ ├── configs │ │ └── sandbox_defconfig │ ├── dts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── sandbox-libftdi-example.dtsi │ │ ├── sandbox.dts │ │ └── skeleton.dtsi │ ├── include │ │ └── asm │ │ │ ├── barebox.h │ │ │ ├── bitops.h │ │ │ ├── bitsperlong.h │ │ │ ├── byteorder.h │ │ │ ├── common.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── mmu.h │ │ │ ├── posix_types.h │ │ │ ├── sections.h │ │ │ ├── string.h │ │ │ ├── swab.h │ │ │ ├── types.h │ │ │ └── unaligned.h │ ├── lib │ │ └── asm-offsets.c │ ├── mach-sandbox │ │ └── include │ │ │ └── mach │ │ │ ├── hostfile.h │ │ │ └── linux.h │ └── os │ │ ├── Makefile │ │ ├── common.c │ │ ├── ftdi.c │ │ ├── sdl.c │ │ └── tap.c └── x86 │ ├── Kconfig │ ├── Makefile │ ├── bios │ ├── Makefile │ ├── bios_disk.S │ ├── memory16.S │ └── traveler.S │ ├── boards │ └── x86_generic │ │ ├── Makefile │ │ ├── disk_bios_drive.c │ │ ├── env │ │ ├── bin │ │ │ ├── boot │ │ │ └── init │ │ └── config │ │ ├── envsector.h │ │ ├── generic_pc.c │ │ ├── intf_platform_ide.c │ │ └── serial_ns16550.c │ ├── boot │ ├── Kconfig │ ├── Makefile │ ├── a20.c │ ├── bioscall.S │ ├── boot.h │ ├── boot_hdisk.S │ ├── boot_main.S │ ├── main_entry.c │ ├── pmjump.S │ ├── prepare_uboot.c │ ├── regs.c │ └── tty.c │ ├── configs │ ├── efi_defconfig │ └── generic_defconfig │ ├── include │ └── asm │ │ ├── barebox.h │ │ ├── bitops.h │ │ ├── bitsperlong.h │ │ ├── byteorder.h │ │ ├── common.h │ │ ├── dma.h │ │ ├── elf.h │ │ ├── io.h │ │ ├── mmu.h │ │ ├── modes.h │ │ ├── module.h │ │ ├── posix_types.h │ │ ├── sections.h │ │ ├── segment.h │ │ ├── string.h │ │ ├── swab.h │ │ ├── syslib.h │ │ ├── types.h │ │ └── unaligned.h │ ├── lib │ ├── .gitignore │ ├── Makefile │ ├── asm-offsets.c │ ├── barebox.lds.S │ ├── gdt.c │ ├── linux_start.S │ └── memory.c │ ├── mach-efi │ ├── .gitignore │ ├── Makefile │ ├── clocksource.c │ ├── crt0-efi-ia32.S │ ├── crt0-efi-x86_64.S │ ├── elf_ia32_efi.lds.S │ ├── elf_x86_64_efi.lds.S │ ├── include │ │ └── mach │ │ │ ├── barebox.lds.h │ │ │ └── debug_ll.h │ ├── reloc_ia32.c │ └── reloc_x86_64.c │ └── mach-i386 │ ├── Kconfig │ ├── Makefile │ ├── include │ └── mach │ │ └── barebox.lds.h │ └── pit_timer.c ├── commands ├── 2048.c ├── Kconfig ├── Makefile ├── automount.c ├── barebox-update.c ├── basename.c ├── boot.c ├── bootchooser.c ├── bootm.c ├── cat.c ├── cd.c ├── clear.c ├── clk.c ├── cmp.c ├── cp.c ├── crc.c ├── defaultenv.c ├── detect.c ├── devinfo.c ├── dfu.c ├── dhcp.c ├── dhrystone.c ├── digest.c ├── dirname.c ├── dmesg.c ├── drvinfo.c ├── echo.c ├── edit.c ├── exec.c ├── export.c ├── false.c ├── fbtest.c ├── filetype.c ├── firmwareload.c ├── flash.c ├── global.c ├── go.c ├── gpio.c ├── hab.c ├── hashsum.c ├── help.c ├── hwclock.c ├── hwmon.c ├── i2c.c ├── imd.c ├── insmod.c ├── internal.h ├── iomemport.c ├── ip-route-get.c ├── keystore.c ├── led.c ├── let.c ├── linux16.c ├── linux_exec.c ├── ln.c ├── loadb.c ├── loadenv.c ├── loads.c ├── loadxy.c ├── login.c ├── ls.c ├── lsmod.c ├── lspci.c ├── magicvar.c ├── md.c ├── mem.c ├── memcmp.c ├── memcpy.c ├── meminfo.c ├── memset.c ├── memtest.c ├── menu.c ├── menutree.c ├── miitool.c ├── mkdir.c ├── mm.c ├── mmc_extcsd.c ├── mount.c ├── msleep.c ├── mw.c ├── nand-bitflip.c ├── nand.c ├── nandtest.c ├── nv.c ├── of_display_timings.c ├── of_dump.c ├── of_fixup_status.c ├── of_node.c ├── of_property.c ├── oftree.c ├── partition.c ├── passwd.c ├── poweroff.c ├── printenv.c ├── pwd.c ├── readf.c ├── readline.c ├── readlink.c ├── reginfo.c ├── regulator.c ├── reset.c ├── rm.c ├── rmdir.c ├── saveenv.c ├── seed.c ├── setenv.c ├── sleep.c ├── spd_decode.c ├── spi.c ├── splash.c ├── state.c ├── stddev.c ├── test.c ├── tftp.c ├── time.c ├── timeout.c ├── trigger.c ├── true.c ├── ubi.c ├── ubiformat.c ├── uimage.c ├── umount.c ├── uncompress.c ├── usb.c ├── usbgadget.c ├── usbserial.c ├── version.c └── wd.c ├── common ├── .gitignore ├── Kconfig ├── Makefile ├── bbu.c ├── binfmt.c ├── block.c ├── blspec.c ├── boot.c ├── bootargs.c ├── bootchooser.c ├── bootm.c ├── bootsource.c ├── clock.c ├── command.c ├── complete.c ├── console.c ├── console_common.c ├── console_countdown.c ├── console_simple.c ├── date.c ├── ddr_spd.c ├── dlmalloc.c ├── dummy_malloc.c ├── efi-devicepath.c ├── efi-guid.c ├── efi │ ├── Makefile │ ├── efi-image.c │ ├── efi.c │ └── env-efi │ │ └── network │ │ └── eth0-discover ├── env.c ├── environment.c ├── file-list.c ├── filetype.c ├── firmware.c ├── globalvar.c ├── hush.c ├── image-fit.c ├── image.c ├── imd-barebox.c ├── imd.c ├── imx-bbu-nand-fcb.c ├── kallsyms.c ├── meminfo.c ├── memory.c ├── memory_display.c ├── memsize.c ├── memtest.c ├── menu.c ├── menutree.c ├── misc.c ├── module.c ├── module.lds.S ├── oftree.c ├── parser.c ├── partitions.c ├── partitions │ ├── Kconfig │ ├── Makefile │ ├── dos.c │ ├── efi.c │ ├── efi.h │ └── parser.h ├── password.c ├── poller.c ├── poweroff.c ├── ratp │ ├── Kconfig │ ├── Makefile │ ├── getenv.c │ ├── md.c │ ├── mw.c │ ├── ping.c │ ├── ratp.c │ └── reset.c ├── reset_source.c ├── resource.c ├── restart.c ├── s_record.c ├── startup.c ├── state │ ├── Makefile │ ├── backend_bucket_circular.c │ ├── backend_bucket_direct.c │ ├── backend_format_dtb.c │ ├── backend_format_raw.c │ ├── backend_storage.c │ ├── state.c │ ├── state.h │ └── state_variables.c ├── tlsf.c ├── tlsf_malloc.c ├── tlsfbits.h ├── ubiformat.c ├── uimage.c └── version.c ├── crypto ├── Kconfig ├── Makefile ├── crc16.c ├── crc32.c ├── crc32_digest.c ├── crc7.c ├── digest.c ├── hmac.c ├── keystore.c ├── md5.c ├── pbkdf2.c ├── rsa.c ├── sha1.c ├── sha2.c └── sha4.c ├── defaultenv ├── .gitignore ├── Makefile ├── defaultenv-1 │ ├── bin │ │ ├── _boot_help │ │ ├── _update │ │ ├── _update_help │ │ ├── boot │ │ ├── init │ │ └── update │ └── config ├── defaultenv-2-base │ ├── bin │ │ ├── init │ │ └── mtdparts-add │ ├── boot │ │ └── net │ ├── config │ ├── data │ │ ├── ansi-colors │ │ └── boot-template │ ├── init │ │ ├── automount │ │ ├── automount-ratp │ │ └── ps1 │ ├── network │ │ └── README │ └── nv │ │ ├── allow_color │ │ ├── autoboot_timeout │ │ └── user ├── defaultenv-2-dfu │ └── boot │ │ └── dfu ├── defaultenv-2-menu │ └── menu │ │ ├── 00-boot-default │ │ ├── action │ │ └── title │ │ ├── 10-boot-all │ │ ├── action │ │ ├── net │ │ │ ├── action │ │ │ └── title │ │ └── title │ │ ├── 20-settings │ │ ├── config │ │ │ ├── action │ │ │ └── title │ │ ├── network │ │ │ ├── action │ │ │ └── title │ │ └── title │ │ ├── 30-saveenv │ │ ├── action │ │ └── title │ │ ├── 40-shell │ │ ├── action │ │ └── title │ │ ├── 50-reset │ │ ├── action │ │ └── title │ │ ├── mainmenu │ │ └── title └── defaultenv.c ├── drivers ├── Kconfig ├── Makefile ├── aiodev │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── imx_thermal.c │ └── lm75.c ├── amba │ ├── Kconfig │ ├── Makefile │ └── bus.c ├── ata │ ├── Kconfig │ ├── Makefile │ ├── ahci.c │ ├── ahci.h │ ├── disk_ata_drive.c │ ├── disk_bios_drive.c │ ├── ide-sff.c │ ├── intf_platform_ide.c │ ├── pata-imx.c │ ├── sata-imx.c │ └── sata_mv.c ├── base │ ├── Makefile │ ├── bus.c │ ├── driver.c │ ├── platform.c │ ├── regmap │ │ ├── Makefile │ │ ├── internal.h │ │ └── regmap.c │ └── resource.c ├── block │ ├── Makefile │ └── efi-block-io.c ├── bus │ ├── Kconfig │ ├── Makefile │ ├── imx-weim.c │ ├── mvebu-mbus.c │ └── omap-gpmc.c ├── clk │ ├── Kconfig │ ├── Makefile │ ├── at91 │ │ ├── Makefile │ │ ├── clk-generated.c │ │ ├── clk-h32mx.c │ │ ├── clk-main.c │ │ ├── clk-master.c │ │ ├── clk-peripheral.c │ │ ├── clk-pll.c │ │ ├── clk-plldiv.c │ │ ├── clk-programmable.c │ │ ├── clk-slow.c │ │ ├── clk-smd.c │ │ ├── clk-system.c │ │ ├── clk-usb.c │ │ ├── clk-utmi.c │ │ ├── pmc.c │ │ ├── pmc.h │ │ └── sckc.c │ ├── clk-ar933x.c │ ├── clk-ar9344.c │ ├── clk-composite.c │ ├── clk-conf.c │ ├── clk-divider.c │ ├── clk-fixed-factor.c │ ├── clk-fixed.c │ ├── clk-fractional-divider.c │ ├── clk-gate-shared.c │ ├── clk-gate.c │ ├── clk-mux.c │ ├── clk.c │ ├── clkdev.c │ ├── imx │ │ ├── Makefile │ │ ├── clk-cpu.c │ │ ├── clk-gate-exclusive.c │ │ ├── clk-gate2.c │ │ ├── clk-imx1.c │ │ ├── clk-imx21.c │ │ ├── clk-imx25.c │ │ ├── clk-imx27.c │ │ ├── clk-imx31.c │ │ ├── clk-imx35.c │ │ ├── clk-imx5.c │ │ ├── clk-imx6.c │ │ ├── clk-imx6sl.c │ │ ├── clk-imx6sx.c │ │ ├── clk-imx6ul.c │ │ ├── clk-imx7.c │ │ ├── clk-pfd.c │ │ ├── clk-pllv1.c │ │ ├── clk-pllv2.c │ │ ├── clk-pllv3.c │ │ ├── clk-vf610.c │ │ ├── clk.c │ │ └── clk.h │ ├── mvebu │ │ ├── Makefile │ │ ├── armada-370.c │ │ ├── armada-38x.c │ │ ├── armada-xp.c │ │ ├── common.c │ │ ├── common.h │ │ ├── corediv.c │ │ ├── dove.c │ │ └── kirkwood.c │ ├── mxs │ │ ├── Makefile │ │ ├── clk-div.c │ │ ├── clk-frac.c │ │ ├── clk-imx23.c │ │ ├── clk-imx28.c │ │ ├── clk-lcdif.c │ │ ├── clk-pll.c │ │ ├── clk-ref.c │ │ └── clk.h │ ├── rockchip │ │ ├── Makefile │ │ ├── clk-cpu.c │ │ ├── clk-pll.c │ │ ├── clk-rk3188.c │ │ ├── clk-rk3288.c │ │ ├── clk.c │ │ └── clk.h │ ├── socfpga │ │ ├── Makefile │ │ ├── clk-gate-a10.c │ │ ├── clk-periph-a10.c │ │ ├── clk-pll-a10.c │ │ ├── clk.c │ │ └── clk.h │ ├── tegra │ │ ├── Makefile │ │ ├── clk-divider.c │ │ ├── clk-periph.c │ │ ├── clk-pll-out.c │ │ ├── clk-pll.c │ │ ├── clk-tegra124.c │ │ ├── clk-tegra20.c │ │ ├── clk-tegra30.c │ │ ├── clk.c │ │ └── clk.h │ └── vexpress │ │ ├── Makefile │ │ ├── clk-sp810.c │ │ └── clk-vexpress-osc.c ├── clocksource │ ├── Kconfig │ ├── Makefile │ ├── amba-sp804.c │ ├── arm_smp_twd.c │ ├── armv8-timer.c │ ├── bcm2835.c │ ├── clps711x.c │ ├── digic.c │ ├── efi.c │ ├── efi_x86.c │ ├── mvebu.c │ ├── nomadik.c │ ├── orion.c │ ├── rk_timer.c │ ├── timer-atmel-pit.c │ └── uemd.c ├── crypto │ ├── Kconfig │ ├── Makefile │ └── caam │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── caamrng.c │ │ ├── ctrl.c │ │ ├── ctrl.h │ │ ├── desc.h │ │ ├── desc_constr.h │ │ ├── error.c │ │ ├── error.h │ │ ├── intern.h │ │ ├── jr.c │ │ ├── jr.h │ │ └── regs.h ├── dma │ ├── Kconfig │ ├── Makefile │ └── apbh_dma.c ├── eeprom │ ├── Kconfig │ ├── Makefile │ ├── at24.c │ └── at25.c ├── efi │ ├── Kconfig │ ├── Makefile │ └── efi-device.c ├── firmware │ ├── Kconfig │ ├── Makefile │ ├── altera_serial.c │ └── socfpga.c ├── gpio │ ├── Kconfig │ ├── Makefile │ ├── gpio-74164.c │ ├── gpio-ath79.c │ ├── gpio-bcm2835.c │ ├── gpio-clps711x.c │ ├── gpio-davinci.c │ ├── gpio-digic.c │ ├── gpio-dw.c │ ├── gpio-generic.c │ ├── gpio-imx.c │ ├── gpio-jz4740.c │ ├── gpio-libftdi1.c │ ├── gpio-malta-fpga-i2c.c │ ├── gpio-mxs.c │ ├── gpio-omap.c │ ├── gpio-orion.c │ ├── gpio-pca953x.c │ ├── gpio-pl061.c │ ├── gpio-stmpe.c │ ├── gpio-sx150x.c │ ├── gpio-tegra.c │ ├── gpio-vf610.c │ └── gpiolib.c ├── hab │ ├── Makefile │ ├── hab.c │ ├── habv3.c │ └── habv4.c ├── hw_random │ ├── Kconfig │ ├── Makefile │ ├── core.c │ └── mxc-rngc.c ├── i2c │ ├── Kconfig │ ├── Makefile │ ├── algos │ │ ├── Kconfig │ │ ├── Makefile │ │ └── i2c-algo-bit.c │ ├── busses │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── i2c-at91.c │ │ ├── i2c-designware.c │ │ ├── i2c-gpio.c │ │ ├── i2c-imx.c │ │ ├── i2c-mv64xxx.c │ │ ├── i2c-omap.c │ │ ├── i2c-tegra.c │ │ └── i2c-versatile.c │ ├── i2c-mux.c │ ├── i2c-smbus.c │ ├── i2c.c │ └── muxes │ │ ├── Kconfig │ │ ├── Makefile │ │ └── i2c-mux-pca954x.c ├── input │ ├── Kconfig │ ├── Makefile │ ├── gpio_keys.c │ ├── imx_keypad.c │ ├── input.c │ ├── keymap.c │ ├── matrix-keymap.c │ ├── qt1070.c │ ├── twl6030_pwrbtn.c │ └── usb_kbd.c ├── led │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── led-gpio.c │ ├── led-pwm.c │ └── led-triggers.c ├── mci │ ├── Kconfig │ ├── Makefile │ ├── atmel-mci-regs.h │ ├── atmel_mci.c │ ├── dove-sdhci.c │ ├── dw_mmc.c │ ├── imx-esdhc.c │ ├── imx-esdhc.h │ ├── imx.c │ ├── mci-bcm2835.c │ ├── mci-bcm2835.h │ ├── mci-core.c │ ├── mci_spi.c │ ├── mmci.c │ ├── mmci.h │ ├── mxs.c │ ├── omap_hsmmc.c │ ├── pxamci.c │ ├── pxamci.h │ ├── s3c.c │ ├── sdhci.h │ └── tegra-sdmmc.c ├── memory │ ├── Kconfig │ ├── Makefile │ └── mc-tegra124.c ├── mfd │ ├── Kconfig │ ├── Makefile │ ├── act8846.c │ ├── da9053.c │ ├── da9063.c │ ├── lp3972.c │ ├── mc13xxx.c │ ├── mc34704.c │ ├── mc9sdz60.c │ ├── stmpe-i2c.c │ ├── syscon.c │ ├── twl-core.c │ ├── twl4030.c │ └── twl6030.c ├── misc │ ├── Kconfig │ ├── Makefile │ ├── jtag.c │ ├── sram.c │ └── state.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── devices │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── docg3.c │ │ ├── docg3.h │ │ ├── m25p80.c │ │ ├── mtd_dataflash.c │ │ └── mtdram.c │ ├── mtd.h │ ├── mtdconcat.c │ ├── mtdoob.c │ ├── mtdraw.c │ ├── nand │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── atmel_nand.c │ │ ├── atmel_nand_ecc.h │ │ ├── denali.h │ │ ├── nand-bb.c │ │ ├── nand.h │ │ ├── nand_base.c │ │ ├── nand_bbt.c │ │ ├── nand_bch.c │ │ ├── nand_denali.c │ │ ├── nand_denali_dt.c │ │ ├── nand_ecc.c │ │ ├── nand_ids.c │ │ ├── nand_imx.c │ │ ├── nand_imx_bbm.c │ │ ├── nand_mrvl_nfc.c │ │ ├── nand_mxs.c │ │ ├── nand_omap_bch_decoder.c │ │ ├── nand_omap_gpmc.c │ │ ├── nand_orion.c │ │ ├── nand_s3c24xx.c │ │ ├── nand_s5pcxx.c │ │ ├── nand_timings.c │ │ └── nomadik_nand.c │ ├── nor │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cfi_flash.c │ │ ├── cfi_flash.h │ │ ├── cfi_flash_amd.c │ │ └── cfi_flash_intel.c │ ├── partition.c │ ├── peb.c │ ├── spi-nor │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── cadence-quadspi.c │ │ └── spi-nor.c │ └── ubi │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── attach.c │ │ ├── barebox.c │ │ ├── build.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── eba.c │ │ ├── fastmap-wl.c │ │ ├── fastmap.c │ │ ├── io.c │ │ ├── kapi.c │ │ ├── misc.c │ │ ├── ubi-barebox.h │ │ ├── ubi-media.h │ │ ├── ubi.h │ │ ├── upd.c │ │ ├── vmt.c │ │ ├── vtbl.c │ │ ├── wl.c │ │ └── wl.h ├── net │ ├── Kconfig │ ├── Makefile │ ├── ag71xx │ │ ├── ag71xx.h │ │ ├── ag71xx_ag7240.c │ │ ├── ag71xx_main.c │ │ └── ag71xx_mdio.c │ ├── altera_tse.c │ ├── altera_tse.h │ ├── ar231x.c │ ├── ar231x.h │ ├── arc_emac.c │ ├── at91_ether.c │ ├── at91_ether.h │ ├── cpsw.c │ ├── cs8900.c │ ├── davinci_emac.c │ ├── davinci_emac.h │ ├── designware.c │ ├── designware.h │ ├── designware_generic.c │ ├── designware_socfpga.c │ ├── dm9k.c │ ├── e1000 │ │ ├── e1000.h │ │ ├── eeprom.c │ │ ├── main.c │ │ └── regio.c │ ├── efi-snp.c │ ├── enc28j60.c │ ├── enc28j60_hw.h │ ├── ep93xx.c │ ├── ep93xx.h │ ├── ethoc.c │ ├── fec_imx.c │ ├── fec_imx.h │ ├── fec_mpc5200.c │ ├── fec_mpc5200.h │ ├── gianfar.c │ ├── gianfar.h │ ├── ks8851_mll.c │ ├── ksz8864rmn.c │ ├── macb.c │ ├── macb.h │ ├── mtk │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── esw_rt3050.c │ │ ├── mdio.h │ │ ├── mdio_rt2880.h │ │ ├── mtk_eth_soc.c │ │ ├── mtk_eth_soc.h │ │ └── soc_rt3050.c │ ├── mvneta.c │ ├── netx_eth.c │ ├── orion-gbe.c │ ├── orion-gbe.h │ ├── phy │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ar8327.c │ │ ├── at803x.c │ │ ├── lxt.c │ │ ├── marvell.c │ │ ├── mdio-bitbang.c │ │ ├── mdio-gpio.c │ │ ├── mdio-mux-gpio.c │ │ ├── mdio-mux.c │ │ ├── mdio-mvebu.c │ │ ├── mdio_bus.c │ │ ├── micrel.c │ │ ├── national.c │ │ ├── phy.c │ │ └── smsc.c │ ├── rtl8139.c │ ├── rtl8169.c │ ├── smc91111.c │ ├── smc911x.c │ ├── smc911x.h │ ├── tap.c │ ├── usb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── asix.c │ │ ├── smsc95xx.c │ │ ├── smsc95xx.h │ │ └── usbnet.c │ └── xgmac.c ├── nvmem │ ├── Kconfig │ ├── Makefile │ ├── core.c │ └── snvs_lpgpr.c ├── of │ ├── Kconfig │ ├── Makefile │ ├── address.c │ ├── barebox.c │ ├── base.c │ ├── device.c │ ├── fdt.c │ ├── mem_generic.c │ ├── of_gpio.c │ ├── of_mtd.c │ ├── of_net.c │ ├── of_path.c │ ├── of_pci.c │ ├── partition.c │ └── platform.c ├── pci │ ├── Kconfig │ ├── Makefile │ ├── bus.c │ ├── pci-imx6.c │ ├── pci-mvebu-phy.c │ ├── pci-mvebu.c │ ├── pci-mvebu.h │ ├── pci-tegra.c │ ├── pci.c │ ├── pci_iomap.c │ ├── pcie-designware.c │ └── pcie-designware.h ├── phy │ ├── Kconfig │ ├── Makefile │ ├── phy-core.c │ └── usb-nop-xceiv.c ├── pinctrl │ ├── Kconfig │ ├── Makefile │ ├── imx-iomux-v1.c │ ├── imx-iomux-v2.c │ ├── imx-iomux-v3.c │ ├── mvebu │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── armada-370.c │ │ ├── armada-xp.c │ │ ├── common.c │ │ ├── common.h │ │ ├── dove.c │ │ └── kirkwood.c │ ├── pinctrl-at91.c │ ├── pinctrl-mxs.c │ ├── pinctrl-rockchip.c │ ├── pinctrl-single.c │ ├── pinctrl-tegra-xusb.c │ ├── pinctrl-tegra20.c │ ├── pinctrl-tegra30.c │ ├── pinctrl-vf610.c │ └── pinctrl.c ├── pwm │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── pwm-imx.c │ ├── pwm-mxs.c │ └── pxa_pwm.c ├── regulator │ ├── Kconfig │ ├── Makefile │ ├── bcm2835.c │ ├── core.c │ ├── fixed.c │ └── pfuze.c ├── reset │ ├── Kconfig │ ├── Makefile │ ├── core.c │ ├── reset-ath79.c │ └── reset-socfpga.c ├── rtc │ ├── Kconfig │ ├── Makefile │ ├── class.c │ ├── rtc-abracon.c │ ├── rtc-ds1307.c │ ├── rtc-jz4740.c │ └── rtc-lib.c ├── serial │ ├── Kconfig │ ├── Makefile │ ├── amba-pl011.c │ ├── arm_dcc.c │ ├── atmel.c │ ├── efi-stdio.c │ ├── linux_console.c │ ├── serial_altera.c │ ├── serial_altera_jtag.c │ ├── serial_ar933x.c │ ├── serial_ar933x.h │ ├── serial_auart.c │ ├── serial_blackfin.c │ ├── serial_cadence.c │ ├── serial_clps711x.c │ ├── serial_digic.c │ ├── serial_efi.c │ ├── serial_imx.c │ ├── serial_lpuart.c │ ├── serial_mpc5xxx.c │ ├── serial_netx.c │ ├── serial_ns16550.c │ ├── serial_ns16550.h │ ├── serial_omap4_usbboot.c │ ├── serial_pl010.c │ ├── serial_pl010.h │ ├── serial_pxa.c │ ├── serial_s3c.c │ └── stm-serial.c ├── spi │ ├── Kconfig │ ├── Makefile │ ├── altera_spi.c │ ├── ath79_spi.c │ ├── atmel_spi.c │ ├── atmel_spi.h │ ├── dspi_spi.c │ ├── gpio_spi.c │ ├── imx_spi.c │ ├── mvebu_spi.c │ ├── mxs_spi.c │ ├── omap3_spi.c │ ├── omap3_spi.h │ ├── spi-bitbang-txrx.h │ └── spi.c ├── usb │ ├── Kconfig │ ├── Makefile │ ├── core │ │ ├── Makefile │ │ ├── common.c │ │ ├── hub.c │ │ ├── hub.h │ │ ├── of.c │ │ ├── usb.c │ │ └── usb.h │ ├── gadget │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── at91_udc.c │ │ ├── at91_udc.h │ │ ├── autostart.c │ │ ├── composite.c │ │ ├── config.c │ │ ├── dfu.c │ │ ├── epautoconf.c │ │ ├── f_acm.c │ │ ├── f_fastboot.c │ │ ├── f_serial.c │ │ ├── fsl_udc.c │ │ ├── functions.c │ │ ├── gadget_chips.h │ │ ├── multi.c │ │ ├── pxa27x_udc.c │ │ ├── pxa27x_udc.h │ │ ├── serial.c │ │ ├── u_serial.c │ │ ├── u_serial.h │ │ ├── udc-core.c │ │ └── usbstring.c │ ├── host │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ehci-atmel.c │ │ ├── ehci-core.h │ │ ├── ehci-hcd.c │ │ ├── ehci-omap.c │ │ ├── ehci.h │ │ ├── ohci-at91.c │ │ ├── ohci-hcd.c │ │ ├── ohci.h │ │ ├── xhci-hcd.c │ │ ├── xhci-hub.c │ │ ├── xhci-pci.c │ │ └── xhci.h │ ├── imx │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── chipidea-imx.c │ │ ├── imx-usb-misc.c │ │ └── imx-usb-phy.c │ ├── musb │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── am35x-phy-control.h │ │ ├── musb_am335x.c │ │ ├── musb_barebox.c │ │ ├── musb_core.c │ │ ├── musb_core.h │ │ ├── musb_dma.h │ │ ├── musb_dsps.c │ │ ├── musb_gadget.c │ │ ├── musb_gadget.h │ │ ├── musb_gadget_ep0.c │ │ ├── musb_host.c │ │ ├── musb_host.h │ │ ├── musb_io.h │ │ ├── musb_regs.h │ │ ├── phy-am335x-control.c │ │ ├── phy-am335x.c │ │ └── phy-am335x.h │ ├── otg │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── twl4030.c │ │ └── ulpi.c │ └── storage │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── transport.c │ │ ├── transport.h │ │ ├── usb.c │ │ └── usb.h ├── video │ ├── Kconfig │ ├── Makefile │ ├── atmel_hlcdfb.c │ ├── atmel_lcdfb.c │ ├── atmel_lcdfb.h │ ├── atmel_lcdfb_core.c │ ├── backlight-pwm.c │ ├── backlight.c │ ├── bcm2835.c │ ├── edid.c │ ├── edid.h │ ├── efi_gop.c │ ├── fb.c │ ├── fbconsole.c │ ├── imx-ipu-fb.c │ ├── imx-ipu-v3 │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── imx-hdmi.c │ │ ├── imx-hdmi.h │ │ ├── imx-ipu-v3.h │ │ ├── imx-ldb.c │ │ ├── imx-pd.c │ │ ├── ipu-common.c │ │ ├── ipu-dc.c │ │ ├── ipu-di.c │ │ ├── ipu-dmfc.c │ │ ├── ipu-dp.c │ │ ├── ipu-prv.h │ │ ├── ipufb.c │ │ ├── ipuv3-plane.c │ │ └── ipuv3-plane.h │ ├── imx.c │ ├── mtl017.c │ ├── of_display_timing.c │ ├── omap.c │ ├── omap.h │ ├── pxa.c │ ├── s3c.c │ ├── s3c24xx.c │ ├── sdl.c │ ├── simple-panel.c │ ├── simplefb.c │ ├── ssd1307fb.c │ ├── stm.c │ ├── tc358767.c │ └── vpl.c ├── w1 │ ├── Kconfig │ ├── Makefile │ ├── masters │ │ ├── Kconfig │ │ ├── Makefile │ │ └── w1-gpio.c │ ├── slaves │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── w1_ds2431.c │ │ └── w1_ds2433.c │ ├── w1.c │ └── w1.h └── watchdog │ ├── Kconfig │ ├── Makefile │ ├── ar9344_wdt.c │ ├── bcm2835_wdt.c │ ├── davinci_wdt.c │ ├── dw_wdt.c │ ├── im28wd.c │ ├── imxwd.c │ ├── jz4740.c │ ├── omap_wdt.c │ ├── orion_wdt.c │ └── wd_core.c ├── dts ├── Bindings │ ├── ABI.txt │ ├── arc │ │ ├── archs-pct.txt │ │ ├── axs101.txt │ │ ├── axs103.txt │ │ ├── eznps.txt │ │ ├── hsdk.txt │ │ └── pct.txt │ ├── arm │ │ ├── actions.txt │ │ ├── adapteva.txt │ │ ├── al,alpine.txt │ │ ├── altera.txt │ │ ├── altera │ │ │ ├── socfpga-clk-manager.txt │ │ │ ├── socfpga-eccmgr.txt │ │ │ ├── socfpga-sdram-controller.txt │ │ │ ├── socfpga-sdram-edac.txt │ │ │ └── socfpga-system.txt │ │ ├── amlogic,scpi.txt │ │ ├── amlogic.txt │ │ ├── amlogic │ │ │ ├── analog-top.txt │ │ │ ├── assist.txt │ │ │ ├── bootrom.txt │ │ │ ├── pmu.txt │ │ │ └── smp-sram.txt │ │ ├── apm │ │ │ └── scu.txt │ │ ├── arch_timer.txt │ │ ├── arm,scpi.txt │ │ ├── arm-boards │ │ ├── arm-dsu-pmu.txt │ │ ├── armadeus.txt │ │ ├── armv7m_systick.txt │ │ ├── atmel-at91.txt │ │ ├── atmel-pmc.txt │ │ ├── axentia.txt │ │ ├── axis.txt │ │ ├── axxia.txt │ │ ├── bcm │ │ │ ├── brcm,bcm11351-cpu-method.txt │ │ │ ├── brcm,bcm11351.txt │ │ │ ├── brcm,bcm21664.txt │ │ │ ├── brcm,bcm23550-cpu-method.txt │ │ │ ├── brcm,bcm23550.txt │ │ │ ├── brcm,bcm2835.txt │ │ │ ├── brcm,bcm4708.txt │ │ │ ├── brcm,bcm63138.txt │ │ │ ├── brcm,brcmstb.txt │ │ │ ├── brcm,cygnus.txt │ │ │ ├── brcm,hr2.txt │ │ │ ├── brcm,ns2.txt │ │ │ ├── brcm,nsp-cpu-method.txt │ │ │ ├── brcm,nsp.txt │ │ │ ├── brcm,stingray.txt │ │ │ ├── brcm,vulcan-soc.txt │ │ │ └── raspberrypi,bcm2835-firmware.txt │ │ ├── bhf.txt │ │ ├── calxeda.txt │ │ ├── calxeda │ │ │ └── l2ecc.txt │ │ ├── cavium-thunder.txt │ │ ├── cavium-thunder2.txt │ │ ├── cci.txt │ │ ├── ccn.txt │ │ ├── compulab-boards.txt │ │ ├── coresight-cpu-debug.txt │ │ ├── coresight.txt │ │ ├── cpu-capacity.txt │ │ ├── cpu-enable-method │ │ │ ├── al,alpine-smp │ │ │ └── marvell,berlin-smp │ │ ├── cpus.txt │ │ ├── davinci.txt │ │ ├── digicolor.txt │ │ ├── firmware │ │ │ ├── linaro,optee-tz.txt │ │ │ ├── sdei.txt │ │ │ └── tlm,trusted-foundations.txt │ │ ├── freescale │ │ │ ├── fsl,vf610-mscm-cpucfg.txt │ │ │ └── fsl,vf610-mscm-ir.txt │ │ ├── fsl.txt │ │ ├── fw-cfg.txt │ │ ├── gemini.txt │ │ ├── global_timer.txt │ │ ├── hisilicon │ │ │ ├── hi3519-sysctrl.txt │ │ │ └── hisilicon.txt │ │ ├── i2se.txt │ │ ├── idle-states.txt │ │ ├── insignal-boards.txt │ │ ├── juno,scpi.txt │ │ ├── keystone │ │ │ ├── keystone.txt │ │ │ └── ti,sci.txt │ │ ├── l2c2x0.txt │ │ ├── marvell │ │ │ ├── 98dx3236-resume-ctrl.txt │ │ │ ├── 98dx3236.txt │ │ │ ├── ap806-system-controller.txt │ │ │ ├── armada-370-xp-pmsu.txt │ │ │ ├── armada-370-xp.txt │ │ │ ├── armada-375.txt │ │ │ ├── armada-37xx.txt │ │ │ ├── armada-380-mpcore-soc-ctrl.txt │ │ │ ├── armada-38x.txt │ │ │ ├── armada-39x.txt │ │ │ ├── armada-7k-8k.txt │ │ │ ├── armada-8kp.txt │ │ │ ├── armada-cpu-reset.txt │ │ │ ├── coherency-fabric.txt │ │ │ ├── cp110-system-controller0.txt │ │ │ ├── kirkwood.txt │ │ │ ├── marvell,berlin.txt │ │ │ ├── marvell,dove.txt │ │ │ ├── marvell,kirkwood.txt │ │ │ ├── marvell,orion5x.txt │ │ │ ├── mvebu-cpu-config.txt │ │ │ └── mvebu-system-controller.txt │ │ ├── mediatek.txt │ │ ├── mediatek │ │ │ ├── mediatek,apmixedsys.txt │ │ │ ├── mediatek,audsys.txt │ │ │ ├── mediatek,bdpsys.txt │ │ │ ├── mediatek,ethsys.txt │ │ │ ├── mediatek,hifsys.txt │ │ │ ├── mediatek,imgsys.txt │ │ │ ├── mediatek,infracfg.txt │ │ │ ├── mediatek,jpgdecsys.txt │ │ │ ├── mediatek,mcucfg.txt │ │ │ ├── mediatek,mfgcfg.txt │ │ │ ├── mediatek,mmsys.txt │ │ │ ├── mediatek,pciesys.txt │ │ │ ├── mediatek,pericfg.txt │ │ │ ├── mediatek,sgmiisys.txt │ │ │ ├── mediatek,ssusbsys.txt │ │ │ ├── mediatek,topckgen.txt │ │ │ ├── mediatek,vdecsys.txt │ │ │ ├── mediatek,vencltsys.txt │ │ │ └── mediatek,vencsys.txt │ │ ├── moxart.txt │ │ ├── mrvl │ │ │ ├── feroceon.txt │ │ │ ├── mrvl.txt │ │ │ ├── tauros2.txt │ │ │ └── timer.txt │ │ ├── msm │ │ │ ├── qcom,idle-state.txt │ │ │ ├── qcom,kpss-acc.txt │ │ │ ├── qcom,saw2.txt │ │ │ ├── ssbi.txt │ │ │ └── timer.txt │ │ ├── nspire.txt │ │ ├── nxp │ │ │ └── lpc32xx.txt │ │ ├── olimex.txt │ │ ├── omap │ │ │ ├── counter.txt │ │ │ ├── crossbar.txt │ │ │ ├── ctrl.txt │ │ │ ├── dmm.txt │ │ │ ├── dsp.txt │ │ │ ├── iva.txt │ │ │ ├── l3-noc.txt │ │ │ ├── l4.txt │ │ │ ├── mpu.txt │ │ │ ├── omap.txt │ │ │ ├── prcm.txt │ │ │ └── timer.txt │ │ ├── oxnas.txt │ │ ├── picoxcell.txt │ │ ├── pmu.txt │ │ ├── primecell.txt │ │ ├── psci.txt │ │ ├── qcom.txt │ │ ├── realtek.txt │ │ ├── rockchip.txt │ │ ├── rockchip │ │ │ └── pmu.txt │ │ ├── rtsm-dcscb.txt │ │ ├── samsung │ │ │ ├── exynos-adc.txt │ │ │ ├── exynos-chipid.txt │ │ │ ├── pmu.txt │ │ │ ├── samsung-boards.txt │ │ │ └── sysreg.txt │ │ ├── scu.txt │ │ ├── secure.txt │ │ ├── shmobile.txt │ │ ├── sirf.txt │ │ ├── sp810.txt │ │ ├── spe-pmu.txt │ │ ├── spear-misc.txt │ │ ├── spear-timer.txt │ │ ├── spear.txt │ │ ├── sprd.txt │ │ ├── ste-nomadik.txt │ │ ├── ste-u300.txt │ │ ├── sti.txt │ │ ├── stm32.txt │ │ ├── sunxi.txt │ │ ├── swir.txt │ │ ├── technologic.txt │ │ ├── tegra.txt │ │ ├── tegra │ │ │ ├── nvidia,nvec.txt │ │ │ ├── nvidia,tegra186-pmc.txt │ │ │ ├── nvidia,tegra20-ahb.txt │ │ │ ├── nvidia,tegra20-emc.txt │ │ │ ├── nvidia,tegra20-flowctrl.txt │ │ │ ├── nvidia,tegra20-mc.txt │ │ │ ├── nvidia,tegra20-pmc.txt │ │ │ ├── nvidia,tegra30-actmon.txt │ │ │ └── nvidia,tegra30-mc.txt │ │ ├── topology.txt │ │ ├── twd.txt │ │ ├── uniphier │ │ │ └── cache-uniphier.txt │ │ ├── ux500 │ │ │ ├── boards.txt │ │ │ └── power_domain.txt │ │ ├── versatile-sysreg.txt │ │ ├── vexpress-scc.txt │ │ ├── vexpress-sysreg.txt │ │ ├── vexpress.txt │ │ ├── vt8500.txt │ │ ├── vt8500 │ │ │ ├── via,vt8500-pmc.txt │ │ │ └── via,vt8500-timer.txt │ │ ├── xen.txt │ │ ├── xilinx.txt │ │ └── zte.txt │ ├── ata │ │ ├── ahci-ceva.txt │ │ ├── ahci-da850.txt │ │ ├── ahci-dm816.txt │ │ ├── ahci-fsl-qoriq.txt │ │ ├── ahci-mtk.txt │ │ ├── ahci-platform.txt │ │ ├── ahci-st.txt │ │ ├── apm-xgene.txt │ │ ├── atmel-at91_cf.txt │ │ ├── brcm,sata-brcm.txt │ │ ├── cavium-compact-flash.txt │ │ ├── cortina,gemini-sata-bridge.txt │ │ ├── exynos-sata.txt │ │ ├── faraday,ftide010.txt │ │ ├── fsl-sata.txt │ │ ├── imx-pata.txt │ │ ├── imx-sata.txt │ │ ├── marvell.txt │ │ ├── nvidia,tegra124-ahci.txt │ │ ├── pata-arasan.txt │ │ ├── qcom-sata.txt │ │ ├── sata_highbank.txt │ │ └── sata_rcar.txt │ ├── auxdisplay │ │ ├── arm-charlcd.txt │ │ ├── hit,hd44780.txt │ │ └── img-ascii-lcd.txt │ ├── board │ │ └── fsl-board.txt │ ├── bus │ │ ├── brcm,bus-axi.txt │ │ ├── brcm,gisb-arb.txt │ │ ├── imx-weim.txt │ │ ├── mvebu-mbus.txt │ │ ├── nvidia,tegra20-gmi.txt │ │ ├── nvidia,tegra210-aconnect.txt │ │ ├── omap-ocp2scp.txt │ │ ├── qcom,ebi2.txt │ │ ├── renesas,bsc.txt │ │ ├── simple-pm-bus.txt │ │ ├── sunxi-rsb.txt │ │ ├── ti,da850-mstpri.txt │ │ ├── ti-sysc.txt │ │ ├── ts-nbus.txt │ │ └── uniphier-system-bus.txt │ ├── c6x │ │ ├── clocks.txt │ │ ├── dscr.txt │ │ ├── emifa.txt │ │ ├── soc.txt │ │ └── timer64.txt │ ├── chosen.txt │ ├── clock │ │ ├── alphascale,acc.txt │ │ ├── altr_socfpga.txt │ │ ├── amlogic,gxbb-aoclkc.txt │ │ ├── amlogic,gxbb-clkc.txt │ │ ├── amlogic,meson8b-clkc.txt │ │ ├── arm-integrator.txt │ │ ├── arm-syscon-icst.txt │ │ ├── armada3700-periph-clock.txt │ │ ├── armada3700-tbg-clock.txt │ │ ├── armada3700-xtal-clock.txt │ │ ├── artpec6.txt │ │ ├── at91-clock.txt │ │ ├── axi-clkgen.txt │ │ ├── axs10x-i2s-pll-clock.txt │ │ ├── brcm,bcm2835-aux-clock.txt │ │ ├── brcm,bcm2835-cprman.txt │ │ ├── brcm,bcm53573-ilp.txt │ │ ├── brcm,iproc-clocks.txt │ │ ├── brcm,kona-ccu.txt │ │ ├── calxeda.txt │ │ ├── clk-exynos-audss.txt │ │ ├── clk-palmas-clk32kg-clocks.txt │ │ ├── clk-s5pv210-audss.txt │ │ ├── clock-bindings.txt │ │ ├── clps711x-clock.txt │ │ ├── cs2000-cp.txt │ │ ├── csr,atlas7-car.txt │ │ ├── dove-divider-clock.txt │ │ ├── efm32-clock.txt │ │ ├── emev2-clock.txt │ │ ├── exynos3250-clock.txt │ │ ├── exynos4-clock.txt │ │ ├── exynos5250-clock.txt │ │ ├── exynos5260-clock.txt │ │ ├── exynos5410-clock.txt │ │ ├── exynos5420-clock.txt │ │ ├── exynos5433-clock.txt │ │ ├── exynos5440-clock.txt │ │ ├── exynos7-clock.txt │ │ ├── fixed-clock.txt │ │ ├── fixed-factor-clock.txt │ │ ├── fujitsu,mb86s70-crg11.txt │ │ ├── gpio-gate-clock.txt │ │ ├── gpio-mux-clock.txt │ │ ├── hi3620-clock.txt │ │ ├── hi3660-clock.txt │ │ ├── hi6220-clock.txt │ │ ├── hisi-crg.txt │ │ ├── hix5hd2-clock.txt │ │ ├── idt,versaclock5.txt │ │ ├── img,boston-clock.txt │ │ ├── imx1-clock.txt │ │ ├── imx21-clock.txt │ │ ├── imx23-clock.txt │ │ ├── imx25-clock.txt │ │ ├── imx27-clock.txt │ │ ├── imx28-clock.txt │ │ ├── imx31-clock.txt │ │ ├── imx35-clock.txt │ │ ├── imx5-clock.txt │ │ ├── imx6q-clock.txt │ │ ├── imx6sl-clock.txt │ │ ├── imx6sx-clock.txt │ │ ├── imx6ul-clock.txt │ │ ├── imx7d-clock.txt │ │ ├── ingenic,cgu.txt │ │ ├── keystone-gate.txt │ │ ├── keystone-pll.txt │ │ ├── lpc1850-ccu.txt │ │ ├── lpc1850-cgu.txt │ │ ├── lpc1850-creg-clk.txt │ │ ├── lsi,axm5516-clks.txt │ │ ├── marvell,berlin.txt │ │ ├── marvell,mmp2.txt │ │ ├── marvell,pxa168.txt │ │ ├── marvell,pxa1928.txt │ │ ├── marvell,pxa910.txt │ │ ├── maxim,max77686.txt │ │ ├── microchip,pic32.txt │ │ ├── moxa,moxart-clock.txt │ │ ├── mvebu-core-clock.txt │ │ ├── mvebu-corediv-clock.txt │ │ ├── mvebu-cpu-clock.txt │ │ ├── mvebu-gated-clock.txt │ │ ├── nspire-clock.txt │ │ ├── nvidia,tegra114-car.txt │ │ ├── nvidia,tegra124-car.txt │ │ ├── nvidia,tegra124-dfll.txt │ │ ├── nvidia,tegra20-car.txt │ │ ├── nvidia,tegra210-car.txt │ │ ├── nvidia,tegra30-car.txt │ │ ├── nxp,lpc3220-clk.txt │ │ ├── nxp,lpc3220-usb-clk.txt │ │ ├── oxnas,stdclk.txt │ │ ├── pistachio-clock.txt │ │ ├── prima2-clock.txt │ │ ├── pwm-clock.txt │ │ ├── pxa-clock.txt │ │ ├── qca,ath79-pll.txt │ │ ├── qcom,a53pll.txt │ │ ├── qcom,gcc.txt │ │ ├── qcom,lcc.txt │ │ ├── qcom,mmcc.txt │ │ ├── qcom,rpmcc.txt │ │ ├── qcom,spmi-clkdiv.txt │ │ ├── qoriq-clock.txt │ │ ├── renesas,cpg-div6-clocks.txt │ │ ├── renesas,cpg-mssr.txt │ │ ├── renesas,cpg-mstp-clocks.txt │ │ ├── renesas,h8300-div-clock.txt │ │ ├── renesas,h8s2678-pll-clock.txt │ │ ├── renesas,r8a73a4-cpg-clocks.txt │ │ ├── renesas,r8a7740-cpg-clocks.txt │ │ ├── renesas,r8a7778-cpg-clocks.txt │ │ ├── renesas,r8a7779-cpg-clocks.txt │ │ ├── renesas,rcar-gen2-cpg-clocks.txt │ │ ├── renesas,rcar-usb2-clock-sel.txt │ │ ├── renesas,rz-cpg-clocks.txt │ │ ├── renesas,sh73a0-cpg-clocks.txt │ │ ├── rockchip,rk3036-cru.txt │ │ ├── rockchip,rk3128-cru.txt │ │ ├── rockchip,rk3188-cru.txt │ │ ├── rockchip,rk3228-cru.txt │ │ ├── rockchip,rk3288-cru.txt │ │ ├── rockchip,rk3328-cru.txt │ │ ├── rockchip,rk3368-cru.txt │ │ ├── rockchip,rk3399-cru.txt │ │ ├── rockchip,rv1108-cru.txt │ │ ├── rockchip.txt │ │ ├── samsung,s2mps11.txt │ │ ├── samsung,s3c2410-clock.txt │ │ ├── samsung,s3c2412-clock.txt │ │ ├── samsung,s3c2443-clock.txt │ │ ├── samsung,s3c64xx-clock.txt │ │ ├── samsung,s5pv210-clock.txt │ │ ├── silabs,si514.txt │ │ ├── silabs,si5351.txt │ │ ├── silabs,si570.txt │ │ ├── snps,hsdk-pll-clock.txt │ │ ├── snps,pll-clock.txt │ │ ├── sprd.txt │ │ ├── st,nomadik.txt │ │ ├── st,stm32-rcc.txt │ │ ├── st,stm32h7-rcc.txt │ │ ├── st │ │ │ ├── st,clkgen-mux.txt │ │ │ ├── st,clkgen-pll.txt │ │ │ ├── st,clkgen.txt │ │ │ ├── st,flexgen.txt │ │ │ └── st,quadfs.txt │ │ ├── ste-u300-syscon-clock.txt │ │ ├── stericsson,abx500.txt │ │ ├── sun8i-de2.txt │ │ ├── sun9i-de.txt │ │ ├── sun9i-usb.txt │ │ ├── sunxi-ccu.txt │ │ ├── sunxi.txt │ │ ├── tango4-clock.txt │ │ ├── ti,cdce706.txt │ │ ├── ti,cdce925.txt │ │ ├── ti,sci-clk.txt │ │ ├── ti-clkctrl.txt │ │ ├── ti-keystone-pllctrl.txt │ │ ├── ti │ │ │ ├── adpll.txt │ │ │ ├── apll.txt │ │ │ ├── autoidle.txt │ │ │ ├── clockdomain.txt │ │ │ ├── composite.txt │ │ │ ├── divider.txt │ │ │ ├── dpll.txt │ │ │ ├── dra7-atl.txt │ │ │ ├── fapll.txt │ │ │ ├── fixed-factor-clock.txt │ │ │ ├── gate.txt │ │ │ ├── interface.txt │ │ │ └── mux.txt │ │ ├── uniphier-clock.txt │ │ ├── ux500.txt │ │ ├── vf610-clock.txt │ │ ├── vt8500.txt │ │ ├── xgene.txt │ │ ├── zx296702-clk.txt │ │ ├── zx296718-clk.txt │ │ └── zynq-7000.txt │ ├── common-properties.txt │ ├── cpufreq │ │ ├── arm_big_little_dt.txt │ │ ├── brcm,stb-avs-cpu-freq.txt │ │ ├── cpufreq-dt.txt │ │ ├── cpufreq-exynos5440.txt │ │ ├── cpufreq-mediatek.txt │ │ ├── cpufreq-spear.txt │ │ ├── cpufreq-st.txt │ │ ├── nvidia,tegra124-cpufreq.txt │ │ └── ti-cpufreq.txt │ ├── cris │ │ ├── axis.txt │ │ └── boards.txt │ ├── crypto │ │ ├── amd-ccp.txt │ │ ├── arm-cryptocell.txt │ │ ├── artpec6-crypto.txt │ │ ├── atmel-crypto.txt │ │ ├── brcm,spu-crypto.txt │ │ ├── fsl-dcp.txt │ │ ├── fsl-imx-sahara.txt │ │ ├── fsl-imx-scc.txt │ │ ├── fsl-sec2.txt │ │ ├── fsl-sec4.txt │ │ ├── fsl-sec6.txt │ │ ├── img-hash.txt │ │ ├── inside-secure-safexcel.txt │ │ ├── marvell-cesa.txt │ │ ├── mediatek-crypto.txt │ │ ├── mv_cesa.txt │ │ ├── omap-aes.txt │ │ ├── omap-des.txt │ │ ├── omap-sham.txt │ │ ├── picochip-spacc.txt │ │ ├── qcom-qce.txt │ │ ├── rockchip-crypto.txt │ │ ├── samsung,exynos-rng4.txt │ │ ├── samsung-sss.txt │ │ ├── st,stm32-crc.txt │ │ ├── st,stm32-cryp.txt │ │ ├── st,stm32-hash.txt │ │ └── sun4i-ss.txt │ ├── devfreq │ │ ├── event │ │ │ ├── exynos-nocp.txt │ │ │ ├── exynos-ppmu.txt │ │ │ └── rockchip-dfi.txt │ │ ├── exynos-bus.txt │ │ └── rk3399_dmc.txt │ ├── display │ │ ├── amlogic,meson-dw-hdmi.txt │ │ ├── amlogic,meson-vpu.txt │ │ ├── arm,hdlcd.txt │ │ ├── arm,malidp.txt │ │ ├── arm,pl11x.txt │ │ ├── armada │ │ │ └── marvell,dove-lcd.txt │ │ ├── atmel,lcdc.txt │ │ ├── atmel │ │ │ └── hlcdc-dc.txt │ │ ├── brcm,bcm-vc4.txt │ │ ├── bridge │ │ │ ├── adi,adv7123.txt │ │ │ ├── adi,adv7511.txt │ │ │ ├── analogix_dp.txt │ │ │ ├── anx7814.txt │ │ │ ├── dumb-vga-dac.txt │ │ │ ├── dw_hdmi.txt │ │ │ ├── dw_mipi_dsi.txt │ │ │ ├── lvds-transmitter.txt │ │ │ ├── megachips-stdpxxxx-ge-b850v3-fw.txt │ │ │ ├── ps8622.txt │ │ │ ├── ptn3460.txt │ │ │ ├── renesas,dw-hdmi.txt │ │ │ ├── sii902x.txt │ │ │ ├── sii9234.txt │ │ │ ├── sil-sii8620.txt │ │ │ ├── tda998x.txt │ │ │ ├── thine,thc63lvdm83d.txt │ │ │ ├── ti,tfp410.txt │ │ │ ├── ti,ths8135.txt │ │ │ └── toshiba,tc358767.txt │ │ ├── cirrus,clps711x-fb.txt │ │ ├── connector │ │ │ ├── analog-tv-connector.txt │ │ │ ├── dvi-connector.txt │ │ │ ├── hdmi-connector.txt │ │ │ └── vga-connector.txt │ │ ├── etnaviv │ │ │ └── etnaviv-drm.txt │ │ ├── exynos │ │ │ ├── exynos-mic.txt │ │ │ ├── exynos5433-decon.txt │ │ │ ├── exynos7-decon.txt │ │ │ ├── exynos_dp.txt │ │ │ ├── exynos_dsim.txt │ │ │ ├── exynos_hdmi.txt │ │ │ ├── exynos_hdmiddc.txt │ │ │ ├── exynos_hdmiphy.txt │ │ │ ├── exynos_mixer.txt │ │ │ └── samsung-fimd.txt │ │ ├── faraday,tve200.txt │ │ ├── fsl,dcu.txt │ │ ├── fsl,tcon.txt │ │ ├── google,goldfish-fb.txt │ │ ├── hisilicon │ │ │ ├── dw-dsi.txt │ │ │ └── hisi-ade.txt │ │ ├── ht16k33.txt │ │ ├── ilitek,ili9225.txt │ │ ├── imx │ │ │ ├── fsl,imx-fb.txt │ │ │ ├── fsl-imx-drm.txt │ │ │ ├── hdmi.txt │ │ │ └── ldb.txt │ │ ├── marvell,pxa2xx-lcdc.txt │ │ ├── mediatek │ │ │ ├── mediatek,disp.txt │ │ │ ├── mediatek,dpi.txt │ │ │ ├── mediatek,dsi.txt │ │ │ └── mediatek,hdmi.txt │ │ ├── mipi-dsi-bus.txt │ │ ├── msm │ │ │ ├── dsi.txt │ │ │ ├── edp.txt │ │ │ ├── gpu.txt │ │ │ ├── hdmi.txt │ │ │ ├── mdp4.txt │ │ │ └── mdp5.txt │ │ ├── multi-inno,mi0283qt.txt │ │ ├── mxsfb.txt │ │ ├── panel │ │ │ ├── ampire,am-480272h3tmqw-t01h.txt │ │ │ ├── ampire,am800480r3tmqwa1h.txt │ │ │ ├── auo,b080uan01.txt │ │ │ ├── auo,b101aw03.txt │ │ │ ├── auo,b101ean01.txt │ │ │ ├── auo,b101xtn01.txt │ │ │ ├── auo,b116xw03.txt │ │ │ ├── auo,b133htn01.txt │ │ │ ├── auo,b133xtn01.txt │ │ │ ├── auo,g133han01.txt │ │ │ ├── auo,g185han01.txt │ │ │ ├── auo,p320hvn03.txt │ │ │ ├── auo,t215hvn01.txt │ │ │ ├── avic,tm070ddh03.txt │ │ │ ├── boe,nv101wxmn51.txt │ │ │ ├── boe,tv080wum-nl0.txt │ │ │ ├── chunghwa,claa070wp03xg.txt │ │ │ ├── chunghwa,claa101wa01a.txt │ │ │ ├── chunghwa,claa101wb03.txt │ │ │ ├── display-timing.txt │ │ │ ├── edt,et057090dhu.txt │ │ │ ├── edt,et070080dh6.txt │ │ │ ├── edt,etm0700g0dh6.txt │ │ │ ├── foxlink,fl500wvr00-a0t.txt │ │ │ ├── giantplus,gpg482739qs5.txt │ │ │ ├── hannstar,hsd070pww1.txt │ │ │ ├── hannstar,hsd100pxn1.txt │ │ │ ├── hit,tx23d38vm0caa.txt │ │ │ ├── ilitek,ili9322.txt │ │ │ ├── innolux,at043tn24.txt │ │ │ ├── innolux,at070tn92.txt │ │ │ ├── innolux,g101ice-l01.txt │ │ │ ├── innolux,g121i1-l01.txt │ │ │ ├── innolux,g121x1-l03.txt │ │ │ ├── innolux,n116bge.txt │ │ │ ├── innolux,n156bge-l21.txt │ │ │ ├── innolux,p079zca.txt │ │ │ ├── innolux,zj070na-01p.txt │ │ │ ├── jdi,lt070me05000.txt │ │ │ ├── kyo,tcg121xglp.txt │ │ │ ├── lg,lb070wv8.txt │ │ │ ├── lg,ld070wx3-sl01.txt │ │ │ ├── lg,lg4573.txt │ │ │ ├── lg,lh500wx1-sd03.txt │ │ │ ├── lg,lp079qx1-sp0v.txt │ │ │ ├── lg,lp097qx1-spa1.txt │ │ │ ├── lg,lp120up1.txt │ │ │ ├── lg,lp129qe.txt │ │ │ ├── lgphilips,lb035q02.txt │ │ │ ├── mitsubishi,aa070mc01.txt │ │ │ ├── mitsubishi,aa104xd12.txt │ │ │ ├── mitsubishi,aa121td01.txt │ │ │ ├── nec,nl12880b20-05.txt │ │ │ ├── nec,nl4827hc19-05b.txt │ │ │ ├── netron-dy,e231732.txt │ │ │ ├── nlt,nl192108ac18-02d.txt │ │ │ ├── nvd,9128.txt │ │ │ ├── okaya,rs800480t-7x0gp.txt │ │ │ ├── olimex,lcd-olinuxino-43-ts.txt │ │ │ ├── ontat,yx700wv03.txt │ │ │ ├── orisetech,otm8009a.txt │ │ │ ├── ortustech,com43h4m85ulc.txt │ │ │ ├── panasonic,vvx10f004b00.txt │ │ │ ├── panasonic,vvx10f034n00.txt │ │ │ ├── panel-common.txt │ │ │ ├── panel-dpi.txt │ │ │ ├── panel-dsi-cm.txt │ │ │ ├── panel-lvds.txt │ │ │ ├── panel.txt │ │ │ ├── qiaodian,qd43003c0-40.txt │ │ │ ├── raspberrypi,7inch-touchscreen.txt │ │ │ ├── samsung,ld9040.txt │ │ │ ├── samsung,lsn122dl01-c01.txt │ │ │ ├── samsung,ltn101nt05.txt │ │ │ ├── samsung,ltn140at29-301.txt │ │ │ ├── samsung,s6e3ha2.txt │ │ │ ├── samsung,s6e63j0x03.txt │ │ │ ├── samsung,s6e8aa0.txt │ │ │ ├── seiko,43wvf1g.txt │ │ │ ├── sgd,gktw70sdae4se.txt │ │ │ ├── sharp,lq101k1ly04.txt │ │ │ ├── sharp,lq101r1sx01.txt │ │ │ ├── sharp,lq123p1jx31.txt │ │ │ ├── sharp,lq150x1lg11.txt │ │ │ ├── sharp,ls037v7dw01.txt │ │ │ ├── sharp,ls043t1le01.txt │ │ │ ├── shelly,sca07010-bfn-lnn.txt │ │ │ ├── simple-panel.txt │ │ │ ├── sitronix,st7789v.txt │ │ │ ├── sony,acx565akm.txt │ │ │ ├── starry,kr122ea0sra.txt │ │ │ ├── startek,startek-kd050c.txt │ │ │ ├── tianma,tm070jdhg30.txt │ │ │ ├── tianma,tm070rvhg71.txt │ │ │ ├── toshiba,lt089ac29000.txt │ │ │ ├── tpk,f07a-0102.txt │ │ │ ├── tpk,f10a-0102.txt │ │ │ ├── tpo,td028ttec1.txt │ │ │ ├── tpo,td043mtea1.txt │ │ │ ├── tpo,tpg110.txt │ │ │ ├── urt,umsh-8596md.txt │ │ │ └── winstar,wf35ltiacd.txt │ │ ├── renesas,du.txt │ │ ├── repaper.txt │ │ ├── rockchip │ │ │ ├── analogix_dp-rockchip.txt │ │ │ ├── dw_hdmi-rockchip.txt │ │ │ ├── dw_mipi_dsi_rockchip.txt │ │ │ ├── inno_hdmi-rockchip.txt │ │ │ ├── rockchip-drm.txt │ │ │ ├── rockchip-lvds.txt │ │ │ └── rockchip-vop.txt │ │ ├── simple-framebuffer-sunxi.txt │ │ ├── simple-framebuffer.txt │ │ ├── sitronix,st7586.txt │ │ ├── sitronix,st7735r.txt │ │ ├── sm501fb.txt │ │ ├── snps,arcpgu.txt │ │ ├── ssd1289fb.txt │ │ ├── ssd1307fb.txt │ │ ├── st,stih4xx.txt │ │ ├── st,stm32-ltdc.txt │ │ ├── sunxi │ │ │ └── sun4i-drm.txt │ │ ├── tegra │ │ │ ├── nvidia,tegra114-mipi.txt │ │ │ └── nvidia,tegra20-host1x.txt │ │ ├── ti │ │ │ ├── ti,dra7-dss.txt │ │ │ ├── ti,omap-dss.txt │ │ │ ├── ti,omap2-dss.txt │ │ │ ├── ti,omap3-dss.txt │ │ │ ├── ti,omap4-dss.txt │ │ │ ├── ti,omap5-dss.txt │ │ │ ├── ti,opa362.txt │ │ │ └── ti,tpd12s015.txt │ │ ├── tilcdc │ │ │ ├── panel.txt │ │ │ ├── tfp410.txt │ │ │ └── tilcdc.txt │ │ ├── via,vt8500-fb.txt │ │ ├── wm,prizm-ge-rops.txt │ │ ├── wm,wm8505-fb.txt │ │ └── zte,vou.txt │ ├── dma │ │ ├── adi,axi-dmac.txt │ │ ├── apm-xgene-dma.txt │ │ ├── arm-pl08x.txt │ │ ├── arm-pl330.txt │ │ ├── atmel-dma.txt │ │ ├── atmel-xdma.txt │ │ ├── brcm,bcm2835-dma.txt │ │ ├── brcm,iproc-sba.txt │ │ ├── dma.txt │ │ ├── fsl-edma.txt │ │ ├── fsl-imx-dma.txt │ │ ├── fsl-imx-sdma.txt │ │ ├── fsl-mxs-dma.txt │ │ ├── img-mdc-dma.txt │ │ ├── jz4780-dma.txt │ │ ├── k3dma.txt │ │ ├── lpc1850-dmamux.txt │ │ ├── mmp-dma.txt │ │ ├── moxa,moxart-dma.txt │ │ ├── mpc512x-dma.txt │ │ ├── mv-xor-v2.txt │ │ ├── mv-xor.txt │ │ ├── nbpfaxi.txt │ │ ├── nvidia,tegra20-apbdma.txt │ │ ├── nvidia,tegra210-adma.txt │ │ ├── qcom_adm.txt │ │ ├── qcom_bam_dma.txt │ │ ├── qcom_hidma_mgmt.txt │ │ ├── renesas,rcar-dmac.txt │ │ ├── renesas,usb-dmac.txt │ │ ├── shdma.txt │ │ ├── sirfsoc-dma.txt │ │ ├── snps-dma.txt │ │ ├── sprd-dma.txt │ │ ├── st_fdma.txt │ │ ├── ste-coh901318.txt │ │ ├── ste-dma40.txt │ │ ├── stm32-dma.txt │ │ ├── stm32-dmamux.txt │ │ ├── stm32-mdma.txt │ │ ├── sun4i-dma.txt │ │ ├── sun6i-dma.txt │ │ ├── ti-dma-crossbar.txt │ │ ├── ti-edma.txt │ │ ├── xilinx │ │ │ ├── xilinx_dma.txt │ │ │ └── zynqmp_dma.txt │ │ └── zxdma.txt │ ├── edac │ │ └── apm-xgene-edac.txt │ ├── eeprom │ │ ├── at24.txt │ │ └── at25.txt │ ├── extcon │ │ ├── extcon-arizona.txt │ │ ├── extcon-max3355.txt │ │ ├── extcon-palmas.txt │ │ ├── extcon-rt8973a.txt │ │ ├── extcon-sm5502.txt │ │ ├── extcon-usb-gpio.txt │ │ ├── extcon-usbc-cros-ec.txt │ │ └── qcom,pm8941-misc.txt │ ├── firmware │ │ ├── coreboot.txt │ │ ├── meson │ │ │ └── meson_sm.txt │ │ ├── nvidia,tegra186-bpmp.txt │ │ └── qcom,scm.txt │ ├── fpga │ │ ├── altera-fpga2sdram-bridge.txt │ │ ├── altera-freeze-bridge.txt │ │ ├── altera-hps2fpga-bridge.txt │ │ ├── altera-passive-serial.txt │ │ ├── altera-pr-ip.txt │ │ ├── altera-socfpga-a10-fpga-mgr.txt │ │ ├── altera-socfpga-fpga-mgr.txt │ │ ├── fpga-region.txt │ │ ├── lattice-ice40-fpga-mgr.txt │ │ ├── xilinx-pr-decoupler.txt │ │ ├── xilinx-slave-serial.txt │ │ └── xilinx-zynq-fpga-mgr.txt │ ├── fsi │ │ └── fsi-master-gpio.txt │ ├── fuse │ │ └── nvidia,tegra20-fuse.txt │ ├── goldfish │ │ ├── audio.txt │ │ ├── battery.txt │ │ ├── events.txt │ │ ├── pipe.txt │ │ └── tty.txt │ ├── gpio │ │ ├── 8xxx_gpio.txt │ │ ├── abilis,tb10x-gpio.txt │ │ ├── brcm,bcm6345-gpio.txt │ │ ├── brcm,brcmstb-gpio.txt │ │ ├── brcm,kona-gpio.txt │ │ ├── cavium-octeon-gpio.txt │ │ ├── cirrus,clps711x-mctrl-gpio.txt │ │ ├── faraday,ftgpio010.txt │ │ ├── fsl-imx-gpio.txt │ │ ├── fujitsu,mb86s70-gpio.txt │ │ ├── gpio-74x164.txt │ │ ├── gpio-74xx-mmio.txt │ │ ├── gpio-adnp.txt │ │ ├── gpio-altera.txt │ │ ├── gpio-aspeed.txt │ │ ├── gpio-ath79.txt │ │ ├── gpio-atlas7.txt │ │ ├── gpio-axp209.txt │ │ ├── gpio-clps711x.txt │ │ ├── gpio-davinci.txt │ │ ├── gpio-dsp-keystone.txt │ │ ├── gpio-etraxfs.txt │ │ ├── gpio-exar.txt │ │ ├── gpio-grgpio.txt │ │ ├── gpio-lp3943.txt │ │ ├── gpio-max3191x.txt │ │ ├── gpio-max732x.txt │ │ ├── gpio-max77620.txt │ │ ├── gpio-mm-lantiq.txt │ │ ├── gpio-mpc8xxx.txt │ │ ├── gpio-mvebu.txt │ │ ├── gpio-mxs.txt │ │ ├── gpio-nmk.txt │ │ ├── gpio-omap.txt │ │ ├── gpio-palmas.txt │ │ ├── gpio-pca953x.txt │ │ ├── gpio-pcf857x.txt │ │ ├── gpio-pisosr.txt │ │ ├── gpio-samsung.txt │ │ ├── gpio-stericsson-coh901.txt │ │ ├── gpio-stmpe.txt │ │ ├── gpio-stp-xway.txt │ │ ├── gpio-thunderx.txt │ │ ├── gpio-tpic2810.txt │ │ ├── gpio-ts4800.txt │ │ ├── gpio-ts4900.txt │ │ ├── gpio-twl4030.txt │ │ ├── gpio-tz1090-pdc.txt │ │ ├── gpio-tz1090.txt │ │ ├── gpio-uniphier.txt │ │ ├── gpio-vf610.txt │ │ ├── gpio-xgene-sb.txt │ │ ├── gpio-xgene.txt │ │ ├── gpio-xilinx.txt │ │ ├── gpio-xlp.txt │ │ ├── gpio-xra1403.txt │ │ ├── gpio-zevio.txt │ │ ├── gpio-zynq.txt │ │ ├── gpio.txt │ │ ├── gpio_atmel.txt │ │ ├── gpio_lpc32xx.txt │ │ ├── gpio_oxnas.txt │ │ ├── ibm,ppc4xx-gpio.txt │ │ ├── ingenic,gpio.txt │ │ ├── microchip,pic32-gpio.txt │ │ ├── mrvl-gpio.txt │ │ ├── netxbig-gpio-ext.txt │ │ ├── ni,169445-nand-gpio.txt │ │ ├── nvidia,tegra186-gpio.txt │ │ ├── nvidia,tegra20-gpio.txt │ │ ├── nxp,lpc1850-gpio.txt │ │ ├── pl061-gpio.txt │ │ ├── renesas,gpio-rcar.txt │ │ ├── snps-dwapb-gpio.txt │ │ ├── sodaville.txt │ │ ├── spear_spics.txt │ │ ├── wd,mbl-gpio.txt │ │ └── zx296702-gpio.txt │ ├── gpu │ │ ├── arm,mali-midgard.txt │ │ ├── arm,mali-utgard.txt │ │ ├── nvidia,gk20a.txt │ │ ├── samsung-g2d.txt │ │ └── samsung-rotator.txt │ ├── graph.txt │ ├── h8300 │ │ └── cpu.txt │ ├── hsi │ │ ├── client-devices.txt │ │ ├── nokia-modem.txt │ │ └── omap-ssi.txt │ ├── hwlock │ │ ├── hwlock.txt │ │ ├── omap-hwspinlock.txt │ │ ├── qcom-hwspinlock.txt │ │ ├── sirf,hwspinlock.txt │ │ └── sprd-hwspinlock.txt │ ├── hwmon │ │ ├── adc128d818.txt │ │ ├── ads1015.txt │ │ ├── ads7828.txt │ │ ├── apm-xgene-hwmon.txt │ │ ├── aspeed-pwm-tacho.txt │ │ ├── g762.txt │ │ ├── gpio-fan.txt │ │ ├── ibm,cffps1.txt │ │ ├── ibmpowernv.txt │ │ ├── ina2xx.txt │ │ ├── jc42.txt │ │ ├── lm70.txt │ │ ├── lm87.txt │ │ ├── lm90.txt │ │ ├── ltc2978.txt │ │ ├── ltc4151.txt │ │ ├── ltq-cputemp.txt │ │ ├── max1619.txt │ │ ├── max31785.txt │ │ ├── max6650.txt │ │ ├── max6697.txt │ │ ├── mcp3021.txt │ │ ├── nsa320-mcu.txt │ │ ├── ntc_thermistor.txt │ │ ├── pwm-fan.txt │ │ ├── sht15.txt │ │ ├── stts751.txt │ │ ├── tmp108.txt │ │ └── vexpress.txt │ ├── i2c │ │ ├── brcm,bcm2835-i2c.txt │ │ ├── brcm,iproc-i2c.txt │ │ ├── brcm,kona-i2c.txt │ │ ├── i2c-altera.txt │ │ ├── i2c-arb-gpio-challenge.txt │ │ ├── i2c-arb.txt │ │ ├── i2c-aspeed.txt │ │ ├── i2c-at91.txt │ │ ├── i2c-axxia.txt │ │ ├── i2c-brcmstb.txt │ │ ├── i2c-cadence.txt │ │ ├── i2c-cbus-gpio.txt │ │ ├── i2c-cros-ec-tunnel.txt │ │ ├── i2c-davinci.txt │ │ ├── i2c-demux-pinctrl.txt │ │ ├── i2c-designware.txt │ │ ├── i2c-digicolor.txt │ │ ├── i2c-efm32.txt │ │ ├── i2c-emev2.txt │ │ ├── i2c-exynos5.txt │ │ ├── i2c-gate.txt │ │ ├── i2c-gpio.txt │ │ ├── i2c-hix5hd2.txt │ │ ├── i2c-img-scb.txt │ │ ├── i2c-imx-lpi2c.txt │ │ ├── i2c-imx.txt │ │ ├── i2c-jz4780.txt │ │ ├── i2c-lpc2k.txt │ │ ├── i2c-meson.txt │ │ ├── i2c-mpc.txt │ │ ├── i2c-mtk.txt │ │ ├── i2c-mux-gpio.txt │ │ ├── i2c-mux-gpmux.txt │ │ ├── i2c-mux-ltc4306.txt │ │ ├── i2c-mux-pca954x.txt │ │ ├── i2c-mux-pinctrl.txt │ │ ├── i2c-mux-reg.txt │ │ ├── i2c-mux.txt │ │ ├── i2c-mv64xxx.txt │ │ ├── i2c-mxs.txt │ │ ├── i2c-nomadik.txt │ │ ├── i2c-ocores.txt │ │ ├── i2c-octeon.txt │ │ ├── i2c-omap.txt │ │ ├── i2c-opal.txt │ │ ├── i2c-pca-platform.txt │ │ ├── i2c-pnx.txt │ │ ├── i2c-pxa-pci-ce4100.txt │ │ ├── i2c-pxa.txt │ │ ├── i2c-rcar.txt │ │ ├── i2c-riic.txt │ │ ├── i2c-rk3x.txt │ │ ├── i2c-s3c2410.txt │ │ ├── i2c-sh_mobile.txt │ │ ├── i2c-sirf.txt │ │ ├── i2c-sprd.txt │ │ ├── i2c-st-ddci2c.txt │ │ ├── i2c-st.txt │ │ ├── i2c-stm32.txt │ │ ├── i2c-sunxi-p2wi.txt │ │ ├── i2c-uniphier-f.txt │ │ ├── i2c-uniphier.txt │ │ ├── i2c-versatile.txt │ │ ├── i2c-vt8500.txt │ │ ├── i2c-xgene-slimpro.txt │ │ ├── i2c-xiic.txt │ │ ├── i2c-xlp9xx.txt │ │ ├── i2c-zx2967.txt │ │ ├── i2c.txt │ │ ├── nvidia,tegra186-bpmp-i2c.txt │ │ ├── nvidia,tegra20-i2c.txt │ │ ├── nxp,pca9541.txt │ │ └── qcom,i2c-qup.txt │ ├── iio │ │ ├── accel │ │ │ ├── adxl345.txt │ │ │ ├── bma180.txt │ │ │ ├── dmard06.txt │ │ │ ├── kionix,kxsd9.txt │ │ │ ├── lis302.txt │ │ │ └── mma8452.txt │ │ ├── adc │ │ │ ├── amlogic,meson-saradc.txt │ │ │ ├── aspeed_adc.txt │ │ │ ├── at91-sama5d2_adc.txt │ │ │ ├── at91_adc.txt │ │ │ ├── avia-hx711.txt │ │ │ ├── berlin2_adc.txt │ │ │ ├── brcm,iproc-static-adc.txt │ │ │ ├── cc10001_adc.txt │ │ │ ├── cpcap-adc.txt │ │ │ ├── da9150-gpadc.txt │ │ │ ├── envelope-detector.txt │ │ │ ├── fsl,imx25-gcq.txt │ │ │ ├── hi8435.txt │ │ │ ├── imx7d-adc.txt │ │ │ ├── lpc1850-adc.txt │ │ │ ├── ltc2497.txt │ │ │ ├── max1027-adc.txt │ │ │ ├── max11100.txt │ │ │ ├── max1118.txt │ │ │ ├── max1363.txt │ │ │ ├── max9611.txt │ │ │ ├── mcp320x.txt │ │ │ ├── mcp3422.txt │ │ │ ├── mt6577_auxadc.txt │ │ │ ├── nuvoton-nau7802.txt │ │ │ ├── palmas-gpadc.txt │ │ │ ├── qcom,pm8xxx-xoadc.txt │ │ │ ├── qcom,spmi-iadc.txt │ │ │ ├── qcom,spmi-vadc.txt │ │ │ ├── renesas,gyroadc.txt │ │ │ ├── rockchip-saradc.txt │ │ │ ├── sigma-delta-modulator.txt │ │ │ ├── st,stm32-adc.txt │ │ │ ├── st,stm32-dfsdm-adc.txt │ │ │ ├── ti-adc0832.txt │ │ │ ├── ti-adc084s021.txt │ │ │ ├── ti-adc108s102.txt │ │ │ ├── ti-adc12138.txt │ │ │ ├── ti-adc128s052.txt │ │ │ ├── ti-adc161s626.txt │ │ │ ├── ti-ads7950.txt │ │ │ ├── ti-ads8688.txt │ │ │ ├── twl4030-madc.txt │ │ │ ├── vf610-adc.txt │ │ │ └── xilinx-xadc.txt │ │ ├── chemical │ │ │ ├── atlas,ec-sm.txt │ │ │ ├── atlas,orp-sm.txt │ │ │ └── atlas,ph-sm.txt │ │ ├── counter │ │ │ └── stm32-lptimer-cnt.txt │ │ ├── dac │ │ │ ├── ad5592r.txt │ │ │ ├── ad5755.txt │ │ │ ├── ad7303.txt │ │ │ ├── dpot-dac.txt │ │ │ ├── ds4424.txt │ │ │ ├── lpc1850-dac.txt │ │ │ ├── ltc2632.txt │ │ │ ├── max5821.txt │ │ │ ├── mcp4725.txt │ │ │ ├── st,stm32-dac.txt │ │ │ ├── ti,dac7512.txt │ │ │ ├── ti-dac082s085.txt │ │ │ └── vf610-dac.txt │ │ ├── frequency │ │ │ └── adf4350.txt │ │ ├── gyroscope │ │ │ └── invensense,mpu3050.txt │ │ ├── health │ │ │ ├── afe4403.txt │ │ │ ├── afe4404.txt │ │ │ ├── max30100.txt │ │ │ └── max30102.txt │ │ ├── humidity │ │ │ ├── dht11.txt │ │ │ ├── hdc100x.txt │ │ │ ├── hts221.txt │ │ │ └── htu21.txt │ │ ├── iio-bindings.txt │ │ ├── imu │ │ │ ├── bmi160.txt │ │ │ ├── inv_mpu6050.txt │ │ │ └── st_lsm6dsx.txt │ │ ├── light │ │ │ ├── apds9300.txt │ │ │ ├── apds9960.txt │ │ │ ├── cm3605.txt │ │ │ ├── cm36651.txt │ │ │ ├── gp2ap020a00f.txt │ │ │ ├── isl29018.txt │ │ │ ├── opt3001.txt │ │ │ ├── tsl2563.txt │ │ │ ├── tsl2583.txt │ │ │ ├── us5182d.txt │ │ │ ├── uvis25.txt │ │ │ └── vl6180.txt │ │ ├── magnetometer │ │ │ ├── ak8974.txt │ │ │ ├── ak8975.txt │ │ │ ├── bmc150_magn.txt │ │ │ ├── hmc5843.txt │ │ │ └── mmc35240.txt │ │ ├── multiplexer │ │ │ └── io-channel-mux.txt │ │ ├── potentiometer │ │ │ ├── ds1803.txt │ │ │ ├── max5481.txt │ │ │ └── mcp4131.txt │ │ ├── potentiostat │ │ │ └── lmp91000.txt │ │ ├── pressure │ │ │ ├── bmp085.txt │ │ │ ├── hp03.txt │ │ │ ├── ms5611.txt │ │ │ ├── ms5637.txt │ │ │ └── zpa2326.txt │ │ ├── proximity │ │ │ ├── as3935.txt │ │ │ ├── devantech-srf04.txt │ │ │ └── sx9500.txt │ │ ├── sensorhub.txt │ │ ├── st-sensors.txt │ │ ├── temperature │ │ │ ├── maxim_thermocouple.txt │ │ │ ├── mlx90614.txt │ │ │ ├── tmp007.txt │ │ │ └── tsys01.txt │ │ └── timer │ │ │ ├── stm32-lptimer-trigger.txt │ │ │ └── stm32-timer-trigger.txt │ ├── infiniband │ │ └── hisilicon-hns-roce.txt │ ├── input │ │ ├── adc-keys.txt │ │ ├── atmel,captouch.txt │ │ ├── atmel,maxtouch.txt │ │ ├── brcm,bcm-keypad.txt │ │ ├── cap11xx.txt │ │ ├── clps711x-keypad.txt │ │ ├── cpcap-pwrbutton.txt │ │ ├── cros-ec-keyb.txt │ │ ├── cypress,cyapa.txt │ │ ├── cypress,tm2-touchkey.txt │ │ ├── da9062-onkey.txt │ │ ├── dlink,dir685-touchkeys.txt │ │ ├── e3x0-button.txt │ │ ├── elan_i2c.txt │ │ ├── elants_i2c.txt │ │ ├── fsl-mma8450.txt │ │ ├── gpio-beeper.txt │ │ ├── gpio-decoder.txt │ │ ├── gpio-keys-polled.txt │ │ ├── gpio-keys.txt │ │ ├── gpio-matrix-keypad.txt │ │ ├── gpio-mouse.txt │ │ ├── hid-over-i2c.txt │ │ ├── imx-keypad.txt │ │ ├── input-reset.txt │ │ ├── lpc32xx-key.txt │ │ ├── matrix-keymap.txt │ │ ├── mpr121-touchkey.txt │ │ ├── nvidia,tegra20-kbc.txt │ │ ├── omap-keypad.txt │ │ ├── ps2keyb-mouse-apbps2.txt │ │ ├── pwm-beeper.txt │ │ ├── pwm-vibrator.txt │ │ ├── pxa27x-keypad.txt │ │ ├── qcom,pm8941-pwrkey.txt │ │ ├── qcom,pm8xxx-keypad.txt │ │ ├── qcom,pm8xxx-pwrkey.txt │ │ ├── qcom,pm8xxx-vib.txt │ │ ├── raydium_i2c_ts.txt │ │ ├── regulator-haptic.txt │ │ ├── rmi4 │ │ │ ├── rmi_2d_sensor.txt │ │ │ ├── rmi_f01.txt │ │ │ ├── rmi_i2c.txt │ │ │ └── rmi_spi.txt │ │ ├── rotary-encoder.txt │ │ ├── samsung-keypad.txt │ │ ├── snvs-pwrkey.txt │ │ ├── spear-keyboard.txt │ │ ├── st-keyscan.txt │ │ ├── stmpe-keypad.txt │ │ ├── sun4i-lradc-keys.txt │ │ ├── tca8418_keypad.txt │ │ ├── ti,drv260x.txt │ │ ├── ti,drv2665.txt │ │ ├── ti,drv2667.txt │ │ ├── ti,nspire-keypad.txt │ │ ├── ti,palmas-pwrbutton.txt │ │ ├── touchscreen │ │ │ ├── ad7879.txt │ │ │ ├── ads7846.txt │ │ │ ├── ar1021.txt │ │ │ ├── auo_pixcir_ts.txt │ │ │ ├── brcm,iproc-touchscreen.txt │ │ │ ├── bu21013.txt │ │ │ ├── chipone_icn8318.txt │ │ │ ├── colibri-vf50-ts.txt │ │ │ ├── cyttsp.txt │ │ │ ├── edt-ft5x06.txt │ │ │ ├── egalax-ts.txt │ │ │ ├── ektf2127.txt │ │ │ ├── exc3000.txt │ │ │ ├── fsl-mx25-tcq.txt │ │ │ ├── goodix.txt │ │ │ ├── hideep.txt │ │ │ ├── imx6ul_tsc.txt │ │ │ ├── lpc32xx-tsc.txt │ │ │ ├── max11801-ts.txt │ │ │ ├── melfas_mip4.txt │ │ │ ├── mms114.txt │ │ │ ├── pixcir_i2c_ts.txt │ │ │ ├── samsung,s6sy761.txt │ │ │ ├── silead_gsl1680.txt │ │ │ ├── sis_i2c.txt │ │ │ ├── sitronix-st1232.txt │ │ │ ├── st,stmfts.txt │ │ │ ├── stmpe.txt │ │ │ ├── sx8654.txt │ │ │ ├── ti-tsc-adc.txt │ │ │ ├── touchscreen.txt │ │ │ ├── ts4800-ts.txt │ │ │ ├── tsc2005.txt │ │ │ ├── tsc2007.txt │ │ │ ├── zet6223.txt │ │ │ └── zforce_ts.txt │ │ ├── tps65218-pwrbutton.txt │ │ ├── twl4030-keypad.txt │ │ └── twl4030-pwrbutton.txt │ ├── interrupt-controller │ │ ├── abilis,tb10x-ictl.txt │ │ ├── al,alpine-msix.txt │ │ ├── allwinner,sun4i-ic.txt │ │ ├── allwinner,sunxi-nmi.txt │ │ ├── amlogic,meson-gpio-intc.txt │ │ ├── arm,gic-v3.txt │ │ ├── arm,gic.txt │ │ ├── arm,nvic.txt │ │ ├── arm,versatile-fpga-irq.txt │ │ ├── arm,vic.txt │ │ ├── aspeed,ast2400-i2c-ic.txt │ │ ├── aspeed,ast2400-vic.txt │ │ ├── atmel,aic.txt │ │ ├── axis,crisv32-intc.txt │ │ ├── brcm,bcm2835-armctrl-ic.txt │ │ ├── brcm,bcm2836-l1-intc.txt │ │ ├── brcm,bcm3380-l2-intc.txt │ │ ├── brcm,bcm6345-l1-intc.txt │ │ ├── brcm,bcm7038-l1-intc.txt │ │ ├── brcm,bcm7120-l2-intc.txt │ │ ├── brcm,l2-intc.txt │ │ ├── cdns,xtensa-mx.txt │ │ ├── cdns,xtensa-pic.txt │ │ ├── cirrus,clps711x-intc.txt │ │ ├── digicolor-ic.txt │ │ ├── ezchip,nps400-ic.txt │ │ ├── faraday,ftintc010.txt │ │ ├── fsl,ls-scfg-msi.txt │ │ ├── google,goldfish-pic.txt │ │ ├── hisilicon,mbigen-v2.txt │ │ ├── img,meta-intc.txt │ │ ├── img,pdc-intc.txt │ │ ├── ingenic,intc.txt │ │ ├── intel,ce4100-ioapic.txt │ │ ├── interrupts.txt │ │ ├── jcore,aic.txt │ │ ├── lsi,zevio-intc.txt │ │ ├── marvell,armada-370-xp-mpic.txt │ │ ├── marvell,armada-8k-pic.txt │ │ ├── marvell,gicp.txt │ │ ├── marvell,icu.txt │ │ ├── marvell,odmi-controller.txt │ │ ├── marvell,orion-intc.txt │ │ ├── mediatek,cirq.txt │ │ ├── mediatek,sysirq.txt │ │ ├── microchip,pic32-evic.txt │ │ ├── mips-gic.txt │ │ ├── mrvl,intc.txt │ │ ├── msi.txt │ │ ├── nvidia,tegra20-ictlr.txt │ │ ├── nxp,lpc3220-mic.txt │ │ ├── open-pic.txt │ │ ├── opencores,or1k-pic.txt │ │ ├── openrisc,ompic.txt │ │ ├── qca,ath79-cpu-intc.txt │ │ ├── qca,ath79-misc-intc.txt │ │ ├── renesas,h8300h-intc.txt │ │ ├── renesas,h8s-intc.txt │ │ ├── renesas,intc-irqpin.txt │ │ ├── renesas,irqc.txt │ │ ├── samsung,exynos4210-combiner.txt │ │ ├── samsung,s3c24xx-irq.txt │ │ ├── sigma,smp8642-intc.txt │ │ ├── snps,arc700-intc.txt │ │ ├── snps,archs-idu-intc.txt │ │ ├── snps,archs-intc.txt │ │ ├── snps,dw-apb-ictl.txt │ │ ├── socionext,synquacer-exiu.txt │ │ ├── socionext,uniphier-aidet.txt │ │ ├── st,spear3xx-shirq.txt │ │ ├── st,sti-irq-syscfg.txt │ │ ├── st,stm32-exti.txt │ │ ├── technologic,ts4800.txt │ │ ├── ti,c64x+megamod-pic.txt │ │ ├── ti,cp-intc.txt │ │ ├── ti,keystone-irq.txt │ │ ├── ti,omap-intc-irq.txt │ │ ├── ti,omap2-intc.txt │ │ ├── ti,omap4-wugen-mpu │ │ └── via,vt8500-intc.txt │ ├── iommu │ │ ├── arm,smmu-v3.txt │ │ ├── arm,smmu.txt │ │ ├── iommu.txt │ │ ├── mediatek,iommu.txt │ │ ├── msm,iommu-v0.txt │ │ ├── nvidia,tegra20-gart.txt │ │ ├── nvidia,tegra30-smmu.txt │ │ ├── qcom,iommu.txt │ │ ├── renesas,ipmmu-vmsa.txt │ │ ├── rockchip,iommu.txt │ │ ├── samsung,sysmmu.txt │ │ └── ti,omap-iommu.txt │ ├── ipmi │ │ ├── aspeed,ast2400-ibt-bmc.txt │ │ └── ipmi-smic.txt │ ├── leds │ │ ├── ams,as3645a.txt │ │ ├── backlight │ │ │ ├── 88pm860x.txt │ │ │ ├── arcxcnn_bl.txt │ │ │ ├── gpio-backlight.txt │ │ │ ├── lp855x.txt │ │ │ ├── max8925-backlight.txt │ │ │ ├── pm8941-wled.txt │ │ │ ├── pwm-backlight.txt │ │ │ ├── sky81452-backlight.txt │ │ │ └── tps65217-backlight.txt │ │ ├── common.txt │ │ ├── irled │ │ │ ├── gpio-ir-tx.txt │ │ │ ├── pwm-ir-tx.txt │ │ │ └── spi-ir-led.txt │ │ ├── leds-aat1290.txt │ │ ├── leds-bcm6328.txt │ │ ├── leds-bcm6358.txt │ │ ├── leds-cpcap.txt │ │ ├── leds-gpio.txt │ │ ├── leds-is31fl319x.txt │ │ ├── leds-is31fl32xx.txt │ │ ├── leds-ktd2692.txt │ │ ├── leds-lm3692x.txt │ │ ├── leds-lp55xx.txt │ │ ├── leds-lp8860.txt │ │ ├── leds-mt6323.txt │ │ ├── leds-netxbig.txt │ │ ├── leds-ns2.txt │ │ ├── leds-pca9532.txt │ │ ├── leds-pca955x.txt │ │ ├── leds-pm8058.txt │ │ ├── leds-powernv.txt │ │ ├── leds-pwm.txt │ │ ├── leds-tlc591xx.txt │ │ ├── pca963x.txt │ │ ├── register-bit-led.txt │ │ └── tca6507.txt │ ├── lpddr2 │ │ ├── lpddr2-timings.txt │ │ └── lpddr2.txt │ ├── mailbox │ │ ├── altera-mailbox.txt │ │ ├── arm-mhu.txt │ │ ├── brcm,bcm2835-mbox.txt │ │ ├── brcm,iproc-flexrm-mbox.txt │ │ ├── brcm,iproc-pdc-mbox.txt │ │ ├── hisilicon,hi6220-mailbox.txt │ │ ├── mailbox.txt │ │ ├── meson-mhu.txt │ │ ├── nvidia,tegra186-hsp.txt │ │ ├── omap-mailbox.txt │ │ ├── qcom,apcs-kpss-global.txt │ │ ├── rockchip-mailbox.txt │ │ ├── sti-mailbox.txt │ │ ├── ti,message-manager.txt │ │ └── xgene-slimpro-mailbox.txt │ ├── marvell.txt │ ├── media │ │ ├── atmel-isc.txt │ │ ├── atmel-isi.txt │ │ ├── cec-gpio.txt │ │ ├── cec.txt │ │ ├── coda.txt │ │ ├── exynos-fimc-lite.txt │ │ ├── exynos-jpeg-codec.txt │ │ ├── exynos4-fimc-is.txt │ │ ├── exynos5-gsc.txt │ │ ├── fsl-vdoa.txt │ │ ├── gpio-ir-receiver.txt │ │ ├── hix5hd2-ir.txt │ │ ├── i2c │ │ │ ├── ad5820.txt │ │ │ ├── adp1653.txt │ │ │ ├── adv7180.txt │ │ │ ├── adv7343.txt │ │ │ ├── adv748x.txt │ │ │ ├── adv7604.txt │ │ │ ├── dongwoon,dw9714.txt │ │ │ ├── imx274.txt │ │ │ ├── max2175.txt │ │ │ ├── mt9m111.txt │ │ │ ├── mt9p031.txt │ │ │ ├── mt9v032.txt │ │ │ ├── nokia,smia.txt │ │ │ ├── ov2640.txt │ │ │ ├── ov2659.txt │ │ │ ├── ov5640.txt │ │ │ ├── ov5645.txt │ │ │ ├── ov5647.txt │ │ │ ├── ov7670.txt │ │ │ ├── ov7740.txt │ │ │ ├── tc358743.txt │ │ │ ├── ths8200.txt │ │ │ ├── toshiba,et8ek8.txt │ │ │ ├── tvp514x.txt │ │ │ ├── tvp5150.txt │ │ │ └── tvp7002.txt │ │ ├── img-ir-rev1.txt │ │ ├── imx.txt │ │ ├── mediatek-jpeg-decoder.txt │ │ ├── mediatek-mdp.txt │ │ ├── mediatek-vcodec.txt │ │ ├── mediatek-vpu.txt │ │ ├── meson-ao-cec.txt │ │ ├── meson-ir.txt │ │ ├── mtk-cir.txt │ │ ├── nokia,n900-ir │ │ ├── nvidia,tegra-vde.txt │ │ ├── pxa-camera.txt │ │ ├── qcom,camss.txt │ │ ├── qcom,venus.txt │ │ ├── rc.txt │ │ ├── rcar_vin.txt │ │ ├── renesas,drif.txt │ │ ├── renesas,fcp.txt │ │ ├── renesas,fdp1.txt │ │ ├── renesas,jpu.txt │ │ ├── renesas,vsp1.txt │ │ ├── rockchip-rga.txt │ │ ├── s5p-cec.txt │ │ ├── s5p-mfc.txt │ │ ├── samsung-fimc.txt │ │ ├── samsung-mipi-csis.txt │ │ ├── samsung-s5c73m3.txt │ │ ├── samsung-s5k5baf.txt │ │ ├── samsung-s5k6a3.txt │ │ ├── sh_mobile_ceu.txt │ │ ├── si4713.txt │ │ ├── st,st-delta.txt │ │ ├── st,st-hva.txt │ │ ├── st,stih4xx.txt │ │ ├── st,stm32-cec.txt │ │ ├── st,stm32-dcmi.txt │ │ ├── st-rc.txt │ │ ├── stih-cec.txt │ │ ├── stih407-c8sectpfe.txt │ │ ├── sunxi-ir.txt │ │ ├── tango-ir.txt │ │ ├── tegra-cec.txt │ │ ├── ti,da850-vpif.txt │ │ ├── ti,omap3isp.txt │ │ ├── ti-am437x-vpfe.txt │ │ ├── ti-cal.txt │ │ ├── video-interfaces.txt │ │ ├── video-mux.txt │ │ ├── xilinx │ │ │ ├── video.txt │ │ │ ├── xlnx,v-tc.txt │ │ │ ├── xlnx,v-tpg.txt │ │ │ └── xlnx,video.txt │ │ └── zx-irdec.txt │ ├── memory-controllers │ │ ├── arm,pl172.txt │ │ ├── ath79-ddr-controller.txt │ │ ├── atmel,ebi.txt │ │ ├── brcm,dpfe-cpu.txt │ │ ├── calxeda-ddr-ctrlr.txt │ │ ├── exynos-srom.txt │ │ ├── fsl │ │ │ ├── ddr.txt │ │ │ └── ifc.txt │ │ ├── ingenic,jz4780-nemc.txt │ │ ├── mediatek,smi-common.txt │ │ ├── mediatek,smi-larb.txt │ │ ├── mvebu-devbus.txt │ │ ├── mvebu-sdram-controller.txt │ │ ├── nvidia,tegra124-emc.txt │ │ ├── nvidia,tegra30-mc.txt │ │ ├── omap-gpmc.txt │ │ ├── renesas,h8300-bsc.txt │ │ ├── renesas-memory-controllers.txt │ │ ├── synopsys.txt │ │ ├── ti-aemif.txt │ │ ├── ti-da8xx-ddrctl.txt │ │ └── ti │ │ │ └── emif.txt │ ├── metag │ │ └── meta.txt │ ├── mfd │ │ ├── 88pm860x.txt │ │ ├── ab8500.txt │ │ ├── ac100.txt │ │ ├── act8945a.txt │ │ ├── altera-a10sr.txt │ │ ├── arizona.txt │ │ ├── as3711.txt │ │ ├── as3722.txt │ │ ├── aspeed-gfx.txt │ │ ├── aspeed-lpc.txt │ │ ├── aspeed-scu.txt │ │ ├── atmel-flexcom.txt │ │ ├── atmel-gpbr.txt │ │ ├── atmel-hlcdc.txt │ │ ├── atmel-matrix.txt │ │ ├── atmel-smc.txt │ │ ├── atmel-tcb.txt │ │ ├── axp20x.txt │ │ ├── bd9571mwv.txt │ │ ├── bfticu.txt │ │ ├── brcm,bcm59056.txt │ │ ├── brcm,iproc-cdru.txt │ │ ├── brcm,iproc-mhb.txt │ │ ├── cros-ec.txt │ │ ├── da9052-i2c.txt │ │ ├── da9055.txt │ │ ├── da9062.txt │ │ ├── da9063.txt │ │ ├── da9150.txt │ │ ├── fsl-imx25-tsadc.txt │ │ ├── hi6421.txt │ │ ├── hisilicon,hi655x.txt │ │ ├── lp3943.txt │ │ ├── lp873x.txt │ │ ├── lp87565.txt │ │ ├── max14577.txt │ │ ├── max77620.txt │ │ ├── max77686.txt │ │ ├── max77693.txt │ │ ├── max77802.txt │ │ ├── max8925.txt │ │ ├── max8998.txt │ │ ├── mc13xxx.txt │ │ ├── mfd.txt │ │ ├── motorola-cpcap.txt │ │ ├── mt6397.txt │ │ ├── mxs-lradc.txt │ │ ├── omap-usb-host.txt │ │ ├── omap-usb-tll.txt │ │ ├── palmas.txt │ │ ├── qcom,spmi-pmic.txt │ │ ├── qcom,tcsr.txt │ │ ├── qcom-pm8xxx.txt │ │ ├── qcom-rpm.txt │ │ ├── qriox.txt │ │ ├── retu.txt │ │ ├── rk808.txt │ │ ├── rn5t618.txt │ │ ├── samsung,exynos5433-lpass.txt │ │ ├── samsung,sec-core.txt │ │ ├── sky81452.txt │ │ ├── sprd,sc27xx-pmic.txt │ │ ├── stm32-lptimer.txt │ │ ├── stm32-timers.txt │ │ ├── stmpe.txt │ │ ├── sun4i-gpadc.txt │ │ ├── sun6i-prcm.txt │ │ ├── syscon.txt │ │ ├── tc3589x.txt │ │ ├── ti-keystone-devctrl.txt │ │ ├── ti-lmu.txt │ │ ├── tps6105x.txt │ │ ├── tps6507x.txt │ │ ├── tps65086.txt │ │ ├── tps65910.txt │ │ ├── tps65912.txt │ │ ├── twl-familly.txt │ │ ├── twl4030-audio.txt │ │ ├── twl4030-power.txt │ │ ├── twl6040.txt │ │ ├── wm831x.txt │ │ └── zii,rave-sp.txt │ ├── mips │ │ ├── ath79-soc.txt │ │ ├── brcm │ │ │ ├── brcm,bmips.txt │ │ │ └── soc.txt │ │ ├── cavium │ │ │ ├── bootbus.txt │ │ │ ├── cib.txt │ │ │ ├── ciu.txt │ │ │ ├── ciu2.txt │ │ │ ├── ciu3.txt │ │ │ ├── dma-engine.txt │ │ │ ├── sata-uctl.txt │ │ │ └── uctl.txt │ │ ├── cpu_irq.txt │ │ ├── img │ │ │ ├── pistachio-marduk.txt │ │ │ ├── pistachio.txt │ │ │ └── xilfpga.txt │ │ ├── lantiq │ │ │ ├── fpi-bus.txt │ │ │ ├── rcu-gphy.txt │ │ │ └── rcu.txt │ │ ├── ni.txt │ │ ├── pic32 │ │ │ └── microchip,pic32mzda.txt │ │ └── ralink.txt │ ├── misc │ │ ├── allwinner,syscon.txt │ │ ├── atmel-ssc.txt │ │ ├── brcm,kona-smc.txt │ │ ├── eeprom-93xx46.txt │ │ ├── fsl,qoriq-mc.txt │ │ ├── ge-achc.txt │ │ ├── idt_89hpesx.txt │ │ ├── ifm-csi.txt │ │ ├── nvidia,tegra186-misc.txt │ │ └── nvidia,tegra20-apbmisc.txt │ ├── mmc │ │ ├── amlogic,meson-gx.txt │ │ ├── amlogic,meson-mx-sdio.txt │ │ ├── arasan,sdhci.txt │ │ ├── atmel-hsmci.txt │ │ ├── brcm,bcm2835-sdhost.txt │ │ ├── brcm,kona-sdhci.txt │ │ ├── brcm,sdhci-brcmstb.txt │ │ ├── brcm,sdhci-iproc.txt │ │ ├── cavium-mmc.txt │ │ ├── davinci_mmc.txt │ │ ├── exynos-dw-mshc.txt │ │ ├── fsl-esdhc.txt │ │ ├── fsl-imx-esdhc.txt │ │ ├── fsl-imx-mmc.txt │ │ ├── img-dw-mshc.txt │ │ ├── k3-dw-mshc.txt │ │ ├── marvell,xenon-sdhci.txt │ │ ├── microchip,sdhci-pic32.txt │ │ ├── mmc-card.txt │ │ ├── mmc-pwrseq-emmc.txt │ │ ├── mmc-pwrseq-sd8787.txt │ │ ├── mmc-pwrseq-simple.txt │ │ ├── mmc-spi-slot.txt │ │ ├── mmc.txt │ │ ├── mmci.txt │ │ ├── moxa,moxart-mmc.txt │ │ ├── mtk-sd.txt │ │ ├── mxs-mmc.txt │ │ ├── nvidia,tegra20-sdhci.txt │ │ ├── orion-sdio.txt │ │ ├── pxa-mmc.txt │ │ ├── renesas,mmcif.txt │ │ ├── rockchip-dw-mshc.txt │ │ ├── samsung,s3cmci.txt │ │ ├── samsung-sdhci.txt │ │ ├── sdhci-atmel.txt │ │ ├── sdhci-cadence.txt │ │ ├── sdhci-dove.txt │ │ ├── sdhci-fujitsu.txt │ │ ├── sdhci-msm.txt │ │ ├── sdhci-omap.txt │ │ ├── sdhci-pxa.txt │ │ ├── sdhci-sirf.txt │ │ ├── sdhci-spear.txt │ │ ├── sdhci-st.txt │ │ ├── sdhci.txt │ │ ├── socfpga-dw-mshc.txt │ │ ├── sunxi-mmc.txt │ │ ├── synopsys-dw-mshc.txt │ │ ├── ti-omap-hsmmc.txt │ │ ├── ti-omap.txt │ │ ├── tmio_mmc.txt │ │ ├── usdhi6rol0.txt │ │ ├── vt8500-sdmmc.txt │ │ └── zx-dw-mshc.txt │ ├── mtd │ │ ├── arm-versatile.txt │ │ ├── aspeed-smc.txt │ │ ├── atmel-dataflash.txt │ │ ├── atmel-nand.txt │ │ ├── atmel-quadspi.txt │ │ ├── brcm,brcmnand.txt │ │ ├── cadence-quadspi.txt │ │ ├── common.txt │ │ ├── cortina,gemini-flash.txt │ │ ├── davinci-nand.txt │ │ ├── denali-nand.txt │ │ ├── diskonchip.txt │ │ ├── elm.txt │ │ ├── flctl-nand.txt │ │ ├── fsl-quadspi.txt │ │ ├── fsl-upm-nand.txt │ │ ├── fsmc-nand.txt │ │ ├── gpio-control-nand.txt │ │ ├── gpmc-nand.txt │ │ ├── gpmc-nor.txt │ │ ├── gpmc-onenand.txt │ │ ├── gpmi-nand.txt │ │ ├── hisi504-nand.txt │ │ ├── hisilicon,fmc-spi-nor.txt │ │ ├── ingenic,jz4780-nand.txt │ │ ├── jedec,spi-nor.txt │ │ ├── lpc32xx-mlc.txt │ │ ├── lpc32xx-slc.txt │ │ ├── marvell-nand.txt │ │ ├── microchip,mchp23k256.txt │ │ ├── mtd-physmap.txt │ │ ├── mtk-nand.txt │ │ ├── mtk-quadspi.txt │ │ ├── mxc-nand.txt │ │ ├── nand.txt │ │ ├── nxp-spifi.txt │ │ ├── orion-nand.txt │ │ ├── oxnas-nand.txt │ │ ├── partition.txt │ │ ├── pxa3xx-nand.txt │ │ ├── qcom_nandc.txt │ │ ├── samsung-s3c2410.txt │ │ ├── spear_smi.txt │ │ ├── st-fsm.txt │ │ ├── stm32-quadspi.txt │ │ ├── sunxi-nand.txt │ │ ├── tango-nand.txt │ │ └── vf610-nfc.txt │ ├── mux │ │ ├── adi,adg792a.txt │ │ ├── gpio-mux.txt │ │ ├── mmio-mux.txt │ │ └── mux-controller.txt │ ├── net │ │ ├── allwinner,sun4i-emac.txt │ │ ├── allwinner,sun4i-mdio.txt │ │ ├── allwinner,sun7i-a20-gmac.txt │ │ ├── altera_tse.txt │ │ ├── amd-xgbe.txt │ │ ├── anarion-gmac.txt │ │ ├── apm-xgene-enet.txt │ │ ├── apm-xgene-mdio.txt │ │ ├── arc_emac.txt │ │ ├── bluetooth.txt │ │ ├── brcm,amac.txt │ │ ├── brcm,bcm7445-switch-v4.0.txt │ │ ├── brcm,bcmgenet.txt │ │ ├── brcm,iproc-mdio.txt │ │ ├── brcm,mdio-mux-iproc.txt │ │ ├── brcm,systemport.txt │ │ ├── brcm,unimac-mdio.txt │ │ ├── broadcom-bcm87xx.txt │ │ ├── broadcom-bluetooth.txt │ │ ├── btusb.txt │ │ ├── calxeda-xgmac.txt │ │ ├── can │ │ │ ├── atmel-can.txt │ │ │ ├── c_can.txt │ │ │ ├── can-transceiver.txt │ │ │ ├── cc770.txt │ │ │ ├── fsl-flexcan.txt │ │ │ ├── grcan.txt │ │ │ ├── holt_hi311x.txt │ │ │ ├── ifi_canfd.txt │ │ │ ├── m_can.txt │ │ │ ├── microchip,mcp251x.txt │ │ │ ├── mpc5xxx-mscan.txt │ │ │ ├── rcar_can.txt │ │ │ ├── rcar_canfd.txt │ │ │ ├── sja1000.txt │ │ │ ├── sun4i_can.txt │ │ │ ├── ti_hecc.txt │ │ │ └── xilinx_can.txt │ │ ├── cavium-mdio.txt │ │ ├── cavium-mix.txt │ │ ├── cavium-pip.txt │ │ ├── cirrus,cs89x0.txt │ │ ├── cortina,gemini-ethernet.txt │ │ ├── cortina.txt │ │ ├── cpsw-phy-sel.txt │ │ ├── cpsw.txt │ │ ├── davicom-dm9000.txt │ │ ├── davinci-mdio.txt │ │ ├── davinci_emac.txt │ │ ├── dsa │ │ │ ├── b53.txt │ │ │ ├── dsa.txt │ │ │ ├── ksz.txt │ │ │ ├── lan9303.txt │ │ │ ├── marvell.txt │ │ │ ├── mt7530.txt │ │ │ └── qca8k.txt │ │ ├── dwmac-sun8i.txt │ │ ├── emac_rockchip.txt │ │ ├── ethernet.txt │ │ ├── ezchip_enet.txt │ │ ├── faraday,ftmac.txt │ │ ├── fixed-link.txt │ │ ├── fsl-fec.txt │ │ ├── fsl-fman.txt │ │ ├── fsl-tsec-phy.txt │ │ ├── ftgmac100.txt │ │ ├── gpmc-eth.txt │ │ ├── hisilicon-femac-mdio.txt │ │ ├── hisilicon-femac.txt │ │ ├── hisilicon-hip04-net.txt │ │ ├── hisilicon-hix5hd2-gmac.txt │ │ ├── hisilicon-hns-dsaf.txt │ │ ├── hisilicon-hns-mdio.txt │ │ ├── hisilicon-hns-nic.txt │ │ ├── ieee802154 │ │ │ ├── adf7242.txt │ │ │ ├── at86rf230.txt │ │ │ ├── ca8210.txt │ │ │ ├── cc2520.txt │ │ │ └── mrf24j40.txt │ │ ├── ipq806x-dwmac.txt │ │ ├── keystone-netcp.txt │ │ ├── lpc-eth.txt │ │ ├── macb.txt │ │ ├── marvell,prestera.txt │ │ ├── marvell-armada-370-neta.txt │ │ ├── marvell-bt-8xxx.txt │ │ ├── marvell-neta-bm.txt │ │ ├── marvell-orion-mdio.txt │ │ ├── marvell-orion-net.txt │ │ ├── marvell-pp2.txt │ │ ├── marvell-pxa168.txt │ │ ├── maxim,ds26522.txt │ │ ├── mdio-gpio.txt │ │ ├── mdio-mux-gpio.txt │ │ ├── mdio-mux-mmioreg.txt │ │ ├── mdio-mux.txt │ │ ├── mdio.txt │ │ ├── mediatek,mt7620-gsw.txt │ │ ├── mediatek-net.txt │ │ ├── meson-dwmac.txt │ │ ├── micrel-ks8851.txt │ │ ├── micrel-ks8995.txt │ │ ├── micrel-ksz90x1.txt │ │ ├── micrel.txt │ │ ├── microchip,enc28j60.txt │ │ ├── mscc-phy-vsc8531.txt │ │ ├── nfc │ │ │ ├── nfcmrvl.txt │ │ │ ├── nxp-nci.txt │ │ │ ├── pn533-i2c.txt │ │ │ ├── pn544.txt │ │ │ ├── s3fwrn5.txt │ │ │ ├── st-nci-i2c.txt │ │ │ ├── st-nci-spi.txt │ │ │ ├── st21nfca.txt │ │ │ ├── st95hf.txt │ │ │ └── trf7970a.txt │ │ ├── nokia-bluetooth.txt │ │ ├── nxp,lpc1850-dwmac.txt │ │ ├── opencores-ethoc.txt │ │ ├── oxnas-dwmac.txt │ │ ├── phy.txt │ │ ├── qca,qca7000.txt │ │ ├── qcom-emac.txt │ │ ├── ralink,rt2880-net.txt │ │ ├── ralink,rt3050-esw.txt │ │ ├── renesas,ravb.txt │ │ ├── rockchip-dwmac.txt │ │ ├── samsung-sxgbe.txt │ │ ├── sff,sfp.txt │ │ ├── sh_eth.txt │ │ ├── smsc-lan87xx.txt │ │ ├── smsc-lan91c111.txt │ │ ├── smsc911x.txt │ │ ├── snps,dwc-qos-ethernet.txt │ │ ├── socfpga-dwmac.txt │ │ ├── socionext,uniphier-ave4.txt │ │ ├── socionext-netsec.txt │ │ ├── sti-dwmac.txt │ │ ├── stm32-dwmac.txt │ │ ├── stmmac.txt │ │ ├── ti,dp83867.txt │ │ ├── ti-bluetooth.txt │ │ ├── via-rhine.txt │ │ ├── via-velocity.txt │ │ ├── wireless │ │ │ ├── brcm,bcm43xx-fmac.txt │ │ │ ├── esp,esp8089.txt │ │ │ ├── ieee80211.txt │ │ │ ├── marvell-8xxx.txt │ │ │ ├── mediatek,mt76.txt │ │ │ ├── qca,ath9k.txt │ │ │ ├── qcom,ath10k.txt │ │ │ ├── ti,wl1251.txt │ │ │ ├── ti,wlcore,spi.txt │ │ │ └── ti,wlcore.txt │ │ ├── xilinx_axienet.txt │ │ └── xilinx_gmii2rgmii.txt │ ├── nios2 │ │ ├── nios2.txt │ │ └── timer.txt │ ├── numa.txt │ ├── nvmem │ │ ├── allwinner,sunxi-sid.txt │ │ ├── amlogic-efuse.txt │ │ ├── amlogic-meson-mx-efuse.txt │ │ ├── brcm,ocotp.txt │ │ ├── imx-iim.txt │ │ ├── imx-ocotp.txt │ │ ├── lpc1850-otp.txt │ │ ├── lpc1857-eeprom.txt │ │ ├── mtk-efuse.txt │ │ ├── mxs-ocotp.txt │ │ ├── nvmem.txt │ │ ├── qfprom.txt │ │ ├── rockchip-efuse.txt │ │ ├── snvs-lpgpr.txt │ │ ├── uniphier-efuse.txt │ │ └── vf610-ocotp.txt │ ├── openrisc │ │ └── opencores │ │ │ └── or1ksim.txt │ ├── opp │ │ ├── opp.txt │ │ └── ti-omap5-opp-supply.txt │ ├── pci │ │ ├── 83xx-512x-pci.txt │ │ ├── aardvark-pci.txt │ │ ├── altera-pcie-msi.txt │ │ ├── altera-pcie.txt │ │ ├── arm,juno-r1-pcie.txt │ │ ├── axis,artpec6-pcie.txt │ │ ├── brcm,iproc-pcie.txt │ │ ├── cdns,cdns-pcie-ep.txt │ │ ├── cdns,cdns-pcie-host.txt │ │ ├── designware-pcie-ecam.txt │ │ ├── designware-pcie.txt │ │ ├── faraday,ftpci100.txt │ │ ├── fsl,imx6q-pcie.txt │ │ ├── fsl,pci.txt │ │ ├── hisilicon-histb-pcie.txt │ │ ├── hisilicon-pcie.txt │ │ ├── host-generic-pci.txt │ │ ├── kirin-pcie.txt │ │ ├── layerscape-pci.txt │ │ ├── mediatek-pcie.txt │ │ ├── mvebu-pci.txt │ │ ├── nvidia,tegra20-pcie.txt │ │ ├── pci-armada8k.txt │ │ ├── pci-iommu.txt │ │ ├── pci-keystone.txt │ │ ├── pci-msi.txt │ │ ├── pci-rcar-gen2.txt │ │ ├── pci-thunder-ecam.txt │ │ ├── pci-thunder-pem.txt │ │ ├── pci.txt │ │ ├── plda,xpressrich3-axi.txt │ │ ├── qcom,pcie.txt │ │ ├── ralink,rt3883-pci.txt │ │ ├── rcar-pci.txt │ │ ├── rockchip-pcie.txt │ │ ├── samsung,exynos5440-pcie.txt │ │ ├── spear13xx-pcie.txt │ │ ├── tango-pcie.txt │ │ ├── ti-pci.txt │ │ ├── v3-v360epc-pci.txt │ │ ├── versatile.txt │ │ ├── xgene-pci-msi.txt │ │ ├── xgene-pci.txt │ │ ├── xilinx-nwl-pcie.txt │ │ └── xilinx-pcie.txt │ ├── perf │ │ └── apm-xgene-pmu.txt │ ├── phy │ │ ├── apm-xgene-phy.txt │ │ ├── bcm-ns-usb2-phy.txt │ │ ├── bcm-ns-usb3-phy.txt │ │ ├── berlin-sata-phy.txt │ │ ├── berlin-usb-phy.txt │ │ ├── brcm,brcmstb-usb-phy.txt │ │ ├── brcm,cygnus-pcie-phy.txt │ │ ├── brcm,kona-usb2-phy.txt │ │ ├── brcm,mdio-mux-bus-pci.txt │ │ ├── brcm,ns2-drd-phy.txt │ │ ├── brcm-sata-phy.txt │ │ ├── calxeda-combophy.txt │ │ ├── dm816x-phy.txt │ │ ├── hix5hd2-phy.txt │ │ ├── keystone-usb-phy.txt │ │ ├── meson-gxl-usb2-phy.txt │ │ ├── meson8b-usb2-phy.txt │ │ ├── mxs-usb-phy.txt │ │ ├── nvidia,tegra124-xusb-padctl.txt │ │ ├── nvidia,tegra20-usb-phy.txt │ │ ├── phy-ath79-usb.txt │ │ ├── phy-bindings.txt │ │ ├── phy-cpcap-usb.txt │ │ ├── phy-da8xx-usb.txt │ │ ├── phy-hi6220-usb.txt │ │ ├── phy-lantiq-rcu-usb2.txt │ │ ├── phy-lpc18xx-usb-otg.txt │ │ ├── phy-miphy28lp.txt │ │ ├── phy-miphy365x.txt │ │ ├── phy-mtk-tphy.txt │ │ ├── phy-mvebu-comphy.txt │ │ ├── phy-mvebu.txt │ │ ├── phy-rockchip-inno-usb2.txt │ │ ├── phy-rockchip-typec.txt │ │ ├── phy-stih407-usb.txt │ │ ├── phy-stih41x-usb.txt │ │ ├── pistachio-usb-phy.txt │ │ ├── pxa1928-usb-phy.txt │ │ ├── qcom,usb-8x16-phy.txt │ │ ├── qcom,usb-hs-phy.txt │ │ ├── qcom,usb-hsic-phy.txt │ │ ├── qcom-apq8064-sata-phy.txt │ │ ├── qcom-dwc3-usb-phy.txt │ │ ├── qcom-ipq806x-sata-phy.txt │ │ ├── qcom-qmp-phy.txt │ │ ├── qcom-qusb2-phy.txt │ │ ├── ralink-usb-phy.txt │ │ ├── rcar-gen2-phy.txt │ │ ├── rcar-gen3-phy-usb2.txt │ │ ├── rcar-gen3-phy-usb3.txt │ │ ├── rockchip-dp-phy.txt │ │ ├── rockchip-emmc-phy.txt │ │ ├── rockchip-pcie-phy.txt │ │ ├── rockchip-usb-phy.txt │ │ ├── samsung-phy.txt │ │ ├── st-spear-miphy.txt │ │ ├── sun4i-usb-phy.txt │ │ ├── sun9i-usb-phy.txt │ │ └── ti-phy.txt │ ├── pinctrl │ │ ├── abilis,tb10x-iomux.txt │ │ ├── allwinner,sunxi-pinctrl.txt │ │ ├── atmel,at91-pinctrl.txt │ │ ├── atmel,at91-pio4-pinctrl.txt │ │ ├── axis,artpec6-pinctrl.txt │ │ ├── berlin,pinctrl.txt │ │ ├── brcm,bcm11351-pinctrl.txt │ │ ├── brcm,bcm2835-gpio.txt │ │ ├── brcm,cygnus-pinmux.txt │ │ ├── brcm,iproc-gpio.txt │ │ ├── brcm,ns2-pinmux.txt │ │ ├── brcm,nsp-gpio.txt │ │ ├── brcm,nsp-pinmux.txt │ │ ├── cnxt,cx92755-pinctrl.txt │ │ ├── cortina,gemini-pinctrl.txt │ │ ├── fsl,imx-pinctrl.txt │ │ ├── fsl,imx25-pinctrl.txt │ │ ├── fsl,imx27-pinctrl.txt │ │ ├── fsl,imx35-pinctrl.txt │ │ ├── fsl,imx51-pinctrl.txt │ │ ├── fsl,imx53-pinctrl.txt │ │ ├── fsl,imx6dl-pinctrl.txt │ │ ├── fsl,imx6q-pinctrl.txt │ │ ├── fsl,imx6sl-pinctrl.txt │ │ ├── fsl,imx6sx-pinctrl.txt │ │ ├── fsl,imx6ul-pinctrl.txt │ │ ├── fsl,imx7d-pinctrl.txt │ │ ├── fsl,imx7ulp-pinctrl.txt │ │ ├── fsl,mxs-pinctrl.txt │ │ ├── fsl,vf610-pinctrl.txt │ │ ├── img,pistachio-pinctrl.txt │ │ ├── img,tz1090-pdc-pinctrl.txt │ │ ├── img,tz1090-pinctrl.txt │ │ ├── ingenic,pinctrl.txt │ │ ├── lantiq,pinctrl-falcon.txt │ │ ├── lantiq,pinctrl-xway.txt │ │ ├── marvell,armada-370-pinctrl.txt │ │ ├── marvell,armada-375-pinctrl.txt │ │ ├── marvell,armada-37xx-pinctrl.txt │ │ ├── marvell,armada-38x-pinctrl.txt │ │ ├── marvell,armada-39x-pinctrl.txt │ │ ├── marvell,armada-98dx3236-pinctrl.txt │ │ ├── marvell,armada-xp-pinctrl.txt │ │ ├── marvell,dove-pinctrl.txt │ │ ├── marvell,kirkwood-pinctrl.txt │ │ ├── marvell,mvebu-pinctrl.txt │ │ ├── marvell,orion-pinctrl.txt │ │ ├── meson,pinctrl.txt │ │ ├── microchip,pic32-pinctrl.txt │ │ ├── mscc,ocelot-pinctrl.txt │ │ ├── nvidia,tegra114-pinmux.txt │ │ ├── nvidia,tegra124-dpaux-padctl.txt │ │ ├── nvidia,tegra124-pinmux.txt │ │ ├── nvidia,tegra124-xusb-padctl.txt │ │ ├── nvidia,tegra20-pinmux.txt │ │ ├── nvidia,tegra210-pinmux.txt │ │ ├── nvidia,tegra30-pinmux.txt │ │ ├── nxp,lpc1850-scu.txt │ │ ├── oxnas,pinctrl.txt │ │ ├── pinctrl-aspeed.txt │ │ ├── pinctrl-atlas7.txt │ │ ├── pinctrl-bindings.txt │ │ ├── pinctrl-max77620.txt │ │ ├── pinctrl-mcp23s08.txt │ │ ├── pinctrl-mt65xx.txt │ │ ├── pinctrl-mt7622.txt │ │ ├── pinctrl-palmas.txt │ │ ├── pinctrl-rk805.txt │ │ ├── pinctrl-single.txt │ │ ├── pinctrl-sirf.txt │ │ ├── pinctrl-st.txt │ │ ├── pinctrl-sx150x.txt │ │ ├── pinctrl-vt8500.txt │ │ ├── pinctrl-zx.txt │ │ ├── pinctrl_spear.txt │ │ ├── qcom,apq8064-pinctrl.txt │ │ ├── qcom,apq8084-pinctrl.txt │ │ ├── qcom,ipq4019-pinctrl.txt │ │ ├── qcom,ipq8064-pinctrl.txt │ │ ├── qcom,ipq8074-pinctrl.txt │ │ ├── qcom,mdm9615-pinctrl.txt │ │ ├── qcom,msm8660-pinctrl.txt │ │ ├── qcom,msm8916-pinctrl.txt │ │ ├── qcom,msm8960-pinctrl.txt │ │ ├── qcom,msm8974-pinctrl.txt │ │ ├── qcom,msm8994-pinctrl.txt │ │ ├── qcom,msm8996-pinctrl.txt │ │ ├── qcom,msm8998-pinctrl.txt │ │ ├── qcom,pmic-gpio.txt │ │ ├── qcom,pmic-mpp.txt │ │ ├── renesas,pfc-pinctrl.txt │ │ ├── renesas,rza1-pinctrl.txt │ │ ├── rockchip,pinctrl.txt │ │ ├── samsung-pinctrl.txt │ │ ├── socionext,uniphier-pinctrl.txt │ │ ├── sprd,pinctrl.txt │ │ ├── sprd,sc9860-pinctrl.txt │ │ ├── st,stm32-pinctrl.txt │ │ ├── ste,abx500.txt │ │ ├── ste,nomadik.txt │ │ ├── ti,da850-pupd.txt │ │ ├── ti,iodelay.txt │ │ ├── ti,omap-pinctrl.txt │ │ └── xlnx,zynq-pinctrl.txt │ ├── power │ │ ├── actions,owl-sps.txt │ │ ├── amlogic,meson-gx-pwrc.txt │ │ ├── domain-idle-state.txt │ │ ├── fsl,imx-gpc.txt │ │ ├── fsl,imx-gpcv2.txt │ │ ├── mti,mips-cpc.txt │ │ ├── pd-samsung.txt │ │ ├── power-controller.txt │ │ ├── power_domain.txt │ │ ├── renesas,apmu.txt │ │ ├── renesas,rcar-sysc.txt │ │ ├── renesas,sysc-rmobile.txt │ │ ├── reset │ │ │ ├── axxia-reset.txt │ │ │ ├── brcm,bcm21664-resetmgr.txt │ │ │ ├── gemini-poweroff.txt │ │ │ ├── gpio-poweroff.txt │ │ │ ├── gpio-restart.txt │ │ │ ├── keystone-reset.txt │ │ │ ├── ltc2952-poweroff.txt │ │ │ ├── msm-poweroff.txt │ │ │ ├── qnap-poweroff.txt │ │ │ ├── reboot-mode.txt │ │ │ ├── restart-poweroff.txt │ │ │ ├── st-reset.txt │ │ │ ├── syscon-poweroff.txt │ │ │ ├── syscon-reboot-mode.txt │ │ │ └── syscon-reboot.txt │ │ ├── rockchip-io-domain.txt │ │ ├── supply │ │ │ ├── ab8500 │ │ │ │ ├── btemp.txt │ │ │ │ ├── chargalg.txt │ │ │ │ ├── charger.txt │ │ │ │ └── fg.txt │ │ │ ├── act8945a-charger.txt │ │ │ ├── axp20x_ac_power.txt │ │ │ ├── axp20x_battery.txt │ │ │ ├── axp20x_usb_power.txt │ │ │ ├── battery.txt │ │ │ ├── bq2415x.txt │ │ │ ├── bq24190.txt │ │ │ ├── bq24257.txt │ │ │ ├── bq25890.txt │ │ │ ├── bq27xxx.txt │ │ │ ├── charger-manager.txt │ │ │ ├── cpcap-battery.txt │ │ │ ├── cpcap-charger.txt │ │ │ ├── da9150-charger.txt │ │ │ ├── da9150-fg.txt │ │ │ ├── gpio-charger.txt │ │ │ ├── isp1704.txt │ │ │ ├── lego_ev3_battery.txt │ │ │ ├── lp8727_charger.txt │ │ │ ├── ltc2941.txt │ │ │ ├── ltc3651-charger.txt │ │ │ ├── max17042_battery.txt │ │ │ ├── max8903-charger.txt │ │ │ ├── max8925_battery.txt │ │ │ ├── maxim,max14656.txt │ │ │ ├── olpc_battery.txt │ │ │ ├── power_supply.txt │ │ │ ├── qcom,coincell-charger.txt │ │ │ ├── qcom_smbb.txt │ │ │ ├── rt9455_charger.txt │ │ │ ├── rx51-battery.txt │ │ │ ├── sbs,sbs-manager.txt │ │ │ ├── sbs_sbs-battery.txt │ │ │ ├── sbs_sbs-charger.txt │ │ │ ├── ti,bq24735.txt │ │ │ ├── tps65090.txt │ │ │ ├── tps65217_charger.txt │ │ │ └── twl-charger.txt │ │ ├── ti-smartreflex.txt │ │ └── wakeup-source.txt │ ├── powerpc │ │ ├── 4xx │ │ │ ├── akebono.txt │ │ │ ├── cpm.txt │ │ │ ├── emac.txt │ │ │ ├── hsta.txt │ │ │ ├── ndfc.txt │ │ │ ├── ppc440spe-adma.txt │ │ │ └── reboot.txt │ │ ├── fsl │ │ │ ├── cache_sram.txt │ │ │ ├── ccf.txt │ │ │ ├── cpus.txt │ │ │ ├── dcsr.txt │ │ │ ├── diu.txt │ │ │ ├── dma.txt │ │ │ ├── ecm.txt │ │ │ ├── gtm.txt │ │ │ ├── interlaken-lac.txt │ │ │ ├── l2cache.txt │ │ │ ├── lbc.txt │ │ │ ├── mcm.txt │ │ │ ├── mcu-mpc8349emitx.txt │ │ │ ├── mpc5121-psc.txt │ │ │ ├── mpc512x_lpbfifo.txt │ │ │ ├── mpc5200.txt │ │ │ ├── mpic-msgr.txt │ │ │ ├── mpic-timer.txt │ │ │ ├── mpic.txt │ │ │ ├── msi-pic.txt │ │ │ ├── pamu.txt │ │ │ ├── pmc.txt │ │ │ ├── raideng.txt │ │ │ ├── scfg.txt │ │ │ ├── srio-rmu.txt │ │ │ └── srio.txt │ │ ├── ibm,powerpc-cpu-features.txt │ │ ├── ibm,vas.txt │ │ ├── nintendo │ │ │ ├── gamecube.txt │ │ │ └── wii.txt │ │ └── opal │ │ │ ├── oppanel-opal.txt │ │ │ ├── power-mgt.txt │ │ │ └── sensor-groups.txt │ ├── pps │ │ └── pps-gpio.txt │ ├── property-units.txt │ ├── ptp │ │ └── brcm,ptp-dte.txt │ ├── pwm │ │ ├── atmel-hlcdc-pwm.txt │ │ ├── atmel-pwm.txt │ │ ├── atmel-tcb-pwm.txt │ │ ├── brcm,bcm7038-pwm.txt │ │ ├── brcm,iproc-pwm.txt │ │ ├── brcm,kona-pwm.txt │ │ ├── cirrus,clps711x-pwm.txt │ │ ├── google,cros-ec-pwm.txt │ │ ├── img-pwm.txt │ │ ├── imx-pwm.txt │ │ ├── lpc1850-sct-pwm.txt │ │ ├── lpc32xx-pwm.txt │ │ ├── mxs-pwm.txt │ │ ├── nvidia,tegra20-pwm.txt │ │ ├── nxp,pca9685-pwm.txt │ │ ├── pwm-bcm2835.txt │ │ ├── pwm-berlin.txt │ │ ├── pwm-fsl-ftm.txt │ │ ├── pwm-hibvt.txt │ │ ├── pwm-lp3943.txt │ │ ├── pwm-mediatek.txt │ │ ├── pwm-meson.txt │ │ ├── pwm-mtk-disp.txt │ │ ├── pwm-omap-dmtimer.txt │ │ ├── pwm-rockchip.txt │ │ ├── pwm-samsung.txt │ │ ├── pwm-st.txt │ │ ├── pwm-stm32-lp.txt │ │ ├── pwm-stm32.txt │ │ ├── pwm-sun4i.txt │ │ ├── pwm-tiecap.txt │ │ ├── pwm-tiehrpwm.txt │ │ ├── pwm-tipwmss.txt │ │ ├── pwm-zx.txt │ │ ├── pwm.txt │ │ ├── pxa-pwm.txt │ │ ├── renesas,pwm-rcar.txt │ │ ├── renesas,tpu-pwm.txt │ │ ├── spear-pwm.txt │ │ ├── st,stmpe-pwm.txt │ │ ├── ti,twl-pwm.txt │ │ ├── ti,twl-pwmled.txt │ │ └── vt8500-pwm.txt │ ├── regmap │ │ └── regmap.txt │ ├── regulator │ │ ├── 88pm800.txt │ │ ├── 88pm860x.txt │ │ ├── act8865-regulator.txt │ │ ├── act8945a-regulator.txt │ │ ├── anatop-regulator.txt │ │ ├── arizona-regulator.txt │ │ ├── as3722-regulator.txt │ │ ├── cpcap-regulator.txt │ │ ├── da9210.txt │ │ ├── da9211.txt │ │ ├── fan53555.txt │ │ ├── fixed-regulator.txt │ │ ├── gpio-regulator.txt │ │ ├── hisilicon,hi655x-regulator.txt │ │ ├── isl9305.txt │ │ ├── lm363x-regulator.txt │ │ ├── lp872x.txt │ │ ├── ltc3589.txt │ │ ├── ltc3676.txt │ │ ├── max1586-regulator.txt │ │ ├── max77686.txt │ │ ├── max77802.txt │ │ ├── max8660.txt │ │ ├── max8907.txt │ │ ├── max8925-regulator.txt │ │ ├── max8952.txt │ │ ├── max8973-regulator.txt │ │ ├── max8997-regulator.txt │ │ ├── mt6311-regulator.txt │ │ ├── mt6323-regulator.txt │ │ ├── mt6380-regulator.txt │ │ ├── mt6397-regulator.txt │ │ ├── palmas-pmic.txt │ │ ├── pbias-regulator.txt │ │ ├── pfuze100.txt │ │ ├── pv88060.txt │ │ ├── pv88080.txt │ │ ├── pv88090.txt │ │ ├── pwm-regulator.txt │ │ ├── qcom,smd-rpm-regulator.txt │ │ ├── qcom,spmi-regulator.txt │ │ ├── regulator-max77620.txt │ │ ├── regulator.txt │ │ ├── samsung,s2mpa01.txt │ │ ├── samsung,s2mps11.txt │ │ ├── samsung,s5m8767.txt │ │ ├── sky81452-regulator.txt │ │ ├── sprd,sc2731-regulator.txt │ │ ├── st,stm32-vrefbuf.txt │ │ ├── ti-abb-regulator.txt │ │ ├── tps51632-regulator.txt │ │ ├── tps62360-regulator.txt │ │ ├── tps65023.txt │ │ ├── tps65090.txt │ │ ├── tps65132-regulator.txt │ │ ├── tps65217.txt │ │ ├── tps65218.txt │ │ ├── tps6586x.txt │ │ ├── twl-regulator.txt │ │ ├── vctrl.txt │ │ └── vexpress.txt │ ├── remoteproc │ │ ├── imx-rproc.txt │ │ ├── qcom,adsp.txt │ │ ├── qcom,q6v5.txt │ │ ├── qcom,wcnss-pil.txt │ │ ├── st-rproc.txt │ │ ├── ti,davinci-rproc.txt │ │ ├── ti,keystone-rproc.txt │ │ └── wkup_m3_rproc.txt │ ├── reserved-memory │ │ ├── qcom,rmtfs-mem.txt │ │ ├── ramoops.txt │ │ └── reserved-memory.txt │ ├── reset │ │ ├── allwinner,sunxi-clock-reset.txt │ │ ├── amlogic,meson-reset.txt │ │ ├── ath79-reset.txt │ │ ├── berlin,reset.txt │ │ ├── brcm,bcm63138-pmb.txt │ │ ├── fsl,imx-src.txt │ │ ├── fsl,imx7-src.txt │ │ ├── hisilicon,hi3660-reset.txt │ │ ├── hisilicon,hi6220-reset.txt │ │ ├── img,pistachio-reset.txt │ │ ├── lantiq,reset.txt │ │ ├── nxp,lpc1850-rgu.txt │ │ ├── oxnas,reset.txt │ │ ├── renesas,rst.txt │ │ ├── reset.txt │ │ ├── sirf,rstc.txt │ │ ├── snps,axs10x-reset.txt │ │ ├── snps,hsdk-reset.txt │ │ ├── socfpga-reset.txt │ │ ├── st,sti-picophyreset.txt │ │ ├── st,sti-powerdown.txt │ │ ├── st,sti-softreset.txt │ │ ├── st,stm32-rcc.txt │ │ ├── ti,sci-reset.txt │ │ ├── ti-syscon-reset.txt │ │ ├── uniphier-reset.txt │ │ ├── zte,zx2967-reset.txt │ │ └── zynq-reset.txt │ ├── resource-names.txt │ ├── riscv │ │ └── cpus.txt │ ├── rng │ │ ├── amlogic,meson-rng.txt │ │ ├── apm,rng.txt │ │ ├── atmel-trng.txt │ │ ├── brcm,bcm2835.txt │ │ ├── brcm,iproc-rng200.txt │ │ ├── hisi-rng.txt │ │ ├── imx-rngc.txt │ │ ├── microchip,pic32-rng.txt │ │ ├── mtk-rng.txt │ │ ├── omap_rng.txt │ │ ├── qcom,prng.txt │ │ ├── st,rng.txt │ │ ├── st,stm32-rng.txt │ │ └── timeriomem_rng.txt │ ├── rtc │ │ ├── abracon,abx80x.txt │ │ ├── alphascale,asm9260-rtc.txt │ │ ├── armada-380-rtc.txt │ │ ├── atmel,at91rm9200-rtc.txt │ │ ├── atmel,at91sam9-rtc.txt │ │ ├── brcm,brcmstb-waketimer.txt │ │ ├── cpcap-rtc.txt │ │ ├── dallas,ds1390.txt │ │ ├── digicolor-rtc.txt │ │ ├── dw-apb.txt │ │ ├── epson,rtc7301.txt │ │ ├── epson,rx6110.txt │ │ ├── epson,rx8900.txt │ │ ├── faraday,ftrtc010.txt │ │ ├── google,goldfish-rtc.txt │ │ ├── haoyu,hym8563.txt │ │ ├── imxdi-rtc.txt │ │ ├── ingenic,jz4740-rtc.txt │ │ ├── isil,isl12057.txt │ │ ├── lpc32xx-rtc.txt │ │ ├── maxim,ds1742.txt │ │ ├── maxim,ds3231.txt │ │ ├── maxim,mcp795.txt │ │ ├── maxim-ds1302.txt │ │ ├── microchip,pic32-rtc.txt │ │ ├── moxa,moxart-rtc.txt │ │ ├── nvidia,tegra20-rtc.txt │ │ ├── nxp,lpc1788-rtc.txt │ │ ├── nxp,rtc-2123.txt │ │ ├── olpc-xo1-rtc.txt │ │ ├── orion-rtc.txt │ │ ├── pcf85363.txt │ │ ├── pcf8563.txt │ │ ├── pxa-rtc.txt │ │ ├── realtek,rtd119x.txt │ │ ├── rtc-cmos.txt │ │ ├── rtc-ds1307.txt │ │ ├── rtc-m41t80.txt │ │ ├── rtc-mt7622.txt │ │ ├── rtc-mxc.txt │ │ ├── rtc-mxc_v2.txt │ │ ├── rtc-omap.txt │ │ ├── rtc-opal.txt │ │ ├── rtc-palmas.txt │ │ ├── rtc-sh.txt │ │ ├── rtc-st-lpc.txt │ │ ├── s3c-rtc.txt │ │ ├── sa1100-rtc.txt │ │ ├── sirf,prima2-sysrtc.txt │ │ ├── snvs-rtc.txt │ │ ├── spear-rtc.txt │ │ ├── sprd,sc27xx-rtc.txt │ │ ├── st,stm32-rtc.txt │ │ ├── stericsson,coh901331.txt │ │ ├── stmp3xxx-rtc.txt │ │ ├── sun6i-rtc.txt │ │ ├── sunxi-rtc.txt │ │ ├── ti,bq32k.txt │ │ ├── twl-rtc.txt │ │ ├── via,vt8500-rtc.txt │ │ ├── xgene-rtc.txt │ │ └── xlnx-rtc.txt │ ├── scsi │ │ └── hisilicon-sas.txt │ ├── security │ │ └── tpm │ │ │ ├── ibmvtpm.txt │ │ │ ├── st33zp24-i2c.txt │ │ │ ├── st33zp24-spi.txt │ │ │ ├── tpm-i2c.txt │ │ │ ├── tpm_tis_mmio.txt │ │ │ └── tpm_tis_spi.txt │ ├── serial │ │ ├── 8250.txt │ │ ├── actions,owl-uart.txt │ │ ├── altera_jtaguart.txt │ │ ├── altera_uart.txt │ │ ├── amlogic,meson-uart.txt │ │ ├── arc-uart.txt │ │ ├── arm,mps2-uart.txt │ │ ├── arm_sbsa_uart.txt │ │ ├── atmel-usart.txt │ │ ├── axis,etraxfs-uart.txt │ │ ├── brcm,bcm2835-aux-uart.txt │ │ ├── brcm,bcm6345-uart.txt │ │ ├── cavium-uart.txt │ │ ├── cdns,uart.txt │ │ ├── cirrus,clps711x-uart.txt │ │ ├── digicolor-usart.txt │ │ ├── efm32-uart.txt │ │ ├── fsl-imx-uart.txt │ │ ├── fsl-lpuart.txt │ │ ├── fsl-mxs-auart.txt │ │ ├── ingenic,uart.txt │ │ ├── lantiq_asc.txt │ │ ├── maxim,max310x.txt │ │ ├── microchip,pic32-uart.txt │ │ ├── mrvl,pxa-ssp.txt │ │ ├── mrvl-serial.txt │ │ ├── mtk-uart.txt │ │ ├── mvebu-uart.txt │ │ ├── nvidia,tegra20-hsuart.txt │ │ ├── nxp,lpc1850-uart.txt │ │ ├── nxp,sc16is7xx.txt │ │ ├── nxp-lpc32xx-hsuart.txt │ │ ├── omap_serial.txt │ │ ├── pl011.txt │ │ ├── qca,ar9330-uart.txt │ │ ├── qcom,msm-uart.txt │ │ ├── qcom,msm-uartdm.txt │ │ ├── renesas,sci-serial.txt │ │ ├── rs485.txt │ │ ├── samsung_uart.txt │ │ ├── serial.txt │ │ ├── sirf-uart.txt │ │ ├── slave-device.txt │ │ ├── snps-dw-apb-uart.txt │ │ ├── sprd-uart.txt │ │ ├── st,stm32-usart.txt │ │ ├── st-asc.txt │ │ ├── uniphier-uart.txt │ │ └── vt8500-uart.txt │ ├── serio │ │ ├── allwinner,sun4i-ps2.txt │ │ ├── altera_ps2.txt │ │ ├── olpc,ap-sp.txt │ │ ├── ps2-gpio.txt │ │ └── snps-arc_ps2.txt │ ├── siox │ │ └── eckelmann,siox-gpio.txt │ ├── slimbus │ │ ├── bus.txt │ │ └── slim-qcom-ctrl.txt │ ├── soc │ │ ├── bcm │ │ │ └── raspberrypi,bcm2835-power.txt │ │ ├── dove │ │ │ └── pmu.txt │ │ ├── fsl │ │ │ ├── bman-portals.txt │ │ │ ├── bman.txt │ │ │ ├── cpm_qe │ │ │ │ ├── cpm.txt │ │ │ │ ├── cpm │ │ │ │ │ ├── brg.txt │ │ │ │ │ ├── i2c.txt │ │ │ │ │ ├── pic.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── gpio.txt │ │ │ │ ├── network.txt │ │ │ │ ├── qe.txt │ │ │ │ ├── qe │ │ │ │ │ ├── firmware.txt │ │ │ │ │ ├── par_io.txt │ │ │ │ │ ├── pincfg.txt │ │ │ │ │ ├── ucc.txt │ │ │ │ │ └── usb.txt │ │ │ │ ├── serial.txt │ │ │ │ └── uqe_serial.txt │ │ │ ├── guts.txt │ │ │ ├── qman-portals.txt │ │ │ ├── qman.txt │ │ │ └── rcpm.txt │ │ ├── mediatek │ │ │ ├── pwrap.txt │ │ │ └── scpsys.txt │ │ ├── qcom │ │ │ ├── qcom,glink.txt │ │ │ ├── qcom,gsbi.txt │ │ │ ├── qcom,smd-rpm.txt │ │ │ ├── qcom,smd.txt │ │ │ ├── qcom,smem.txt │ │ │ ├── qcom,smp2p.txt │ │ │ ├── qcom,smsm.txt │ │ │ └── qcom,wcnss.txt │ │ ├── rockchip │ │ │ ├── grf.txt │ │ │ └── power_domain.txt │ │ ├── ti │ │ │ ├── keystone-navigator-dma.txt │ │ │ ├── keystone-navigator-qmss.txt │ │ │ ├── sci-pm-domain.txt │ │ │ └── wkup_m3_ipc.txt │ │ ├── xilinx │ │ │ └── xlnx,vcu.txt │ │ └── zte │ │ │ └── pd-2967xx.txt │ ├── sound │ │ ├── adi,adau1701.txt │ │ ├── adi,adau17x1.txt │ │ ├── adi,adau7002.txt │ │ ├── adi,axi-i2s.txt │ │ ├── adi,axi-spdif-tx.txt │ │ ├── adi,ssm2602.txt │ │ ├── ak4104.txt │ │ ├── ak4554.txt │ │ ├── ak4613.txt │ │ ├── ak4642.txt │ │ ├── ak5386.txt │ │ ├── alc5623.txt │ │ ├── alc5632.txt │ │ ├── armada-370db-audio.txt │ │ ├── arndale.txt │ │ ├── atmel-at91sam9g20ek-wm8731-audio.txt │ │ ├── atmel-classd.txt │ │ ├── atmel-pdmic.txt │ │ ├── atmel-sam9x5-wm8731-audio.txt │ │ ├── atmel-wm8904.txt │ │ ├── atmel_ac97c.txt │ │ ├── audio-graph-card.txt │ │ ├── audio-graph-scu-card.txt │ │ ├── axentia,tse850-pcm5142.txt │ │ ├── brcm,bcm2835-i2s.txt │ │ ├── brcm,cygnus-audio.txt │ │ ├── bt-sco.txt │ │ ├── cdns,xtfpga-i2s.txt │ │ ├── cs35l32.txt │ │ ├── cs35l33.txt │ │ ├── cs35l34.txt │ │ ├── cs35l35.txt │ │ ├── cs4265.txt │ │ ├── cs4270.txt │ │ ├── cs4271.txt │ │ ├── cs42l42.txt │ │ ├── cs42l52.txt │ │ ├── cs42l56.txt │ │ ├── cs42l73.txt │ │ ├── cs42xx8.txt │ │ ├── cs43130.txt │ │ ├── cs4349.txt │ │ ├── cs53l30.txt │ │ ├── da7213.txt │ │ ├── da7218.txt │ │ ├── da7219.txt │ │ ├── da9055.txt │ │ ├── davinci-evm-audio.txt │ │ ├── davinci-mcasp-audio.txt │ │ ├── davinci-mcbsp.txt │ │ ├── designware-i2s.txt │ │ ├── dioo,dio2125.txt │ │ ├── dmic.txt │ │ ├── es8328.txt │ │ ├── eukrea-tlv320.txt │ │ ├── everest,es7134.txt │ │ ├── fsl,asrc.txt │ │ ├── fsl,esai.txt │ │ ├── fsl,spdif.txt │ │ ├── fsl,ssi.txt │ │ ├── fsl-asoc-card.txt │ │ ├── fsl-sai.txt │ │ ├── gtm601.txt │ │ ├── hdmi.txt │ │ ├── hisilicon,hi6210-i2s.txt │ │ ├── ics43432.txt │ │ ├── img,i2s-in.txt │ │ ├── img,i2s-out.txt │ │ ├── img,parallel-out.txt │ │ ├── img,pistachio-internal-dac.txt │ │ ├── img,spdif-in.txt │ │ ├── img,spdif-out.txt │ │ ├── imx-audio-es8328.txt │ │ ├── imx-audio-sgtl5000.txt │ │ ├── imx-audio-spdif.txt │ │ ├── imx-audio-wm8962.txt │ │ ├── imx-audmux.txt │ │ ├── ingenic,jz4740-i2s.txt │ │ ├── inno-rk3036.txt │ │ ├── max98090.txt │ │ ├── max98095.txt │ │ ├── max98357a.txt │ │ ├── max98371.txt │ │ ├── max98373.txt │ │ ├── max98504.txt │ │ ├── max9860.txt │ │ ├── max9867.txt │ │ ├── max9892x.txt │ │ ├── mrvl,pxa-ssp.txt │ │ ├── mrvl,pxa2xx-pcm.txt │ │ ├── mt2701-afe-pcm.txt │ │ ├── mt2701-cs42448.txt │ │ ├── mt2701-wm8960.txt │ │ ├── mt8173-max98090.txt │ │ ├── mt8173-rt5650-rt5514.txt │ │ ├── mt8173-rt5650-rt5676.txt │ │ ├── mt8173-rt5650.txt │ │ ├── mtk-afe-pcm.txt │ │ ├── mvebu-audio.txt │ │ ├── mxs-audio-sgtl5000.txt │ │ ├── mxs-saif.txt │ │ ├── nau8540.txt │ │ ├── nau8810.txt │ │ ├── nau8824.txt │ │ ├── nau8825.txt │ │ ├── nokia,rx51.txt │ │ ├── nvidia,tegra-audio-alc5632.txt │ │ ├── nvidia,tegra-audio-max98090.txt │ │ ├── nvidia,tegra-audio-rt5640.txt │ │ ├── nvidia,tegra-audio-rt5677.txt │ │ ├── nvidia,tegra-audio-sgtl5000.txt │ │ ├── nvidia,tegra-audio-trimslice.txt │ │ ├── nvidia,tegra-audio-wm8753.txt │ │ ├── nvidia,tegra-audio-wm8903.txt │ │ ├── nvidia,tegra-audio-wm9712.txt │ │ ├── nvidia,tegra20-ac97.txt │ │ ├── nvidia,tegra20-das.txt │ │ ├── nvidia,tegra20-i2s.txt │ │ ├── nvidia,tegra30-ahub.txt │ │ ├── nvidia,tegra30-hda.txt │ │ ├── nvidia,tegra30-i2s.txt │ │ ├── omap-abe-twl6040.txt │ │ ├── omap-dmic.txt │ │ ├── omap-mcbsp.txt │ │ ├── omap-mcpdm.txt │ │ ├── omap-twl4030.txt │ │ ├── pcm179x.txt │ │ ├── pcm186x.txt │ │ ├── pcm5102a.txt │ │ ├── pcm512x.txt │ │ ├── qcom,apq8016-sbc.txt │ │ ├── qcom,lpass-cpu.txt │ │ ├── qcom,msm8916-wcd-analog.txt │ │ ├── qcom,msm8916-wcd-digital.txt │ │ ├── renesas,fsi.txt │ │ ├── renesas,rsnd.txt │ │ ├── rockchip,pdm.txt │ │ ├── rockchip,rk3288-hdmi-analog.txt │ │ ├── rockchip,rk3399-gru-sound.txt │ │ ├── rockchip-i2s.txt │ │ ├── rockchip-max98090.txt │ │ ├── rockchip-rt5645.txt │ │ ├── rockchip-spdif.txt │ │ ├── rt274.txt │ │ ├── rt5514.txt │ │ ├── rt5616.txt │ │ ├── rt5631.txt │ │ ├── rt5640.txt │ │ ├── rt5645.txt │ │ ├── rt5651.txt │ │ ├── rt5659.txt │ │ ├── rt5660.txt │ │ ├── rt5663.txt │ │ ├── rt5665.txt │ │ ├── rt5677.txt │ │ ├── samsung,odroid.txt │ │ ├── samsung,smdk-wm8994.txt │ │ ├── samsung,tm2-audio.txt │ │ ├── samsung-i2s.txt │ │ ├── sgtl5000.txt │ │ ├── simple-card.txt │ │ ├── simple-scu-card.txt │ │ ├── sirf-audio-codec.txt │ │ ├── sirf-audio-port.txt │ │ ├── sirf-audio.txt │ │ ├── sirf-usp.txt │ │ ├── snow.txt │ │ ├── soc-ac97link.txt │ │ ├── spdif-receiver.txt │ │ ├── spdif-transmitter.txt │ │ ├── ssm2518.txt │ │ ├── ssm4567.txt │ │ ├── st,sta32x.txt │ │ ├── st,sta350.txt │ │ ├── st,sti-asoc-card.txt │ │ ├── st,stm32-adfsdm.txt │ │ ├── st,stm32-i2s.txt │ │ ├── st,stm32-sai.txt │ │ ├── st,stm32-spdifrx.txt │ │ ├── storm.txt │ │ ├── sun4i-codec.txt │ │ ├── sun4i-i2s.txt │ │ ├── sun8i-a33-codec.txt │ │ ├── sun8i-codec-analog.txt │ │ ├── sunxi,sun4i-spdif.txt │ │ ├── tas2552.txt │ │ ├── tas571x.txt │ │ ├── tas5720.txt │ │ ├── tdm-slot.txt │ │ ├── tfa9879.txt │ │ ├── ti,ads117x.txt │ │ ├── ti,pcm1681.txt │ │ ├── ti,pcm3168a.txt │ │ ├── ti,tas5086.txt │ │ ├── ti,tas6424.txt │ │ ├── tlv320aic31xx.txt │ │ ├── tlv320aic32x4.txt │ │ ├── tlv320aic3x.txt │ │ ├── tpa6130a2.txt │ │ ├── ts3a227e.txt │ │ ├── tscs42xx.txt │ │ ├── uniphier,evea.txt │ │ ├── ux500-mop500.txt │ │ ├── ux500-msp.txt │ │ ├── widgets.txt │ │ ├── wlf,arizona.txt │ │ ├── wlf,wm8974.txt │ │ ├── wm8510.txt │ │ ├── wm8523.txt │ │ ├── wm8524.txt │ │ ├── wm8580.txt │ │ ├── wm8711.txt │ │ ├── wm8728.txt │ │ ├── wm8731.txt │ │ ├── wm8737.txt │ │ ├── wm8741.txt │ │ ├── wm8750.txt │ │ ├── wm8753.txt │ │ ├── wm8770.txt │ │ ├── wm8776.txt │ │ ├── wm8804.txt │ │ ├── wm8903.txt │ │ ├── wm8904.txt │ │ ├── wm8960.txt │ │ ├── wm8962.txt │ │ ├── wm8994.txt │ │ ├── zte,tdm.txt │ │ ├── zte,zx-aud96p22.txt │ │ ├── zte,zx-i2s.txt │ │ └── zte,zx-spdif.txt │ ├── sparc_sun_oracle_rng.txt │ ├── spi │ │ ├── adi,axi-spi-engine.txt │ │ ├── brcm,bcm2835-aux-spi.txt │ │ ├── brcm,bcm2835-spi.txt │ │ ├── brcm,spi-bcm-qspi.txt │ │ ├── efm32-spi.txt │ │ ├── fsl-imx-cspi.txt │ │ ├── fsl-spi.txt │ │ ├── icpdas-lp8841-spi-rtc.txt │ │ ├── jcore,spi.txt │ │ ├── microchip,spi-pic32.txt │ │ ├── mxs-spi.txt │ │ ├── nvidia,tegra114-spi.txt │ │ ├── nvidia,tegra20-sflash.txt │ │ ├── nvidia,tegra20-slink.txt │ │ ├── omap-spi.txt │ │ ├── qcom,spi-qup.txt │ │ ├── sh-hspi.txt │ │ ├── sh-msiof.txt │ │ ├── snps,dw-apb-ssi.txt │ │ ├── spi-armada-3700.txt │ │ ├── spi-ath79.txt │ │ ├── spi-bcm63xx-hsspi.txt │ │ ├── spi-bcm63xx.txt │ │ ├── spi-bus.txt │ │ ├── spi-cadence.txt │ │ ├── spi-clps711x.txt │ │ ├── spi-davinci.txt │ │ ├── spi-dw.txt │ │ ├── spi-fsl-dspi.txt │ │ ├── spi-fsl-lpspi.txt │ │ ├── spi-gpio.txt │ │ ├── spi-img-spfi.txt │ │ ├── spi-lantiq-ssc.txt │ │ ├── spi-meson.txt │ │ ├── spi-mt65xx.txt │ │ ├── spi-octeon.txt │ │ ├── spi-orion.txt │ │ ├── spi-rockchip.txt │ │ ├── spi-rspi.txt │ │ ├── spi-samsung.txt │ │ ├── spi-sc18is602.txt │ │ ├── spi-sirf.txt │ │ ├── spi-sprd-adi.txt │ │ ├── spi-st-ssc.txt │ │ ├── spi-stm32.txt │ │ ├── spi-sun4i.txt │ │ ├── spi-sun6i.txt │ │ ├── spi-xilinx.txt │ │ ├── spi-xlp.txt │ │ ├── spi-xtensa-xtfpga.txt │ │ ├── spi-zynqmp-qspi.txt │ │ ├── spi_altera.txt │ │ ├── spi_atmel.txt │ │ ├── spi_oc_tiny.txt │ │ ├── spi_pl022.txt │ │ ├── sqi-pic32.txt │ │ └── ti_qspi.txt │ ├── spmi │ │ ├── qcom,spmi-pmic-arb.txt │ │ └── spmi.txt │ ├── sram │ │ ├── renesas,smp-sram.txt │ │ ├── rockchip-pmu-sram.txt │ │ ├── rockchip-smp-sram.txt │ │ ├── samsung-sram.txt │ │ ├── sram.txt │ │ └── sunxi-sram.txt │ ├── staging │ │ └── iio │ │ │ └── adc │ │ │ ├── lpc32xx-adc.txt │ │ │ └── spear-adc.txt │ ├── submitting-patches.txt │ ├── thermal │ │ ├── armada-thermal.txt │ │ ├── brcm,avs-tmon.txt │ │ ├── brcm,bcm2835-thermal.txt │ │ ├── brcm,ns-thermal.txt │ │ ├── da9062-thermal.txt │ │ ├── db8500-thermal.txt │ │ ├── dove-thermal.txt │ │ ├── exynos-thermal.txt │ │ ├── hisilicon-thermal.txt │ │ ├── imx-thermal.txt │ │ ├── kirkwood-thermal.txt │ │ ├── max77620_thermal.txt │ │ ├── mediatek-thermal.txt │ │ ├── nvidia,tegra124-soctherm.txt │ │ ├── nvidia,tegra186-bpmp-thermal.txt │ │ ├── qcom-spmi-temp-alarm.txt │ │ ├── qcom-tsens.txt │ │ ├── qoriq-thermal.txt │ │ ├── rcar-gen3-thermal.txt │ │ ├── rcar-thermal.txt │ │ ├── rockchip-thermal.txt │ │ ├── spear-thermal.txt │ │ ├── st-thermal.txt │ │ ├── tango-thermal.txt │ │ ├── thermal-generic-adc.txt │ │ ├── thermal.txt │ │ ├── ti_soc_thermal.txt │ │ ├── uniphier-thermal.txt │ │ └── zx2967-thermal.txt │ ├── timer │ │ ├── actions,owl-timer.txt │ │ ├── allwinner,sun4i-timer.txt │ │ ├── allwinner,sun5i-a13-hstimer.txt │ │ ├── amlogic,meson6-timer.txt │ │ ├── arm,mps2-timer.txt │ │ ├── arm,sp804.txt │ │ ├── brcm,bcm2835-system-timer.txt │ │ ├── brcm,kona-timer.txt │ │ ├── cadence,ttc-timer.txt │ │ ├── cirrus,clps711x-timer.txt │ │ ├── digicolor-timer.txt │ │ ├── energymicro,efm32-timer.txt │ │ ├── ezchip,nps400-timer0.txt │ │ ├── ezchip,nps400-timer1.txt │ │ ├── faraday,fttmr010.txt │ │ ├── fsl,ftm-timer.txt │ │ ├── fsl,imxgpt.txt │ │ ├── img,pistachio-gptimer.txt │ │ ├── jcore,pit.txt │ │ ├── lsi,zevio-timer.txt │ │ ├── marvell,armada-370-xp-timer.txt │ │ ├── marvell,orion-timer.txt │ │ ├── mediatek,mtk-timer.txt │ │ ├── nvidia,tegra20-timer.txt │ │ ├── nvidia,tegra30-timer.txt │ │ ├── nxp,lpc3220-timer.txt │ │ ├── nxp,tpm-timer.txt │ │ ├── oxsemi,rps-timer.txt │ │ ├── renesas,16bit-timer.txt │ │ ├── renesas,8bit-timer.txt │ │ ├── renesas,cmt.txt │ │ ├── renesas,mtu2.txt │ │ ├── renesas,ostm.txt │ │ ├── renesas,tmu.txt │ │ ├── renesas,tpu.txt │ │ ├── rockchip,rk-timer.txt │ │ ├── samsung,exynos4210-mct.txt │ │ ├── snps,arc-timer.txt │ │ ├── snps,archs-gfrc.txt │ │ ├── snps,archs-rtc.txt │ │ ├── spreadtrum,sprd-timer.txt │ │ ├── st,stih407-lpc │ │ ├── st,stm32-timer.txt │ │ ├── stericsson-u300-apptimer.txt │ │ └── ti,keystone-timer.txt │ ├── trivial-devices.txt │ ├── ufs │ │ ├── tc-dwc-g210-pltfrm.txt │ │ ├── ufs-qcom.txt │ │ └── ufshcd-pltfrm.txt │ ├── unittest.txt │ ├── usb │ │ ├── allwinner,sun4i-a10-musb.txt │ │ ├── am33xx-usb.txt │ │ ├── atmel-usb.txt │ │ ├── brcm,bcm3384-usb.txt │ │ ├── brcm,bdc.txt │ │ ├── ci-hdrc-usb2.txt │ │ ├── da8xx-usb.txt │ │ ├── dwc2.txt │ │ ├── dwc3-cavium.txt │ │ ├── dwc3-st.txt │ │ ├── dwc3-xilinx.txt │ │ ├── dwc3.txt │ │ ├── ehci-omap.txt │ │ ├── ehci-orion.txt │ │ ├── ehci-st.txt │ │ ├── exynos-usb.txt │ │ ├── fcs,fusb302.txt │ │ ├── fsl-usb.txt │ │ ├── generic.txt │ │ ├── gr-udc.txt │ │ ├── iproc-udc.txt │ │ ├── isp1301.txt │ │ ├── keystone-usb.txt │ │ ├── lpc32xx-udc.txt │ │ ├── maxim,max3421.txt │ │ ├── mediatek,mtk-xhci.txt │ │ ├── mediatek,mtu3.txt │ │ ├── msm-hsusb.txt │ │ ├── nvidia,tegra124-xusb.txt │ │ ├── nvidia,tegra20-ehci.txt │ │ ├── octeon-usb.txt │ │ ├── ohci-da8xx.txt │ │ ├── ohci-nxp.txt │ │ ├── ohci-omap3.txt │ │ ├── ohci-st.txt │ │ ├── omap-usb.txt │ │ ├── pxa-usb.txt │ │ ├── qcom,dwc3.txt │ │ ├── renesas_usb3.txt │ │ ├── renesas_usbhs.txt │ │ ├── rockchip,dwc3.txt │ │ ├── s3c2410-usb.txt │ │ ├── samsung-hsotg.txt │ │ ├── spear-usb.txt │ │ ├── twlxxxx-usb.txt │ │ ├── udc-xilinx.txt │ │ ├── ulpi.txt │ │ ├── usb-device.txt │ │ ├── usb-ehci.txt │ │ ├── usb-nop-xceiv.txt │ │ ├── usb-ohci.txt │ │ ├── usb-uhci.txt │ │ ├── usb-xhci.txt │ │ ├── usb251xb.txt │ │ ├── usb3503.txt │ │ ├── usb4604.txt │ │ ├── usbmisc-imx.txt │ │ └── ux500-usb.txt │ ├── vendor-prefixes.txt │ ├── virtio │ │ └── mmio.txt │ ├── w1 │ │ ├── fsl-imx-owire.txt │ │ ├── omap-hdq.txt │ │ └── w1-gpio.txt │ ├── watchdog │ │ ├── alphascale-asm9260.txt │ │ ├── arm,sp805.txt │ │ ├── aspeed-wdt.txt │ │ ├── atmel-at91rm9200-wdt.txt │ │ ├── atmel-sama5d4-wdt.txt │ │ ├── atmel-wdt.txt │ │ ├── brcm,bcm2835-pm-wdog.txt │ │ ├── brcm,bcm7038-wdt.txt │ │ ├── brcm,kona-wdt.txt │ │ ├── cadence-wdt.txt │ │ ├── da9062-wdt.txt │ │ ├── davinci-wdt.txt │ │ ├── digicolor-wdt.txt │ │ ├── dw_wdt.txt │ │ ├── faraday,ftwdt010.txt │ │ ├── fsl-imx-wdt.txt │ │ ├── gpio-wdt.txt │ │ ├── imgpdc-wdt.txt │ │ ├── ingenic,jz4740-wdt.txt │ │ ├── lantiq-wdt.txt │ │ ├── lpc18xx-wdt.txt │ │ ├── marvel.txt │ │ ├── men-a021-wdt.txt │ │ ├── meson-gxbb-wdt.txt │ │ ├── meson-wdt.txt │ │ ├── microchip,pic32-dmt.txt │ │ ├── microchip,pic32-wdt.txt │ │ ├── moxa,moxart-watchdog.txt │ │ ├── mt7621-wdt.txt │ │ ├── mtk-wdt.txt │ │ ├── of-xilinx-wdt.txt │ │ ├── omap-wdt.txt │ │ ├── pnx4008-wdt.txt │ │ ├── qca-ar7130-wdt.txt │ │ ├── qcom-wdt.txt │ │ ├── realtek,rtd119x.txt │ │ ├── renesas-wdt.txt │ │ ├── rt2880-wdt.txt │ │ ├── samsung-wdt.txt │ │ ├── sbsa-gwdt.txt │ │ ├── sigma,smp8642-wdt.txt │ │ ├── sirfsoc_wdt.txt │ │ ├── sp805-wdt.txt │ │ ├── sprd-wdt.txt │ │ ├── st,stm32-iwdg.txt │ │ ├── st_lpc_wdt.txt │ │ ├── stericsson-coh901327.txt │ │ ├── sunxi-wdt.txt │ │ ├── ts4800-wdt.txt │ │ ├── twl4030-wdt.txt │ │ ├── uniphier-wdt.txt │ │ ├── zii,rave-sp-wdt.txt │ │ ├── ziirave-wdt.txt │ │ └── zte,zx2967-wdt.txt │ ├── x86 │ │ ├── ce4100.txt │ │ └── timer.txt │ ├── xilinx.txt │ └── xillybus │ │ └── xillybus.txt ├── COPYING ├── Makefile ├── README ├── include │ └── dt-bindings │ │ ├── arm │ │ └── ux500_pm_domains.h │ │ ├── bus │ │ └── ti-sysc.h │ │ ├── clk │ │ └── ti-dra7-atl.h │ │ ├── clock │ │ ├── alphascale,asm9260.h │ │ ├── am3.h │ │ ├── am4.h │ │ ├── aspeed-clock.h │ │ ├── at91.h │ │ ├── ath79-clk.h │ │ ├── axg-clkc.h │ │ ├── axis,artpec6-clkctrl.h │ │ ├── bcm-cygnus.h │ │ ├── bcm-ns2.h │ │ ├── bcm-nsp.h │ │ ├── bcm-sr.h │ │ ├── bcm21664.h │ │ ├── bcm281xx.h │ │ ├── bcm2835-aux.h │ │ ├── bcm2835.h │ │ ├── berlin2.h │ │ ├── berlin2q.h │ │ ├── boston-clock.h │ │ ├── clps711x-clock.h │ │ ├── cortina,gemini-clock.h │ │ ├── dm814.h │ │ ├── dm816.h │ │ ├── dra7.h │ │ ├── efm32-cmu.h │ │ ├── exynos-audss-clk.h │ │ ├── exynos3250.h │ │ ├── exynos4.h │ │ ├── exynos5250.h │ │ ├── exynos5260-clk.h │ │ ├── exynos5410.h │ │ ├── exynos5420.h │ │ ├── exynos5433.h │ │ ├── exynos5440.h │ │ ├── exynos7-clk.h │ │ ├── gxbb-aoclkc.h │ │ ├── gxbb-clkc.h │ │ ├── hi3516cv300-clock.h │ │ ├── hi3519-clock.h │ │ ├── hi3620-clock.h │ │ ├── hi3660-clock.h │ │ ├── hi6220-clock.h │ │ ├── hip04-clock.h │ │ ├── histb-clock.h │ │ ├── hix5hd2-clock.h │ │ ├── imx1-clock.h │ │ ├── imx21-clock.h │ │ ├── imx27-clock.h │ │ ├── imx5-clock.h │ │ ├── imx6qdl-clock.h │ │ ├── imx6sl-clock.h │ │ ├── imx6sx-clock.h │ │ ├── imx6ul-clock.h │ │ ├── imx7d-clock.h │ │ ├── jz4740-cgu.h │ │ ├── jz4770-cgu.h │ │ ├── jz4780-cgu.h │ │ ├── lpc18xx-ccu.h │ │ ├── lpc18xx-cgu.h │ │ ├── lpc32xx-clock.h │ │ ├── lsi,axm5516-clks.h │ │ ├── marvell,mmp2.h │ │ ├── marvell,pxa168.h │ │ ├── marvell,pxa1928.h │ │ ├── marvell,pxa910.h │ │ ├── maxim,max77620.h │ │ ├── maxim,max77686.h │ │ ├── maxim,max77802.h │ │ ├── meson8b-clkc.h │ │ ├── microchip,pic32-clock.h │ │ ├── mpc512x-clock.h │ │ ├── mt2701-clk.h │ │ ├── mt2712-clk.h │ │ ├── mt6797-clk.h │ │ ├── mt7622-clk.h │ │ ├── mt8135-clk.h │ │ ├── mt8173-clk.h │ │ ├── omap4.h │ │ ├── omap5.h │ │ ├── oxsemi,ox810se.h │ │ ├── oxsemi,ox820.h │ │ ├── pistachio-clk.h │ │ ├── pxa-clock.h │ │ ├── qcom,gcc-apq8084.h │ │ ├── qcom,gcc-ipq4019.h │ │ ├── qcom,gcc-ipq806x.h │ │ ├── qcom,gcc-ipq8074.h │ │ ├── qcom,gcc-mdm9615.h │ │ ├── qcom,gcc-msm8660.h │ │ ├── qcom,gcc-msm8916.h │ │ ├── qcom,gcc-msm8960.h │ │ ├── qcom,gcc-msm8974.h │ │ ├── qcom,gcc-msm8994.h │ │ ├── qcom,gcc-msm8996.h │ │ ├── qcom,lcc-ipq806x.h │ │ ├── qcom,lcc-mdm9615.h │ │ ├── qcom,lcc-msm8960.h │ │ ├── qcom,mmcc-apq8084.h │ │ ├── qcom,mmcc-msm8960.h │ │ ├── qcom,mmcc-msm8974.h │ │ ├── qcom,mmcc-msm8996.h │ │ ├── qcom,rpmcc.h │ │ ├── r7s72100-clock.h │ │ ├── r8a73a4-clock.h │ │ ├── r8a7740-clock.h │ │ ├── r8a7743-cpg-mssr.h │ │ ├── r8a7745-cpg-mssr.h │ │ ├── r8a7778-clock.h │ │ ├── r8a7779-clock.h │ │ ├── r8a7790-clock.h │ │ ├── r8a7790-cpg-mssr.h │ │ ├── r8a7791-clock.h │ │ ├── r8a7791-cpg-mssr.h │ │ ├── r8a7792-clock.h │ │ ├── r8a7792-cpg-mssr.h │ │ ├── r8a7793-clock.h │ │ ├── r8a7793-cpg-mssr.h │ │ ├── r8a7794-clock.h │ │ ├── r8a7794-cpg-mssr.h │ │ ├── r8a7795-cpg-mssr.h │ │ ├── r8a7796-cpg-mssr.h │ │ ├── r8a77970-cpg-mssr.h │ │ ├── r8a77995-cpg-mssr.h │ │ ├── renesas-cpg-mssr.h │ │ ├── rk3036-cru.h │ │ ├── rk3066a-cru.h │ │ ├── rk3128-cru.h │ │ ├── rk3188-cru-common.h │ │ ├── rk3188-cru.h │ │ ├── rk3228-cru.h │ │ ├── rk3288-cru.h │ │ ├── rk3328-cru.h │ │ ├── rk3368-cru.h │ │ ├── rk3399-cru.h │ │ ├── rockchip,rk808.h │ │ ├── rv1108-cru.h │ │ ├── s3c2410.h │ │ ├── s3c2412.h │ │ ├── s3c2443.h │ │ ├── s5pv210-audss.h │ │ ├── s5pv210.h │ │ ├── samsung,s2mps11.h │ │ ├── samsung,s3c64xx-clock.h │ │ ├── sh73a0-clock.h │ │ ├── sprd,sc9860-clk.h │ │ ├── ste-ab8500.h │ │ ├── stih407-clks.h │ │ ├── stih410-clks.h │ │ ├── stih416-clks.h │ │ ├── stih418-clks.h │ │ ├── stm32fx-clock.h │ │ ├── stm32h7-clks.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun4i-a10-pll2.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun7i-a20-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── tegra114-car.h │ │ ├── tegra124-car-common.h │ │ ├── tegra124-car.h │ │ ├── tegra186-clock.h │ │ ├── tegra20-car.h │ │ ├── tegra210-car.h │ │ ├── tegra30-car.h │ │ ├── vf610-clock.h │ │ ├── zx296702-clock.h │ │ └── zx296718-clock.h │ │ ├── display │ │ └── tda998x.h │ │ ├── dma │ │ ├── at91.h │ │ ├── axi-dmac.h │ │ ├── nbpfaxi.h │ │ └── sun4i-a10.h │ │ ├── gpio │ │ ├── aspeed-gpio.h │ │ ├── gpio.h │ │ ├── meson-axg-gpio.h │ │ ├── meson-gxbb-gpio.h │ │ ├── meson-gxl-gpio.h │ │ ├── meson8-gpio.h │ │ ├── meson8b-gpio.h │ │ ├── tegra-gpio.h │ │ ├── tegra186-gpio.h │ │ └── uniphier-gpio.h │ │ ├── i2c │ │ └── i2c.h │ │ ├── iio │ │ ├── adc │ │ │ └── fsl-imx25-gcq.h │ │ ├── adi,ad5592r.h │ │ └── qcom,spmi-vadc.h │ │ ├── input │ │ ├── input.h │ │ ├── linux-event-codes.h │ │ └── ti-drv260x.h │ │ ├── interrupt-controller │ │ ├── arm-gic.h │ │ ├── irq-st.h │ │ ├── irq.h │ │ ├── mips-gic.h │ │ └── mvebu-icu.h │ │ ├── leds │ │ ├── common.h │ │ ├── leds-netxbig.h │ │ ├── leds-ns2.h │ │ ├── leds-pca9532.h │ │ └── leds-pca955x.h │ │ ├── mailbox │ │ └── tegra186-hsp.h │ │ ├── media │ │ ├── c8sectpfe.h │ │ ├── omap3-isp.h │ │ ├── tvp5150.h │ │ └── xilinx-vip.h │ │ ├── memory │ │ ├── mt2701-larb-port.h │ │ ├── mt8173-larb-port.h │ │ ├── tegra114-mc.h │ │ ├── tegra124-mc.h │ │ ├── tegra186-mc.h │ │ ├── tegra210-mc.h │ │ └── tegra30-mc.h │ │ ├── mfd │ │ ├── arizona.h │ │ ├── as3722.h │ │ ├── atmel-flexcom.h │ │ ├── dbx500-prcmu.h │ │ ├── max77620.h │ │ ├── palmas.h │ │ ├── qcom-rpm.h │ │ ├── st-lpc.h │ │ ├── stm32f4-rcc.h │ │ ├── stm32f7-rcc.h │ │ └── stm32h7-rcc.h │ │ ├── mips │ │ └── lantiq_rcu_gphy.h │ │ ├── mux │ │ └── mux.h │ │ ├── net │ │ ├── mscc-phy-vsc8531.h │ │ └── ti-dp83867.h │ │ ├── phy │ │ ├── phy-pistachio-usb.h │ │ └── phy.h │ │ ├── pinctrl │ │ ├── am33xx.h │ │ ├── am43xx.h │ │ ├── at91.h │ │ ├── bcm2835.h │ │ ├── brcm,pinctrl-stingray.h │ │ ├── dm814x.h │ │ ├── dra.h │ │ ├── hisi.h │ │ ├── keystone.h │ │ ├── mt6397-pinfunc.h │ │ ├── mt65xx.h │ │ ├── mt7623-pinfunc.h │ │ ├── nomadik.h │ │ ├── omap.h │ │ ├── pinctrl-tegra-xusb.h │ │ ├── pinctrl-tegra.h │ │ ├── qcom,pmic-gpio.h │ │ ├── qcom,pmic-mpp.h │ │ ├── r7s72100-pinctrl.h │ │ ├── rockchip.h │ │ ├── samsung.h │ │ ├── stm32-pinfunc.h │ │ └── sun4i-a10.h │ │ ├── power │ │ ├── imx7-power.h │ │ ├── mt2701-power.h │ │ ├── mt2712-power.h │ │ ├── mt6797-power.h │ │ ├── mt7622-power.h │ │ ├── mt8173-power.h │ │ ├── owl-s500-powergate.h │ │ ├── owl-s700-powergate.h │ │ ├── r8a7743-sysc.h │ │ ├── r8a7745-sysc.h │ │ ├── r8a7779-sysc.h │ │ ├── r8a7790-sysc.h │ │ ├── r8a7791-sysc.h │ │ ├── r8a7792-sysc.h │ │ ├── r8a7793-sysc.h │ │ ├── r8a7794-sysc.h │ │ ├── r8a7795-sysc.h │ │ ├── r8a7796-sysc.h │ │ ├── r8a77970-sysc.h │ │ ├── r8a77995-sysc.h │ │ ├── raspberrypi-power.h │ │ ├── rk3288-power.h │ │ ├── rk3328-power.h │ │ ├── rk3366-power.h │ │ ├── rk3368-power.h │ │ ├── rk3399-power.h │ │ └── tegra186-powergate.h │ │ ├── pwm │ │ └── pwm.h │ │ ├── regulator │ │ └── maxim,max77802.h │ │ ├── reset │ │ ├── altr,rst-mgr-a10.h │ │ ├── altr,rst-mgr-a10sr.h │ │ ├── altr,rst-mgr-s10.h │ │ ├── altr,rst-mgr.h │ │ ├── amlogic,meson-axg-reset.h │ │ ├── amlogic,meson-gxbb-reset.h │ │ ├── amlogic,meson8b-clkc-reset.h │ │ ├── amlogic,meson8b-reset.h │ │ ├── cortina,gemini-reset.h │ │ ├── gxbb-aoclkc.h │ │ ├── hisi,hi6220-resets.h │ │ ├── imx7-reset.h │ │ ├── mt2701-resets.h │ │ ├── mt7622-reset.h │ │ ├── mt8135-resets.h │ │ ├── mt8173-resets.h │ │ ├── oxsemi,ox810se.h │ │ ├── oxsemi,ox820.h │ │ ├── pistachio-resets.h │ │ ├── qcom,gcc-apq8084.h │ │ ├── qcom,gcc-ipq806x.h │ │ ├── qcom,gcc-mdm9615.h │ │ ├── qcom,gcc-msm8660.h │ │ ├── qcom,gcc-msm8916.h │ │ ├── qcom,gcc-msm8960.h │ │ ├── qcom,gcc-msm8974.h │ │ ├── qcom,mmcc-apq8084.h │ │ ├── qcom,mmcc-msm8960.h │ │ ├── qcom,mmcc-msm8974.h │ │ ├── snps,hsdk-reset.h │ │ ├── stih407-resets.h │ │ ├── stih415-resets.h │ │ ├── stih416-resets.h │ │ ├── sun4i-a10-ccu.h │ │ ├── sun50i-a64-ccu.h │ │ ├── sun5i-ccu.h │ │ ├── sun6i-a31-ccu.h │ │ ├── sun8i-a23-a33-ccu.h │ │ ├── sun8i-a83t-ccu.h │ │ ├── sun8i-de2.h │ │ ├── sun8i-h3-ccu.h │ │ ├── sun8i-r-ccu.h │ │ ├── sun8i-r40-ccu.h │ │ ├── sun8i-v3s-ccu.h │ │ ├── sun9i-a80-ccu.h │ │ ├── sun9i-a80-de.h │ │ ├── sun9i-a80-usb.h │ │ ├── tegra124-car.h │ │ ├── tegra186-reset.h │ │ ├── tegra210-car.h │ │ └── ti-syscon.h │ │ ├── soc │ │ ├── qcom,gsbi.h │ │ ├── rockchip,boot-mode.h │ │ └── zte,pm_domains.h │ │ ├── sound │ │ ├── apq8016-lpass.h │ │ ├── audio-jack-events.h │ │ ├── cs35l32.h │ │ ├── cs42l42.h │ │ ├── fsl-imx-audmux.h │ │ ├── samsung-i2s.h │ │ ├── tas2552.h │ │ └── tlv320aic31xx-micbias.h │ │ ├── spmi │ │ └── spmi.h │ │ └── thermal │ │ ├── lm90.h │ │ ├── tegra124-soctherm.h │ │ ├── tegra186-bpmp-thermal.h │ │ ├── thermal.h │ │ └── thermal_exynos.h ├── scripts │ ├── Kbuild.include │ ├── basic │ │ └── fixdep │ ├── cronjob │ ├── filter.sh │ ├── index-filter.sh │ ├── merge-new-release.sh │ └── rewrite-index.pl └── src │ ├── arc │ ├── abilis_tb100.dtsi │ ├── abilis_tb100_dvk.dts │ ├── abilis_tb101.dtsi │ ├── abilis_tb101_dvk.dts │ ├── abilis_tb10x.dtsi │ ├── axc001.dtsi │ ├── axc003.dtsi │ ├── axc003_idu.dtsi │ ├── axs101.dts │ ├── axs103.dts │ ├── axs103_idu.dts │ ├── axs10x_mb.dtsi │ ├── eznps.dts │ ├── haps_hs.dts │ ├── haps_hs_idu.dts │ ├── hsdk.dts │ ├── nsim_700.dts │ ├── nsim_hs.dts │ ├── nsim_hs_idu.dts │ ├── nsimosci.dts │ ├── nsimosci_hs.dts │ ├── nsimosci_hs_idu.dts │ ├── skeleton.dtsi │ ├── skeleton_hs.dtsi │ ├── skeleton_hs_idu.dtsi │ ├── vdk_axc003.dtsi │ ├── vdk_axc003_idu.dtsi │ ├── vdk_axs10x_mb.dtsi │ ├── vdk_hs38.dts │ └── vdk_hs38_smp.dts │ ├── arm │ ├── aks-cdu.dts │ ├── alphascale-asm9260-devkit.dts │ ├── alphascale-asm9260.dtsi │ ├── alpine-db.dts │ ├── alpine.dtsi │ ├── am335x-baltos-ir2110.dts │ ├── am335x-baltos-ir3220.dts │ ├── am335x-baltos-ir5221.dts │ ├── am335x-baltos-leds.dtsi │ ├── am335x-baltos.dtsi │ ├── am335x-base0033.dts │ ├── am335x-bone-common.dtsi │ ├── am335x-bone.dts │ ├── am335x-boneblack-common.dtsi │ ├── am335x-boneblack-wireless.dts │ ├── am335x-boneblack.dts │ ├── am335x-boneblue.dts │ ├── am335x-bonegreen-common.dtsi │ ├── am335x-bonegreen-wireless.dts │ ├── am335x-bonegreen.dts │ ├── am335x-chiliboard.dts │ ├── am335x-chilisom.dtsi │ ├── am335x-cm-t335.dts │ ├── am335x-evm.dts │ ├── am335x-evmsk.dts │ ├── am335x-icev2.dts │ ├── am335x-igep0033.dtsi │ ├── am335x-lxm.dts │ ├── am335x-moxa-uc-8100-me-t.dts │ ├── am335x-nano.dts │ ├── am335x-pcm-953.dtsi │ ├── am335x-pepper.dts │ ├── am335x-phycore-rdk.dts │ ├── am335x-phycore-som.dtsi │ ├── am335x-sbc-t335.dts │ ├── am335x-shc.dts │ ├── am335x-sl50.dts │ ├── am335x-wega-rdk.dts │ ├── am335x-wega.dtsi │ ├── am33xx-clocks.dtsi │ ├── am33xx.dtsi │ ├── am3517-craneboard.dts │ ├── am3517-evm.dts │ ├── am3517.dtsi │ ├── am3517_mt_ventoux.dts │ ├── am35xx-clocks.dtsi │ ├── am4372.dtsi │ ├── am437x-cm-t43.dts │ ├── am437x-gp-evm.dts │ ├── am437x-idk-evm.dts │ ├── am437x-sbc-t43.dts │ ├── am437x-sk-evm.dts │ ├── am43x-epos-evm.dts │ ├── am43xx-clocks.dtsi │ ├── am571x-idk.dts │ ├── am572x-idk-common.dtsi │ ├── am572x-idk.dts │ ├── am574x-idk.dts │ ├── am57xx-beagle-x15-common.dtsi │ ├── am57xx-beagle-x15-revb1.dts │ ├── am57xx-beagle-x15-revc.dts │ ├── am57xx-beagle-x15.dts │ ├── am57xx-cl-som-am57x.dts │ ├── am57xx-commercial-grade.dtsi │ ├── am57xx-idk-common.dtsi │ ├── am57xx-industrial-grade.dtsi │ ├── am57xx-sbc-am57x.dts │ ├── animeo_ip.dts │ ├── arm-realview-eb-11mp-bbrevd-ctrevb.dts │ ├── arm-realview-eb-11mp-bbrevd.dts │ ├── arm-realview-eb-11mp-ctrevb.dts │ ├── arm-realview-eb-11mp.dts │ ├── arm-realview-eb-a9mp-bbrevd.dts │ ├── arm-realview-eb-a9mp.dts │ ├── arm-realview-eb-bbrevd.dts │ ├── arm-realview-eb-bbrevd.dtsi │ ├── arm-realview-eb-mp.dtsi │ ├── arm-realview-eb.dts │ ├── arm-realview-eb.dtsi │ ├── arm-realview-pb1176.dts │ ├── arm-realview-pb11mp.dts │ ├── arm-realview-pba8.dts │ ├── arm-realview-pbx-a9.dts │ ├── arm-realview-pbx.dtsi │ ├── armada-370-db.dts │ ├── armada-370-dlink-dns327l.dts │ ├── armada-370-mirabox.dts │ ├── armada-370-netgear-rn102.dts │ ├── armada-370-netgear-rn104.dts │ ├── armada-370-rd.dts │ ├── armada-370-seagate-nas-2bay.dts │ ├── armada-370-seagate-nas-4bay.dts │ ├── armada-370-seagate-nas-xbay.dtsi │ ├── armada-370-seagate-personal-cloud-2bay.dts │ ├── armada-370-seagate-personal-cloud.dts │ ├── armada-370-seagate-personal-cloud.dtsi │ ├── armada-370-synology-ds213j.dts │ ├── armada-370-xp.dtsi │ ├── armada-370.dtsi │ ├── armada-375-db.dts │ ├── armada-375.dtsi │ ├── armada-380.dtsi │ ├── armada-385-db-ap.dts │ ├── armada-385-linksys-caiman.dts │ ├── armada-385-linksys-cobra.dts │ ├── armada-385-linksys-rango.dts │ ├── armada-385-linksys-shelby.dts │ ├── armada-385-linksys.dtsi │ ├── armada-385-synology-ds116.dts │ ├── armada-385-turris-omnia.dts │ ├── armada-385.dtsi │ ├── armada-388-clearfog-base.dts │ ├── armada-388-clearfog-pro.dts │ ├── armada-388-clearfog.dts │ ├── armada-388-clearfog.dtsi │ ├── armada-388-db.dts │ ├── armada-388-gp.dts │ ├── armada-388-rd.dts │ ├── armada-388.dtsi │ ├── armada-38x-solidrun-microsom.dtsi │ ├── armada-38x.dtsi │ ├── armada-390-db.dts │ ├── armada-390.dtsi │ ├── armada-395-gp.dts │ ├── armada-395.dtsi │ ├── armada-398-db.dts │ ├── armada-398.dtsi │ ├── armada-39x.dtsi │ ├── armada-xp-98dx3236.dtsi │ ├── armada-xp-98dx3336.dtsi │ ├── armada-xp-98dx4251.dtsi │ ├── armada-xp-axpwifiap.dts │ ├── armada-xp-db-dxbc2.dts │ ├── armada-xp-db-xc3-24g4xg.dts │ ├── armada-xp-db.dts │ ├── armada-xp-gp.dts │ ├── armada-xp-lenovo-ix4-300d.dts │ ├── armada-xp-linksys-mamba.dts │ ├── armada-xp-matrix.dts │ ├── armada-xp-mv78230.dtsi │ ├── armada-xp-mv78260.dtsi │ ├── armada-xp-mv78460.dtsi │ ├── armada-xp-netgear-rn2120.dts │ ├── armada-xp-openblocks-ax3-4.dts │ ├── armada-xp-synology-ds414.dts │ ├── armada-xp.dtsi │ ├── armv7-m.dtsi │ ├── artpec6-devboard.dts │ ├── artpec6.dtsi │ ├── aspeed-ast2500-evb.dts │ ├── aspeed-bmc-opp-palmetto.dts │ ├── aspeed-bmc-opp-romulus.dts │ ├── aspeed-bmc-opp-witherspoon.dts │ ├── aspeed-bmc-opp-zaius.dts │ ├── aspeed-bmc-quanta-q71l.dts │ ├── aspeed-g4.dtsi │ ├── aspeed-g5.dtsi │ ├── at91-ariag25.dts │ ├── at91-ariettag25.dts │ ├── at91-cosino.dtsi │ ├── at91-cosino_mega2560.dts │ ├── at91-foxg20.dts │ ├── at91-kizbox.dts │ ├── at91-kizbox2.dts │ ├── at91-kizboxmini.dts │ ├── at91-linea.dtsi │ ├── at91-natte.dtsi │ ├── at91-nattis-2-natte-2.dts │ ├── at91-qil_a9260.dts │ ├── at91-sam9_l9260.dts │ ├── at91-sama5d27_som1.dtsi │ ├── at91-sama5d27_som1_ek.dts │ ├── at91-sama5d2_ptc_ek.dts │ ├── at91-sama5d2_xplained.dts │ ├── at91-sama5d3_xplained.dts │ ├── at91-sama5d4_ma5d4.dtsi │ ├── at91-sama5d4_ma5d4evk.dts │ ├── at91-sama5d4_xplained.dts │ ├── at91-sama5d4ek.dts │ ├── at91-tse850-3.dts │ ├── at91-vinco.dts │ ├── at91rm9200.dtsi │ ├── at91rm9200_pqfp.dtsi │ ├── at91rm9200ek.dts │ ├── at91sam9260.dtsi │ ├── at91sam9260ek.dts │ ├── at91sam9261.dtsi │ ├── at91sam9261ek.dts │ ├── at91sam9263.dtsi │ ├── at91sam9263ek.dts │ ├── at91sam9g15.dtsi │ ├── at91sam9g15ek.dts │ ├── at91sam9g20.dtsi │ ├── at91sam9g20ek.dts │ ├── at91sam9g20ek_2mmc.dts │ ├── at91sam9g20ek_common.dtsi │ ├── at91sam9g25.dtsi │ ├── at91sam9g25ek.dts │ ├── at91sam9g35.dtsi │ ├── at91sam9g35ek.dts │ ├── at91sam9g45.dtsi │ ├── at91sam9m10g45ek.dts │ ├── at91sam9n12.dtsi │ ├── at91sam9n12ek.dts │ ├── at91sam9rl.dtsi │ ├── at91sam9rlek.dts │ ├── at91sam9x25.dtsi │ ├── at91sam9x25ek.dts │ ├── at91sam9x35.dtsi │ ├── at91sam9x35ek.dts │ ├── at91sam9x5.dtsi │ ├── at91sam9x5_can.dtsi │ ├── at91sam9x5_isi.dtsi │ ├── at91sam9x5_lcd.dtsi │ ├── at91sam9x5_macb0.dtsi │ ├── at91sam9x5_macb1.dtsi │ ├── at91sam9x5_usart3.dtsi │ ├── at91sam9x5cm.dtsi │ ├── at91sam9x5dm.dtsi │ ├── at91sam9x5ek.dtsi │ ├── at91sam9xe.dtsi │ ├── atlas6-evb.dts │ ├── atlas6.dtsi │ ├── atlas7-evb.dts │ ├── atlas7.dtsi │ ├── axm5516-amarillo.dts │ ├── axm5516-cpus.dtsi │ ├── axm55xx.dtsi │ ├── axp152.dtsi │ ├── axp209.dtsi │ ├── axp223.dtsi │ ├── axp22x.dtsi │ ├── axp809.dtsi │ ├── axp81x.dtsi │ ├── bcm-cygnus-clock.dtsi │ ├── bcm-cygnus.dtsi │ ├── bcm-hr2.dtsi │ ├── bcm-nsp.dtsi │ ├── bcm11351.dtsi │ ├── bcm21664-garnet.dts │ ├── bcm21664.dtsi │ ├── bcm23550-sparrow.dts │ ├── bcm23550.dtsi │ ├── bcm28155-ap.dts │ ├── bcm2835-rpi-a-plus.dts │ ├── bcm2835-rpi-a.dts │ ├── bcm2835-rpi-b-plus.dts │ ├── bcm2835-rpi-b-rev2.dts │ ├── bcm2835-rpi-b.dts │ ├── bcm2835-rpi-zero-w.dts │ ├── bcm2835-rpi-zero.dts │ ├── bcm2835-rpi.dtsi │ ├── bcm2835.dtsi │ ├── bcm2836-rpi-2-b.dts │ ├── bcm2836.dtsi │ ├── bcm2837-rpi-3-b.dts │ ├── bcm2837.dtsi │ ├── bcm283x-rpi-smsc9512.dtsi │ ├── bcm283x-rpi-smsc9514.dtsi │ ├── bcm283x-rpi-usb-host.dtsi │ ├── bcm283x-rpi-usb-otg.dtsi │ ├── bcm283x.dtsi │ ├── bcm4708-asus-rt-ac56u.dts │ ├── bcm4708-asus-rt-ac68u.dts │ ├── bcm4708-buffalo-wzr-1750dhp.dts │ ├── bcm4708-linksys-ea6300-v1.dts │ ├── bcm4708-luxul-xap-1510.dts │ ├── bcm4708-luxul-xwc-1000.dts │ ├── bcm4708-netgear-r6250.dts │ ├── bcm4708-netgear-r6300-v2.dts │ ├── bcm4708-smartrg-sr400ac.dts │ ├── bcm4708.dtsi │ ├── bcm47081-asus-rt-n18u.dts │ ├── bcm47081-buffalo-wzr-600dhp2.dts │ ├── bcm47081-buffalo-wzr-900dhp.dts │ ├── bcm47081-luxul-xap-1410.dts │ ├── bcm47081-luxul-xwr-1200.dts │ ├── bcm47081-tplink-archer-c5-v2.dts │ ├── bcm47081.dtsi │ ├── bcm4709-asus-rt-ac87u.dts │ ├── bcm4709-buffalo-wxr-1900dhp.dts │ ├── bcm4709-linksys-ea9200.dts │ ├── bcm4709-netgear-r7000.dts │ ├── bcm4709-netgear-r8000.dts │ ├── bcm4709-tplink-archer-c9-v1.dts │ ├── bcm4709.dtsi │ ├── bcm47094-dlink-dir-885l.dts │ ├── bcm47094-linksys-panamera.dts │ ├── bcm47094-luxul-abr-4500.dts │ ├── bcm47094-luxul-xbr-4500.dts │ ├── bcm47094-luxul-xwr-3100.dts │ ├── bcm47094-netgear-r8500.dts │ ├── bcm47094.dtsi │ ├── bcm47189-luxul-xap-1440.dts │ ├── bcm47189-luxul-xap-810.dts │ ├── bcm47189-tenda-ac9.dts │ ├── bcm5301x-nand-cs0-bch1.dtsi │ ├── bcm5301x-nand-cs0-bch4.dtsi │ ├── bcm5301x-nand-cs0-bch8.dtsi │ ├── bcm5301x-nand-cs0.dtsi │ ├── bcm5301x.dtsi │ ├── bcm53340-ubnt-unifi-switch8.dts │ ├── bcm53573.dtsi │ ├── bcm59056.dtsi │ ├── bcm63138.dtsi │ ├── bcm7445-bcm97445svmb.dts │ ├── bcm7445.dtsi │ ├── bcm911360_entphn.dts │ ├── bcm911360k.dts │ ├── bcm94708.dts │ ├── bcm94709.dts │ ├── bcm947189acdbmr.dts │ ├── bcm953012er.dts │ ├── bcm953012hr.dts │ ├── bcm953012k.dts │ ├── bcm958300k.dts │ ├── bcm958305k.dts │ ├── bcm958522er.dts │ ├── bcm958525er.dts │ ├── bcm958525xmc.dts │ ├── bcm958622hr.dts │ ├── bcm958623hr.dts │ ├── bcm958625hr.dts │ ├── bcm958625k.dts │ ├── bcm963138dvt.dts │ ├── bcm988312hr.dts │ ├── bcm9hmidc.dtsi │ ├── berlin2-sony-nsz-gs7.dts │ ├── berlin2.dtsi │ ├── berlin2cd-google-chromecast.dts │ ├── berlin2cd.dtsi │ ├── berlin2q-marvell-dmp.dts │ ├── berlin2q.dtsi │ ├── compulab-sb-som.dtsi │ ├── cros-adc-thermistors.dtsi │ ├── cros-ec-keyboard.dtsi │ ├── cros-ec-sbs.dtsi │ ├── cx92755.dtsi │ ├── cx92755_equinox.dts │ ├── da850-enbw-cmc.dts │ ├── da850-evm.dts │ ├── da850-lcdk.dts │ ├── da850-lego-ev3.dts │ ├── da850.dtsi │ ├── dm8148-evm.dts │ ├── dm8148-t410.dts │ ├── dm814x-clocks.dtsi │ ├── dm814x.dtsi │ ├── dm8168-evm.dts │ ├── dm816x-clocks.dtsi │ ├── dm816x.dtsi │ ├── dove-cm-a510.dtsi │ ├── dove-cubox-es.dts │ ├── dove-cubox.dts │ ├── dove-d2plug.dts │ ├── dove-d3plug.dts │ ├── dove-dove-db.dts │ ├── dove-sbc-a510.dts │ ├── dove.dtsi │ ├── dra62x-clocks.dtsi │ ├── dra62x-j5eco-evm.dts │ ├── dra62x.dtsi │ ├── dra7-dspeve-thermal.dtsi │ ├── dra7-evm-common.dtsi │ ├── dra7-evm.dts │ ├── dra7-iva-thermal.dtsi │ ├── dra7.dtsi │ ├── dra71-evm.dts │ ├── dra72-evm-common.dtsi │ ├── dra72-evm-revc.dts │ ├── dra72-evm-tps65917.dtsi │ ├── dra72-evm.dts │ ├── dra72x-mmc-iodelay.dtsi │ ├── dra72x.dtsi │ ├── dra74x-mmc-iodelay.dtsi │ ├── dra74x.dtsi │ ├── dra76-evm.dts │ ├── dra76x.dtsi │ ├── dra7xx-clocks.dtsi │ ├── ecx-2000.dts │ ├── ecx-common.dtsi │ ├── efm32gg-dk3750.dts │ ├── efm32gg.dtsi │ ├── elpida_ecb240abacn.dtsi │ ├── emev2-kzm9d.dts │ ├── emev2.dtsi │ ├── ep7209.dtsi │ ├── ep7211-edb7211.dts │ ├── ep7211.dtsi │ ├── ethernut5.dts │ ├── evk-pro3.dts │ ├── exynos-mfc-reserved-memory.dtsi │ ├── exynos-syscon-restart.dtsi │ ├── exynos3250-artik5-eval.dts │ ├── exynos3250-artik5.dtsi │ ├── exynos3250-monk.dts │ ├── exynos3250-pinctrl.dtsi │ ├── exynos3250-rinato.dts │ ├── exynos3250.dtsi │ ├── exynos4-cpu-thermal.dtsi │ ├── exynos4.dtsi │ ├── exynos4210-origen.dts │ ├── exynos4210-pinctrl.dtsi │ ├── exynos4210-smdkv310.dts │ ├── exynos4210-trats.dts │ ├── exynos4210-universal_c210.dts │ ├── exynos4210.dtsi │ ├── exynos4412-itop-elite.dts │ ├── exynos4412-itop-scp-core.dtsi │ ├── exynos4412-odroid-common.dtsi │ ├── exynos4412-odroidu3.dts │ ├── exynos4412-odroidx.dts │ ├── exynos4412-odroidx2.dts │ ├── exynos4412-origen.dts │ ├── exynos4412-pinctrl.dtsi │ ├── exynos4412-ppmu-common.dtsi │ ├── exynos4412-prime.dtsi │ ├── exynos4412-smdk4412.dts │ ├── exynos4412-tiny4412.dts │ ├── exynos4412-tmu-sensor-conf.dtsi │ ├── exynos4412-trats2.dts │ ├── exynos4412.dtsi │ ├── exynos5.dtsi │ ├── exynos5250-arndale.dts │ ├── exynos5250-pinctrl.dtsi │ ├── exynos5250-smdk5250.dts │ ├── exynos5250-snow-common.dtsi │ ├── exynos5250-snow-rev5.dts │ ├── exynos5250-snow.dts │ ├── exynos5250-spring.dts │ ├── exynos5250.dtsi │ ├── exynos5260-pinctrl.dtsi │ ├── exynos5260-xyref5260.dts │ ├── exynos5260.dtsi │ ├── exynos5410-odroidxu.dts │ ├── exynos5410-pinctrl.dtsi │ ├── exynos5410-smdk5410.dts │ ├── exynos5410.dtsi │ ├── exynos5420-arndale-octa.dts │ ├── exynos5420-cpus.dtsi │ ├── exynos5420-peach-pit.dts │ ├── exynos5420-pinctrl.dtsi │ ├── exynos5420-smdk5420.dts │ ├── exynos5420-tmu-sensor-conf.dtsi │ ├── exynos5420-trip-points.dtsi │ ├── exynos5420.dtsi │ ├── exynos5422-cpus.dtsi │ ├── exynos5422-odroid-core.dtsi │ ├── exynos5422-odroidhc1.dts │ ├── exynos5422-odroidxu3-audio.dtsi │ ├── exynos5422-odroidxu3-common.dtsi │ ├── exynos5422-odroidxu3-lite.dts │ ├── exynos5422-odroidxu3.dts │ ├── exynos5422-odroidxu4.dts │ ├── exynos5440-sd5v1.dts │ ├── exynos5440-ssdk5440.dts │ ├── exynos5440-tmu-sensor-conf.dtsi │ ├── exynos5440-trip-points.dtsi │ ├── exynos5440.dtsi │ ├── exynos54xx-odroidxu-leds.dtsi │ ├── exynos54xx.dtsi │ ├── exynos5800-peach-pi.dts │ ├── exynos5800.dtsi │ ├── ge863-pro3.dtsi │ ├── gemini-dlink-dir-685.dts │ ├── gemini-dlink-dns-313.dts │ ├── gemini-nas4220b.dts │ ├── gemini-rut1xx.dts │ ├── gemini-sq201.dts │ ├── gemini-wbd111.dts │ ├── gemini-wbd222.dts │ ├── gemini.dtsi │ ├── hi3519-demb.dts │ ├── hi3519.dtsi │ ├── hi3620-hi4511.dts │ ├── hi3620.dtsi │ ├── highbank.dts │ ├── hip01-ca9x2.dts │ ├── hip01.dtsi │ ├── hip04-d01.dts │ ├── hip04.dtsi │ ├── hisi-x5hd2-dkb.dts │ ├── hisi-x5hd2.dtsi │ ├── imx1-ads.dts │ ├── imx1-apf9328.dts │ ├── imx1-pinfunc.h │ ├── imx1.dtsi │ ├── imx23-evk.dts │ ├── imx23-olinuxino.dts │ ├── imx23-pinfunc.h │ ├── imx23-sansa.dts │ ├── imx23-stmp378x_devb.dts │ ├── imx23-xfi3.dts │ ├── imx23.dtsi │ ├── imx25-eukrea-cpuimx25.dtsi │ ├── imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts │ ├── imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts │ ├── imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts │ ├── imx25-eukrea-mbimxsd25-baseboard.dts │ ├── imx25-karo-tx25.dts │ ├── imx25-pdk.dts │ ├── imx25-pinfunc.h │ ├── imx25.dtsi │ ├── imx27-apf27.dts │ ├── imx27-apf27dev.dts │ ├── imx27-eukrea-cpuimx27.dtsi │ ├── imx27-eukrea-mbimxsd27-baseboard.dts │ ├── imx27-pdk.dts │ ├── imx27-phytec-phycard-s-rdk.dts │ ├── imx27-phytec-phycard-s-som.dtsi │ ├── imx27-phytec-phycore-rdk.dts │ ├── imx27-phytec-phycore-som.dtsi │ ├── imx27-pinfunc.h │ ├── imx27.dtsi │ ├── imx28-apf28.dts │ ├── imx28-apf28dev.dts │ ├── imx28-apx4devkit.dts │ ├── imx28-cfa10036.dts │ ├── imx28-cfa10037.dts │ ├── imx28-cfa10049.dts │ ├── imx28-cfa10055.dts │ ├── imx28-cfa10056.dts │ ├── imx28-cfa10057.dts │ ├── imx28-cfa10058.dts │ ├── imx28-duckbill-2-485.dts │ ├── imx28-duckbill-2-enocean.dts │ ├── imx28-duckbill-2-spi.dts │ ├── imx28-duckbill-2.dts │ ├── imx28-duckbill.dts │ ├── imx28-eukrea-mbmx283lc.dts │ ├── imx28-eukrea-mbmx287lc.dts │ ├── imx28-eukrea-mbmx28lc.dtsi │ ├── imx28-evk.dts │ ├── imx28-m28.dtsi │ ├── imx28-m28cu3.dts │ ├── imx28-m28evk.dts │ ├── imx28-pinfunc.h │ ├── imx28-sps1.dts │ ├── imx28-ts4600.dts │ ├── imx28-tx28.dts │ ├── imx28.dtsi │ ├── imx31-bug.dts │ ├── imx31.dtsi │ ├── imx35-eukrea-cpuimx35.dtsi │ ├── imx35-eukrea-mbimxsd35-baseboard.dts │ ├── imx35-pdk.dts │ ├── imx35-pinfunc.h │ ├── imx35.dtsi │ ├── imx50-evk.dts │ ├── imx50-pinfunc.h │ ├── imx50.dtsi │ ├── imx51-apf51.dts │ ├── imx51-apf51dev.dts │ ├── imx51-babbage.dts │ ├── imx51-digi-connectcore-jsk.dts │ ├── imx51-digi-connectcore-som.dtsi │ ├── imx51-eukrea-cpuimx51.dtsi │ ├── imx51-eukrea-mbimxsd51-baseboard.dts │ ├── imx51-pinfunc.h │ ├── imx51-ts4800.dts │ ├── imx51-zii-rdu1.dts │ ├── imx51.dtsi │ ├── imx53-ard.dts │ ├── imx53-cx9020.dts │ ├── imx53-m53.dtsi │ ├── imx53-m53evk.dts │ ├── imx53-mba53.dts │ ├── imx53-pinfunc.h │ ├── imx53-ppd.dts │ ├── imx53-qsb-common.dtsi │ ├── imx53-qsb.dts │ ├── imx53-qsrb.dts │ ├── imx53-smd.dts │ ├── imx53-tqma53.dtsi │ ├── imx53-tx53-x03x.dts │ ├── imx53-tx53-x13x.dts │ ├── imx53-tx53.dtsi │ ├── imx53-usbarmory.dts │ ├── imx53-voipac-bsb.dts │ ├── imx53-voipac-dmm-668.dtsi │ ├── imx53.dtsi │ ├── imx6dl-apf6dev.dts │ ├── imx6dl-aristainetos2_4.dts │ ├── imx6dl-aristainetos2_7.dts │ ├── imx6dl-aristainetos_4.dts │ ├── imx6dl-aristainetos_7.dts │ ├── imx6dl-colibri-eval-v3.dts │ ├── imx6dl-cubox-i-emmc-som-v15.dts │ ├── imx6dl-cubox-i-som-v15.dts │ ├── imx6dl-cubox-i.dts │ ├── imx6dl-dfi-fs700-m60.dts │ ├── imx6dl-gw51xx.dts │ ├── imx6dl-gw52xx.dts │ ├── imx6dl-gw53xx.dts │ ├── imx6dl-gw54xx.dts │ ├── imx6dl-gw551x.dts │ ├── imx6dl-gw552x.dts │ ├── imx6dl-gw553x.dts │ ├── imx6dl-gw560x.dts │ ├── imx6dl-gw5903.dts │ ├── imx6dl-gw5904.dts │ ├── imx6dl-hummingboard-emmc-som-v15.dts │ ├── imx6dl-hummingboard-som-v15.dts │ ├── imx6dl-hummingboard.dts │ ├── imx6dl-hummingboard2-emmc-som-v15.dts │ ├── imx6dl-hummingboard2-som-v15.dts │ ├── imx6dl-hummingboard2.dts │ ├── imx6dl-icore-rqs.dts │ ├── imx6dl-icore.dts │ ├── imx6dl-nit6xlite.dts │ ├── imx6dl-nitrogen6x.dts │ ├── imx6dl-phytec-pbab01.dts │ ├── imx6dl-phytec-pfla02.dtsi │ ├── imx6dl-pinfunc.h │ ├── imx6dl-rex-basic.dts │ ├── imx6dl-riotboard.dts │ ├── imx6dl-sabreauto.dts │ ├── imx6dl-sabrelite.dts │ ├── imx6dl-sabresd.dts │ ├── imx6dl-savageboard.dts │ ├── imx6dl-ts4900.dts │ ├── imx6dl-ts7970.dts │ ├── imx6dl-tx6dl-comtft.dts │ ├── imx6dl-tx6s-8034-mb7.dts │ ├── imx6dl-tx6s-8034.dts │ ├── imx6dl-tx6s-8035-mb7.dts │ ├── imx6dl-tx6s-8035.dts │ ├── imx6dl-tx6u-801x.dts │ ├── imx6dl-tx6u-8033-mb7.dts │ ├── imx6dl-tx6u-8033.dts │ ├── imx6dl-tx6u-80xx-mb7.dts │ ├── imx6dl-tx6u-811x.dts │ ├── imx6dl-tx6u-81xx-mb7.dts │ ├── imx6dl-udoo.dts │ ├── imx6dl-wandboard-revb1.dts │ ├── imx6dl-wandboard-revd1.dts │ ├── imx6dl-wandboard.dts │ ├── imx6dl.dtsi │ ├── imx6q-apalis-eval.dts │ ├── imx6q-apalis-ixora-v1.1.dts │ ├── imx6q-apalis-ixora.dts │ ├── imx6q-apf6dev.dts │ ├── imx6q-arm2.dts │ ├── imx6q-b450v3.dts │ ├── imx6q-b650v3.dts │ ├── imx6q-b850v3.dts │ ├── imx6q-ba16.dtsi │ ├── imx6q-bx50v3.dtsi │ ├── imx6q-cm-fx6.dts │ ├── imx6q-cubox-i-emmc-som-v15.dts │ ├── imx6q-cubox-i-som-v15.dts │ ├── imx6q-cubox-i.dts │ ├── imx6q-dfi-fs700-m60.dts │ ├── imx6q-display5-tianma-tm070-1280x768.dts │ ├── imx6q-display5.dtsi │ ├── imx6q-dmo-edmqmx6.dts │ ├── imx6q-evi.dts │ ├── imx6q-gk802.dts │ ├── imx6q-gw51xx.dts │ ├── imx6q-gw52xx.dts │ ├── imx6q-gw53xx.dts │ ├── imx6q-gw5400-a.dts │ ├── imx6q-gw54xx.dts │ ├── imx6q-gw551x.dts │ ├── imx6q-gw552x.dts │ ├── imx6q-gw553x.dts │ ├── imx6q-gw560x.dts │ ├── imx6q-gw5903.dts │ ├── imx6q-gw5904.dts │ ├── imx6q-h100.dts │ ├── imx6q-hummingboard-emmc-som-v15.dts │ ├── imx6q-hummingboard-som-v15.dts │ ├── imx6q-hummingboard.dts │ ├── imx6q-hummingboard2-emmc-som-v15.dts │ ├── imx6q-hummingboard2-som-v15.dts │ ├── imx6q-hummingboard2.dts │ ├── imx6q-icore-ofcap10.dts │ ├── imx6q-icore-ofcap12.dts │ ├── imx6q-icore-rqs.dts │ ├── imx6q-icore.dts │ ├── imx6q-marsboard.dts │ ├── imx6q-mccmon6.dts │ ├── imx6q-nitrogen6_max.dts │ ├── imx6q-nitrogen6_som2.dts │ ├── imx6q-nitrogen6x.dts │ ├── imx6q-novena.dts │ ├── imx6q-phytec-pbab01.dts │ ├── imx6q-phytec-pfla02.dtsi │ ├── imx6q-pinfunc.h │ ├── imx6q-pistachio.dts │ ├── imx6q-rex-pro.dts │ ├── imx6q-sabreauto.dts │ ├── imx6q-sabrelite.dts │ ├── imx6q-sabresd.dts │ ├── imx6q-savageboard.dts │ ├── imx6q-sbc6x.dts │ ├── imx6q-tbs2910.dts │ ├── imx6q-ts4900.dts │ ├── imx6q-ts7970.dts │ ├── imx6q-tx6q-1010-comtft.dts │ ├── imx6q-tx6q-1010.dts │ ├── imx6q-tx6q-1020-comtft.dts │ ├── imx6q-tx6q-1020.dts │ ├── imx6q-tx6q-1036-mb7.dts │ ├── imx6q-tx6q-1036.dts │ ├── imx6q-tx6q-10x0-mb7.dts │ ├── imx6q-tx6q-1110.dts │ ├── imx6q-tx6q-11x0-mb7.dts │ ├── imx6q-udoo.dts │ ├── imx6q-utilite-pro.dts │ ├── imx6q-var-dt6customboard.dts │ ├── imx6q-wandboard-revb1.dts │ ├── imx6q-wandboard-revd1.dts │ ├── imx6q-wandboard.dts │ ├── imx6q-zii-rdu2.dts │ ├── imx6q.dtsi │ ├── imx6qdl-apalis.dtsi │ ├── imx6qdl-apf6.dtsi │ ├── imx6qdl-apf6dev.dtsi │ ├── imx6qdl-aristainetos.dtsi │ ├── imx6qdl-aristainetos2.dtsi │ ├── imx6qdl-colibri.dtsi │ ├── imx6qdl-cubox-i.dtsi │ ├── imx6qdl-dfi-fs700-m60.dtsi │ ├── imx6qdl-gw51xx.dtsi │ ├── imx6qdl-gw52xx.dtsi │ ├── imx6qdl-gw53xx.dtsi │ ├── imx6qdl-gw54xx.dtsi │ ├── imx6qdl-gw551x.dtsi │ ├── imx6qdl-gw552x.dtsi │ ├── imx6qdl-gw553x.dtsi │ ├── imx6qdl-gw560x.dtsi │ ├── imx6qdl-gw5903.dtsi │ ├── imx6qdl-gw5904.dtsi │ ├── imx6qdl-hummingboard.dtsi │ ├── imx6qdl-hummingboard2-emmc.dtsi │ ├── imx6qdl-hummingboard2.dtsi │ ├── imx6qdl-icore-rqs.dtsi │ ├── imx6qdl-icore.dtsi │ ├── imx6qdl-nit6xlite.dtsi │ ├── imx6qdl-nitrogen6_max.dtsi │ ├── imx6qdl-nitrogen6_som2.dtsi │ ├── imx6qdl-nitrogen6x.dtsi │ ├── imx6qdl-phytec-pbab01.dtsi │ ├── imx6qdl-phytec-pfla02.dtsi │ ├── imx6qdl-rex.dtsi │ ├── imx6qdl-sabreauto.dtsi │ ├── imx6qdl-sabrelite.dtsi │ ├── imx6qdl-sabresd.dtsi │ ├── imx6qdl-savageboard.dtsi │ ├── imx6qdl-sr-som-brcm.dtsi │ ├── imx6qdl-sr-som-emmc.dtsi │ ├── imx6qdl-sr-som-ti.dtsi │ ├── imx6qdl-sr-som.dtsi │ ├── imx6qdl-ts4900.dtsi │ ├── imx6qdl-ts7970.dtsi │ ├── imx6qdl-tx6-lcd.dtsi │ ├── imx6qdl-tx6-lvds.dtsi │ ├── imx6qdl-tx6-mb7.dtsi │ ├── imx6qdl-tx6.dtsi │ ├── imx6qdl-udoo.dtsi │ ├── imx6qdl-var-dart.dtsi │ ├── imx6qdl-wandboard-revb1.dtsi │ ├── imx6qdl-wandboard-revc1.dtsi │ ├── imx6qdl-wandboard-revd1.dtsi │ ├── imx6qdl-wandboard.dtsi │ ├── imx6qdl-zii-rdu2.dtsi │ ├── imx6qdl.dtsi │ ├── imx6qp-nitrogen6_max.dts │ ├── imx6qp-nitrogen6_som2.dts │ ├── imx6qp-sabreauto.dts │ ├── imx6qp-sabresd.dts │ ├── imx6qp-tx6qp-8037-mb7.dts │ ├── imx6qp-tx6qp-8037.dts │ ├── imx6qp-tx6qp-8137-mb7.dts │ ├── imx6qp-tx6qp-8137.dts │ ├── imx6qp-wandboard-revd1.dts │ ├── imx6qp-zii-rdu2.dts │ ├── imx6qp.dtsi │ ├── imx6sl-evk.dts │ ├── imx6sl-pinfunc.h │ ├── imx6sl-warp.dts │ ├── imx6sl.dtsi │ ├── imx6sx-nitrogen6sx.dts │ ├── imx6sx-pinfunc.h │ ├── imx6sx-sabreauto.dts │ ├── imx6sx-sdb-reva.dts │ ├── imx6sx-sdb-sai.dts │ ├── imx6sx-sdb.dts │ ├── imx6sx-sdb.dtsi │ ├── imx6sx-softing-vining-2000.dts │ ├── imx6sx-udoo-neo-basic.dts │ ├── imx6sx-udoo-neo-extended.dts │ ├── imx6sx-udoo-neo-full.dts │ ├── imx6sx-udoo-neo.dtsi │ ├── imx6sx.dtsi │ ├── imx6ul-14x14-evk.dts │ ├── imx6ul-geam.dts │ ├── imx6ul-isiot-emmc.dts │ ├── imx6ul-isiot-nand.dts │ ├── imx6ul-isiot.dtsi │ ├── imx6ul-liteboard.dts │ ├── imx6ul-litesom.dtsi │ ├── imx6ul-opos6ul.dtsi │ ├── imx6ul-opos6uldev.dts │ ├── imx6ul-pico-hobbit.dts │ ├── imx6ul-pinfunc.h │ ├── imx6ul-tx6ul-0010.dts │ ├── imx6ul-tx6ul-0011.dts │ ├── imx6ul-tx6ul-mainboard.dts │ ├── imx6ul-tx6ul.dtsi │ ├── imx6ul.dtsi │ ├── imx6ull-14x14-evk.dts │ ├── imx6ull-pinfunc.h │ ├── imx6ull.dtsi │ ├── imx7-colibri-eval-v3.dtsi │ ├── imx7-colibri.dtsi │ ├── imx7d-cl-som-imx7.dts │ ├── imx7d-colibri-emmc-eval-v3.dts │ ├── imx7d-colibri-emmc.dtsi │ ├── imx7d-colibri-eval-v3.dts │ ├── imx7d-colibri.dtsi │ ├── imx7d-nitrogen7.dts │ ├── imx7d-pico-pi.dts │ ├── imx7d-pico.dtsi │ ├── imx7d-pinfunc.h │ ├── imx7d-sbc-imx7.dts │ ├── imx7d-sdb-sht11.dts │ ├── imx7d-sdb.dts │ ├── imx7d.dtsi │ ├── imx7s-colibri-eval-v3.dts │ ├── imx7s-colibri.dtsi │ ├── imx7s-warp.dts │ ├── imx7s.dtsi │ ├── imx7ulp-pinfunc.h │ ├── integrator.dtsi │ ├── integratorap.dts │ ├── integratorcp.dts │ ├── iwg20d-q7-common.dtsi │ ├── iwg20d-q7-dbcm-ca.dtsi │ ├── keystone-clocks.dtsi │ ├── keystone-k2e-clocks.dtsi │ ├── keystone-k2e-evm.dts │ ├── keystone-k2e-netcp.dtsi │ ├── keystone-k2e.dtsi │ ├── keystone-k2g-evm.dts │ ├── keystone-k2g-ice.dts │ ├── keystone-k2g.dtsi │ ├── keystone-k2hk-clocks.dtsi │ ├── keystone-k2hk-evm.dts │ ├── keystone-k2hk-netcp.dtsi │ ├── keystone-k2hk.dtsi │ ├── keystone-k2l-clocks.dtsi │ ├── keystone-k2l-evm.dts │ ├── keystone-k2l-netcp.dtsi │ ├── keystone-k2l.dtsi │ ├── keystone.dtsi │ ├── kirkwood-6192.dtsi │ ├── kirkwood-6281.dtsi │ ├── kirkwood-6282.dtsi │ ├── kirkwood-98dx4122.dtsi │ ├── kirkwood-b3.dts │ ├── kirkwood-blackarmor-nas220.dts │ ├── kirkwood-cloudbox.dts │ ├── kirkwood-d2net.dts │ ├── kirkwood-db-88f6281.dts │ ├── kirkwood-db-88f6282.dts │ ├── kirkwood-db.dtsi │ ├── kirkwood-dir665.dts │ ├── kirkwood-dns320.dts │ ├── kirkwood-dns325.dts │ ├── kirkwood-dnskw.dtsi │ ├── kirkwood-dockstar.dts │ ├── kirkwood-dreamplug.dts │ ├── kirkwood-ds109.dts │ ├── kirkwood-ds110jv10.dts │ ├── kirkwood-ds111.dts │ ├── kirkwood-ds112.dts │ ├── kirkwood-ds209.dts │ ├── kirkwood-ds210.dts │ ├── kirkwood-ds212.dts │ ├── kirkwood-ds212j.dts │ ├── kirkwood-ds409.dts │ ├── kirkwood-ds409slim.dts │ ├── kirkwood-ds411.dts │ ├── kirkwood-ds411j.dts │ ├── kirkwood-ds411slim.dts │ ├── kirkwood-goflexnet.dts │ ├── kirkwood-guruplug-server-plus.dts │ ├── kirkwood-ib62x0.dts │ ├── kirkwood-iconnect.dts │ ├── kirkwood-iomega_ix2_200.dts │ ├── kirkwood-is2.dts │ ├── kirkwood-km_common.dtsi │ ├── kirkwood-km_fixedeth.dts │ ├── kirkwood-km_kirkwood.dts │ ├── kirkwood-laplug.dts │ ├── kirkwood-linkstation-6282.dtsi │ ├── kirkwood-linkstation-duo-6281.dtsi │ ├── kirkwood-linkstation-lsqvl.dts │ ├── kirkwood-linkstation-lsvl.dts │ ├── kirkwood-linkstation-lswsxl.dts │ ├── kirkwood-linkstation-lswvl.dts │ ├── kirkwood-linkstation-lswxl.dts │ ├── kirkwood-linkstation.dtsi │ ├── kirkwood-linksys-viper.dts │ ├── kirkwood-lschlv2.dts │ ├── kirkwood-lsxhl.dts │ ├── kirkwood-lsxl.dtsi │ ├── kirkwood-mplcec4.dts │ ├── kirkwood-mv88f6281gtw-ge.dts │ ├── kirkwood-nas2big.dts │ ├── kirkwood-net2big.dts │ ├── kirkwood-net5big.dts │ ├── kirkwood-netgear_readynas_duo_v2.dts │ ├── kirkwood-netgear_readynas_nv+_v2.dts │ ├── kirkwood-netxbig.dtsi │ ├── kirkwood-ns2-common.dtsi │ ├── kirkwood-ns2.dts │ ├── kirkwood-ns2lite.dts │ ├── kirkwood-ns2max.dts │ ├── kirkwood-ns2mini.dts │ ├── kirkwood-nsa310.dts │ ├── kirkwood-nsa310a.dts │ ├── kirkwood-nsa320.dts │ ├── kirkwood-nsa325.dts │ ├── kirkwood-nsa3x0-common.dtsi │ ├── kirkwood-openblocks_a6.dts │ ├── kirkwood-openblocks_a7.dts │ ├── kirkwood-openrd-base.dts │ ├── kirkwood-openrd-client.dts │ ├── kirkwood-openrd-ultimate.dts │ ├── kirkwood-openrd.dtsi │ ├── kirkwood-pogo_e02.dts │ ├── kirkwood-pogoplug-series-4.dts │ ├── kirkwood-rd88f6192.dts │ ├── kirkwood-rd88f6281-a.dts │ ├── kirkwood-rd88f6281-z0.dts │ ├── kirkwood-rd88f6281.dtsi │ ├── kirkwood-rs212.dts │ ├── kirkwood-rs409.dts │ ├── kirkwood-rs411.dts │ ├── kirkwood-sheevaplug-common.dtsi │ ├── kirkwood-sheevaplug-esata.dts │ ├── kirkwood-sheevaplug.dts │ ├── kirkwood-synology.dtsi │ ├── kirkwood-t5325.dts │ ├── kirkwood-topkick.dts │ ├── kirkwood-ts219-6281.dts │ ├── kirkwood-ts219-6282.dts │ ├── kirkwood-ts219.dtsi │ ├── kirkwood-ts419-6281.dts │ ├── kirkwood-ts419-6282.dts │ ├── kirkwood-ts419.dtsi │ ├── kirkwood.dtsi │ ├── logicpd-som-lv-35xx-devkit.dts │ ├── logicpd-som-lv-37xx-devkit.dts │ ├── logicpd-som-lv-baseboard.dtsi │ ├── logicpd-som-lv.dtsi │ ├── logicpd-torpedo-35xx-devkit.dts │ ├── logicpd-torpedo-37xx-devkit.dts │ ├── logicpd-torpedo-baseboard.dtsi │ ├── logicpd-torpedo-som.dtsi │ ├── lpc18xx.dtsi │ ├── lpc3250-ea3250.dts │ ├── lpc3250-phy3250.dts │ ├── lpc32xx.dtsi │ ├── lpc4337-ciaa.dts │ ├── lpc4350-hitex-eval.dts │ ├── lpc4350.dtsi │ ├── lpc4357-ea4357-devkit.dts │ ├── lpc4357.dtsi │ ├── ls1021a-moxa-uc-8410a.dts │ ├── ls1021a-qds.dts │ ├── ls1021a-twr.dts │ ├── ls1021a.dtsi │ ├── meson.dtsi │ ├── meson6-atv1200.dts │ ├── meson6.dtsi │ ├── meson8-minix-neo-x8.dts │ ├── meson8.dtsi │ ├── meson8b-mxq.dts │ ├── meson8b-odroidc1.dts │ ├── meson8b.dtsi │ ├── mmp2-brownstone.dts │ ├── mmp2.dtsi │ ├── motorola-cpcap-mapphone.dtsi │ ├── moxart-uc7112lx.dts │ ├── moxart.dtsi │ ├── mpa1600.dts │ ├── mps2-an385.dts │ ├── mps2-an399.dts │ ├── mps2.dtsi │ ├── mt2701-evb.dts │ ├── mt2701-pinfunc.h │ ├── mt2701.dtsi │ ├── mt6323.dtsi │ ├── mt6580-evbp1.dts │ ├── mt6580.dtsi │ ├── mt6589-aquaris5.dts │ ├── mt6589.dtsi │ ├── mt6592-evb.dts │ ├── mt6592.dtsi │ ├── mt7623.dtsi │ ├── mt7623n-bananapi-bpi-r2.dts │ ├── mt7623n-rfb-nand.dts │ ├── mt7623n-rfb.dtsi │ ├── mt8127-moose.dts │ ├── mt8127.dtsi │ ├── mt8135-evbp1.dts │ ├── mt8135-pinfunc.h │ ├── mt8135.dtsi │ ├── mvebu-linkstation-fan.dtsi │ ├── mvebu-linkstation-gpio-simple.dtsi │ ├── mxs-pinfunc.h │ ├── nspire-classic.dtsi │ ├── nspire-clp.dts │ ├── nspire-cx.dts │ ├── nspire-tp.dts │ ├── nspire.dtsi │ ├── omap-gpmc-smsc911x.dtsi │ ├── omap-gpmc-smsc9221.dtsi │ ├── omap-zoom-common.dtsi │ ├── omap2.dtsi │ ├── omap2420-clocks.dtsi │ ├── omap2420-h4.dts │ ├── omap2420-n800.dts │ ├── omap2420-n810-wimax.dts │ ├── omap2420-n810.dts │ ├── omap2420-n8x0-common.dtsi │ ├── omap2420.dtsi │ ├── omap2430-clocks.dtsi │ ├── omap2430-sdp.dts │ ├── omap2430.dtsi │ ├── omap24xx-clocks.dtsi │ ├── omap3-beagle-xm-ab.dts │ ├── omap3-beagle-xm.dts │ ├── omap3-beagle.dts │ ├── omap3-cm-t3517.dts │ ├── omap3-cm-t3530.dts │ ├── omap3-cm-t3730.dts │ ├── omap3-cm-t3x.dtsi │ ├── omap3-cm-t3x30.dtsi │ ├── omap3-cpu-thermal.dtsi │ ├── omap3-devkit8000-common.dtsi │ ├── omap3-devkit8000-lcd-common.dtsi │ ├── omap3-devkit8000-lcd43.dts │ ├── omap3-devkit8000-lcd70.dts │ ├── omap3-devkit8000.dts │ ├── omap3-evm-37xx.dts │ ├── omap3-evm-common.dtsi │ ├── omap3-evm-processor-common.dtsi │ ├── omap3-evm.dts │ ├── omap3-gta04.dtsi │ ├── omap3-gta04a3.dts │ ├── omap3-gta04a4.dts │ ├── omap3-gta04a5.dts │ ├── omap3-ha-common.dtsi │ ├── omap3-ha-lcd.dts │ ├── omap3-ha.dts │ ├── omap3-igep.dtsi │ ├── omap3-igep0020-common.dtsi │ ├── omap3-igep0020-rev-f.dts │ ├── omap3-igep0020.dts │ ├── omap3-igep0030-common.dtsi │ ├── omap3-igep0030-rev-g.dts │ ├── omap3-igep0030.dts │ ├── omap3-ldp.dts │ ├── omap3-lilly-a83x.dtsi │ ├── omap3-lilly-dbb056.dts │ ├── omap3-n9.dts │ ├── omap3-n900.dts │ ├── omap3-n950-n9.dtsi │ ├── omap3-n950.dts │ ├── omap3-overo-alto35-common.dtsi │ ├── omap3-overo-alto35.dts │ ├── omap3-overo-base.dtsi │ ├── omap3-overo-chestnut43-common.dtsi │ ├── omap3-overo-chestnut43.dts │ ├── omap3-overo-common-dvi.dtsi │ ├── omap3-overo-common-lcd35.dtsi │ ├── omap3-overo-common-lcd43.dtsi │ ├── omap3-overo-common-peripherals.dtsi │ ├── omap3-overo-gallop43-common.dtsi │ ├── omap3-overo-gallop43.dts │ ├── omap3-overo-palo35-common.dtsi │ ├── omap3-overo-palo35.dts │ ├── omap3-overo-palo43-common.dtsi │ ├── omap3-overo-palo43.dts │ ├── omap3-overo-storm-alto35.dts │ ├── omap3-overo-storm-chestnut43.dts │ ├── omap3-overo-storm-gallop43.dts │ ├── omap3-overo-storm-palo35.dts │ ├── omap3-overo-storm-palo43.dts │ ├── omap3-overo-storm-summit.dts │ ├── omap3-overo-storm-tobi.dts │ ├── omap3-overo-storm-tobiduo.dts │ ├── omap3-overo-storm.dtsi │ ├── omap3-overo-summit-common.dtsi │ ├── omap3-overo-summit.dts │ ├── omap3-overo-tobi-common.dtsi │ ├── omap3-overo-tobi.dts │ ├── omap3-overo-tobiduo-common.dtsi │ ├── omap3-overo-tobiduo.dts │ ├── omap3-overo.dtsi │ ├── omap3-pandora-1ghz.dts │ ├── omap3-pandora-600mhz.dts │ ├── omap3-pandora-common.dtsi │ ├── omap3-panel-sharp-ls037v7dw01.dtsi │ ├── omap3-sb-t35.dtsi │ ├── omap3-sbc-t3517.dts │ ├── omap3-sbc-t3530.dts │ ├── omap3-sbc-t3730.dts │ ├── omap3-sniper.dts │ ├── omap3-tao3530.dtsi │ ├── omap3-thunder.dts │ ├── omap3-zoom3.dts │ ├── omap3.dtsi │ ├── omap3430-sdp.dts │ ├── omap3430es1-clocks.dtsi │ ├── omap34xx-omap36xx-clocks.dtsi │ ├── omap34xx.dtsi │ ├── omap36xx-am35xx-omap3430es2plus-clocks.dtsi │ ├── omap36xx-clocks.dtsi │ ├── omap36xx-omap3430es2plus-clocks.dtsi │ ├── omap36xx.dtsi │ ├── omap3xxx-clocks.dtsi │ ├── omap4-cpu-thermal.dtsi │ ├── omap4-droid4-xt894.dts │ ├── omap4-duovero-parlor.dts │ ├── omap4-duovero.dtsi │ ├── omap4-kc1.dts │ ├── omap4-panda-a4.dts │ ├── omap4-panda-common.dtsi │ ├── omap4-panda-es.dts │ ├── omap4-panda.dts │ ├── omap4-sdp-es23plus.dts │ ├── omap4-sdp.dts │ ├── omap4-var-dvk-om44.dts │ ├── omap4-var-om44customboard.dtsi │ ├── omap4-var-som-om44-wlan.dtsi │ ├── omap4-var-som-om44.dtsi │ ├── omap4-var-stk-om44.dts │ ├── omap4.dtsi │ ├── omap443x-clocks.dtsi │ ├── omap443x.dtsi │ ├── omap4460.dtsi │ ├── omap446x-clocks.dtsi │ ├── omap44xx-clocks.dtsi │ ├── omap5-board-common.dtsi │ ├── omap5-cm-t54.dts │ ├── omap5-core-thermal.dtsi │ ├── omap5-gpu-thermal.dtsi │ ├── omap5-igep0050.dts │ ├── omap5-sbc-t54.dts │ ├── omap5-uevm.dts │ ├── omap5.dtsi │ ├── omap54xx-clocks.dtsi │ ├── openbmc-flash-layout.dtsi │ ├── orion5x-kuroboxpro.dts │ ├── orion5x-lacie-d2-network.dts │ ├── orion5x-lacie-ethernet-disk-mini-v2.dts │ ├── orion5x-linkstation-lschl.dts │ ├── orion5x-linkstation-lsgl.dts │ ├── orion5x-linkstation-lswtgl.dts │ ├── orion5x-linkstation.dtsi │ ├── orion5x-lswsgl.dts │ ├── orion5x-maxtor-shared-storage-2.dts │ ├── orion5x-mv88f5181.dtsi │ ├── orion5x-mv88f5182.dtsi │ ├── orion5x-netgear-wnr854t.dts │ ├── orion5x-rd88f5182-nas.dts │ ├── orion5x.dtsi │ ├── owl-s500-cubieboard6.dts │ ├── owl-s500-guitar-bb-rev-b.dts │ ├── owl-s500-guitar.dtsi │ ├── owl-s500-sparky.dts │ ├── owl-s500.dtsi │ ├── ox810se-wd-mbwe.dts │ ├── ox810se.dtsi │ ├── ox820-cloudengines-pogoplug-series-3.dts │ ├── ox820.dtsi │ ├── picoxcell-pc3x2.dtsi │ ├── picoxcell-pc3x3.dtsi │ ├── picoxcell-pc7302-pc3x2.dts │ ├── picoxcell-pc7302-pc3x3.dts │ ├── pm9g45.dts │ ├── prima2-evb.dts │ ├── prima2.dtsi │ ├── pxa168-aspenite.dts │ ├── pxa168.dtsi │ ├── pxa25x.dtsi │ ├── pxa27x.dtsi │ ├── pxa2xx.dtsi │ ├── pxa3xx.dtsi │ ├── pxa910-dkb.dts │ ├── pxa910.dtsi │ ├── qcom-apq8060-dragonboard.dts │ ├── qcom-apq8064-arrow-sd-600eval-pins.dtsi │ ├── qcom-apq8064-arrow-sd-600eval.dts │ ├── qcom-apq8064-asus-nexus7-flo.dts │ ├── qcom-apq8064-cm-qs600.dts │ ├── qcom-apq8064-ifc6410.dts │ ├── qcom-apq8064-pins.dtsi │ ├── qcom-apq8064-sony-xperia-yuga.dts │ ├── qcom-apq8064-v2.0.dtsi │ ├── qcom-apq8064.dtsi │ ├── qcom-apq8074-dragonboard.dts │ ├── qcom-apq8084-ifc6540.dts │ ├── qcom-apq8084-mtp.dts │ ├── qcom-apq8084.dtsi │ ├── qcom-ipq4019-ap.dk01.1-c1.dts │ ├── qcom-ipq4019-ap.dk01.1.dtsi │ ├── qcom-ipq4019.dtsi │ ├── qcom-ipq8064-ap148.dts │ ├── qcom-ipq8064-v1.0.dtsi │ ├── qcom-ipq8064.dtsi │ ├── qcom-mdm9615-wp8548-mangoh-green.dts │ ├── qcom-mdm9615-wp8548.dtsi │ ├── qcom-mdm9615.dtsi │ ├── qcom-msm8660-surf.dts │ ├── qcom-msm8660.dtsi │ ├── qcom-msm8960-cdp.dts │ ├── qcom-msm8960.dtsi │ ├── qcom-msm8974-fairphone-fp2.dts │ ├── qcom-msm8974-lge-nexus5-hammerhead.dts │ ├── qcom-msm8974-sony-xperia-castor.dts │ ├── qcom-msm8974-sony-xperia-honami.dts │ ├── qcom-msm8974.dtsi │ ├── qcom-msm8974pro.dtsi │ ├── qcom-pm8841.dtsi │ ├── qcom-pm8941.dtsi │ ├── qcom-pma8084.dtsi │ ├── r7s72100-genmai.dts │ ├── r7s72100-gr-peach.dts │ ├── r7s72100-rskrza1.dts │ ├── r7s72100.dtsi │ ├── r8a73a4-ape6evm.dts │ ├── r8a73a4.dtsi │ ├── r8a7740-armadillo800eva.dts │ ├── r8a7740.dtsi │ ├── r8a7743-iwg20d-q7-dbcm-ca.dts │ ├── r8a7743-iwg20d-q7.dts │ ├── r8a7743-iwg20m.dtsi │ ├── r8a7743-sk-rzg1m.dts │ ├── r8a7743.dtsi │ ├── r8a7745-iwg22d-sodimm-dbhd-ca.dts │ ├── r8a7745-iwg22d-sodimm.dts │ ├── r8a7745-iwg22m.dtsi │ ├── r8a7745-sk-rzg1e.dts │ ├── r8a7745.dtsi │ ├── r8a7778-bockw.dts │ ├── r8a7778.dtsi │ ├── r8a7779-marzen.dts │ ├── r8a7779.dtsi │ ├── r8a7790-lager.dts │ ├── r8a7790.dtsi │ ├── r8a7791-koelsch.dts │ ├── r8a7791-porter.dts │ ├── r8a7791.dtsi │ ├── r8a7792-blanche.dts │ ├── r8a7792-wheat.dts │ ├── r8a7792.dtsi │ ├── r8a7793-gose.dts │ ├── r8a7793.dtsi │ ├── r8a7794-alt.dts │ ├── r8a7794-silk.dts │ ├── r8a7794.dtsi │ ├── r8a77xx-aa104xd12-panel.dtsi │ ├── r8a77xx-aa121td01-panel.dtsi │ ├── rk3036-evb.dts │ ├── rk3036-kylin.dts │ ├── rk3036.dtsi │ ├── rk3066a-bqcurie2.dts │ ├── rk3066a-marsboard.dts │ ├── rk3066a-mk808.dts │ ├── rk3066a-rayeager.dts │ ├── rk3066a.dtsi │ ├── rk3188-px3-evb.dts │ ├── rk3188-radxarock.dts │ ├── rk3188.dtsi │ ├── rk3228-evb.dts │ ├── rk3229-evb.dts │ ├── rk3229.dtsi │ ├── rk322x.dtsi │ ├── rk3288-evb-act8846.dts │ ├── rk3288-evb-rk808.dts │ ├── rk3288-evb.dtsi │ ├── rk3288-fennec.dts │ ├── rk3288-firefly-beta.dts │ ├── rk3288-firefly-reload-core.dtsi │ ├── rk3288-firefly-reload.dts │ ├── rk3288-firefly.dts │ ├── rk3288-firefly.dtsi │ ├── rk3288-miqi.dts │ ├── rk3288-phycore-rdk.dts │ ├── rk3288-phycore-som.dtsi │ ├── rk3288-popmetal.dts │ ├── rk3288-r89.dts │ ├── rk3288-rock2-som.dtsi │ ├── rk3288-rock2-square.dts │ ├── rk3288-tinker.dts │ ├── rk3288-veyron-analog-audio.dtsi │ ├── rk3288-veyron-brain.dts │ ├── rk3288-veyron-chromebook.dtsi │ ├── rk3288-veyron-jaq.dts │ ├── rk3288-veyron-jerry.dts │ ├── rk3288-veyron-mickey.dts │ ├── rk3288-veyron-minnie.dts │ ├── rk3288-veyron-pinky.dts │ ├── rk3288-veyron-sdmmc.dtsi │ ├── rk3288-veyron-speedy.dts │ ├── rk3288-veyron.dtsi │ ├── rk3288-vyasa.dts │ ├── rk3288.dtsi │ ├── rk3xxx.dtsi │ ├── rv1108-evb.dts │ ├── rv1108.dtsi │ ├── s3c2416-pinctrl.dtsi │ ├── s3c2416-smdk2416.dts │ ├── s3c2416.dtsi │ ├── s3c24xx.dtsi │ ├── s3c6400.dtsi │ ├── s3c6410-mini6410.dts │ ├── s3c6410-smdk6410.dts │ ├── s3c6410.dtsi │ ├── s3c64xx-pinctrl.dtsi │ ├── s3c64xx.dtsi │ ├── s5pv210-aquila.dts │ ├── s5pv210-goni.dts │ ├── s5pv210-pinctrl.dtsi │ ├── s5pv210-smdkc110.dts │ ├── s5pv210-smdkv210.dts │ ├── s5pv210-torbreck.dts │ ├── s5pv210.dtsi │ ├── sama5d2-pinfunc.h │ ├── sama5d2.dtsi │ ├── sama5d3.dtsi │ ├── sama5d31.dtsi │ ├── sama5d31ek.dts │ ├── sama5d33.dtsi │ ├── sama5d33ek.dts │ ├── sama5d34.dtsi │ ├── sama5d34ek.dts │ ├── sama5d35.dtsi │ ├── sama5d35ek.dts │ ├── sama5d36.dtsi │ ├── sama5d36ek.dts │ ├── sama5d36ek_cmp.dts │ ├── sama5d3_can.dtsi │ ├── sama5d3_emac.dtsi │ ├── sama5d3_gmac.dtsi │ ├── sama5d3_lcd.dtsi │ ├── sama5d3_mci2.dtsi │ ├── sama5d3_tcb1.dtsi │ ├── sama5d3_uart.dtsi │ ├── sama5d3xcm.dtsi │ ├── sama5d3xcm_cmp.dtsi │ ├── sama5d3xdm.dtsi │ ├── sama5d3xmb.dtsi │ ├── sama5d3xmb_cmp.dtsi │ ├── sama5d3xmb_emac.dtsi │ ├── sama5d3xmb_gmac.dtsi │ ├── sama5d4.dtsi │ ├── samsung_k3pe0e000b.dtsi │ ├── sh73a0-kzm9g.dts │ ├── sh73a0.dtsi │ ├── skeleton.dtsi │ ├── skeleton64.dtsi │ ├── socfpga.dtsi │ ├── socfpga_arria10.dtsi │ ├── socfpga_arria10_socdk.dtsi │ ├── socfpga_arria10_socdk_nand.dts │ ├── socfpga_arria10_socdk_qspi.dts │ ├── socfpga_arria10_socdk_sdmmc.dts │ ├── socfpga_arria5.dtsi │ ├── socfpga_arria5_socdk.dts │ ├── socfpga_cyclone5.dtsi │ ├── socfpga_cyclone5_de0_sockit.dts │ ├── socfpga_cyclone5_mcv.dtsi │ ├── socfpga_cyclone5_mcvevk.dts │ ├── socfpga_cyclone5_socdk.dts │ ├── socfpga_cyclone5_sockit.dts │ ├── socfpga_cyclone5_socrates.dts │ ├── socfpga_cyclone5_sodia.dts │ ├── socfpga_cyclone5_vining_fpga.dts │ ├── socfpga_vt.dts │ ├── spear1310-evb.dts │ ├── spear1310.dtsi │ ├── spear1340-evb.dts │ ├── spear1340.dtsi │ ├── spear13xx.dtsi │ ├── spear300-evb.dts │ ├── spear300.dtsi │ ├── spear310-evb.dts │ ├── spear310.dtsi │ ├── spear320-evb.dts │ ├── spear320-hmi.dts │ ├── spear320.dtsi │ ├── spear3xx.dtsi │ ├── spear600-evb.dts │ ├── spear600.dtsi │ ├── st-pincfg.h │ ├── ste-ccu8540-pinctrl.dtsi │ ├── ste-ccu8540.dts │ ├── ste-ccu9540.dts │ ├── ste-dbx5x0.dtsi │ ├── ste-href-ab8500.dtsi │ ├── ste-href-ab8505.dtsi │ ├── ste-href-family-pinctrl.dtsi │ ├── ste-href-stuib.dtsi │ ├── ste-href-tvk1281618.dtsi │ ├── ste-href.dtsi │ ├── ste-hrefprev60-stuib.dts │ ├── ste-hrefprev60-tvk.dts │ ├── ste-hrefprev60.dtsi │ ├── ste-hrefv60plus-stuib.dts │ ├── ste-hrefv60plus-tvk.dts │ ├── ste-hrefv60plus.dtsi │ ├── ste-nomadik-nhk15.dts │ ├── ste-nomadik-pinctrl.dtsi │ ├── ste-nomadik-s8815.dts │ ├── ste-nomadik-stn8815.dtsi │ ├── ste-snowball.dts │ ├── ste-u300.dts │ ├── stih407-b2120.dts │ ├── stih407-clock.dtsi │ ├── stih407-family.dtsi │ ├── stih407-pinctrl.dtsi │ ├── stih407.dtsi │ ├── stih410-b2120.dts │ ├── stih410-b2260.dts │ ├── stih410-clock.dtsi │ ├── stih410-pinctrl.dtsi │ ├── stih410.dtsi │ ├── stih418-b2199.dts │ ├── stih418-clock.dtsi │ ├── stih418.dtsi │ ├── stihxxx-b2120.dtsi │ ├── stm32429i-eval.dts │ ├── stm32746g-eval.dts │ ├── stm32f4-pinctrl.dtsi │ ├── stm32f429-disco.dts │ ├── stm32f429-pinctrl.dtsi │ ├── stm32f429.dtsi │ ├── stm32f469-disco.dts │ ├── stm32f469-pinctrl.dtsi │ ├── stm32f746-disco.dts │ ├── stm32f746.dtsi │ ├── stm32f769-disco.dts │ ├── stm32h743-pinctrl.dtsi │ ├── stm32h743.dtsi │ ├── stm32h743i-disco.dts │ ├── stm32h743i-eval.dts │ ├── sun4i-a10-a1000.dts │ ├── sun4i-a10-ba10-tvbox.dts │ ├── sun4i-a10-chuwi-v7-cw0825.dts │ ├── sun4i-a10-cubieboard.dts │ ├── sun4i-a10-dserve-dsrv9703c.dts │ ├── sun4i-a10-gemei-g9.dts │ ├── sun4i-a10-hackberry.dts │ ├── sun4i-a10-hyundai-a7hd.dts │ ├── sun4i-a10-inet1.dts │ ├── sun4i-a10-inet97fv2.dts │ ├── sun4i-a10-inet9f-rev03.dts │ ├── sun4i-a10-itead-iteaduino-plus.dts │ ├── sun4i-a10-jesurun-q5.dts │ ├── sun4i-a10-marsboard.dts │ ├── sun4i-a10-mini-xplus.dts │ ├── sun4i-a10-mk802.dts │ ├── sun4i-a10-mk802ii.dts │ ├── sun4i-a10-olinuxino-lime.dts │ ├── sun4i-a10-pcduino.dts │ ├── sun4i-a10-pcduino2.dts │ ├── sun4i-a10-pov-protab2-ips9.dts │ ├── sun4i-a10.dtsi │ ├── sun5i-a10s-auxtek-t003.dts │ ├── sun5i-a10s-auxtek-t004.dts │ ├── sun5i-a10s-mk802.dts │ ├── sun5i-a10s-olinuxino-micro.dts │ ├── sun5i-a10s-r7-tv-dongle.dts │ ├── sun5i-a10s-wobo-i5.dts │ ├── sun5i-a10s.dtsi │ ├── sun5i-a13-difrnce-dit4350.dts │ ├── sun5i-a13-empire-electronix-d709.dts │ ├── sun5i-a13-empire-electronix-m712.dts │ ├── sun5i-a13-hsg-h702.dts │ ├── sun5i-a13-inet-98v-rev2.dts │ ├── sun5i-a13-licheepi-one.dts │ ├── sun5i-a13-olinuxino-micro.dts │ ├── sun5i-a13-olinuxino.dts │ ├── sun5i-a13-q8-tablet.dts │ ├── sun5i-a13-utoo-p66.dts │ ├── sun5i-a13.dtsi │ ├── sun5i-gr8-chip-pro.dts │ ├── sun5i-gr8-evb.dts │ ├── sun5i-gr8.dtsi │ ├── sun5i-r8-chip.dts │ ├── sun5i-r8.dtsi │ ├── sun5i-reference-design-tablet.dtsi │ ├── sun5i.dtsi │ ├── sun6i-a31-app4-evb1.dts │ ├── sun6i-a31-colombus.dts │ ├── sun6i-a31-hummingbird.dts │ ├── sun6i-a31-i7.dts │ ├── sun6i-a31-m9.dts │ ├── sun6i-a31-mele-a1000g-quad.dts │ ├── sun6i-a31.dtsi │ ├── sun6i-a31s-colorfly-e708-q1.dts │ ├── sun6i-a31s-cs908.dts │ ├── sun6i-a31s-inet-q972.dts │ ├── sun6i-a31s-primo81.dts │ ├── sun6i-a31s-sina31s-core.dtsi │ ├── sun6i-a31s-sina31s.dts │ ├── sun6i-a31s-sinovoip-bpi-m2.dts │ ├── sun6i-a31s-yones-toptech-bs1078-v2.dts │ ├── sun6i-a31s.dtsi │ ├── sun6i-reference-design-tablet.dtsi │ ├── sun7i-a20-bananapi-m1-plus.dts │ ├── sun7i-a20-bananapi.dts │ ├── sun7i-a20-bananapro.dts │ ├── sun7i-a20-cubieboard2.dts │ ├── sun7i-a20-cubietruck.dts │ ├── sun7i-a20-hummingbird.dts │ ├── sun7i-a20-i12-tvbox.dts │ ├── sun7i-a20-icnova-swac.dts │ ├── sun7i-a20-itead-ibox.dts │ ├── sun7i-a20-lamobo-r1.dts │ ├── sun7i-a20-m3.dts │ ├── sun7i-a20-mk808c.dts │ ├── sun7i-a20-olimex-som-evb.dts │ ├── sun7i-a20-olinuxino-lime.dts │ ├── sun7i-a20-olinuxino-lime2-emmc.dts │ ├── sun7i-a20-olinuxino-lime2.dts │ ├── sun7i-a20-olinuxino-micro-emmc.dts │ ├── sun7i-a20-olinuxino-micro.dts │ ├── sun7i-a20-orangepi-mini.dts │ ├── sun7i-a20-orangepi.dts │ ├── sun7i-a20-pcduino3-nano.dts │ ├── sun7i-a20-pcduino3.dts │ ├── sun7i-a20-wexler-tab7200.dts │ ├── sun7i-a20-wits-pro-a20-dkt.dts │ ├── sun7i-a20.dtsi │ ├── sun8i-a23-a33.dtsi │ ├── sun8i-a23-evb.dts │ ├── sun8i-a23-gt90h-v4.dts │ ├── sun8i-a23-inet86dz.dts │ ├── sun8i-a23-ippo-q8h-v1.2.dts │ ├── sun8i-a23-ippo-q8h-v5.dts │ ├── sun8i-a23-polaroid-mid2407pxe03.dts │ ├── sun8i-a23-polaroid-mid2809pxe04.dts │ ├── sun8i-a23-q8-tablet.dts │ ├── sun8i-a23.dtsi │ ├── sun8i-a33-et-q8-v1.6.dts │ ├── sun8i-a33-ga10h-v1.1.dts │ ├── sun8i-a33-inet-d978-rev2.dts │ ├── sun8i-a33-ippo-q8h-v1.2.dts │ ├── sun8i-a33-olinuxino.dts │ ├── sun8i-a33-q8-tablet.dts │ ├── sun8i-a33-sinlinx-sina33.dts │ ├── sun8i-a33.dtsi │ ├── sun8i-a83t-allwinner-h8homlet-v2.dts │ ├── sun8i-a83t-bananapi-m3.dts │ ├── sun8i-a83t-cubietruck-plus.dts │ ├── sun8i-a83t-tbs-a711.dts │ ├── sun8i-a83t.dtsi │ ├── sun8i-h2-plus-orangepi-r1.dts │ ├── sun8i-h2-plus-orangepi-zero.dts │ ├── sun8i-h3-bananapi-m2-plus.dts │ ├── sun8i-h3-beelink-x2.dts │ ├── sun8i-h3-libretech-all-h3-cc.dts │ ├── sun8i-h3-nanopi-m1-plus.dts │ ├── sun8i-h3-nanopi-m1.dts │ ├── sun8i-h3-nanopi-neo-air.dts │ ├── sun8i-h3-nanopi-neo.dts │ ├── sun8i-h3-nanopi.dtsi │ ├── sun8i-h3-orangepi-2.dts │ ├── sun8i-h3-orangepi-lite.dts │ ├── sun8i-h3-orangepi-one.dts │ ├── sun8i-h3-orangepi-pc-plus.dts │ ├── sun8i-h3-orangepi-pc.dts │ ├── sun8i-h3-orangepi-plus.dts │ ├── sun8i-h3-orangepi-plus2e.dts │ ├── sun8i-h3.dtsi │ ├── sun8i-q8-common.dtsi │ ├── sun8i-r16-bananapi-m2m.dts │ ├── sun8i-r16-parrot.dts │ ├── sun8i-r40-bananapi-m2-ultra.dts │ ├── sun8i-r40.dtsi │ ├── sun8i-reference-design-tablet.dtsi │ ├── sun8i-v3s-licheepi-zero-dock.dts │ ├── sun8i-v3s-licheepi-zero.dts │ ├── sun8i-v3s.dtsi │ ├── sun8i-v40-bananapi-m2-berry.dts │ ├── sun9i-a80-cubieboard4.dts │ ├── sun9i-a80-optimus.dts │ ├── sun9i-a80.dtsi │ ├── sunxi-common-regulators.dtsi │ ├── sunxi-h3-h5.dtsi │ ├── sunxi-itead-core-common.dtsi │ ├── sunxi-reference-design-tablet.dtsi │ ├── tango4-common.dtsi │ ├── tango4-smp8758.dtsi │ ├── tango4-vantage-1172.dts │ ├── tegra114-dalmore.dts │ ├── tegra114-roth.dts │ ├── tegra114-tn7.dts │ ├── tegra114.dtsi │ ├── tegra124-apalis-emc.dtsi │ ├── tegra124-apalis-eval.dts │ ├── tegra124-apalis.dtsi │ ├── tegra124-jetson-tk1-emc.dtsi │ ├── tegra124-jetson-tk1.dts │ ├── tegra124-nyan-big-emc.dtsi │ ├── tegra124-nyan-big.dts │ ├── tegra124-nyan-blaze-emc.dtsi │ ├── tegra124-nyan-blaze.dts │ ├── tegra124-nyan.dtsi │ ├── tegra124-venice2.dts │ ├── tegra124.dtsi │ ├── tegra20-colibri-512.dtsi │ ├── tegra20-harmony.dts │ ├── tegra20-iris-512.dts │ ├── tegra20-medcom-wide.dts │ ├── tegra20-paz00.dts │ ├── tegra20-plutux.dts │ ├── tegra20-seaboard.dts │ ├── tegra20-tamonten.dtsi │ ├── tegra20-tec.dts │ ├── tegra20-trimslice.dts │ ├── tegra20-ventana.dts │ ├── tegra20.dtsi │ ├── tegra30-apalis-eval.dts │ ├── tegra30-apalis.dtsi │ ├── tegra30-beaver.dts │ ├── tegra30-cardhu-a02.dts │ ├── tegra30-cardhu-a04.dts │ ├── tegra30-cardhu.dtsi │ ├── tegra30-colibri-eval-v3.dts │ ├── tegra30-colibri.dtsi │ ├── tegra30.dtsi │ ├── tny_a9260.dts │ ├── tny_a9260_common.dtsi │ ├── tny_a9263.dts │ ├── tny_a9g20.dts │ ├── tps6507x.dtsi │ ├── tps65217.dtsi │ ├── tps65910.dtsi │ ├── twl4030.dtsi │ ├── twl4030_omap3.dtsi │ ├── twl6030.dtsi │ ├── twl6030_omap4.dtsi │ ├── uniphier-ld4-ref.dts │ ├── uniphier-ld4.dtsi │ ├── uniphier-ld6b-ref.dts │ ├── uniphier-ld6b.dtsi │ ├── uniphier-pinctrl.dtsi │ ├── uniphier-pro4-ace.dts │ ├── uniphier-pro4-ref.dts │ ├── uniphier-pro4-sanji.dts │ ├── uniphier-pro4.dtsi │ ├── uniphier-pro5.dtsi │ ├── uniphier-pxs2-gentil.dts │ ├── uniphier-pxs2-vodka.dts │ ├── uniphier-pxs2.dtsi │ ├── uniphier-ref-daughter.dtsi │ ├── uniphier-sld8-ref.dts │ ├── uniphier-sld8.dtsi │ ├── uniphier-support-card.dtsi │ ├── usb_a9260.dts │ ├── usb_a9260_common.dtsi │ ├── usb_a9263.dts │ ├── usb_a9g20-dab-mmx.dtsi │ ├── usb_a9g20.dts │ ├── usb_a9g20_common.dtsi │ ├── usb_a9g20_lpw.dts │ ├── versatile-ab.dts │ ├── versatile-pb.dts │ ├── vexpress-v2m-rs1.dtsi │ ├── vexpress-v2m.dtsi │ ├── vexpress-v2p-ca15-tc1.dts │ ├── vexpress-v2p-ca15_a7.dts │ ├── vexpress-v2p-ca5s.dts │ ├── vexpress-v2p-ca9.dts │ ├── vf-colibri-eval-v3.dtsi │ ├── vf-colibri.dtsi │ ├── vf500-colibri-eval-v3.dts │ ├── vf500-colibri.dtsi │ ├── vf500.dtsi │ ├── vf610-colibri-eval-v3.dts │ ├── vf610-colibri.dtsi │ ├── vf610-cosmic.dts │ ├── vf610-pinfunc.h │ ├── vf610-twr.dts │ ├── vf610-zii-dev-rev-b.dts │ ├── vf610-zii-dev-rev-c.dts │ ├── vf610-zii-dev.dtsi │ ├── vf610.dtsi │ ├── vf610m4-colibri.dts │ ├── vf610m4-cosmic.dts │ ├── vf610m4.dtsi │ ├── vfxxx.dtsi │ ├── vt8500-bv07.dts │ ├── vt8500.dtsi │ ├── wm8505-ref.dts │ ├── wm8505.dtsi │ ├── wm8650-mid.dts │ ├── wm8650.dtsi │ ├── wm8750-apc8750.dts │ ├── wm8750.dtsi │ ├── wm8850-w70v2.dts │ ├── wm8850.dtsi │ ├── xenvm-4.2.dts │ ├── zx296702-ad1.dts │ ├── zx296702.dtsi │ ├── zynq-7000.dtsi │ ├── zynq-microzed.dts │ ├── zynq-parallella.dts │ ├── zynq-zc702.dts │ ├── zynq-zc706.dts │ ├── zynq-zed.dts │ └── zynq-zybo.dts │ ├── arm64 │ ├── actions │ │ ├── s700-cubieboard7.dts │ │ ├── s700.dtsi │ │ ├── s900-bubblegum-96.dts │ │ └── s900.dtsi │ ├── al │ │ ├── alpine-v2-evp.dts │ │ └── alpine-v2.dtsi │ ├── allwinner │ │ ├── axp803.dtsi │ │ ├── sun50i-a64-bananapi-m64.dts │ │ ├── sun50i-a64-nanopi-a64.dts │ │ ├── sun50i-a64-olinuxino.dts │ │ ├── sun50i-a64-orangepi-win.dts │ │ ├── sun50i-a64-pine64-plus.dts │ │ ├── sun50i-a64-pine64.dts │ │ ├── sun50i-a64-sopine-baseboard.dts │ │ ├── sun50i-a64-sopine.dtsi │ │ ├── sun50i-a64.dtsi │ │ ├── sun50i-h5-nanopi-neo-plus2.dts │ │ ├── sun50i-h5-nanopi-neo2.dts │ │ ├── sun50i-h5-orangepi-pc2.dts │ │ ├── sun50i-h5-orangepi-prime.dts │ │ ├── sun50i-h5-orangepi-zero-plus2.dts │ │ └── sun50i-h5.dtsi │ ├── altera │ │ ├── socfpga_stratix10.dtsi │ │ └── socfpga_stratix10_socdk.dts │ ├── amd │ │ ├── amd-overdrive-rev-b0.dts │ │ ├── amd-overdrive-rev-b1.dts │ │ ├── amd-overdrive.dts │ │ ├── amd-seattle-clks.dtsi │ │ ├── amd-seattle-soc.dtsi │ │ ├── amd-seattle-xgbe-b.dtsi │ │ └── husky.dts │ ├── amlogic │ │ ├── meson-axg-s400.dts │ │ ├── meson-axg.dtsi │ │ ├── meson-gx-p23x-q20x.dtsi │ │ ├── meson-gx.dtsi │ │ ├── meson-gxbb-nanopi-k2.dts │ │ ├── meson-gxbb-nexbox-a95x.dts │ │ ├── meson-gxbb-odroidc2.dts │ │ ├── meson-gxbb-p200.dts │ │ ├── meson-gxbb-p201.dts │ │ ├── meson-gxbb-p20x.dtsi │ │ ├── meson-gxbb-vega-s95-meta.dts │ │ ├── meson-gxbb-vega-s95-pro.dts │ │ ├── meson-gxbb-vega-s95-telos.dts │ │ ├── meson-gxbb-vega-s95.dtsi │ │ ├── meson-gxbb-wetek-hub.dts │ │ ├── meson-gxbb-wetek-play2.dts │ │ ├── meson-gxbb.dtsi │ │ ├── meson-gxl-mali.dtsi │ │ ├── meson-gxl-s905d-p230.dts │ │ ├── meson-gxl-s905d-p231.dts │ │ ├── meson-gxl-s905d.dtsi │ │ ├── meson-gxl-s905x-hwacom-amazetv.dts │ │ ├── meson-gxl-s905x-khadas-vim.dts │ │ ├── meson-gxl-s905x-libretech-cc.dts │ │ ├── meson-gxl-s905x-nexbox-a95x.dts │ │ ├── meson-gxl-s905x-p212.dts │ │ ├── meson-gxl-s905x-p212.dtsi │ │ ├── meson-gxl-s905x.dtsi │ │ ├── meson-gxl.dtsi │ │ ├── meson-gxm-khadas-vim2.dts │ │ ├── meson-gxm-nexbox-a1.dts │ │ ├── meson-gxm-q200.dts │ │ ├── meson-gxm-q201.dts │ │ ├── meson-gxm-rbox-pro.dts │ │ ├── meson-gxm-vega-s96.dts │ │ └── meson-gxm.dtsi │ ├── apm │ │ ├── apm-merlin.dts │ │ ├── apm-mustang.dts │ │ ├── apm-shadowcat.dtsi │ │ └── apm-storm.dtsi │ ├── arm │ │ ├── foundation-v8-gicv2.dtsi │ │ ├── foundation-v8-gicv3-psci.dts │ │ ├── foundation-v8-gicv3.dts │ │ ├── foundation-v8-gicv3.dtsi │ │ ├── foundation-v8-psci.dts │ │ ├── foundation-v8-psci.dtsi │ │ ├── foundation-v8-spin-table.dtsi │ │ ├── foundation-v8.dts │ │ ├── foundation-v8.dtsi │ │ ├── juno-base.dtsi │ │ ├── juno-clocks.dtsi │ │ ├── juno-cs-r1r2.dtsi │ │ ├── juno-motherboard.dtsi │ │ ├── juno-r1.dts │ │ ├── juno-r2.dts │ │ ├── juno.dts │ │ ├── rtsm_ve-aemv8a.dts │ │ ├── rtsm_ve-motherboard.dtsi │ │ ├── vexpress-v2f-1xv7-ca53x2.dts │ │ └── vexpress-v2m-rs1.dtsi │ ├── broadcom │ │ ├── bcm2837-rpi-3-b.dts │ │ ├── northstar2 │ │ │ ├── ns2-clock.dtsi │ │ │ ├── ns2-svk.dts │ │ │ ├── ns2-xmc.dts │ │ │ └── ns2.dtsi │ │ └── stingray │ │ │ ├── bcm958742-base.dtsi │ │ │ ├── bcm958742k.dts │ │ │ ├── bcm958742t.dts │ │ │ ├── stingray-clock.dtsi │ │ │ ├── stingray-fs4.dtsi │ │ │ ├── stingray-pinctrl.dtsi │ │ │ ├── stingray-sata.dtsi │ │ │ └── stingray.dtsi │ ├── cavium │ │ ├── thunder-88xx.dts │ │ ├── thunder-88xx.dtsi │ │ ├── thunder2-99xx.dts │ │ └── thunder2-99xx.dtsi │ ├── exynos │ │ ├── exynos5433-bus.dtsi │ │ ├── exynos5433-pinctrl.dtsi │ │ ├── exynos5433-tm2-common.dtsi │ │ ├── exynos5433-tm2.dts │ │ ├── exynos5433-tm2e.dts │ │ ├── exynos5433-tmu-g3d-sensor-conf.dtsi │ │ ├── exynos5433-tmu-sensor-conf.dtsi │ │ ├── exynos5433-tmu.dtsi │ │ ├── exynos5433.dtsi │ │ ├── exynos7-espresso.dts │ │ ├── exynos7-pinctrl.dtsi │ │ ├── exynos7-tmu-sensor-conf.dtsi │ │ ├── exynos7-trip-points.dtsi │ │ └── exynos7.dtsi │ ├── freescale │ │ ├── fsl-ls1012a-frdm.dts │ │ ├── fsl-ls1012a-qds.dts │ │ ├── fsl-ls1012a-rdb.dts │ │ ├── fsl-ls1012a.dtsi │ │ ├── fsl-ls1043-post.dtsi │ │ ├── fsl-ls1043a-qds.dts │ │ ├── fsl-ls1043a-rdb.dts │ │ ├── fsl-ls1043a.dtsi │ │ ├── fsl-ls1046-post.dtsi │ │ ├── fsl-ls1046a-qds.dts │ │ ├── fsl-ls1046a-rdb.dts │ │ ├── fsl-ls1046a.dtsi │ │ ├── fsl-ls1088a-qds.dts │ │ ├── fsl-ls1088a-rdb.dts │ │ ├── fsl-ls1088a.dtsi │ │ ├── fsl-ls2080a-qds.dts │ │ ├── fsl-ls2080a-rdb.dts │ │ ├── fsl-ls2080a-simu.dts │ │ ├── fsl-ls2080a.dtsi │ │ ├── fsl-ls2088a-qds.dts │ │ ├── fsl-ls2088a-rdb.dts │ │ ├── fsl-ls2088a.dtsi │ │ ├── fsl-ls208xa-qds.dtsi │ │ ├── fsl-ls208xa-rdb.dtsi │ │ ├── fsl-ls208xa.dtsi │ │ ├── qoriq-bman-portals.dtsi │ │ ├── qoriq-fman3-0-10g-0.dtsi │ │ ├── qoriq-fman3-0-10g-1.dtsi │ │ ├── qoriq-fman3-0-1g-0.dtsi │ │ ├── qoriq-fman3-0-1g-1.dtsi │ │ ├── qoriq-fman3-0-1g-2.dtsi │ │ ├── qoriq-fman3-0-1g-3.dtsi │ │ ├── qoriq-fman3-0-1g-4.dtsi │ │ ├── qoriq-fman3-0-1g-5.dtsi │ │ ├── qoriq-fman3-0.dtsi │ │ └── qoriq-qman-portals.dtsi │ ├── hisilicon │ │ ├── hi3660-hikey960.dts │ │ ├── hi3660.dtsi │ │ ├── hi3798cv200-poplar.dts │ │ ├── hi3798cv200.dtsi │ │ ├── hi6220-coresight.dtsi │ │ ├── hi6220-hikey.dts │ │ ├── hi6220.dtsi │ │ ├── hikey-pinctrl.dtsi │ │ ├── hikey960-pinctrl.dtsi │ │ ├── hip05-d02.dts │ │ ├── hip05.dtsi │ │ ├── hip06-d03.dts │ │ ├── hip06.dtsi │ │ ├── hip07-d05.dts │ │ └── hip07.dtsi │ ├── lg │ │ ├── lg1312-ref.dts │ │ ├── lg1312.dtsi │ │ ├── lg1313-ref.dts │ │ └── lg1313.dtsi │ ├── marvell │ │ ├── armada-371x.dtsi │ │ ├── armada-3720-db.dts │ │ ├── armada-3720-espressobin.dts │ │ ├── armada-372x.dtsi │ │ ├── armada-37xx.dtsi │ │ ├── armada-7020.dtsi │ │ ├── armada-7040-db.dts │ │ ├── armada-7040.dtsi │ │ ├── armada-70x0.dtsi │ │ ├── armada-8020.dtsi │ │ ├── armada-8040-db.dts │ │ ├── armada-8040-mcbin.dts │ │ ├── armada-8040.dtsi │ │ ├── armada-8080-db.dts │ │ ├── armada-8080.dtsi │ │ ├── armada-80x0.dtsi │ │ ├── armada-ap806-dual.dtsi │ │ ├── armada-ap806-quad.dtsi │ │ ├── armada-ap806.dtsi │ │ ├── armada-ap810-ap0-octa-core.dtsi │ │ ├── armada-ap810-ap0.dtsi │ │ ├── armada-common.dtsi │ │ ├── armada-cp110.dtsi │ │ ├── berlin4ct-dmp.dts │ │ ├── berlin4ct-stb.dts │ │ └── berlin4ct.dtsi │ ├── mediatek │ │ ├── mt2712-evb.dts │ │ ├── mt2712e.dtsi │ │ ├── mt6755-evb.dts │ │ ├── mt6755.dtsi │ │ ├── mt6795-evb.dts │ │ ├── mt6795.dtsi │ │ ├── mt6797-evb.dts │ │ ├── mt6797.dtsi │ │ ├── mt7622-rfb1.dts │ │ ├── mt7622.dtsi │ │ ├── mt8173-evb.dts │ │ ├── mt8173-pinfunc.h │ │ └── mt8173.dtsi │ ├── nvidia │ │ ├── tegra132-norrin.dts │ │ ├── tegra132.dtsi │ │ ├── tegra186-p2771-0000.dts │ │ ├── tegra186-p3310.dtsi │ │ ├── tegra186.dtsi │ │ ├── tegra210-p2180.dtsi │ │ ├── tegra210-p2371-0000.dts │ │ ├── tegra210-p2371-2180.dts │ │ ├── tegra210-p2530.dtsi │ │ ├── tegra210-p2571.dts │ │ ├── tegra210-p2595.dtsi │ │ ├── tegra210-p2597.dtsi │ │ ├── tegra210-smaug.dts │ │ └── tegra210.dtsi │ ├── qcom │ │ ├── apq8016-sbc-pmic-pins.dtsi │ │ ├── apq8016-sbc-soc-pins.dtsi │ │ ├── apq8016-sbc.dts │ │ ├── apq8016-sbc.dtsi │ │ ├── apq8096-db820c-pins.dtsi │ │ ├── apq8096-db820c-pmic-pins.dtsi │ │ ├── apq8096-db820c.dts │ │ ├── apq8096-db820c.dtsi │ │ ├── ipq8074-hk01.dts │ │ ├── ipq8074.dtsi │ │ ├── msm8916-mtp.dts │ │ ├── msm8916-mtp.dtsi │ │ ├── msm8916-pins.dtsi │ │ ├── msm8916.dtsi │ │ ├── msm8992-bullhead-rev-101.dts │ │ ├── msm8992-pins.dtsi │ │ ├── msm8992.dtsi │ │ ├── msm8994-angler-rev-101.dts │ │ ├── msm8994-pins.dtsi │ │ ├── msm8994.dtsi │ │ ├── msm8996-mtp.dts │ │ ├── msm8996-mtp.dtsi │ │ ├── msm8996-pins.dtsi │ │ ├── msm8996.dtsi │ │ ├── pm8004.dtsi │ │ ├── pm8916.dtsi │ │ ├── pm8994.dtsi │ │ └── pmi8994.dtsi │ ├── realtek │ │ ├── rtd1295-mele-v9.dts │ │ ├── rtd1295-probox2-ava.dts │ │ ├── rtd1295-zidoo-x9s.dts │ │ ├── rtd1295.dtsi │ │ └── rtd129x.dtsi │ ├── renesas │ │ ├── r8a7795-es1-h3ulcb-kf.dts │ │ ├── r8a7795-es1-h3ulcb.dts │ │ ├── r8a7795-es1-salvator-x.dts │ │ ├── r8a7795-es1.dtsi │ │ ├── r8a7795-h3ulcb-kf.dts │ │ ├── r8a7795-h3ulcb.dts │ │ ├── r8a7795-salvator-x.dts │ │ ├── r8a7795-salvator-xs.dts │ │ ├── r8a7795.dtsi │ │ ├── r8a7796-m3ulcb-kf.dts │ │ ├── r8a7796-m3ulcb.dts │ │ ├── r8a7796-salvator-x.dts │ │ ├── r8a7796-salvator-xs.dts │ │ ├── r8a7796.dtsi │ │ ├── r8a77970-eagle.dts │ │ ├── r8a77970-v3msk.dts │ │ ├── r8a77970.dtsi │ │ ├── r8a77995-draak.dts │ │ ├── r8a77995.dtsi │ │ ├── salvator-common.dtsi │ │ ├── salvator-x.dtsi │ │ ├── salvator-xs.dtsi │ │ ├── ulcb-kf.dtsi │ │ └── ulcb.dtsi │ ├── rockchip │ │ ├── rk3328-evb.dts │ │ ├── rk3328-rock64.dts │ │ ├── rk3328.dtsi │ │ ├── rk3368-evb-act8846.dts │ │ ├── rk3368-evb.dtsi │ │ ├── rk3368-geekbox.dts │ │ ├── rk3368-orion-r68-meta.dts │ │ ├── rk3368-px5-evb.dts │ │ ├── rk3368-r88.dts │ │ ├── rk3368.dtsi │ │ ├── rk3399-evb.dts │ │ ├── rk3399-firefly.dts │ │ ├── rk3399-gru-kevin.dts │ │ ├── rk3399-gru.dtsi │ │ ├── rk3399-op1-opp.dtsi │ │ ├── rk3399-opp.dtsi │ │ ├── rk3399-puma-haikou.dts │ │ ├── rk3399-puma.dtsi │ │ ├── rk3399-sapphire-excavator.dts │ │ ├── rk3399-sapphire.dtsi │ │ └── rk3399.dtsi │ ├── socionext │ │ ├── uniphier-ld11-global.dts │ │ ├── uniphier-ld11-ref.dts │ │ ├── uniphier-ld11.dtsi │ │ ├── uniphier-ld20-global.dts │ │ ├── uniphier-ld20-ref.dts │ │ ├── uniphier-ld20.dtsi │ │ ├── uniphier-pinctrl.dtsi │ │ ├── uniphier-pxs3-ref.dts │ │ ├── uniphier-pxs3.dtsi │ │ ├── uniphier-ref-daughter.dtsi │ │ └── uniphier-support-card.dtsi │ ├── sprd │ │ ├── sc9836-openphone.dts │ │ ├── sc9836.dtsi │ │ ├── sc9860.dtsi │ │ ├── sharkl64.dtsi │ │ ├── sp9860g-1h10.dts │ │ └── whale2.dtsi │ ├── xilinx │ │ ├── zynqmp-ep108-clk.dtsi │ │ ├── zynqmp-ep108.dts │ │ └── zynqmp.dtsi │ └── zte │ │ ├── zx296718-evb.dts │ │ ├── zx296718-pcbox.dts │ │ └── zx296718.dtsi │ ├── c6x │ ├── dsk6455.dts │ ├── evmc6457.dts │ ├── evmc6472.dts │ ├── evmc6474.dts │ ├── evmc6678.dts │ ├── tms320c6455.dtsi │ ├── tms320c6457.dtsi │ ├── tms320c6472.dtsi │ ├── tms320c6474.dtsi │ └── tms320c6678.dtsi │ ├── cris │ ├── artpec3.dtsi │ ├── dev88.dts │ ├── etraxfs.dtsi │ └── p1343.dts │ ├── h8300 │ ├── edosk2674.dts │ ├── h8300h_sim.dts │ └── h8s_sim.dts │ ├── metag │ ├── skeleton.dts │ ├── skeleton.dtsi │ ├── tz1090.dtsi │ └── tz1090_generic.dts │ ├── mips │ ├── brcm │ │ ├── bcm3368-netgear-cvg834g.dts │ │ ├── bcm3368.dtsi │ │ ├── bcm3384_viper.dtsi │ │ ├── bcm3384_zephyr.dtsi │ │ ├── bcm63268-comtrend-vr-3032u.dts │ │ ├── bcm63268.dtsi │ │ ├── bcm6328.dtsi │ │ ├── bcm6358-neufbox4-sercomm.dts │ │ ├── bcm6358.dtsi │ │ ├── bcm6362-neufbox6-sercomm.dts │ │ ├── bcm6362.dtsi │ │ ├── bcm6368.dtsi │ │ ├── bcm7125.dtsi │ │ ├── bcm7346.dtsi │ │ ├── bcm7358.dtsi │ │ ├── bcm7360.dtsi │ │ ├── bcm7362.dtsi │ │ ├── bcm7420.dtsi │ │ ├── bcm7425.dtsi │ │ ├── bcm7435.dtsi │ │ ├── bcm93384wvg.dts │ │ ├── bcm93384wvg_viper.dts │ │ ├── bcm96368mvwg.dts │ │ ├── bcm97125cbmb.dts │ │ ├── bcm97346dbsmb.dts │ │ ├── bcm97358svmb.dts │ │ ├── bcm97360svmb.dts │ │ ├── bcm97362svmb.dts │ │ ├── bcm97420c.dts │ │ ├── bcm97425svmb.dts │ │ ├── bcm97435svmb.dts │ │ ├── bcm97xxx-nand-cs1-bch24.dtsi │ │ ├── bcm97xxx-nand-cs1-bch4.dtsi │ │ └── bcm9ejtagprb.dts │ ├── cavium-octeon │ │ ├── dlink_dsr-1000n.dts │ │ ├── dlink_dsr-500n-1000n.dtsi │ │ ├── dlink_dsr-500n.dts │ │ ├── octeon_3xxx.dts │ │ ├── octeon_3xxx.dtsi │ │ ├── octeon_68xx.dts │ │ └── ubnt_e100.dts │ ├── img │ │ ├── boston.dts │ │ ├── pistachio.dtsi │ │ └── pistachio_marduk.dts │ ├── ingenic │ │ ├── ci20.dts │ │ ├── gcw0.dts │ │ ├── jz4740.dtsi │ │ ├── jz4770.dtsi │ │ ├── jz4780.dtsi │ │ └── qi_lb60.dts │ ├── lantiq │ │ ├── danube.dtsi │ │ └── easy50712.dts │ ├── mti │ │ ├── malta.dts │ │ └── sead3.dts │ ├── netlogic │ │ ├── xlp_evp.dts │ │ ├── xlp_fvp.dts │ │ ├── xlp_gvp.dts │ │ ├── xlp_rvp.dts │ │ └── xlp_svp.dts │ ├── ni │ │ └── 169445.dts │ ├── pic32 │ │ ├── pic32mzda.dtsi │ │ └── pic32mzda_sk.dts │ ├── qca │ │ ├── ar9132.dtsi │ │ ├── ar9132_tl_wr1043nd_v1.dts │ │ ├── ar9331.dtsi │ │ ├── ar9331_dpt_module.dts │ │ ├── ar9331_dragino_ms14.dts │ │ ├── ar9331_omega.dts │ │ └── ar9331_tl_mr3020.dts │ ├── ralink │ │ ├── mt7620a.dtsi │ │ ├── mt7620a_eval.dts │ │ ├── mt7628a.dtsi │ │ ├── omega2p.dts │ │ ├── rt2880.dtsi │ │ ├── rt2880_eval.dts │ │ ├── rt3050.dtsi │ │ ├── rt3052_eval.dts │ │ ├── rt3883.dtsi │ │ ├── rt3883_eval.dts │ │ └── vocore2.dts │ └── xilfpga │ │ ├── microAptiv.dtsi │ │ └── nexys4ddr.dts │ ├── nios2 │ ├── 10m50_devboard.dts │ └── 3c120_devboard.dts │ ├── openrisc │ ├── or1ksim.dts │ └── simple_smp.dts │ ├── powerpc │ ├── a3m071.dts │ ├── a4m072.dts │ ├── ac14xx.dts │ ├── acadia.dts │ ├── adder875-redboot.dts │ ├── adder875-uboot.dts │ ├── akebono.dts │ ├── amigaone.dts │ ├── arches.dts │ ├── asp834x-redboot.dts │ ├── bamboo.dts │ ├── bluestone.dts │ ├── c2k.dts │ ├── canyonlands.dts │ ├── charon.dts │ ├── cm5200.dts │ ├── currituck.dts │ ├── digsy_mtc.dts │ ├── ebony.dts │ ├── eiger.dts │ ├── ep405.dts │ ├── ep8248e.dts │ ├── ep88xc.dts │ ├── fsl │ │ ├── b4420qds.dts │ │ ├── b4420si-post.dtsi │ │ ├── b4420si-pre.dtsi │ │ ├── b4860qds.dts │ │ ├── b4860si-post.dtsi │ │ ├── b4860si-pre.dtsi │ │ ├── b4qds.dtsi │ │ ├── b4si-post.dtsi │ │ ├── bsc9131rdb.dts │ │ ├── bsc9131rdb.dtsi │ │ ├── bsc9131si-post.dtsi │ │ ├── bsc9131si-pre.dtsi │ │ ├── bsc9132qds.dts │ │ ├── bsc9132qds.dtsi │ │ ├── bsc9132si-post.dtsi │ │ ├── bsc9132si-pre.dtsi │ │ ├── c293pcie.dts │ │ ├── c293si-post.dtsi │ │ ├── c293si-pre.dtsi │ │ ├── cyrus_p5020.dts │ │ ├── e500mc_power_isa.dtsi │ │ ├── e500v2_power_isa.dtsi │ │ ├── e5500_power_isa.dtsi │ │ ├── e6500_power_isa.dtsi │ │ ├── elo3-dma-0.dtsi │ │ ├── elo3-dma-1.dtsi │ │ ├── elo3-dma-2.dtsi │ │ ├── ge_imp3a.dts │ │ ├── gef_ppc9a.dts │ │ ├── gef_sbc310.dts │ │ ├── gef_sbc610.dts │ │ ├── interlaken-lac-portals.dtsi │ │ ├── interlaken-lac.dtsi │ │ ├── kmcent2.dts │ │ ├── kmcoge4.dts │ │ ├── mpc8536ds.dts │ │ ├── mpc8536ds.dtsi │ │ ├── mpc8536ds_36b.dts │ │ ├── mpc8536si-post.dtsi │ │ ├── mpc8536si-pre.dtsi │ │ ├── mpc8540ads.dts │ │ ├── mpc8541cds.dts │ │ ├── mpc8544ds.dts │ │ ├── mpc8544ds.dtsi │ │ ├── mpc8544si-post.dtsi │ │ ├── mpc8544si-pre.dtsi │ │ ├── mpc8548cds.dtsi │ │ ├── mpc8548cds_32b.dts │ │ ├── mpc8548cds_36b.dts │ │ ├── mpc8548si-post.dtsi │ │ ├── mpc8548si-pre.dtsi │ │ ├── mpc8555cds.dts │ │ ├── mpc8560ads.dts │ │ ├── mpc8568mds.dts │ │ ├── mpc8568si-post.dtsi │ │ ├── mpc8568si-pre.dtsi │ │ ├── mpc8569mds.dts │ │ ├── mpc8569si-post.dtsi │ │ ├── mpc8569si-pre.dtsi │ │ ├── mpc8572ds.dts │ │ ├── mpc8572ds.dtsi │ │ ├── mpc8572ds_36b.dts │ │ ├── mpc8572ds_camp_core0.dts │ │ ├── mpc8572ds_camp_core1.dts │ │ ├── mpc8572si-post.dtsi │ │ ├── mpc8572si-pre.dtsi │ │ ├── mpc8641_hpcn.dts │ │ ├── mpc8641_hpcn_36b.dts │ │ ├── mpc8641si-post.dtsi │ │ ├── mpc8641si-pre.dtsi │ │ ├── mvme2500.dts │ │ ├── mvme7100.dts │ │ ├── oca4080.dts │ │ ├── p1010rdb-pa.dts │ │ ├── p1010rdb-pa.dtsi │ │ ├── p1010rdb-pa_36b.dts │ │ ├── p1010rdb-pb.dts │ │ ├── p1010rdb-pb_36b.dts │ │ ├── p1010rdb.dtsi │ │ ├── p1010rdb_32b.dtsi │ │ ├── p1010rdb_36b.dtsi │ │ ├── p1010si-post.dtsi │ │ ├── p1010si-pre.dtsi │ │ ├── p1020mbg-pc.dtsi │ │ ├── p1020mbg-pc_32b.dts │ │ ├── p1020mbg-pc_36b.dts │ │ ├── p1020rdb-pc.dtsi │ │ ├── p1020rdb-pc_32b.dts │ │ ├── p1020rdb-pc_36b.dts │ │ ├── p1020rdb-pc_camp_core0.dts │ │ ├── p1020rdb-pc_camp_core1.dts │ │ ├── p1020rdb-pd.dts │ │ ├── p1020rdb.dts │ │ ├── p1020rdb.dtsi │ │ ├── p1020rdb_36b.dts │ │ ├── p1020si-post.dtsi │ │ ├── p1020si-pre.dtsi │ │ ├── p1020utm-pc.dtsi │ │ ├── p1020utm-pc_32b.dts │ │ ├── p1020utm-pc_36b.dts │ │ ├── p1021mds.dts │ │ ├── p1021rdb-pc.dtsi │ │ ├── p1021rdb-pc_32b.dts │ │ ├── p1021rdb-pc_36b.dts │ │ ├── p1021si-post.dtsi │ │ ├── p1021si-pre.dtsi │ │ ├── p1022ds.dtsi │ │ ├── p1022ds_32b.dts │ │ ├── p1022ds_36b.dts │ │ ├── p1022rdk.dts │ │ ├── p1022si-post.dtsi │ │ ├── p1022si-pre.dtsi │ │ ├── p1023rdb.dts │ │ ├── p1023si-post.dtsi │ │ ├── p1023si-pre.dtsi │ │ ├── p1024rdb.dtsi │ │ ├── p1024rdb_32b.dts │ │ ├── p1024rdb_36b.dts │ │ ├── p1025rdb.dtsi │ │ ├── p1025rdb_32b.dts │ │ ├── p1025rdb_36b.dts │ │ ├── p1025twr.dts │ │ ├── p1025twr.dtsi │ │ ├── p2020ds.dts │ │ ├── p2020ds.dtsi │ │ ├── p2020rdb-pc.dtsi │ │ ├── p2020rdb-pc_32b.dts │ │ ├── p2020rdb-pc_36b.dts │ │ ├── p2020rdb.dts │ │ ├── p2020si-post.dtsi │ │ ├── p2020si-pre.dtsi │ │ ├── p2041rdb.dts │ │ ├── p2041si-post.dtsi │ │ ├── p2041si-pre.dtsi │ │ ├── p3041ds.dts │ │ ├── p3041si-post.dtsi │ │ ├── p3041si-pre.dtsi │ │ ├── p4080ds.dts │ │ ├── p4080si-post.dtsi │ │ ├── p4080si-pre.dtsi │ │ ├── p5020ds.dts │ │ ├── p5020si-post.dtsi │ │ ├── p5020si-pre.dtsi │ │ ├── p5040ds.dts │ │ ├── p5040si-post.dtsi │ │ ├── p5040si-pre.dtsi │ │ ├── ppa8548.dts │ │ ├── pq3-dma-0.dtsi │ │ ├── pq3-dma-1.dtsi │ │ ├── pq3-duart-0.dtsi │ │ ├── pq3-esdhc-0.dtsi │ │ ├── pq3-espi-0.dtsi │ │ ├── pq3-etsec1-0.dtsi │ │ ├── pq3-etsec1-1.dtsi │ │ ├── pq3-etsec1-2.dtsi │ │ ├── pq3-etsec1-3.dtsi │ │ ├── pq3-etsec1-timer-0.dtsi │ │ ├── pq3-etsec2-0.dtsi │ │ ├── pq3-etsec2-1.dtsi │ │ ├── pq3-etsec2-2.dtsi │ │ ├── pq3-etsec2-grp2-0.dtsi │ │ ├── pq3-etsec2-grp2-1.dtsi │ │ ├── pq3-etsec2-grp2-2.dtsi │ │ ├── pq3-gpio-0.dtsi │ │ ├── pq3-i2c-0.dtsi │ │ ├── pq3-i2c-1.dtsi │ │ ├── pq3-mpic-message-B.dtsi │ │ ├── pq3-mpic-timer-B.dtsi │ │ ├── pq3-mpic.dtsi │ │ ├── pq3-rmu-0.dtsi │ │ ├── pq3-sata2-0.dtsi │ │ ├── pq3-sata2-1.dtsi │ │ ├── pq3-sec2.1-0.dtsi │ │ ├── pq3-sec3.0-0.dtsi │ │ ├── pq3-sec3.1-0.dtsi │ │ ├── pq3-sec3.3-0.dtsi │ │ ├── pq3-sec4.4-0.dtsi │ │ ├── pq3-usb2-dr-0.dtsi │ │ ├── pq3-usb2-dr-1.dtsi │ │ ├── qonverge-usb2-dr-0.dtsi │ │ ├── qoriq-bman1-portals.dtsi │ │ ├── qoriq-bman1.dtsi │ │ ├── qoriq-clockgen1.dtsi │ │ ├── qoriq-clockgen2.dtsi │ │ ├── qoriq-dma-0.dtsi │ │ ├── qoriq-dma-1.dtsi │ │ ├── qoriq-duart-0.dtsi │ │ ├── qoriq-duart-1.dtsi │ │ ├── qoriq-esdhc-0.dtsi │ │ ├── qoriq-espi-0.dtsi │ │ ├── qoriq-fman-0-10g-0.dtsi │ │ ├── qoriq-fman-0-1g-0.dtsi │ │ ├── qoriq-fman-0-1g-1.dtsi │ │ ├── qoriq-fman-0-1g-2.dtsi │ │ ├── qoriq-fman-0-1g-3.dtsi │ │ ├── qoriq-fman-0-1g-4.dtsi │ │ ├── qoriq-fman-0.dtsi │ │ ├── qoriq-fman-1-10g-0.dtsi │ │ ├── qoriq-fman-1-1g-0.dtsi │ │ ├── qoriq-fman-1-1g-1.dtsi │ │ ├── qoriq-fman-1-1g-2.dtsi │ │ ├── qoriq-fman-1-1g-3.dtsi │ │ ├── qoriq-fman-1-1g-4.dtsi │ │ ├── qoriq-fman-1.dtsi │ │ ├── qoriq-fman3-0-10g-0-best-effort.dtsi │ │ ├── qoriq-fman3-0-10g-0.dtsi │ │ ├── qoriq-fman3-0-10g-1-best-effort.dtsi │ │ ├── qoriq-fman3-0-10g-1.dtsi │ │ ├── qoriq-fman3-0-1g-0.dtsi │ │ ├── qoriq-fman3-0-1g-1.dtsi │ │ ├── qoriq-fman3-0-1g-2.dtsi │ │ ├── qoriq-fman3-0-1g-3.dtsi │ │ ├── qoriq-fman3-0-1g-4.dtsi │ │ ├── qoriq-fman3-0-1g-5.dtsi │ │ ├── qoriq-fman3-0.dtsi │ │ ├── qoriq-fman3-1-10g-0.dtsi │ │ ├── qoriq-fman3-1-10g-1.dtsi │ │ ├── qoriq-fman3-1-1g-0.dtsi │ │ ├── qoriq-fman3-1-1g-1.dtsi │ │ ├── qoriq-fman3-1-1g-2.dtsi │ │ ├── qoriq-fman3-1-1g-3.dtsi │ │ ├── qoriq-fman3-1-1g-4.dtsi │ │ ├── qoriq-fman3-1-1g-5.dtsi │ │ ├── qoriq-fman3-1.dtsi │ │ ├── qoriq-fman3l-0.dtsi │ │ ├── qoriq-gpio-0.dtsi │ │ ├── qoriq-gpio-1.dtsi │ │ ├── qoriq-gpio-2.dtsi │ │ ├── qoriq-gpio-3.dtsi │ │ ├── qoriq-i2c-0.dtsi │ │ ├── qoriq-i2c-1.dtsi │ │ ├── qoriq-mpic.dtsi │ │ ├── qoriq-mpic4.3.dtsi │ │ ├── qoriq-qman1-portals.dtsi │ │ ├── qoriq-qman1.dtsi │ │ ├── qoriq-qman3.dtsi │ │ ├── qoriq-raid1.0-0.dtsi │ │ ├── qoriq-rmu-0.dtsi │ │ ├── qoriq-sata2-0.dtsi │ │ ├── qoriq-sata2-1.dtsi │ │ ├── qoriq-sec4.0-0.dtsi │ │ ├── qoriq-sec4.2-0.dtsi │ │ ├── qoriq-sec5.0-0.dtsi │ │ ├── qoriq-sec5.2-0.dtsi │ │ ├── qoriq-sec5.3-0.dtsi │ │ ├── qoriq-sec6.0-0.dtsi │ │ ├── qoriq-usb2-dr-0.dtsi │ │ ├── qoriq-usb2-mph-0.dtsi │ │ ├── sbc8641d.dts │ │ ├── t1023rdb.dts │ │ ├── t1023si-post.dtsi │ │ ├── t1024qds.dts │ │ ├── t1024rdb.dts │ │ ├── t1024si-post.dtsi │ │ ├── t102xsi-pre.dtsi │ │ ├── t1040d4rdb.dts │ │ ├── t1040qds.dts │ │ ├── t1040rdb.dts │ │ ├── t1040si-post.dtsi │ │ ├── t1042d4rdb.dts │ │ ├── t1042qds.dts │ │ ├── t1042rdb.dts │ │ ├── t1042rdb_pi.dts │ │ ├── t1042si-post.dtsi │ │ ├── t104xd4rdb.dtsi │ │ ├── t104xqds.dtsi │ │ ├── t104xrdb.dtsi │ │ ├── t104xsi-pre.dtsi │ │ ├── t2080qds.dts │ │ ├── t2080rdb.dts │ │ ├── t2080si-post.dtsi │ │ ├── t2081qds.dts │ │ ├── t2081si-post.dtsi │ │ ├── t208xqds.dtsi │ │ ├── t208xrdb.dtsi │ │ ├── t208xsi-pre.dtsi │ │ ├── t4240qds.dts │ │ ├── t4240rdb.dts │ │ ├── t4240si-post.dtsi │ │ └── t4240si-pre.dtsi │ ├── fsp2.dts │ ├── gamecube.dts │ ├── glacier.dts │ ├── haleakala.dts │ ├── holly.dts │ ├── hotfoot.dts │ ├── icon.dts │ ├── iss4xx-mpic.dts │ ├── iss4xx.dts │ ├── katmai.dts │ ├── kilauea.dts │ ├── klondike.dts │ ├── kmeter1.dts │ ├── ksi8560.dts │ ├── kuroboxHD.dts │ ├── kuroboxHG.dts │ ├── lite5200.dts │ ├── lite5200b.dts │ ├── makalu.dts │ ├── media5200.dts │ ├── mgcoge.dts │ ├── motionpro.dts │ ├── mpc5121.dtsi │ ├── mpc5121ads.dts │ ├── mpc5125twr.dts │ ├── mpc5200b.dtsi │ ├── mpc7448hpc2.dts │ ├── mpc8272ads.dts │ ├── mpc8308_p1m.dts │ ├── mpc8308rdb.dts │ ├── mpc8313erdb.dts │ ├── mpc8315erdb.dts │ ├── mpc832x_mds.dts │ ├── mpc832x_rdb.dts │ ├── mpc8349emitx.dts │ ├── mpc8349emitxgp.dts │ ├── mpc834x_mds.dts │ ├── mpc836x_mds.dts │ ├── mpc836x_rdk.dts │ ├── mpc8377_mds.dts │ ├── mpc8377_rdb.dts │ ├── mpc8377_wlan.dts │ ├── mpc8378_mds.dts │ ├── mpc8378_rdb.dts │ ├── mpc8379_mds.dts │ ├── mpc8379_rdb.dts │ ├── mpc8610_hpcd.dts │ ├── mpc866ads.dts │ ├── mpc885ads.dts │ ├── mucmc52.dts │ ├── mvme5100.dts │ ├── o2d.dts │ ├── o2d.dtsi │ ├── o2d300.dts │ ├── o2dnt2.dts │ ├── o2i.dts │ ├── o2mnt.dts │ ├── o3dnt.dts │ ├── obs600.dts │ ├── pcm030.dts │ ├── pcm032.dts │ ├── pdm360ng.dts │ ├── pq2fads.dts │ ├── ps3.dts │ ├── rainier.dts │ ├── redwood.dts │ ├── sam440ep.dts │ ├── sbc8349.dts │ ├── sbc8548-altflash.dts │ ├── sbc8548-post.dtsi │ ├── sbc8548-pre.dtsi │ ├── sbc8548.dts │ ├── sequoia.dts │ ├── socrates.dts │ ├── storcenter.dts │ ├── stx_gp3_8560.dts │ ├── stxssa8555.dts │ ├── taishan.dts │ ├── tqm5200.dts │ ├── tqm8540.dts │ ├── tqm8541.dts │ ├── tqm8548-bigflash.dts │ ├── tqm8548.dts │ ├── tqm8555.dts │ ├── tqm8560.dts │ ├── tqm8xx.dts │ ├── uc101.dts │ ├── virtex440-ml507.dts │ ├── virtex440-ml510.dts │ ├── walnut.dts │ ├── warp.dts │ ├── wii.dts │ ├── xcalibur1501.dts │ ├── xpedite5200.dts │ ├── xpedite5200_xmon.dts │ ├── xpedite5301.dts │ ├── xpedite5330.dts │ ├── xpedite5370.dts │ └── yosemite.dts │ ├── sh │ └── j2_mimas_v2.dts │ ├── x86 │ └── falconfalls.dts │ └── xtensa │ ├── csp.dts │ ├── kc705.dts │ ├── kc705_nommu.dts │ ├── lx200mx.dts │ ├── lx60.dts │ ├── ml605.dts │ ├── xtfpga-flash-128m.dtsi │ ├── xtfpga-flash-16m.dtsi │ ├── xtfpga-flash-4m.dtsi │ └── xtfpga.dtsi ├── fs ├── Kconfig ├── Makefile ├── bpkfs.c ├── cramfs │ ├── Makefile │ ├── cramfs.c │ └── uncompress.c ├── devfs-core.c ├── devfs.c ├── efi.c ├── efivarfs.c ├── ext4 │ ├── Kconfig │ ├── Makefile │ ├── ext4_common.c │ ├── ext4_common.h │ ├── ext4fs.c │ ├── ext4fs.h │ ├── ext_barebox.c │ └── ext_common.h ├── fat │ ├── Kconfig │ ├── Makefile │ ├── diskio.h │ ├── fat.c │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ └── integer.h ├── fs.c ├── nfs.c ├── omap4_usbbootfs.c ├── pstore │ ├── Kconfig │ ├── Makefile │ ├── fs.c │ ├── internal.h │ ├── platform.c │ ├── ram.c │ └── ram_core.c ├── ramfs.c ├── ratpfs.c ├── smhfs.c ├── squashfs │ ├── Kconfig │ ├── Makefile │ ├── block.c │ ├── cache.c │ ├── decompressor.c │ ├── decompressor.h │ ├── decompressor_single.c │ ├── file.c │ ├── file_cache.c │ ├── fragment.c │ ├── id.c │ ├── inode.c │ ├── lz4_wrapper.c │ ├── lzo_wrapper.c │ ├── namei.c │ ├── page_actor.c │ ├── page_actor.h │ ├── squashfs.c │ ├── squashfs.h │ ├── squashfs_fs.h │ ├── squashfs_fs_i.h │ ├── squashfs_fs_sb.h │ ├── super.c │ ├── xz_wrapper.c │ ├── zlib_wrapper.c │ └── zstd_wrapper.c ├── tftp.c ├── ubifs │ ├── Kconfig │ ├── Makefile │ ├── budget.c │ ├── crc16.c │ ├── crc16.h │ ├── debug.c │ ├── debug.h │ ├── gc.c │ ├── io.c │ ├── key.h │ ├── log.c │ ├── lprops.c │ ├── lpt.c │ ├── lpt_commit.c │ ├── master.c │ ├── misc.h │ ├── orphan.c │ ├── recovery.c │ ├── replay.c │ ├── sb.c │ ├── scan.c │ ├── super.c │ ├── tnc.c │ ├── tnc_misc.c │ ├── ubifs-media.h │ ├── ubifs.c │ └── ubifs.h └── uimagefs.c ├── images ├── .gitignore ├── Makefile ├── Makefile.am33xx ├── Makefile.at91 ├── Makefile.bcm283x ├── Makefile.imx ├── Makefile.mvebu ├── Makefile.mxs ├── Makefile.omap3 ├── Makefile.rockchip ├── Makefile.socfpga ├── Makefile.tegra └── Makefile.vexpress ├── include ├── .gitignore ├── abort.h ├── aimage.h ├── aiodev.h ├── asm-generic │ ├── atomic-long.h │ ├── barebox.lds.h │ ├── bitops │ │ ├── __ffs.h │ │ ├── __fls.h │ │ ├── ffs.h │ │ ├── ffz.h │ │ ├── find.h │ │ ├── fls.h │ │ ├── fls64.h │ │ ├── hweight.h │ │ └── ops.h │ ├── bitsperlong.h │ ├── bug.h │ ├── div64.h │ ├── errno.h │ ├── int-ll64.h │ ├── io.h │ ├── ioctl.h │ ├── memory_layout.h │ ├── posix_types.h │ ├── sections.h │ └── swab.h ├── ata_drive.h ├── bbu.h ├── binfmt.h ├── block.h ├── blspec.h ├── boot-tplinkfw.h ├── boot.h ├── bootchooser.h ├── bootm.h ├── bootsource.h ├── bootstrap.h ├── bpkfs.h ├── bunzip2.h ├── byteorder.h ├── cache.h ├── clock.h ├── cmdlinepart.h ├── command.h ├── common.h ├── complete.h ├── console.h ├── console_countdown.h ├── cramfs │ └── cramfs_fs.h ├── crc.h ├── crc7.h ├── crypto │ ├── crc.h │ ├── internal.h │ ├── keystore.h │ ├── pbkdf2.h │ └── sha.h ├── ddr_spd.h ├── debug_ll.h ├── dhcp.h ├── digest.h ├── dirent.h ├── disks.h ├── dma-dir.h ├── dma.h ├── dma │ └── apbh-dma.h ├── driver.h ├── efi.h ├── efi │ ├── debug_ll.h │ ├── efi-device.h │ └── efi.h ├── elf.h ├── envfs.h ├── environment.h ├── errno.h ├── fb.h ├── fcntl.h ├── fdt.h ├── file-list.h ├── filetype.h ├── firmware.h ├── fnmatch.h ├── fs.h ├── getopt.h ├── glob.h ├── globalvar.h ├── gpio.h ├── gpio_keys.h ├── gui │ ├── 2d-primitives.h │ ├── graphic_utils.h │ ├── gui.h │ ├── image.h │ └── image_renderer.h ├── gunzip.h ├── hab.h ├── i2c │ ├── at24.h │ ├── i2c-algo-bit.h │ ├── i2c-gpio.h │ ├── i2c-mux.h │ └── i2c.h ├── image-fit.h ├── image-metadata.h ├── image-sparse.h ├── image.h ├── init.h ├── input │ ├── input.h │ ├── keyboard.h │ ├── matrix_keypad.h │ └── qt1070.h ├── int_sqrt.h ├── io.h ├── ioctl.h ├── jtag.h ├── kallsyms.h ├── kfifo.h ├── kgdb.h ├── led.h ├── libbb.h ├── libfile.h ├── libgen.h ├── linux │ ├── amba │ │ ├── bus.h │ │ ├── mmci.h │ │ ├── pl061.h │ │ ├── serial.h │ │ ├── sp804.h │ │ └── sp805.h │ ├── barebox-wrapper.h │ ├── basic_mmio_gpio.h │ ├── bcd.h │ ├── bch.h │ ├── bitmap.h │ ├── bitops.h │ ├── bitrev.h │ ├── bug.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ └── little_endian.h │ ├── circ_buf.h │ ├── clk.h │ ├── clk │ │ ├── at91_pmc.h │ │ └── clk-conf.h │ ├── clkdev.h │ ├── compiler-clang.h │ ├── compiler-gcc.h │ ├── compiler-intel.h │ ├── compiler.h │ ├── const.h │ ├── crc-ccitt.h │ ├── ctype.h │ ├── dcache.h │ ├── decompress │ │ ├── mm.h │ │ ├── unlz4.h │ │ └── unlzma.h │ ├── err.h │ ├── ethtool.h │ ├── font.h │ ├── fs.h │ ├── gcd.h │ ├── hw_random.h │ ├── ioport.h │ ├── kbuild.h │ ├── kconfig.h │ ├── kernel.h │ ├── linkage.h │ ├── list.h │ ├── list_sort.h │ ├── log2.h │ ├── lz4.h │ ├── magic.h │ ├── marvell_phy.h │ ├── math64.h │ ├── mbus.h │ ├── mdio-bitbang.h │ ├── mdio-mux.h │ ├── micrel_phy.h │ ├── mii.h │ ├── mod_devicetable.h │ ├── mount.h │ ├── mtd │ │ ├── bbm.h │ │ ├── cfi.h │ │ ├── concat.h │ │ ├── flashchip.h │ │ ├── mtd-abi.h │ │ ├── mtd.h │ │ ├── nand.h │ │ ├── nand_bch.h │ │ ├── nand_ecc.h │ │ ├── nand_mxs.h │ │ ├── ndfc.h │ │ ├── nftl.h │ │ ├── spi-nor.h │ │ └── ubi.h │ ├── mutex.h │ ├── nvmem-consumer.h │ ├── nvmem-provider.h │ ├── pagemap.h │ ├── path.h │ ├── pci.h │ ├── pci_ids.h │ ├── pci_regs.h │ ├── phy.h │ ├── phy │ │ └── phy.h │ ├── posix_types.h │ ├── pstore.h │ ├── pstore_ram.h │ ├── rbtree.h │ ├── rbtree_augmented.h │ ├── reset-controller.h │ ├── reset.h │ ├── rslib.h │ ├── rtc.h │ ├── rwsem.h │ ├── sched.h │ ├── sizes.h │ ├── smscphy.h │ ├── spinlock.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── stringify.h │ ├── swab.h │ ├── time.h │ ├── types.h │ ├── unaligned │ │ ├── access_ok.h │ │ ├── be_byteshift.h │ │ ├── be_memmove.h │ │ ├── be_struct.h │ │ ├── generic.h │ │ ├── le_byteshift.h │ │ ├── le_memmove.h │ │ ├── le_struct.h │ │ ├── memmove.h │ │ └── packed_struct.h │ ├── w1-gpio.h │ ├── wait.h │ ├── xxhash.h │ ├── xz.h │ ├── zconf.h │ ├── zlib.h │ ├── zstd.h │ └── zutil.h ├── local_mac_address.h ├── lzo.h ├── magicvar.h ├── malloc.h ├── math.h ├── mci.h ├── memory.h ├── memtest.h ├── menu.h ├── mfd │ ├── act8846.h │ ├── imx6q-iomuxc-gpr.h │ ├── imx7-iomuxc-gpr.h │ ├── lp3972.h │ ├── mc13892.h │ ├── mc13xxx.h │ ├── mc34704.h │ ├── mc9sdz60.h │ ├── pfuze.h │ ├── stmpe-i2c.h │ ├── syscon.h │ ├── twl-core.h │ ├── twl4030.h │ └── twl6030.h ├── mmu.h ├── module.h ├── mtd │ ├── libscan.h │ ├── libubigen.h │ ├── mtd-peb.h │ ├── ubi-media.h │ ├── ubi-user.h │ └── utils.h ├── nand.h ├── net.h ├── notifier.h ├── of.h ├── of_address.h ├── of_device.h ├── of_gpio.h ├── of_graph.h ├── of_mtd.h ├── of_net.h ├── of_pci.h ├── param.h ├── parseopt.h ├── part.h ├── partition.h ├── password.h ├── pbl.h ├── phy-id-list.h ├── pico_defines.h ├── picotcp.h ├── pinctrl.h ├── platform_data │ ├── cadence_qspi.h │ ├── dw_mmc.h │ ├── eth-davinci-emac.h │ ├── eth-designware.h │ ├── eth-dm9000.h │ ├── eth-ep93xx.h │ ├── eth-fec.h │ ├── eth-smc91111.h │ ├── eth-smc911x.h │ ├── ide.h │ ├── macb.h │ ├── mtd-nand-mrvl.h │ ├── pca953x.h │ └── serial-ns16550.h ├── poller.h ├── poweroff.h ├── printk.h ├── progress.h ├── pwm.h ├── qsort.h ├── ratp.h ├── ratp_bb.h ├── readkey.h ├── regmap.h ├── regulator.h ├── reset_source.h ├── restart.h ├── rsa.h ├── rtc.h ├── s_record.h ├── scsi.h ├── serial │ ├── imx-uart.h │ └── lpuart.h ├── shell.h ├── sntp.h ├── spi │ ├── eeprom.h │ ├── flash.h │ ├── imx-spi.h │ ├── spi.h │ └── spi_gpio.h ├── state.h ├── stdio.h ├── stdlib.h ├── stmp-device.h ├── string.h ├── stringlist.h ├── sys │ ├── ioctl.h │ ├── mount.h │ └── stat.h ├── tlsf.h ├── twl6030_pwrbtn.h ├── types.h ├── ubiformat.h ├── uimagefs.h ├── uncompress.h ├── unistd.h ├── usb │ ├── cdc.h │ ├── ch11.h │ ├── ch9.h │ ├── chipidea-imx.h │ ├── composite.h │ ├── dfu.h │ ├── ehci.h │ ├── fastboot.h │ ├── fsl_usb2.h │ ├── gadget-multi.h │ ├── gadget.h │ ├── musb.h │ ├── phy.h │ ├── twl4030.h │ ├── ulpi.h │ ├── usb.h │ ├── usb_defs.h │ ├── usbnet.h │ ├── usbserial.h │ └── xhci.h ├── usb_dfu_trailer.h ├── video │ ├── atmel_lcdc.h │ ├── backlight.h │ ├── fourcc.h │ ├── media-bus-format.h │ └── vpl.h ├── w1_mac_address.h ├── watchdog.h ├── wchar.h ├── xfuncs.h └── xymodem.h ├── lib ├── Kconfig ├── Makefile ├── bcd.c ├── bch.c ├── bitmap.c ├── bitrev.c ├── bootstrap │ ├── Kconfig │ ├── Makefile │ ├── common.c │ ├── devfs.c │ └── disk.c ├── bzlib_private.h ├── clz_ctz.c ├── cmdlinepart.c ├── crc-ccitt.c ├── ctype.c ├── decompress_bunzip2.c ├── decompress_inflate.c ├── decompress_unlz4.c ├── decompress_unlzma.c ├── decompress_unlzo.c ├── decompress_unxz.c ├── display_options.c ├── div64.c ├── find_next_bit.c ├── fnmatch.c ├── fonts │ ├── Kconfig │ ├── Makefile │ ├── font_6x8.c │ ├── font_7x14.c │ ├── font_8x16.c │ ├── font_8x8.c │ ├── font_custom_16x.c │ ├── font_mini_4x6.c │ └── fonts.c ├── gcd.c ├── getopt.c ├── glob.c ├── gui │ ├── 2d-primitives.c │ ├── Kconfig │ ├── Makefile │ ├── bmp.c │ ├── bmp_layout.h │ ├── graphic_utils.c │ ├── image_renderer.c │ ├── lodepng.c │ ├── lodepng.h │ ├── picopng.c │ ├── picopng.h │ ├── png.c │ ├── png.h │ ├── png_lode.c │ └── png_pico.c ├── hexdump.c ├── image-sparse.c ├── int_sqrt.c ├── kfifo.c ├── libbb.c ├── libfile.c ├── libgen.c ├── libscan.c ├── libubigen.c ├── list_sort.c ├── logo │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ └── logo.c ├── lz4 │ ├── Makefile │ ├── lz4_decompress.c │ └── lz4defs.h ├── lzo │ ├── Kconfig │ ├── Makefile │ ├── lzo1x_compress.c │ ├── lzo1x_decompress_safe.c │ └── lzodefs.h ├── make_directory.c ├── math.c ├── misc.c ├── notifier.c ├── parameter.c ├── parseopt.c ├── process_escape_sequence.c ├── qsort.c ├── random.c ├── ratp.c ├── rbtree.c ├── readkey.c ├── readline.c ├── readline_simple.c ├── recursive_action.c ├── reed_solomon │ ├── Makefile │ ├── decode_rs.c │ ├── encode_rs.c │ └── reed_solomon.c ├── show_progress.c ├── stmp-device.c ├── string.c ├── stringlist.c ├── strtox.c ├── uncompress.c ├── unlink-recursive.c ├── vsprintf.c ├── wchar.c ├── xfuncs.c ├── xxhash.c ├── xymodem.c ├── xz │ ├── Makefile │ ├── xz_crc32.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ └── xz_stream.h ├── zlib_inflate │ ├── Makefile │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ └── infutil.h └── zstd │ ├── Makefile │ ├── bitstream.h │ ├── decompress.c │ ├── entropy_common.c │ ├── error_private.h │ ├── fse.h │ ├── fse_decompress.c │ ├── huf.h │ ├── huf_decompress.c │ ├── mem.h │ ├── zstd_common.c │ ├── zstd_internal.h │ └── zstd_opt.h ├── net ├── Kconfig ├── Makefile ├── dhcp.c ├── dns.c ├── eth.c ├── ifup.c ├── lib.c ├── net.c ├── netconsole.c ├── nfs.c ├── nfs.h ├── pico_dhcp.c ├── pico_httpd.c ├── pico_ifconfig.c ├── pico_ping.c ├── pico_wget.c ├── picotcp.c ├── picotcp │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── Kconfig │ ├── LICENSE.GPLv2 │ ├── LICENSE.GPLv3 │ ├── MODTREE │ ├── Makefile │ ├── Makefile.watcom │ ├── README.md │ ├── RFC │ │ ├── get_all_rfc │ │ ├── rfc0793.txt │ │ ├── rfc0813.txt │ │ ├── rfc0814.txt │ │ ├── rfc0816.txt │ │ ├── rfc0817.txt │ │ ├── rfc0826.txt │ │ ├── rfc0872.txt │ │ ├── rfc0879.txt │ │ ├── rfc0896.txt │ │ ├── rfc0964.txt │ │ ├── rfc1066.txt │ │ ├── rfc1071.txt │ │ ├── rfc1072.txt │ │ ├── rfc1106.txt │ │ ├── rfc1110.txt │ │ ├── rfc1122.txt │ │ ├── rfc1123.txt │ │ ├── rfc1146.txt │ │ ├── rfc1156.txt │ │ ├── rfc1180.txt │ │ ├── rfc1185.txt │ │ ├── rfc1213.txt │ │ ├── rfc1263.txt │ │ ├── rfc1323.txt │ │ ├── rfc1332.txt │ │ ├── rfc1334.txt │ │ ├── rfc1337.txt │ │ ├── rfc1350.txt │ │ ├── rfc1379.txt │ │ ├── rfc1470.txt │ │ ├── rfc1624.txt │ │ ├── rfc1644.txt │ │ ├── rfc1661.txt │ │ ├── rfc1662.txt │ │ ├── rfc1693.txt │ │ ├── rfc1877.txt │ │ ├── rfc1936.txt │ │ ├── rfc1948.txt │ │ ├── rfc1994.txt │ │ ├── rfc2012.txt │ │ ├── rfc2018.txt │ │ ├── rfc2026.txt │ │ ├── rfc2131.txt │ │ ├── rfc2132.txt │ │ ├── rfc2140.txt │ │ ├── rfc2347.txt │ │ ├── rfc2349.txt │ │ ├── rfc2385.txt │ │ ├── rfc2398.txt │ │ ├── rfc2415.txt │ │ ├── rfc2416.txt │ │ ├── rfc2452.txt │ │ ├── rfc2460.txt │ │ ├── rfc2474.txt │ │ ├── rfc2488.txt │ │ ├── rfc2525.txt │ │ ├── rfc2581.txt │ │ ├── rfc2675.txt │ │ ├── rfc2757.txt │ │ ├── rfc2760.txt │ │ ├── rfc2861.txt │ │ ├── rfc2873.txt │ │ ├── rfc2883.txt │ │ ├── rfc2884.txt │ │ ├── rfc2914.txt │ │ ├── rfc2923.txt │ │ ├── rfc2988.txt │ │ ├── rfc3042.txt │ │ ├── rfc3124.txt │ │ ├── rfc3135.txt │ │ ├── rfc3150.txt │ │ ├── rfc3155.txt │ │ ├── rfc3168.txt │ │ ├── rfc3360.txt │ │ ├── rfc3366.txt │ │ ├── rfc3390.txt │ │ ├── rfc3449.txt │ │ ├── rfc3465.txt │ │ ├── rfc3481.txt │ │ ├── rfc3493.txt │ │ ├── rfc3517.txt │ │ ├── rfc3522.txt │ │ ├── rfc3540.txt │ │ ├── rfc3562.txt │ │ ├── rfc3649.txt │ │ ├── rfc3708.txt │ │ ├── rfc3742.txt │ │ ├── rfc3782.txt │ │ ├── rfc3819.txt │ │ ├── rfc3927.txt │ │ ├── rfc4015.txt │ │ ├── rfc4022.txt │ │ ├── rfc4138.txt │ │ ├── rfc4278.txt │ │ ├── rfc4614.txt │ │ └── rfc6762.txt │ ├── barebox.mk │ ├── docs │ │ ├── user_manual │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── chap_api_aodv.tex │ │ │ ├── chap_api_dhcp_c.tex │ │ │ ├── chap_api_dhcp_d.tex │ │ │ ├── chap_api_dns_c.tex │ │ │ ├── chap_api_dns_sd.tex │ │ │ ├── chap_api_igmp.tex │ │ │ ├── chap_api_ipfilter.tex │ │ │ ├── chap_api_ipv4.tex │ │ │ ├── chap_api_ipv6.tex │ │ │ ├── chap_api_mdns.tex │ │ │ ├── chap_api_mld.tex │ │ │ ├── chap_api_olsr.tex │ │ │ ├── chap_api_ppp.tex │ │ │ ├── chap_api_slaacv4.tex │ │ │ ├── chap_api_sntp_c.tex │ │ │ ├── chap_api_sock.tex │ │ │ ├── chap_api_tftp.tex │ │ │ ├── chap_license.tex │ │ │ ├── chap_overview.tex │ │ │ ├── chap_rfcs.tex │ │ │ ├── layout.tex │ │ │ ├── layout1.tex │ │ │ ├── template_api.tex │ │ │ └── user_doc.tex │ │ └── wiki_images │ │ │ ├── Protocol input.dia │ │ │ ├── Protocol output.dia │ │ │ ├── Protocol_input.png │ │ │ ├── Protocol_output.png │ │ │ ├── driver_stack_memory.dia │ │ │ ├── driver_stack_memory.png │ │ │ ├── petri_net.gif │ │ │ ├── picoTCP_logo.png │ │ │ ├── pico_frame.png │ │ │ ├── port_to_os.dia │ │ │ └── port_to_os.png │ ├── include │ │ ├── arch │ │ │ ├── pico_arm9.h │ │ │ ├── pico_atsamd21j18.h │ │ │ ├── pico_avr.h │ │ │ ├── pico_barebox.h │ │ │ ├── pico_cortex_m.h │ │ │ ├── pico_dos.h │ │ │ ├── pico_esp8266.h │ │ │ ├── pico_generic_gcc.h │ │ │ ├── pico_linux.h │ │ │ ├── pico_mbed.h │ │ │ ├── pico_msp430.h │ │ │ ├── pico_none.h │ │ │ ├── pico_pic24.h │ │ │ ├── pico_pic32.h │ │ │ └── pico_posix.h │ │ ├── heap.h │ │ ├── pico_addressing.h │ │ ├── pico_config.h │ │ ├── pico_constants.h │ │ ├── pico_device.h │ │ ├── pico_eth.h │ │ ├── pico_frame.h │ │ ├── pico_md5.h │ │ ├── pico_module_eth.h │ │ ├── pico_protocol.h │ │ ├── pico_queue.h │ │ ├── pico_socket.h │ │ ├── pico_socket_multicast.h │ │ ├── pico_stack.h │ │ └── pico_tree.h │ ├── mkdeps.sh │ ├── modcheck.py │ ├── modules │ │ ├── pico_6lowpan.c │ │ ├── pico_6lowpan.h │ │ ├── pico_6lowpan_ll.c │ │ ├── pico_6lowpan_ll.h │ │ ├── pico_802154.c │ │ ├── pico_802154.h │ │ ├── pico_aodv.c │ │ ├── pico_aodv.h │ │ ├── pico_arp.c │ │ ├── pico_arp.h │ │ ├── pico_dev_ipc.c │ │ ├── pico_dev_ipc.h │ │ ├── pico_dev_loop.c │ │ ├── pico_dev_loop.h │ │ ├── pico_dev_mock.c │ │ ├── pico_dev_mock.h │ │ ├── pico_dev_null.c │ │ ├── pico_dev_null.h │ │ ├── pico_dev_pcap.c │ │ ├── pico_dev_pcap.h │ │ ├── pico_dev_ppp.c │ │ ├── pico_dev_ppp.h │ │ ├── pico_dev_radio_mgr.c │ │ ├── pico_dev_radio_mgr.h │ │ ├── pico_dev_radiotest.c │ │ ├── pico_dev_radiotest.h │ │ ├── pico_dev_tap.c │ │ ├── pico_dev_tap.h │ │ ├── pico_dev_tap_windows.c │ │ ├── pico_dev_tap_windows.h │ │ ├── pico_dev_tap_windows_private.h │ │ ├── pico_dev_tun.c │ │ ├── pico_dev_tun.h │ │ ├── pico_dev_vde.c │ │ ├── pico_dev_vde.h │ │ ├── pico_dhcp_client.c │ │ ├── pico_dhcp_client.h │ │ ├── pico_dhcp_common.c │ │ ├── pico_dhcp_common.h │ │ ├── pico_dhcp_server.c │ │ ├── pico_dhcp_server.h │ │ ├── pico_dns_client.c │ │ ├── pico_dns_client.h │ │ ├── pico_dns_common.c │ │ ├── pico_dns_common.h │ │ ├── pico_dns_sd.c │ │ ├── pico_dns_sd.h │ │ ├── pico_ethernet.c │ │ ├── pico_ethernet.h │ │ ├── pico_fragments.c │ │ ├── pico_fragments.h │ │ ├── pico_hotplug_detection.c │ │ ├── pico_hotplug_detection.h │ │ ├── pico_icmp4.c │ │ ├── pico_icmp4.h │ │ ├── pico_icmp6.c │ │ ├── pico_icmp6.h │ │ ├── pico_igmp.c │ │ ├── pico_igmp.h │ │ ├── pico_ipfilter.c │ │ ├── pico_ipfilter.h │ │ ├── pico_ipv4.c │ │ ├── pico_ipv4.h │ │ ├── pico_ipv6.c │ │ ├── pico_ipv6.h │ │ ├── pico_ipv6_nd.c │ │ ├── pico_ipv6_nd.h │ │ ├── pico_mcast.c │ │ ├── pico_mcast.h │ │ ├── pico_mdns.c │ │ ├── pico_mdns.h │ │ ├── pico_mld.c │ │ ├── pico_mld.h │ │ ├── pico_mm.c │ │ ├── pico_mm.h │ │ ├── pico_nat.c │ │ ├── pico_nat.h │ │ ├── pico_olsr.c │ │ ├── pico_olsr.h │ │ ├── pico_posix.c │ │ ├── pico_slaacv4.c │ │ ├── pico_slaacv4.h │ │ ├── pico_sntp_client.c │ │ ├── pico_sntp_client.h │ │ ├── pico_socket_tcp.c │ │ ├── pico_socket_tcp.h │ │ ├── pico_socket_udp.c │ │ ├── pico_socket_udp.h │ │ ├── pico_strings.c │ │ ├── pico_strings.h │ │ ├── pico_tcp.c │ │ ├── pico_tcp.h │ │ ├── pico_tftp.c │ │ ├── pico_tftp.h │ │ ├── pico_udp.c │ │ └── pico_udp.h │ ├── rules │ │ ├── 6lowpan.mk │ │ ├── crc.mk │ │ ├── cyassl.mk │ │ ├── debug.mk │ │ ├── devloop.mk │ │ ├── dhcp_client.mk │ │ ├── dhcp_server.mk │ │ ├── dns_client.mk │ │ ├── dns_sd.mk │ │ ├── eth.mk │ │ ├── icmp4.mk │ │ ├── igmp.mk │ │ ├── ipc.mk │ │ ├── ipfilter.mk │ │ ├── ipv4.mk │ │ ├── ipv4frag.mk │ │ ├── ipv6.mk │ │ ├── ipv6frag.mk │ │ ├── mcast.mk │ │ ├── mdns.mk │ │ ├── memory_manager.mk │ │ ├── mld.mk │ │ ├── nat.mk │ │ ├── olsr.mk │ │ ├── pcap.mk │ │ ├── polarssl.mk │ │ ├── ppp.mk │ │ ├── slaacv4.mk │ │ ├── sntp_client.mk │ │ ├── tap.mk │ │ ├── tcp.mk │ │ ├── tun.mk │ │ ├── udp.mk │ │ └── wolfssl.mk │ ├── stack │ │ ├── pico_device.c │ │ ├── pico_frame.c │ │ ├── pico_md5.c │ │ ├── pico_protocol.c │ │ ├── pico_socket.c │ │ ├── pico_socket_multicast.c │ │ ├── pico_stack.c │ │ └── pico_tree.c │ ├── test │ │ ├── Makefile │ │ ├── README.md │ │ ├── autotest.sh │ │ ├── coverage.sh │ │ ├── dummy.c │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── dhcp_client.c │ │ │ ├── dhcp_server.c │ │ │ ├── dns_sd.c │ │ │ ├── dnsclient.c │ │ │ ├── iperfc.c │ │ │ ├── mdns.c │ │ │ ├── multicast_ip6_recv.c │ │ │ ├── multicast_ip6_send.c │ │ │ ├── multicast_recv.c │ │ │ ├── multicast_send.c │ │ │ ├── natbox.c │ │ │ ├── noop.c │ │ │ ├── ping.c │ │ │ ├── slaacv4.c │ │ │ ├── sntp.c │ │ │ ├── tcpbench.c │ │ │ ├── tcpclient.c │ │ │ ├── tcpecho.c │ │ │ ├── tftp.c │ │ │ ├── udp_client.c │ │ │ ├── udp_echo.c │ │ │ ├── udp_sendto_test.c │ │ │ ├── udpnat.c │ │ │ └── utils.h │ │ ├── mkunits.sh │ │ ├── olsr_test.sh │ │ ├── perf.sh │ │ ├── pico_faulty.c │ │ ├── pico_faulty.h │ │ ├── picoapp.c │ │ ├── ppp.c │ │ ├── python │ │ │ ├── dhcp.py │ │ │ ├── fairness.py │ │ │ ├── fairness_bottleneck.py │ │ │ ├── fairness_bottleneck_linux.py │ │ │ ├── fragmentation.py │ │ │ ├── howto.py │ │ │ ├── http_server_linux.py │ │ │ ├── multicast_recv.py │ │ │ ├── multicast_send.py │ │ │ ├── noop.py │ │ │ ├── ping.py │ │ │ ├── ping_delay.py │ │ │ ├── ping_linux.py │ │ │ ├── ping_nat.py │ │ │ ├── reassembly.py │ │ │ ├── tcpbench-delay.py │ │ │ ├── tcpbench-tap.py │ │ │ ├── tcpbench.py │ │ │ ├── tcpbench_rx_linux.py │ │ │ ├── tcpbench_tx_linux.py │ │ │ ├── tcpecho_linux.py │ │ │ ├── topology.py │ │ │ ├── traceroute_from_linux.py │ │ │ ├── traceroute_nat_from_linux.py │ │ │ ├── udpecho.py │ │ │ └── zmq_linux.py │ │ ├── test_tftp_app_client.c │ │ ├── unit │ │ │ ├── modunit_pico_6lowpan.c │ │ │ ├── modunit_pico_802154.c │ │ │ ├── modunit_pico_aodv.c │ │ │ ├── modunit_pico_dev_loop.c │ │ │ ├── modunit_pico_dev_ppp.c │ │ │ ├── modunit_pico_dns_client.c │ │ │ ├── modunit_pico_dns_common.c │ │ │ ├── modunit_pico_dns_sd.c │ │ │ ├── modunit_pico_ethernet.c │ │ │ ├── modunit_pico_fragments.c │ │ │ ├── modunit_pico_frame.c │ │ │ ├── modunit_pico_hotplug_detection.c │ │ │ ├── modunit_pico_igmp.c │ │ │ ├── modunit_pico_ipfilter.c │ │ │ ├── modunit_pico_ipv6_nd.c │ │ │ ├── modunit_pico_mdns.c │ │ │ ├── modunit_pico_mld.c │ │ │ ├── modunit_pico_protocol.c │ │ │ ├── modunit_pico_sntp_client.c │ │ │ ├── modunit_pico_stack.c │ │ │ ├── modunit_pico_strings.c │ │ │ ├── modunit_pico_tcp.c │ │ │ ├── modunit_pico_tftp.c │ │ │ ├── modunit_queue.c │ │ │ ├── modunit_seq.c │ │ │ ├── unit_arp.c │ │ │ ├── unit_dhcp.c │ │ │ ├── unit_dns.c │ │ │ ├── unit_icmp4.c │ │ │ ├── unit_ipv4.c │ │ │ ├── unit_ipv6.c │ │ │ ├── unit_mem_manager.c │ │ │ ├── unit_mocks.c │ │ │ ├── unit_rbtree.c │ │ │ ├── unit_socket.c │ │ │ └── unit_timer.c │ │ ├── units.c │ │ ├── units.sh │ │ ├── vde_sock_start.sh │ │ └── vde_sock_start_user.sh │ └── uncrustify.cfg ├── ping.c ├── rarp.h └── sntp.c ├── pbl ├── Kconfig ├── Makefile ├── console.c ├── decomp.c ├── misc.c └── string.c ├── scripts ├── .gitignore ├── Kbuild.include ├── Makefile ├── Makefile.build ├── Makefile.clean ├── Makefile.host ├── Makefile.lib ├── Makefile.modpost ├── bareboxcrc32.c ├── bareboxenv.c ├── bareboximd.c ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── bbremote ├── bin2c.c ├── canon-a1100-image ├── checkpatch.pl ├── coccinelle │ └── misc │ │ └── altera_sequencer.cocci ├── compiler.h ├── dfuboot.sh ├── dtc │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dtc │ ├── checks.c │ ├── data.c │ ├── dtc-lexer.l │ ├── dtc-lexer.lex.c_shipped │ ├── dtc-parser.tab.c_shipped │ ├── dtc-parser.tab.h_shipped │ ├── dtc-parser.y │ ├── dtc.c │ ├── dtc.h │ ├── fdt.c │ ├── fdt.h │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdtdump.c │ ├── fdtget.c │ ├── fdtput.c │ ├── flattree.c │ ├── fstree.c │ ├── libfdt.h │ ├── libfdt_env.h │ ├── libfdt_internal.h │ ├── livetree.c │ ├── srcpos.c │ ├── srcpos.h │ ├── treesource.c │ ├── update-dtc-source.sh │ ├── util.c │ ├── util.h │ └── version_gen.h ├── fix_size.c ├── gen-dtb-s ├── gen_netx_image.c ├── genenv ├── imx │ ├── .gitignore │ ├── Kconfig │ ├── Makefile │ ├── README │ ├── imx-image.c │ ├── imx-usb-loader.c │ ├── imx.c │ └── imx.h ├── include │ ├── asm-generic │ │ ├── atomic-gcc.h │ │ ├── barrier.h │ │ ├── bitops.h │ │ └── bitops │ │ │ ├── __ffs.h │ │ │ ├── __fls.h │ │ │ ├── arch_hweight.h │ │ │ ├── atomic.h │ │ │ ├── const_hweight.h │ │ │ ├── find.h │ │ │ ├── fls.h │ │ │ ├── fls64.h │ │ │ └── hweight.h │ ├── asm │ │ ├── atomic.h │ │ ├── barrier.h │ │ └── bug.h │ ├── linux │ │ ├── atomic.h │ │ ├── bitmap.h │ │ ├── bitops.h │ │ ├── compiler.h │ │ ├── err.h │ │ ├── export.h │ │ ├── kernel.h │ │ ├── list.h │ │ ├── log2.h │ │ ├── poison.h │ │ ├── string.h │ │ └── types.h │ └── tools │ │ ├── be_byteshift.h │ │ ├── endian.h │ │ └── le_byteshift.h ├── kallsyms.c ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── POTFILES.in │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kxgettext.c │ ├── list.h │ ├── 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 │ ├── merge_config.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── kernel-install.c ├── kwbimage.c ├── kwboot.c ├── mailmapper ├── mk-omap-image.c ├── mkcompile_h ├── mkimage.c ├── mkmakefile ├── mksysmap ├── mkublheader.c ├── mod │ ├── .gitignore │ ├── Makefile │ ├── empty.c │ ├── file2alias.c │ ├── mk_elfconfig.c │ ├── modpost.c │ ├── modpost.h │ └── sumversion.c ├── mxsboot.c ├── mxsimage.c ├── netconsole ├── omap3-usb-loader.c ├── omap4_usbboot.c ├── omap_signGP.c ├── regsubst.pl ├── remote │ ├── __init__.py │ ├── controller.py │ ├── main.py │ ├── messages.py │ ├── missing.py │ ├── ratp.py │ ├── ratpfs.py │ └── threadstdio.py ├── s5p_cksum.c ├── serial │ ├── __init__.py │ ├── rfc2217.py │ ├── serialcli.py │ ├── serialposix.py │ ├── serialutil.py │ ├── tools │ │ ├── __init__.py │ │ ├── list_ports.py │ │ └── list_ports_linux.py │ └── urlhandler │ │ ├── __init__.py │ │ ├── protocol_hwgrep.py │ │ ├── protocol_loop.py │ │ ├── protocol_rfc2217.py │ │ └── protocol_socket.py ├── setlocalversion ├── setupmbr │ ├── .gitignore │ ├── Makefile │ ├── arch.h │ └── setupmbr.c ├── socfpga_get_sequencer ├── socfpga_import_preloader ├── socfpga_mkimage.c ├── socfpga_sequencer_defines_defaults ├── socfpga_xml_to_config.sh ├── tags.sh ├── tegra │ ├── .gitignore │ ├── Makefile │ ├── aes_ref.c │ ├── bct_dump.c │ ├── cbootimage.c │ ├── cbootimage.h │ ├── context.c │ ├── context.h │ ├── crypto.c │ ├── crypto.h │ ├── data_layout.c │ ├── data_layout.h │ ├── nvaes_ref.h │ ├── parse.c │ ├── parse.h │ ├── set.c │ ├── set.h │ ├── t114 │ │ ├── nvbctlib_t114.c │ │ ├── nvboot_bct_t114.h │ │ ├── nvboot_sdram_param_t114.h │ │ └── parse_t114.c │ ├── t124 │ │ ├── nvbctlib_t124.c │ │ ├── nvboot_bct_t124.h │ │ ├── nvboot_sdram_param_t124.h │ │ └── parse_t124.c │ ├── t20 │ │ ├── nvbctlib_t20.c │ │ ├── nvboot_bct_t20.h │ │ ├── nvboot_sdram_param_t20.h │ │ └── parse_t20.c │ └── t30 │ │ ├── nvbctlib_t30.c │ │ ├── nvboot_bct_t30.h │ │ ├── nvboot_sdram_param_t30.h │ │ └── parse_t30.c ├── xz_wrap.sh └── zynq_mkimage.c └── set_upstream.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bin -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/.mailmap -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | commands 3 | html 4 | -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/Kbuild -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/Kconfig -------------------------------------------------------------------------------- /MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/MAKEALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/README -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/README_ZH.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/TODO -------------------------------------------------------------------------------- /arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/Kconfig -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/boards/altera-socdk/config.h: -------------------------------------------------------------------------------- 1 | /* nothing */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/archosg9/env/menu/12-boot-sd/title: -------------------------------------------------------------------------------- 1 | ${RED}Reboot into SD card${NC} 2 | -------------------------------------------------------------------------------- /arch/arm/boards/archosg9/env/menu/13-boot-usb/title: -------------------------------------------------------------------------------- 1 | ${RED}Reboot over usb${NC} 2 | -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | android 2 | -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/hostname: -------------------------------------------------------------------------------- 1 | at91sam9m10ihd 2 | -------------------------------------------------------------------------------- /arch/arm/boards/at91sam9m10ihd/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/avnet-zedboard/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyPS1,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/canon-a1100/Makefile: -------------------------------------------------------------------------------- 1 | lwl-y += lowlevel.o 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ccxmx51/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ccxmx51/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/boot.default: -------------------------------------------------------------------------------- 1 | nor 2 | -------------------------------------------------------------------------------- /arch/arm/boards/clep7212/defaultenv-clep7212/nv/linux.bootargs.debug: -------------------------------------------------------------------------------- 1 | earlyprintk 2 | -------------------------------------------------------------------------------- /arch/arm/boards/crystalfontz-cfa10036/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc-ext3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/ebv-socrates/config.h: -------------------------------------------------------------------------------- 1 | /* nothing */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=tty1 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.lpj: -------------------------------------------------------------------------------- 1 | lpj=3997696 2 | -------------------------------------------------------------------------------- /arch/arm/boards/efika-mx-smartbook/env/nv/linux.bootargs.quiet: -------------------------------------------------------------------------------- 1 | quiet 2 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-e9/defaultenv-e9/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc1 mmc3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-e9/defaultenv-e9/nv/hostname: -------------------------------------------------------------------------------- 1 | e9 2 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-tq210/env/init/net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifup eth0 4 | -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-tq210/env/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-tq210/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /arch/arm/boards/embedsky-tq210/env/nv/fb0.enable: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /arch/arm/boards/forlinx-ok210/env/config-board: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | global -r boot.default 4 | -------------------------------------------------------------------------------- /arch/arm/boards/forlinx-ok210/env/init/fb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | fb0.enable=1 4 | -------------------------------------------------------------------------------- /arch/arm/boards/forlinx-ok210/env/init/net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifup -a 4 | -------------------------------------------------------------------------------- /arch/arm/boards/freescale-mx21-ads/env/bin/init: -------------------------------------------------------------------------------- 1 | # Dummy Init environment script 2 | -------------------------------------------------------------------------------- /arch/arm/boards/freescale-vf610-twr/Makefile: -------------------------------------------------------------------------------- 1 | lwl-y += lowlevel.o 2 | -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/010-ahci-boot: -------------------------------------------------------------------------------- 1 | ../boot/ahci-boot -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/011-ahci: -------------------------------------------------------------------------------- 1 | ../boot/ahci -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/020-mmc-boot: -------------------------------------------------------------------------------- 1 | ../boot/mmc-boot -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/021-mmc: -------------------------------------------------------------------------------- 1 | ../boot/mmc -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/030-net: -------------------------------------------------------------------------------- 1 | ../boot/net -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/boot.d/031-net-eth1: -------------------------------------------------------------------------------- 1 | ../boot/net-eth1 -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/nv/boot.default: -------------------------------------------------------------------------------- 1 | /env/boot.d 2 | -------------------------------------------------------------------------------- /arch/arm/boards/highbank/defaultenv-highbank/nv/bootm.oftree: -------------------------------------------------------------------------------- 1 | /dev/dtb 2 | -------------------------------------------------------------------------------- /arch/arm/boards/imx233-olinuxino/defaultenv-imx233-olinuxino/nv/boot.default: -------------------------------------------------------------------------------- 1 | sd 2 | -------------------------------------------------------------------------------- /arch/arm/boards/imx233-olinuxino/defaultenv-imx233-olinuxino/nv/hostname: -------------------------------------------------------------------------------- 1 | olinuxino 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle-mx50/defaultenv-kindle-mx50/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle-mx50/defaultenv-kindle-mx50/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc_kernel 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle3/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle3/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc_kernel 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle3/env/nv/linux.bootargs.base: -------------------------------------------------------------------------------- 1 | mem=256M ip=none 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle3/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttymxc0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/kindle3/env/nv/linux.bootargs.lpj: -------------------------------------------------------------------------------- 1 | lpj=2555904 2 | -------------------------------------------------------------------------------- /arch/arm/boards/lenovo-ix4-300d/Makefile: -------------------------------------------------------------------------------- 1 | lwl-y += lowlevel.o 2 | -------------------------------------------------------------------------------- /arch/arm/boards/lubbock/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/mainstone/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/mx31moboard/env/boot/sd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | boot mci0 4 | -------------------------------------------------------------------------------- /arch/arm/boards/mx31moboard/env/boot/usbmsd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | boot ehci0 4 | -------------------------------------------------------------------------------- /arch/arm/boards/mx31moboard/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | usbmsd sd nor 2 | -------------------------------------------------------------------------------- /arch/arm/boards/netgear-rn104/board.c: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-phycore-pxa270/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/nv/allow_color: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/nv/boot.watchdog_timeout: -------------------------------------------------------------------------------- 1 | 60 2 | -------------------------------------------------------------------------------- /arch/arm/boards/phytec-som-rk3288/defaultenv-physom-rk3288/nv/boot.default: -------------------------------------------------------------------------------- 1 | emmc mmc 2 | -------------------------------------------------------------------------------- /arch/arm/boards/plathome-openblocks-a6/board.c: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-rock/env/nv/hostname: -------------------------------------------------------------------------------- 1 | radxa-rock 2 | -------------------------------------------------------------------------------- /arch/arm/boards/radxa-rock/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS2,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4_xplained/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4_xplained/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4ek/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand net 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4ek/env/nv/hostname: -------------------------------------------------------------------------------- 1 | sama5d4ek 2 | -------------------------------------------------------------------------------- /arch/arm/boards/sama5d4ek/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | nand-ubi 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/hostname: -------------------------------------------------------------------------------- 1 | evk-pro3 2 | -------------------------------------------------------------------------------- /arch/arm/boards/telit-evk-pro3/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/boards/terasic-de0-nano-soc/config.h: -------------------------------------------------------------------------------- 1 | /* nothing */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/terasic-sockit/config.h: -------------------------------------------------------------------------------- 1 | /* nothing */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/turris-omnia/board.c: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/boot.d/001-nor: -------------------------------------------------------------------------------- 1 | ../boot/nor -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/boot.d/101-nor-update: -------------------------------------------------------------------------------- 1 | ../boot/nor-update -------------------------------------------------------------------------------- /arch/arm/boards/versatile/env/nv/boot.default: -------------------------------------------------------------------------------- 1 | /env/boot.d 2 | -------------------------------------------------------------------------------- /arch/arm/boards/zii-imx6q-rdu2/defaultenv-rdu2/nv/boot.default: -------------------------------------------------------------------------------- 1 | mmc1 -------------------------------------------------------------------------------- /arch/arm/boards/zylonite/env/nv/hostname: -------------------------------------------------------------------------------- 1 | zylonite 2 | -------------------------------------------------------------------------------- /arch/arm/boards/zylonite/env/nv/linux.bootargs.base: -------------------------------------------------------------------------------- 1 | ram=64M 2 | -------------------------------------------------------------------------------- /arch/arm/boards/zylonite/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyS0,115200 2 | -------------------------------------------------------------------------------- /arch/arm/cpu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/Kconfig -------------------------------------------------------------------------------- /arch/arm/cpu/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/cache.c -------------------------------------------------------------------------------- /arch/arm/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/cpu.c -------------------------------------------------------------------------------- /arch/arm/cpu/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/dtb.c -------------------------------------------------------------------------------- /arch/arm/cpu/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/entry.c -------------------------------------------------------------------------------- /arch/arm/cpu/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/entry.h -------------------------------------------------------------------------------- /arch/arm/cpu/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/mmu.c -------------------------------------------------------------------------------- /arch/arm/cpu/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/mmu.h -------------------------------------------------------------------------------- /arch/arm/cpu/psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/psci.c -------------------------------------------------------------------------------- /arch/arm/cpu/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/sm.c -------------------------------------------------------------------------------- /arch/arm/cpu/sm_as.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/sm_as.S -------------------------------------------------------------------------------- /arch/arm/cpu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/cpu/start.c -------------------------------------------------------------------------------- /arch/arm/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | /sha256-core.S 2 | -------------------------------------------------------------------------------- /arch/arm/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *dtb* 2 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/lib32/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/arm/lib32/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/arm/lib32/io.c -------------------------------------------------------------------------------- /arch/arm/mach-bcm283x/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += core.o mbox.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-davinci/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += time.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-digic/Makefile: -------------------------------------------------------------------------------- 1 | obj- := __dummy__.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/include/mach/clock.h: -------------------------------------------------------------------------------- 1 | /* nothing, but some drivers need this include */ 2 | -------------------------------------------------------------------------------- /arch/arm/mach-qemu/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MACH_QEMU_VIRT64) += virt_devices.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-uemd/Makefile: -------------------------------------------------------------------------------- 1 | obj- := __dummy__.o 2 | -------------------------------------------------------------------------------- /arch/arm/mach-versatile/Makefile: -------------------------------------------------------------------------------- 1 | 2 | obj-y += core.o 3 | -------------------------------------------------------------------------------- /arch/blackfin/boards/ipe337/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/blackfin/boards/ipe337/env/bin/magic.bin: -------------------------------------------------------------------------------- 1 | (i -------------------------------------------------------------------------------- /arch/blackfin/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/common.h: -------------------------------------------------------------------------------- 1 | /* nothing special */ 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/blackfin/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/mips/Kconfig -------------------------------------------------------------------------------- /arch/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/mips/Makefile -------------------------------------------------------------------------------- /arch/mips/boards/black-swift/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/dlink-dir-320/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9331/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9331/env/init/net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifup eth0 4 | -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9331/env/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9331/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9344/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9344/env/init/net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifup eth0 4 | -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9344/env/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /arch/mips/boards/general-ar9344/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /arch/mips/boards/general-rt5350/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/general-rt5350/env/init/net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ifup eth0 4 | -------------------------------------------------------------------------------- /arch/mips/boards/general-rt5350/env/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /arch/mips/boards/general-rt5350/env/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /arch/mips/boards/img-ci20/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/loongson-ls1b/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += serial.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/netgear-wg102/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ram.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/qemu-malta/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += init.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/ritmix-rzx50/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += serial.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/tplink-mr3020/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boards/tplink-wdr4300/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += board.o 2 | -------------------------------------------------------------------------------- /arch/mips/boot/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/mips/boot/dtb.c -------------------------------------------------------------------------------- /arch/mips/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *dtb* 2 | -------------------------------------------------------------------------------- /arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/mips/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/lib/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/mips/mach-bcm47xx/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += reset.o 2 | -------------------------------------------------------------------------------- /arch/mips/mach-loongson/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += loongson1_reset.o 2 | -------------------------------------------------------------------------------- /arch/nios2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/nios2/Kconfig -------------------------------------------------------------------------------- /arch/nios2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/nios2/Makefile -------------------------------------------------------------------------------- /arch/nios2/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/nios2/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/nios2/cpu/cpu.c -------------------------------------------------------------------------------- /arch/nios2/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/boards/generic/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += generic.o 2 | -------------------------------------------------------------------------------- /arch/openrisc/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/openrisc/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/ppc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/Kconfig -------------------------------------------------------------------------------- /arch/ppc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/Makefile -------------------------------------------------------------------------------- /arch/ppc/boards/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/ppc/boards/pcm030/env/nv/linux.bootargs.console: -------------------------------------------------------------------------------- 1 | console=ttyPSC0,115200 2 | -------------------------------------------------------------------------------- /arch/ppc/cpu-85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /arch/ppc/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/ppc/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/ppc/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/ppc/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/lib/board.c -------------------------------------------------------------------------------- /arch/ppc/lib/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/lib/kgdb.c -------------------------------------------------------------------------------- /arch/ppc/lib/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/lib/misc.S -------------------------------------------------------------------------------- /arch/ppc/lib/reloc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/lib/reloc.S -------------------------------------------------------------------------------- /arch/ppc/lib/ticks.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/ppc/lib/ticks.S -------------------------------------------------------------------------------- /arch/ppc/mach-mpc85xx/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/sandbox/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/sandbox/Kconfig -------------------------------------------------------------------------------- /arch/sandbox/board/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/sandbox/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *dtb* 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/barebox.h: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/string.h: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/Kconfig -------------------------------------------------------------------------------- /arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/Makefile -------------------------------------------------------------------------------- /arch/x86/boot/a20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/boot/a20.c -------------------------------------------------------------------------------- /arch/x86/boot/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/boot/boot.h -------------------------------------------------------------------------------- /arch/x86/boot/regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/boot/regs.c -------------------------------------------------------------------------------- /arch/x86/boot/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/boot/tty.c -------------------------------------------------------------------------------- /arch/x86/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/lib/.gitignore: -------------------------------------------------------------------------------- 1 | barebox.lds 2 | -------------------------------------------------------------------------------- /arch/x86/lib/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/arch/x86/lib/gdt.c -------------------------------------------------------------------------------- /arch/x86/mach-efi/include/mach/barebox.lds.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /arch/x86/mach-efi/include/mach/debug_ll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/mach-i386/Makefile: -------------------------------------------------------------------------------- 1 | # reference clocksource 2 | obj-y += pit_timer.o 3 | -------------------------------------------------------------------------------- /commands/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/2048.c -------------------------------------------------------------------------------- /commands/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/Kconfig -------------------------------------------------------------------------------- /commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/Makefile -------------------------------------------------------------------------------- /commands/automount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/automount.c -------------------------------------------------------------------------------- /commands/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/basename.c -------------------------------------------------------------------------------- /commands/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/boot.c -------------------------------------------------------------------------------- /commands/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/bootm.c -------------------------------------------------------------------------------- /commands/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/cat.c -------------------------------------------------------------------------------- /commands/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/cd.c -------------------------------------------------------------------------------- /commands/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/clear.c -------------------------------------------------------------------------------- /commands/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/clk.c -------------------------------------------------------------------------------- /commands/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/cmp.c -------------------------------------------------------------------------------- /commands/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/cp.c -------------------------------------------------------------------------------- /commands/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/crc.c -------------------------------------------------------------------------------- /commands/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/detect.c -------------------------------------------------------------------------------- /commands/devinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/devinfo.c -------------------------------------------------------------------------------- /commands/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/dfu.c -------------------------------------------------------------------------------- /commands/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/dhcp.c -------------------------------------------------------------------------------- /commands/dhrystone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/dhrystone.c -------------------------------------------------------------------------------- /commands/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/digest.c -------------------------------------------------------------------------------- /commands/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/dirname.c -------------------------------------------------------------------------------- /commands/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/dmesg.c -------------------------------------------------------------------------------- /commands/drvinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/drvinfo.c -------------------------------------------------------------------------------- /commands/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/echo.c -------------------------------------------------------------------------------- /commands/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/edit.c -------------------------------------------------------------------------------- /commands/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/exec.c -------------------------------------------------------------------------------- /commands/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/export.c -------------------------------------------------------------------------------- /commands/false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/false.c -------------------------------------------------------------------------------- /commands/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/fbtest.c -------------------------------------------------------------------------------- /commands/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/filetype.c -------------------------------------------------------------------------------- /commands/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/flash.c -------------------------------------------------------------------------------- /commands/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/global.c -------------------------------------------------------------------------------- /commands/go.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/go.c -------------------------------------------------------------------------------- /commands/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/gpio.c -------------------------------------------------------------------------------- /commands/hab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/hab.c -------------------------------------------------------------------------------- /commands/hashsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/hashsum.c -------------------------------------------------------------------------------- /commands/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/help.c -------------------------------------------------------------------------------- /commands/hwclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/hwclock.c -------------------------------------------------------------------------------- /commands/hwmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/hwmon.c -------------------------------------------------------------------------------- /commands/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/i2c.c -------------------------------------------------------------------------------- /commands/imd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/imd.c -------------------------------------------------------------------------------- /commands/insmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/insmod.c -------------------------------------------------------------------------------- /commands/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/internal.h -------------------------------------------------------------------------------- /commands/iomemport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/iomemport.c -------------------------------------------------------------------------------- /commands/keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/keystore.c -------------------------------------------------------------------------------- /commands/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/led.c -------------------------------------------------------------------------------- /commands/let.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/let.c -------------------------------------------------------------------------------- /commands/linux16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/linux16.c -------------------------------------------------------------------------------- /commands/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/ln.c -------------------------------------------------------------------------------- /commands/loadb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/loadb.c -------------------------------------------------------------------------------- /commands/loadenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/loadenv.c -------------------------------------------------------------------------------- /commands/loads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/loads.c -------------------------------------------------------------------------------- /commands/loadxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/loadxy.c -------------------------------------------------------------------------------- /commands/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/login.c -------------------------------------------------------------------------------- /commands/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/ls.c -------------------------------------------------------------------------------- /commands/lsmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/lsmod.c -------------------------------------------------------------------------------- /commands/lspci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/lspci.c -------------------------------------------------------------------------------- /commands/magicvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/magicvar.c -------------------------------------------------------------------------------- /commands/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/md.c -------------------------------------------------------------------------------- /commands/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/mem.c -------------------------------------------------------------------------------- /commands/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/memcmp.c -------------------------------------------------------------------------------- /commands/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/memcpy.c -------------------------------------------------------------------------------- /commands/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/meminfo.c -------------------------------------------------------------------------------- /commands/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/memset.c -------------------------------------------------------------------------------- /commands/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/memtest.c -------------------------------------------------------------------------------- /commands/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/menu.c -------------------------------------------------------------------------------- /commands/menutree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/menutree.c -------------------------------------------------------------------------------- /commands/miitool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/miitool.c -------------------------------------------------------------------------------- /commands/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/mkdir.c -------------------------------------------------------------------------------- /commands/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/mm.c -------------------------------------------------------------------------------- /commands/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/mount.c -------------------------------------------------------------------------------- /commands/msleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/msleep.c -------------------------------------------------------------------------------- /commands/mw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/mw.c -------------------------------------------------------------------------------- /commands/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/nand.c -------------------------------------------------------------------------------- /commands/nandtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/nandtest.c -------------------------------------------------------------------------------- /commands/nv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/nv.c -------------------------------------------------------------------------------- /commands/of_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/of_dump.c -------------------------------------------------------------------------------- /commands/of_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/of_node.c -------------------------------------------------------------------------------- /commands/oftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/oftree.c -------------------------------------------------------------------------------- /commands/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/partition.c -------------------------------------------------------------------------------- /commands/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/passwd.c -------------------------------------------------------------------------------- /commands/poweroff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/poweroff.c -------------------------------------------------------------------------------- /commands/printenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/printenv.c -------------------------------------------------------------------------------- /commands/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/pwd.c -------------------------------------------------------------------------------- /commands/readf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/readf.c -------------------------------------------------------------------------------- /commands/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/readline.c -------------------------------------------------------------------------------- /commands/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/readlink.c -------------------------------------------------------------------------------- /commands/reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/reginfo.c -------------------------------------------------------------------------------- /commands/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/regulator.c -------------------------------------------------------------------------------- /commands/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/reset.c -------------------------------------------------------------------------------- /commands/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/rm.c -------------------------------------------------------------------------------- /commands/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/rmdir.c -------------------------------------------------------------------------------- /commands/saveenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/saveenv.c -------------------------------------------------------------------------------- /commands/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/seed.c -------------------------------------------------------------------------------- /commands/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/setenv.c -------------------------------------------------------------------------------- /commands/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/sleep.c -------------------------------------------------------------------------------- /commands/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/spi.c -------------------------------------------------------------------------------- /commands/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/splash.c -------------------------------------------------------------------------------- /commands/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/state.c -------------------------------------------------------------------------------- /commands/stddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/stddev.c -------------------------------------------------------------------------------- /commands/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/test.c -------------------------------------------------------------------------------- /commands/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/tftp.c -------------------------------------------------------------------------------- /commands/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/time.c -------------------------------------------------------------------------------- /commands/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/timeout.c -------------------------------------------------------------------------------- /commands/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/trigger.c -------------------------------------------------------------------------------- /commands/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/true.c -------------------------------------------------------------------------------- /commands/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/ubi.c -------------------------------------------------------------------------------- /commands/ubiformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/ubiformat.c -------------------------------------------------------------------------------- /commands/uimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/uimage.c -------------------------------------------------------------------------------- /commands/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/umount.c -------------------------------------------------------------------------------- /commands/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/usb.c -------------------------------------------------------------------------------- /commands/usbgadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/usbgadget.c -------------------------------------------------------------------------------- /commands/usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/usbserial.c -------------------------------------------------------------------------------- /commands/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/version.c -------------------------------------------------------------------------------- /commands/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/commands/wd.c -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | module.lds 2 | barebox_default_env* 3 | -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/bbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/bbu.c -------------------------------------------------------------------------------- /common/binfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/binfmt.c -------------------------------------------------------------------------------- /common/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/block.c -------------------------------------------------------------------------------- /common/blspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/blspec.c -------------------------------------------------------------------------------- /common/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/boot.c -------------------------------------------------------------------------------- /common/bootargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/bootargs.c -------------------------------------------------------------------------------- /common/bootchooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/bootchooser.c -------------------------------------------------------------------------------- /common/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/bootm.c -------------------------------------------------------------------------------- /common/bootsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/bootsource.c -------------------------------------------------------------------------------- /common/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/clock.c -------------------------------------------------------------------------------- /common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/command.c -------------------------------------------------------------------------------- /common/complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/complete.c -------------------------------------------------------------------------------- /common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/console.c -------------------------------------------------------------------------------- /common/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/date.c -------------------------------------------------------------------------------- /common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ddr_spd.c -------------------------------------------------------------------------------- /common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/dlmalloc.c -------------------------------------------------------------------------------- /common/efi-guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/efi-guid.c -------------------------------------------------------------------------------- /common/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/efi/Makefile -------------------------------------------------------------------------------- /common/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/efi/efi.c -------------------------------------------------------------------------------- /common/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/env.c -------------------------------------------------------------------------------- /common/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/environment.c -------------------------------------------------------------------------------- /common/file-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/file-list.c -------------------------------------------------------------------------------- /common/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/filetype.c -------------------------------------------------------------------------------- /common/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/firmware.c -------------------------------------------------------------------------------- /common/globalvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/globalvar.c -------------------------------------------------------------------------------- /common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/hush.c -------------------------------------------------------------------------------- /common/image-fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/image-fit.c -------------------------------------------------------------------------------- /common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/image.c -------------------------------------------------------------------------------- /common/imd-barebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/imd-barebox.c -------------------------------------------------------------------------------- /common/imd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/imd.c -------------------------------------------------------------------------------- /common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/kallsyms.c -------------------------------------------------------------------------------- /common/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/meminfo.c -------------------------------------------------------------------------------- /common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/memory.c -------------------------------------------------------------------------------- /common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/memsize.c -------------------------------------------------------------------------------- /common/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/memtest.c -------------------------------------------------------------------------------- /common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/menu.c -------------------------------------------------------------------------------- /common/menutree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/menutree.c -------------------------------------------------------------------------------- /common/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/misc.c -------------------------------------------------------------------------------- /common/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/module.c -------------------------------------------------------------------------------- /common/module.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/module.lds.S -------------------------------------------------------------------------------- /common/oftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/oftree.c -------------------------------------------------------------------------------- /common/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/parser.c -------------------------------------------------------------------------------- /common/partitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/partitions.c -------------------------------------------------------------------------------- /common/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/password.c -------------------------------------------------------------------------------- /common/poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/poller.c -------------------------------------------------------------------------------- /common/poweroff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/poweroff.c -------------------------------------------------------------------------------- /common/ratp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/Kconfig -------------------------------------------------------------------------------- /common/ratp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/Makefile -------------------------------------------------------------------------------- /common/ratp/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/getenv.c -------------------------------------------------------------------------------- /common/ratp/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/md.c -------------------------------------------------------------------------------- /common/ratp/mw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/mw.c -------------------------------------------------------------------------------- /common/ratp/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/ping.c -------------------------------------------------------------------------------- /common/ratp/ratp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/ratp.c -------------------------------------------------------------------------------- /common/ratp/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ratp/reset.c -------------------------------------------------------------------------------- /common/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/resource.c -------------------------------------------------------------------------------- /common/restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/restart.c -------------------------------------------------------------------------------- /common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/s_record.c -------------------------------------------------------------------------------- /common/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/startup.c -------------------------------------------------------------------------------- /common/state/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/state/state.c -------------------------------------------------------------------------------- /common/state/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/state/state.h -------------------------------------------------------------------------------- /common/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/tlsf.c -------------------------------------------------------------------------------- /common/tlsf_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/tlsf_malloc.c -------------------------------------------------------------------------------- /common/tlsfbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/tlsfbits.h -------------------------------------------------------------------------------- /common/ubiformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/ubiformat.c -------------------------------------------------------------------------------- /common/uimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/uimage.c -------------------------------------------------------------------------------- /common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/common/version.c -------------------------------------------------------------------------------- /crypto/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/Kconfig -------------------------------------------------------------------------------- /crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/Makefile -------------------------------------------------------------------------------- /crypto/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/crc16.c -------------------------------------------------------------------------------- /crypto/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/crc32.c -------------------------------------------------------------------------------- /crypto/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/crc7.c -------------------------------------------------------------------------------- /crypto/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/digest.c -------------------------------------------------------------------------------- /crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/hmac.c -------------------------------------------------------------------------------- /crypto/keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/keystore.c -------------------------------------------------------------------------------- /crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/md5.c -------------------------------------------------------------------------------- /crypto/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/pbkdf2.c -------------------------------------------------------------------------------- /crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/rsa.c -------------------------------------------------------------------------------- /crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/sha1.c -------------------------------------------------------------------------------- /crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/sha2.c -------------------------------------------------------------------------------- /crypto/sha4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/crypto/sha4.c -------------------------------------------------------------------------------- /defaultenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/defaultenv/Makefile -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/allow_color: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/autoboot_timeout: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-base/nv/user: -------------------------------------------------------------------------------- 1 | none -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/00-boot-default/title: -------------------------------------------------------------------------------- 1 | Boot default 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/action: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | boot -m 4 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/net/title: -------------------------------------------------------------------------------- 1 | Boot from network 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/10-boot-all/title: -------------------------------------------------------------------------------- 1 | Detect bootsources 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/config/title: -------------------------------------------------------------------------------- 1 | Config settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/network/title: -------------------------------------------------------------------------------- 1 | Network settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/20-settings/title: -------------------------------------------------------------------------------- 1 | Settings 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/30-saveenv/title: -------------------------------------------------------------------------------- 1 | Save environment 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/40-shell/title: -------------------------------------------------------------------------------- 1 | Shell 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/50-reset/action: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | reset 4 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/50-reset/title: -------------------------------------------------------------------------------- 1 | Reset 2 | -------------------------------------------------------------------------------- /defaultenv/defaultenv-2-menu/menu/title: -------------------------------------------------------------------------------- 1 | ${RED}Main menu${NC} 2 | -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/amba/Kconfig: -------------------------------------------------------------------------------- 1 | config ARM_AMBA 2 | bool 3 | -------------------------------------------------------------------------------- /drivers/amba/Makefile: -------------------------------------------------------------------------------- 1 | 2 | obj-y += bus.o 3 | -------------------------------------------------------------------------------- /drivers/amba/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/amba/bus.c -------------------------------------------------------------------------------- /drivers/ata/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/ata/Kconfig -------------------------------------------------------------------------------- /drivers/ata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/ata/Makefile -------------------------------------------------------------------------------- /drivers/ata/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/ata/ahci.c -------------------------------------------------------------------------------- /drivers/ata/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/ata/ahci.h -------------------------------------------------------------------------------- /drivers/base/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/base/bus.c -------------------------------------------------------------------------------- /drivers/base/regmap/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += regmap.o -------------------------------------------------------------------------------- /drivers/block/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_EFI_BOOTUP) += efi-block-io.o 2 | -------------------------------------------------------------------------------- /drivers/bus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/bus/Kconfig -------------------------------------------------------------------------------- /drivers/bus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/bus/Makefile -------------------------------------------------------------------------------- /drivers/clk/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/clk/Kconfig -------------------------------------------------------------------------------- /drivers/clk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/clk/Makefile -------------------------------------------------------------------------------- /drivers/clk/clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/clk/clk.c -------------------------------------------------------------------------------- /drivers/clk/clkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/clk/clkdev.c -------------------------------------------------------------------------------- /drivers/crypto/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_CRYPTO_DEV_FSL_CAAM) += caam/ 2 | -------------------------------------------------------------------------------- /drivers/dma/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/dma/Kconfig -------------------------------------------------------------------------------- /drivers/dma/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MXS_APBH_DMA) += apbh_dma.o 2 | -------------------------------------------------------------------------------- /drivers/efi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/efi/Kconfig -------------------------------------------------------------------------------- /drivers/efi/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += efi-device.o 2 | -------------------------------------------------------------------------------- /drivers/gpio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/gpio/Kconfig -------------------------------------------------------------------------------- /drivers/hab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/hab/Makefile -------------------------------------------------------------------------------- /drivers/hab/hab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/hab/hab.c -------------------------------------------------------------------------------- /drivers/hab/habv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/hab/habv3.c -------------------------------------------------------------------------------- /drivers/hab/habv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/hab/habv4.c -------------------------------------------------------------------------------- /drivers/i2c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/i2c/Kconfig -------------------------------------------------------------------------------- /drivers/i2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/i2c/Makefile -------------------------------------------------------------------------------- /drivers/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/i2c/i2c.c -------------------------------------------------------------------------------- /drivers/led/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/led/Kconfig -------------------------------------------------------------------------------- /drivers/led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/led/Makefile -------------------------------------------------------------------------------- /drivers/led/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/led/core.c -------------------------------------------------------------------------------- /drivers/mci/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/Kconfig -------------------------------------------------------------------------------- /drivers/mci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/Makefile -------------------------------------------------------------------------------- /drivers/mci/dw_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/dw_mmc.c -------------------------------------------------------------------------------- /drivers/mci/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/imx.c -------------------------------------------------------------------------------- /drivers/mci/mmci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/mmci.c -------------------------------------------------------------------------------- /drivers/mci/mmci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/mmci.h -------------------------------------------------------------------------------- /drivers/mci/mxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/mxs.c -------------------------------------------------------------------------------- /drivers/mci/pxamci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/pxamci.c -------------------------------------------------------------------------------- /drivers/mci/pxamci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/pxamci.h -------------------------------------------------------------------------------- /drivers/mci/s3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/s3c.c -------------------------------------------------------------------------------- /drivers/mci/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mci/sdhci.h -------------------------------------------------------------------------------- /drivers/memory/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_MC_TEGRA124) += mc-tegra124.o 2 | -------------------------------------------------------------------------------- /drivers/mfd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/Kconfig -------------------------------------------------------------------------------- /drivers/mfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/Makefile -------------------------------------------------------------------------------- /drivers/mfd/da9053.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/da9053.c -------------------------------------------------------------------------------- /drivers/mfd/da9063.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/da9063.c -------------------------------------------------------------------------------- /drivers/mfd/lp3972.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/lp3972.c -------------------------------------------------------------------------------- /drivers/mfd/syscon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mfd/syscon.c -------------------------------------------------------------------------------- /drivers/misc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/misc/Kconfig -------------------------------------------------------------------------------- /drivers/misc/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/misc/jtag.c -------------------------------------------------------------------------------- /drivers/misc/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/misc/sram.c -------------------------------------------------------------------------------- /drivers/misc/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/misc/state.c -------------------------------------------------------------------------------- /drivers/mtd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/Kconfig -------------------------------------------------------------------------------- /drivers/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/Makefile -------------------------------------------------------------------------------- /drivers/mtd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/core.c -------------------------------------------------------------------------------- /drivers/mtd/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/mtd.h -------------------------------------------------------------------------------- /drivers/mtd/mtdoob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/mtdoob.c -------------------------------------------------------------------------------- /drivers/mtd/mtdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/mtdraw.c -------------------------------------------------------------------------------- /drivers/mtd/peb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/peb.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/ubi/io.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/ubi/wl.c -------------------------------------------------------------------------------- /drivers/mtd/ubi/wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/mtd/ubi/wl.h -------------------------------------------------------------------------------- /drivers/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/Kconfig -------------------------------------------------------------------------------- /drivers/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/Makefile -------------------------------------------------------------------------------- /drivers/net/ar231x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/ar231x.c -------------------------------------------------------------------------------- /drivers/net/ar231x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/ar231x.h -------------------------------------------------------------------------------- /drivers/net/cpsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/cpsw.c -------------------------------------------------------------------------------- /drivers/net/cs8900.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/cs8900.c -------------------------------------------------------------------------------- /drivers/net/dm9k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/dm9k.c -------------------------------------------------------------------------------- /drivers/net/ep93xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/ep93xx.c -------------------------------------------------------------------------------- /drivers/net/ep93xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/ep93xx.h -------------------------------------------------------------------------------- /drivers/net/ethoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/ethoc.c -------------------------------------------------------------------------------- /drivers/net/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/macb.c -------------------------------------------------------------------------------- /drivers/net/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/macb.h -------------------------------------------------------------------------------- /drivers/net/mvneta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/mvneta.c -------------------------------------------------------------------------------- /drivers/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/tap.c -------------------------------------------------------------------------------- /drivers/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/net/xgmac.c -------------------------------------------------------------------------------- /drivers/nvmem/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/nvmem/core.c -------------------------------------------------------------------------------- /drivers/of/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/Kconfig -------------------------------------------------------------------------------- /drivers/of/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/Makefile -------------------------------------------------------------------------------- /drivers/of/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/address.c -------------------------------------------------------------------------------- /drivers/of/barebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/barebox.c -------------------------------------------------------------------------------- /drivers/of/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/base.c -------------------------------------------------------------------------------- /drivers/of/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/device.c -------------------------------------------------------------------------------- /drivers/of/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/fdt.c -------------------------------------------------------------------------------- /drivers/of/of_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/of_gpio.c -------------------------------------------------------------------------------- /drivers/of/of_mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/of_mtd.c -------------------------------------------------------------------------------- /drivers/of/of_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/of_net.c -------------------------------------------------------------------------------- /drivers/of/of_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/of_path.c -------------------------------------------------------------------------------- /drivers/of/of_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/of/of_pci.c -------------------------------------------------------------------------------- /drivers/pci/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pci/Kconfig -------------------------------------------------------------------------------- /drivers/pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pci/Makefile -------------------------------------------------------------------------------- /drivers/pci/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pci/bus.c -------------------------------------------------------------------------------- /drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pci/pci.c -------------------------------------------------------------------------------- /drivers/phy/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/phy/Kconfig -------------------------------------------------------------------------------- /drivers/phy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/phy/Makefile -------------------------------------------------------------------------------- /drivers/pwm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pwm/Kconfig -------------------------------------------------------------------------------- /drivers/pwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pwm/Makefile -------------------------------------------------------------------------------- /drivers/pwm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/pwm/core.c -------------------------------------------------------------------------------- /drivers/reset/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/reset/core.c -------------------------------------------------------------------------------- /drivers/rtc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/rtc/Kconfig -------------------------------------------------------------------------------- /drivers/rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/rtc/Makefile -------------------------------------------------------------------------------- /drivers/rtc/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/rtc/class.c -------------------------------------------------------------------------------- /drivers/spi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/spi/Kconfig -------------------------------------------------------------------------------- /drivers/spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/spi/Makefile -------------------------------------------------------------------------------- /drivers/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/spi/spi.c -------------------------------------------------------------------------------- /drivers/usb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/usb/Kconfig -------------------------------------------------------------------------------- /drivers/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/usb/Makefile -------------------------------------------------------------------------------- /drivers/video/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/edid.c -------------------------------------------------------------------------------- /drivers/video/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/edid.h -------------------------------------------------------------------------------- /drivers/video/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/fb.c -------------------------------------------------------------------------------- /drivers/video/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/imx.c -------------------------------------------------------------------------------- /drivers/video/omap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/omap.c -------------------------------------------------------------------------------- /drivers/video/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/omap.h -------------------------------------------------------------------------------- /drivers/video/pxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/pxa.c -------------------------------------------------------------------------------- /drivers/video/s3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/s3c.c -------------------------------------------------------------------------------- /drivers/video/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/sdl.c -------------------------------------------------------------------------------- /drivers/video/stm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/stm.c -------------------------------------------------------------------------------- /drivers/video/vpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/video/vpl.c -------------------------------------------------------------------------------- /drivers/w1/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/w1/Kconfig -------------------------------------------------------------------------------- /drivers/w1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/w1/Makefile -------------------------------------------------------------------------------- /drivers/w1/w1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/w1/w1.c -------------------------------------------------------------------------------- /drivers/w1/w1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/drivers/w1/w1.h -------------------------------------------------------------------------------- /dts/Bindings/ABI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/Bindings/ABI.txt -------------------------------------------------------------------------------- /dts/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/COPYING -------------------------------------------------------------------------------- /dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/Makefile -------------------------------------------------------------------------------- /dts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/README -------------------------------------------------------------------------------- /dts/scripts/cronjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/scripts/cronjob -------------------------------------------------------------------------------- /dts/src/arc/hsdk.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/dts/src/arc/hsdk.dts -------------------------------------------------------------------------------- /dts/src/arm/bcm283x-rpi-usb-host.dtsi: -------------------------------------------------------------------------------- 1 | &usb { 2 | dr_mode = "host"; 3 | }; 4 | -------------------------------------------------------------------------------- /dts/src/arm64/socionext/uniphier-pinctrl.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/Kconfig -------------------------------------------------------------------------------- /fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/Makefile -------------------------------------------------------------------------------- /fs/bpkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/bpkfs.c -------------------------------------------------------------------------------- /fs/cramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/cramfs/Makefile -------------------------------------------------------------------------------- /fs/cramfs/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/cramfs/cramfs.c -------------------------------------------------------------------------------- /fs/devfs-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/devfs-core.c -------------------------------------------------------------------------------- /fs/devfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/devfs.c -------------------------------------------------------------------------------- /fs/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/efi.c -------------------------------------------------------------------------------- /fs/efivarfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/efivarfs.c -------------------------------------------------------------------------------- /fs/ext4/Kconfig: -------------------------------------------------------------------------------- 1 | config FS_EXT4 2 | bool 3 | prompt "ext4 filesystem support" 4 | -------------------------------------------------------------------------------- /fs/ext4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ext4/Makefile -------------------------------------------------------------------------------- /fs/ext4/ext4fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ext4/ext4fs.c -------------------------------------------------------------------------------- /fs/ext4/ext4fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ext4/ext4fs.h -------------------------------------------------------------------------------- /fs/ext4/ext_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ext4/ext_common.h -------------------------------------------------------------------------------- /fs/fat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/Kconfig -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ff.o fat.o 2 | -------------------------------------------------------------------------------- /fs/fat/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/diskio.h -------------------------------------------------------------------------------- /fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/fat.c -------------------------------------------------------------------------------- /fs/fat/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/ff.c -------------------------------------------------------------------------------- /fs/fat/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/ff.h -------------------------------------------------------------------------------- /fs/fat/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/ffconf.h -------------------------------------------------------------------------------- /fs/fat/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fat/integer.h -------------------------------------------------------------------------------- /fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/fs.c -------------------------------------------------------------------------------- /fs/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/nfs.c -------------------------------------------------------------------------------- /fs/omap4_usbbootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/omap4_usbbootfs.c -------------------------------------------------------------------------------- /fs/pstore/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/Kconfig -------------------------------------------------------------------------------- /fs/pstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/Makefile -------------------------------------------------------------------------------- /fs/pstore/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/fs.c -------------------------------------------------------------------------------- /fs/pstore/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/internal.h -------------------------------------------------------------------------------- /fs/pstore/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/platform.c -------------------------------------------------------------------------------- /fs/pstore/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/ram.c -------------------------------------------------------------------------------- /fs/pstore/ram_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/pstore/ram_core.c -------------------------------------------------------------------------------- /fs/ramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ramfs.c -------------------------------------------------------------------------------- /fs/ratpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ratpfs.c -------------------------------------------------------------------------------- /fs/smhfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/smhfs.c -------------------------------------------------------------------------------- /fs/squashfs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/Kconfig -------------------------------------------------------------------------------- /fs/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/Makefile -------------------------------------------------------------------------------- /fs/squashfs/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/block.c -------------------------------------------------------------------------------- /fs/squashfs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/cache.c -------------------------------------------------------------------------------- /fs/squashfs/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/file.c -------------------------------------------------------------------------------- /fs/squashfs/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/id.c -------------------------------------------------------------------------------- /fs/squashfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/inode.c -------------------------------------------------------------------------------- /fs/squashfs/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/namei.c -------------------------------------------------------------------------------- /fs/squashfs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/squashfs/super.c -------------------------------------------------------------------------------- /fs/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/tftp.c -------------------------------------------------------------------------------- /fs/ubifs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/Kconfig -------------------------------------------------------------------------------- /fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/Makefile -------------------------------------------------------------------------------- /fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/budget.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/crc16.c -------------------------------------------------------------------------------- /fs/ubifs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/crc16.h -------------------------------------------------------------------------------- /fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/debug.c -------------------------------------------------------------------------------- /fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/debug.h -------------------------------------------------------------------------------- /fs/ubifs/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/gc.c -------------------------------------------------------------------------------- /fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/io.c -------------------------------------------------------------------------------- /fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/key.h -------------------------------------------------------------------------------- /fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/log.c -------------------------------------------------------------------------------- /fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/master.c -------------------------------------------------------------------------------- /fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/misc.h -------------------------------------------------------------------------------- /fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /fs/ubifs/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/recovery.c -------------------------------------------------------------------------------- /fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/replay.c -------------------------------------------------------------------------------- /fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/sb.c -------------------------------------------------------------------------------- /fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/scan.c -------------------------------------------------------------------------------- /fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/super.c -------------------------------------------------------------------------------- /fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /fs/ubifs/tnc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/tnc_misc.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /fs/uimagefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/fs/uimagefs.c -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/images/.gitignore -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/images/Makefile -------------------------------------------------------------------------------- /images/Makefile.at91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/images/Makefile.at91 -------------------------------------------------------------------------------- /images/Makefile.imx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/images/Makefile.imx -------------------------------------------------------------------------------- /images/Makefile.mxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/images/Makefile.mxs -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | asm 2 | /config.h 3 | -------------------------------------------------------------------------------- /include/abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/abort.h -------------------------------------------------------------------------------- /include/aimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/aimage.h -------------------------------------------------------------------------------- /include/aiodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/aiodev.h -------------------------------------------------------------------------------- /include/ata_drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ata_drive.h -------------------------------------------------------------------------------- /include/bbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bbu.h -------------------------------------------------------------------------------- /include/binfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/binfmt.h -------------------------------------------------------------------------------- /include/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/block.h -------------------------------------------------------------------------------- /include/blspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/blspec.h -------------------------------------------------------------------------------- /include/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/boot.h -------------------------------------------------------------------------------- /include/bootm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bootm.h -------------------------------------------------------------------------------- /include/bootsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bootsource.h -------------------------------------------------------------------------------- /include/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bootstrap.h -------------------------------------------------------------------------------- /include/bpkfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bpkfs.h -------------------------------------------------------------------------------- /include/bunzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/bunzip2.h -------------------------------------------------------------------------------- /include/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/byteorder.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/clock.h -------------------------------------------------------------------------------- /include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/command.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/common.h -------------------------------------------------------------------------------- /include/complete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/complete.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/console.h -------------------------------------------------------------------------------- /include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/crc.h -------------------------------------------------------------------------------- /include/crc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/crc7.h -------------------------------------------------------------------------------- /include/crypto/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/crypto/crc.h -------------------------------------------------------------------------------- /include/crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/crypto/sha.h -------------------------------------------------------------------------------- /include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ddr_spd.h -------------------------------------------------------------------------------- /include/debug_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/debug_ll.h -------------------------------------------------------------------------------- /include/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/dhcp.h -------------------------------------------------------------------------------- /include/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/digest.h -------------------------------------------------------------------------------- /include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/dirent.h -------------------------------------------------------------------------------- /include/disks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/disks.h -------------------------------------------------------------------------------- /include/dma-dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/dma-dir.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/driver.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/efi/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/efi/efi.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/envfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/envfs.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/fb.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/fcntl.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/file-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/file-list.h -------------------------------------------------------------------------------- /include/filetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/filetype.h -------------------------------------------------------------------------------- /include/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/firmware.h -------------------------------------------------------------------------------- /include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/fnmatch.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/globalvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/globalvar.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/gpio_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/gpio_keys.h -------------------------------------------------------------------------------- /include/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/gui/gui.h -------------------------------------------------------------------------------- /include/gui/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/gui/image.h -------------------------------------------------------------------------------- /include/gunzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/gunzip.h -------------------------------------------------------------------------------- /include/hab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/hab.h -------------------------------------------------------------------------------- /include/i2c/at24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/i2c/at24.h -------------------------------------------------------------------------------- /include/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/i2c/i2c.h -------------------------------------------------------------------------------- /include/image-fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/image-fit.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/image.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/init.h -------------------------------------------------------------------------------- /include/int_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/int_sqrt.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/io.h -------------------------------------------------------------------------------- /include/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ioctl.h -------------------------------------------------------------------------------- /include/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/jtag.h -------------------------------------------------------------------------------- /include/kallsyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/kallsyms.h -------------------------------------------------------------------------------- /include/kfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/kfifo.h -------------------------------------------------------------------------------- /include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/kgdb.h -------------------------------------------------------------------------------- /include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/led.h -------------------------------------------------------------------------------- /include/libbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/libbb.h -------------------------------------------------------------------------------- /include/libfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/libfile.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/linux/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/bcd.h -------------------------------------------------------------------------------- /include/linux/bch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/bch.h -------------------------------------------------------------------------------- /include/linux/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/bug.h -------------------------------------------------------------------------------- /include/linux/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/clk.h -------------------------------------------------------------------------------- /include/linux/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/err.h -------------------------------------------------------------------------------- /include/linux/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/font.h -------------------------------------------------------------------------------- /include/linux/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/fs.h -------------------------------------------------------------------------------- /include/linux/gcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/gcd.h -------------------------------------------------------------------------------- /include/linux/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/list.h -------------------------------------------------------------------------------- /include/linux/log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/log2.h -------------------------------------------------------------------------------- /include/linux/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/lz4.h -------------------------------------------------------------------------------- /include/linux/mbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/mbus.h -------------------------------------------------------------------------------- /include/linux/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/mii.h -------------------------------------------------------------------------------- /include/linux/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/path.h -------------------------------------------------------------------------------- /include/linux/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/pci.h -------------------------------------------------------------------------------- /include/linux/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/phy.h -------------------------------------------------------------------------------- /include/linux/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/rtc.h -------------------------------------------------------------------------------- /include/linux/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/stat.h -------------------------------------------------------------------------------- /include/linux/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/swab.h -------------------------------------------------------------------------------- /include/linux/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/time.h -------------------------------------------------------------------------------- /include/linux/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/wait.h -------------------------------------------------------------------------------- /include/linux/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/xz.h -------------------------------------------------------------------------------- /include/linux/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/zlib.h -------------------------------------------------------------------------------- /include/linux/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/linux/zstd.h -------------------------------------------------------------------------------- /include/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/lzo.h -------------------------------------------------------------------------------- /include/magicvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/magicvar.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/math.h -------------------------------------------------------------------------------- /include/mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mci.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/memtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/memtest.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/mfd/lp3972.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mfd/lp3972.h -------------------------------------------------------------------------------- /include/mfd/pfuze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mfd/pfuze.h -------------------------------------------------------------------------------- /include/mfd/syscon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mfd/syscon.h -------------------------------------------------------------------------------- /include/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mmu.h -------------------------------------------------------------------------------- /include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/module.h -------------------------------------------------------------------------------- /include/mtd/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/mtd/utils.h -------------------------------------------------------------------------------- /include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/nand.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/net.h -------------------------------------------------------------------------------- /include/notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/notifier.h -------------------------------------------------------------------------------- /include/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of.h -------------------------------------------------------------------------------- /include/of_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_address.h -------------------------------------------------------------------------------- /include/of_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_device.h -------------------------------------------------------------------------------- /include/of_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_gpio.h -------------------------------------------------------------------------------- /include/of_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_graph.h -------------------------------------------------------------------------------- /include/of_mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_mtd.h -------------------------------------------------------------------------------- /include/of_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_net.h -------------------------------------------------------------------------------- /include/of_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/of_pci.h -------------------------------------------------------------------------------- /include/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/param.h -------------------------------------------------------------------------------- /include/parseopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/parseopt.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/part.h -------------------------------------------------------------------------------- /include/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/partition.h -------------------------------------------------------------------------------- /include/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/password.h -------------------------------------------------------------------------------- /include/pbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/pbl.h -------------------------------------------------------------------------------- /include/pico_defines.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/picotcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/picotcp.h -------------------------------------------------------------------------------- /include/pinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/pinctrl.h -------------------------------------------------------------------------------- /include/poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/poller.h -------------------------------------------------------------------------------- /include/poweroff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/poweroff.h -------------------------------------------------------------------------------- /include/printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/printk.h -------------------------------------------------------------------------------- /include/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/progress.h -------------------------------------------------------------------------------- /include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/pwm.h -------------------------------------------------------------------------------- /include/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/qsort.h -------------------------------------------------------------------------------- /include/ratp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ratp.h -------------------------------------------------------------------------------- /include/ratp_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ratp_bb.h -------------------------------------------------------------------------------- /include/readkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/readkey.h -------------------------------------------------------------------------------- /include/regmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/regmap.h -------------------------------------------------------------------------------- /include/regulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/regulator.h -------------------------------------------------------------------------------- /include/restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/restart.h -------------------------------------------------------------------------------- /include/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/rsa.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/s_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/s_record.h -------------------------------------------------------------------------------- /include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/scsi.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/sntp.h -------------------------------------------------------------------------------- /include/spi/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/spi/eeprom.h -------------------------------------------------------------------------------- /include/spi/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/spi/flash.h -------------------------------------------------------------------------------- /include/spi/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/spi/spi.h -------------------------------------------------------------------------------- /include/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/state.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/string.h -------------------------------------------------------------------------------- /include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/stringlist.h -------------------------------------------------------------------------------- /include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/sys/ioctl.h -------------------------------------------------------------------------------- /include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/sys/mount.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/tlsf.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/types.h -------------------------------------------------------------------------------- /include/ubiformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/ubiformat.h -------------------------------------------------------------------------------- /include/uimagefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/uimagefs.h -------------------------------------------------------------------------------- /include/uncompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/uncompress.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/usb/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/cdc.h -------------------------------------------------------------------------------- /include/usb/ch11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/ch11.h -------------------------------------------------------------------------------- /include/usb/ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/ch9.h -------------------------------------------------------------------------------- /include/usb/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/dfu.h -------------------------------------------------------------------------------- /include/usb/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/ehci.h -------------------------------------------------------------------------------- /include/usb/gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/gadget.h -------------------------------------------------------------------------------- /include/usb/musb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/musb.h -------------------------------------------------------------------------------- /include/usb/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/phy.h -------------------------------------------------------------------------------- /include/usb/ulpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/ulpi.h -------------------------------------------------------------------------------- /include/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/usb.h -------------------------------------------------------------------------------- /include/usb/usbnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/usbnet.h -------------------------------------------------------------------------------- /include/usb/xhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/usb/xhci.h -------------------------------------------------------------------------------- /include/video/vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/video/vpl.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/xfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/xfuncs.h -------------------------------------------------------------------------------- /include/xymodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/include/xymodem.h -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/bcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bcd.c -------------------------------------------------------------------------------- /lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bch.c -------------------------------------------------------------------------------- /lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bitmap.c -------------------------------------------------------------------------------- /lib/bitrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bitrev.c -------------------------------------------------------------------------------- /lib/bootstrap/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bootstrap/disk.c -------------------------------------------------------------------------------- /lib/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/bzlib_private.h -------------------------------------------------------------------------------- /lib/clz_ctz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/clz_ctz.c -------------------------------------------------------------------------------- /lib/cmdlinepart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/cmdlinepart.c -------------------------------------------------------------------------------- /lib/crc-ccitt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/crc-ccitt.c -------------------------------------------------------------------------------- /lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/ctype.c -------------------------------------------------------------------------------- /lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/div64.c -------------------------------------------------------------------------------- /lib/find_next_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/find_next_bit.c -------------------------------------------------------------------------------- /lib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fnmatch.c -------------------------------------------------------------------------------- /lib/fonts/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fonts/Kconfig -------------------------------------------------------------------------------- /lib/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fonts/Makefile -------------------------------------------------------------------------------- /lib/fonts/font_6x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fonts/font_6x8.c -------------------------------------------------------------------------------- /lib/fonts/font_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fonts/font_8x8.c -------------------------------------------------------------------------------- /lib/fonts/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/fonts/fonts.c -------------------------------------------------------------------------------- /lib/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gcd.c -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/glob.c -------------------------------------------------------------------------------- /lib/gui/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/Kconfig -------------------------------------------------------------------------------- /lib/gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/Makefile -------------------------------------------------------------------------------- /lib/gui/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/bmp.c -------------------------------------------------------------------------------- /lib/gui/bmp_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/bmp_layout.h -------------------------------------------------------------------------------- /lib/gui/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/lodepng.c -------------------------------------------------------------------------------- /lib/gui/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/lodepng.h -------------------------------------------------------------------------------- /lib/gui/picopng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/picopng.c -------------------------------------------------------------------------------- /lib/gui/picopng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/picopng.h -------------------------------------------------------------------------------- /lib/gui/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/png.c -------------------------------------------------------------------------------- /lib/gui/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/png.h -------------------------------------------------------------------------------- /lib/gui/png_lode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/png_lode.c -------------------------------------------------------------------------------- /lib/gui/png_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/gui/png_pico.c -------------------------------------------------------------------------------- /lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/hexdump.c -------------------------------------------------------------------------------- /lib/image-sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/image-sparse.c -------------------------------------------------------------------------------- /lib/int_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/int_sqrt.c -------------------------------------------------------------------------------- /lib/kfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/kfifo.c -------------------------------------------------------------------------------- /lib/libbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/libbb.c -------------------------------------------------------------------------------- /lib/libfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/libfile.c -------------------------------------------------------------------------------- /lib/libgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/libgen.c -------------------------------------------------------------------------------- /lib/libscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/libscan.c -------------------------------------------------------------------------------- /lib/libubigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/libubigen.c -------------------------------------------------------------------------------- /lib/list_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/list_sort.c -------------------------------------------------------------------------------- /lib/logo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/logo/.gitignore -------------------------------------------------------------------------------- /lib/logo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/logo/Kconfig -------------------------------------------------------------------------------- /lib/logo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/logo/Makefile -------------------------------------------------------------------------------- /lib/logo/logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/logo/logo.c -------------------------------------------------------------------------------- /lib/lz4/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_LZ4_DECOMPRESS) += lz4_decompress.o 2 | -------------------------------------------------------------------------------- /lib/lz4/lz4defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/lz4/lz4defs.h -------------------------------------------------------------------------------- /lib/lzo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/lzo/Kconfig -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/lzo/Makefile -------------------------------------------------------------------------------- /lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /lib/make_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/make_directory.c -------------------------------------------------------------------------------- /lib/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/math.c -------------------------------------------------------------------------------- /lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/misc.c -------------------------------------------------------------------------------- /lib/notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/notifier.c -------------------------------------------------------------------------------- /lib/parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/parameter.c -------------------------------------------------------------------------------- /lib/parseopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/parseopt.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/random.c -------------------------------------------------------------------------------- /lib/ratp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/ratp.c -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/readkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/readkey.c -------------------------------------------------------------------------------- /lib/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/readline.c -------------------------------------------------------------------------------- /lib/show_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/show_progress.c -------------------------------------------------------------------------------- /lib/stmp-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/stmp-device.c -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/stringlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/stringlist.c -------------------------------------------------------------------------------- /lib/strtox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/strtox.c -------------------------------------------------------------------------------- /lib/uncompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/uncompress.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/wchar.c -------------------------------------------------------------------------------- /lib/xfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xfuncs.c -------------------------------------------------------------------------------- /lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xxhash.c -------------------------------------------------------------------------------- /lib/xymodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xymodem.c -------------------------------------------------------------------------------- /lib/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/Makefile -------------------------------------------------------------------------------- /lib/xz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/xz_crc32.c -------------------------------------------------------------------------------- /lib/xz/xz_dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/xz_dec_bcj.c -------------------------------------------------------------------------------- /lib/xz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/xz_lzma2.h -------------------------------------------------------------------------------- /lib/xz/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/xz_private.h -------------------------------------------------------------------------------- /lib/xz/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/xz/xz_stream.h -------------------------------------------------------------------------------- /lib/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/Makefile -------------------------------------------------------------------------------- /lib/zstd/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/bitstream.h -------------------------------------------------------------------------------- /lib/zstd/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/fse.h -------------------------------------------------------------------------------- /lib/zstd/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/huf.h -------------------------------------------------------------------------------- /lib/zstd/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/mem.h -------------------------------------------------------------------------------- /lib/zstd/zstd_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/lib/zstd/zstd_opt.h -------------------------------------------------------------------------------- /net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/Kconfig -------------------------------------------------------------------------------- /net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/Makefile -------------------------------------------------------------------------------- /net/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/dhcp.c -------------------------------------------------------------------------------- /net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/dns.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/ifup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/ifup.c -------------------------------------------------------------------------------- /net/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/lib.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/netconsole.c -------------------------------------------------------------------------------- /net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/nfs.c -------------------------------------------------------------------------------- /net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/nfs.h -------------------------------------------------------------------------------- /net/pico_dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/pico_dhcp.c -------------------------------------------------------------------------------- /net/pico_httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/pico_httpd.c -------------------------------------------------------------------------------- /net/pico_ifconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/pico_ifconfig.c -------------------------------------------------------------------------------- /net/pico_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/pico_ping.c -------------------------------------------------------------------------------- /net/pico_wget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/pico_wget.c -------------------------------------------------------------------------------- /net/picotcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/picotcp.c -------------------------------------------------------------------------------- /net/picotcp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/picotcp/COPYING -------------------------------------------------------------------------------- /net/picotcp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/picotcp/Kconfig -------------------------------------------------------------------------------- /net/picotcp/MODTREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/picotcp/MODTREE -------------------------------------------------------------------------------- /net/picotcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/picotcp/Makefile -------------------------------------------------------------------------------- /net/picotcp/rules/crc.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_CRC 2 | -------------------------------------------------------------------------------- /net/picotcp/rules/cyassl.mk: -------------------------------------------------------------------------------- 1 | OPTIONS+=-DPICO_SUPPORT_CYASSL 2 | LDFLAGS+=-lcyassl 3 | 4 | -------------------------------------------------------------------------------- /net/picotcp/rules/ipc.mk: -------------------------------------------------------------------------------- 1 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_ipc.o 2 | -------------------------------------------------------------------------------- /net/picotcp/rules/pcap.mk: -------------------------------------------------------------------------------- 1 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_pcap.o 2 | -------------------------------------------------------------------------------- /net/picotcp/rules/tap.mk: -------------------------------------------------------------------------------- 1 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_tap.o 2 | -------------------------------------------------------------------------------- /net/picotcp/rules/tun.mk: -------------------------------------------------------------------------------- 1 | MOD_OBJ+=$(LIBBASE)modules/pico_dev_tun.o 2 | -------------------------------------------------------------------------------- /net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/ping.c -------------------------------------------------------------------------------- /net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/rarp.h -------------------------------------------------------------------------------- /net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/net/sntp.c -------------------------------------------------------------------------------- /pbl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/Kconfig -------------------------------------------------------------------------------- /pbl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/Makefile -------------------------------------------------------------------------------- /pbl/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/console.c -------------------------------------------------------------------------------- /pbl/decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/decomp.c -------------------------------------------------------------------------------- /pbl/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/misc.c -------------------------------------------------------------------------------- /pbl/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/pbl/string.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/Makefile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/Makefile.lib -------------------------------------------------------------------------------- /scripts/bareboxenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/bareboxenv.c -------------------------------------------------------------------------------- /scripts/bareboximd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/bareboximd.c -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | docproc 2 | fixdep 3 | -------------------------------------------------------------------------------- /scripts/bbremote: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | 3 | import remote.main 4 | -------------------------------------------------------------------------------- /scripts/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/bin2c.c -------------------------------------------------------------------------------- /scripts/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/compiler.h -------------------------------------------------------------------------------- /scripts/dfuboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dfuboot.sh -------------------------------------------------------------------------------- /scripts/dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/Makefile -------------------------------------------------------------------------------- /scripts/dtc/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/checks.c -------------------------------------------------------------------------------- /scripts/dtc/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/data.c -------------------------------------------------------------------------------- /scripts/dtc/dtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/dtc.c -------------------------------------------------------------------------------- /scripts/dtc/dtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/dtc.h -------------------------------------------------------------------------------- /scripts/dtc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdt.c -------------------------------------------------------------------------------- /scripts/dtc/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdt.h -------------------------------------------------------------------------------- /scripts/dtc/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdt_ro.c -------------------------------------------------------------------------------- /scripts/dtc/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdt_rw.c -------------------------------------------------------------------------------- /scripts/dtc/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdt_sw.c -------------------------------------------------------------------------------- /scripts/dtc/fdtget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdtget.c -------------------------------------------------------------------------------- /scripts/dtc/fdtput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/dtc/fdtput.c -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.4.1" 2 | -------------------------------------------------------------------------------- /scripts/gen-dtb-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/gen-dtb-s -------------------------------------------------------------------------------- /scripts/genenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/genenv -------------------------------------------------------------------------------- /scripts/imx/.gitignore: -------------------------------------------------------------------------------- 1 | imx-usb-loader 2 | imx-image 3 | -------------------------------------------------------------------------------- /scripts/imx/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/imx/imx.c -------------------------------------------------------------------------------- /scripts/imx/imx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/imx/imx.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/kwboot.c -------------------------------------------------------------------------------- /scripts/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/mkimage.c -------------------------------------------------------------------------------- /scripts/mksysmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/mksysmap -------------------------------------------------------------------------------- /scripts/mod/empty.c: -------------------------------------------------------------------------------- 1 | /* empty file to figure out endianness / word size */ 2 | -------------------------------------------------------------------------------- /scripts/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/mxsboot.c -------------------------------------------------------------------------------- /scripts/remote/__init__.py: -------------------------------------------------------------------------------- 1 | # empty # -------------------------------------------------------------------------------- /scripts/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # empty # -------------------------------------------------------------------------------- /scripts/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | # empty # -------------------------------------------------------------------------------- /scripts/setupmbr/.gitignore: -------------------------------------------------------------------------------- 1 | setupmbr 2 | -------------------------------------------------------------------------------- /scripts/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/scripts/tags.sh -------------------------------------------------------------------------------- /scripts/tegra/.gitignore: -------------------------------------------------------------------------------- 1 | cbootimage 2 | -------------------------------------------------------------------------------- /set_upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaojh329/barebox/HEAD/set_upstream.sh --------------------------------------------------------------------------------