├── fs ├── reiserfs │ └── Kconfig ├── cbfs │ └── Makefile ├── fat │ └── Makefile └── squashfs │ └── Makefile ├── tools ├── dtoc │ ├── dtoc │ ├── .gitignore │ ├── test_fdt │ └── test │ │ └── dtoc_test_scan_drivers.cxx ├── binman │ ├── binman │ ├── .gitignore │ ├── README.rst │ ├── test │ │ ├── files │ │ │ ├── 1.dat │ │ │ ├── ignored_dir.dat │ │ │ │ └── ignore │ │ │ ├── not-this-one │ │ │ └── 2.dat │ │ ├── u_boot_binman_syms_bad.c │ │ ├── u_boot_binman_syms_x86.c │ │ ├── ifwi.bin.gz │ │ ├── 001_invalid.dts │ │ ├── descriptor.bin │ │ ├── fitimage.bin.gz │ │ ├── 002_missing_node.dts │ │ ├── 003_empty.dts │ │ ├── 073_gbb_no_size.dts │ │ ├── 005_simple.dts │ │ ├── 036_u_boot_img.dts │ │ ├── 079_uses_pos.dts │ │ ├── 072_gbb_too_small.dts │ │ ├── 004_invalid_entry.dts │ │ └── 091_hash_no_algo.dts │ └── index.rst ├── patman │ ├── patman │ └── .gitignore ├── buildman │ ├── buildman │ └── .gitignore ├── microcode-tool ├── concurrencytest │ └── .gitignore ├── env │ ├── crc32.c │ ├── ctype.c │ ├── env_attr.c │ ├── env_flags.c │ ├── linux_string.c │ └── .gitignore ├── getline.h ├── libfdt │ ├── fdt.c │ ├── fdt_ro.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdt_overlay.c │ ├── fdt_addresses.c │ ├── fdt_strerror.c │ └── fdt_empty_tree.c └── logos │ ├── esd.bmp │ ├── atmel.bmp │ ├── denx.bmp │ ├── compulab.bmp │ ├── engicam.bmp │ ├── ronetix.bmp │ ├── siemens.bmp │ ├── solidrun.bmp │ ├── syteco.bmp │ ├── toradex.bmp │ ├── denx-comp.bmp │ ├── freescale.bmp │ ├── gateworks.bmp │ ├── microchip.bmp │ ├── technexion.bmp │ ├── wandboard.bmp │ ├── intercontrol.bmp │ ├── u-boot_logo.bmp │ ├── linux_logo_ttcontrol.bmp │ └── linux_logo_ttcontrol_palfin.bmp ├── arch ├── arc │ ├── include │ │ └── asm │ │ │ ├── spl.h │ │ │ ├── string.h │ │ │ ├── gpio.h │ │ │ ├── unaligned.h │ │ │ └── dma-mapping.h │ └── cpu │ │ ├── arcv1 │ │ └── Makefile │ │ └── arcv2 │ │ └── Makefile ├── m68k │ └── include │ │ └── asm │ │ ├── spl.h │ │ ├── linkage.h │ │ └── dma-mapping.h ├── nds32 │ ├── include │ │ └── asm │ │ │ ├── spl.h │ │ │ └── unaligned.h │ └── Makefile ├── nios2 │ ├── include │ │ └── asm │ │ │ ├── spl.h │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ ├── sections.h │ │ │ └── unaligned.h │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ └── Makefile ├── sh │ ├── include │ │ └── asm │ │ │ ├── spl.h │ │ │ ├── linkage.h │ │ │ ├── dma-mapping.h │ │ │ └── processor.h │ └── Makefile ├── arm │ ├── include │ │ └── asm │ │ │ ├── acpi_table.h │ │ │ ├── arch-ls102xa │ │ │ └── soc.h │ │ │ ├── gpio.h │ │ │ ├── xen.h │ │ │ ├── linkage.h │ │ │ ├── mmu.h │ │ │ ├── arch-octeontx │ │ │ └── gpio.h │ │ │ └── arch-octeontx2 │ │ │ └── gpio.h │ ├── mach-mvebu │ │ ├── .gitignore │ │ ├── armada3700 │ │ │ └── Makefile │ │ ├── armada8k │ │ │ └── Makefile │ │ └── serdes │ │ │ └── axp │ │ │ └── Makefile │ ├── dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── bcm283x-rpi-usb-host.dtsi │ │ ├── tegra114-u-boot.dtsi │ │ ├── tegra124-u-boot.dtsi │ │ ├── tegra186-u-boot.dtsi │ │ ├── tegra210-u-boot.dtsi │ │ ├── tegra30-u-boot.dtsi │ │ ├── imx23-evk-u-boot.dtsi │ │ ├── imx6dl-hummingboard2-emmc-som-v15-u-boot.dtsi │ │ ├── imx6q-hummingboard2-emmc-som-v15-u-boot.dtsi │ │ ├── sun4i-a10-inet97fv2.dts │ │ ├── imx23-olinuxino-u-boot.dtsi │ │ ├── imx7d-sdb-u-boot.dtsi │ │ ├── imx6qdl-udoo-u-boot.dtsi │ │ ├── kirkwood-d2net-u-boot.dtsi │ │ ├── kirkwood-is2-u-boot.dtsi │ │ ├── kirkwood-ns2-u-boot.dtsi │ │ ├── kirkwood-ns2max-u-boot.dtsi │ │ ├── kirkwood-net2big-u-boot.dtsi │ │ ├── kirkwood-ns2lite-u-boot.dtsi │ │ ├── kirkwood-ns2mini-u-boot.dtsi │ │ ├── at91sam9g25-gardena-smart-gateway-u-boot.dtsi │ │ ├── imx6q-marsboard-u-boot.dtsi │ │ ├── imx6dl-riotboard-u-boot.dtsi │ │ ├── imx6dl-sabresd-u-boot.dtsi │ │ ├── imx6q-sabresd-u-boot.dtsi │ │ ├── imx6qp-sabresd-u-boot.dtsi │ │ ├── imx6dl-sabreauto-u-boot.dtsi │ │ ├── imx6q-sabreauto-u-boot.dtsi │ │ ├── imx6qp-sabreauto-u-boot.dtsi │ │ ├── imx8mm-cl-iot-gate-optee.dts │ │ ├── bcm2836-rpi.dtsi │ │ ├── imx8mm-venice-gw71xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw72xx-0x-u-boot.dtsi │ │ ├── imx8mm-venice-gw73xx-0x-u-boot.dtsi │ │ ├── px30-firefly-u-boot.dtsi │ │ ├── rk3036-u-boot.dtsi │ │ ├── rk3399pro-u-boot.dtsi │ │ ├── stm32h750.dtsi │ │ ├── imx8mq-phanbell-u-boot.dtsi │ │ ├── rk3399-roc-pc-mezzanine-u-boot.dtsi │ │ └── stm32mp157c-dk2-u-boot.dtsi │ ├── cpu │ │ ├── Makefile │ │ ├── armv7 │ │ │ ├── sunxi │ │ │ │ └── start.c │ │ │ ├── bcmcygnus │ │ │ │ └── Makefile │ │ │ ├── bcmnsp │ │ │ │ └── Makefile │ │ │ └── s5p4418 │ │ │ │ └── Makefile │ │ ├── armv8 │ │ │ ├── bcmns3 │ │ │ │ └── Makefile │ │ │ ├── xen │ │ │ │ └── Makefile │ │ │ └── hisilicon │ │ │ │ └── Makefile │ │ ├── arm926ejs │ │ │ └── mxs │ │ │ │ └── mxsimage-spl.mx23.cfg │ │ └── armv7m │ │ │ └── config.mk │ ├── mach-zynqmp-r5 │ │ └── Makefile │ ├── mach-mediatek │ │ ├── mt7622 │ │ │ └── Makefile │ │ ├── mt8183 │ │ │ └── Makefile │ │ ├── mt8516 │ │ │ └── Makefile │ │ ├── mt7623 │ │ │ └── Makefile │ │ ├── mt7629 │ │ │ └── Makefile │ │ ├── mt8512 │ │ │ └── Makefile │ │ └── mt8518 │ │ │ └── Makefile │ ├── mach-uniphier │ │ ├── arm64 │ │ │ └── Makefile │ │ ├── clk │ │ │ ├── dpll-pro5.c │ │ │ └── dpll-pxs2.c │ │ └── bcu │ │ │ └── Makefile │ ├── mach-apple │ │ └── Makefile │ ├── mach-aspeed │ │ ├── ast2500 │ │ │ └── Makefile │ │ └── ast2600 │ │ │ └── Makefile │ ├── mach-owl │ │ └── Makefile │ ├── mach-u8500 │ │ └── Makefile │ ├── mach-cortina │ │ └── Makefile │ ├── mach-tegra │ │ └── tegra186 │ │ │ └── Makefile │ ├── mach-imx │ │ ├── imx8ulp │ │ │ └── upower │ │ │ │ └── Makefile │ │ └── mx7ulp │ │ │ └── Makefile │ ├── mach-exynos │ │ └── config.mk │ ├── mach-stm32 │ │ ├── Makefile │ │ └── stm32f7 │ │ │ └── Kconfig │ ├── mach-versal │ │ └── include │ │ │ └── mach │ │ │ └── gpio.h │ ├── mach-highbank │ │ └── Makefile │ ├── mach-k3 │ │ ├── j7200 │ │ │ └── Makefile │ │ └── j721e │ │ │ └── Makefile │ ├── mach-octeontx2 │ │ └── config.mk │ └── mach-rockchip │ │ └── rv1108 │ │ └── rv1108.c ├── mips │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ ├── dma-mapping.h │ │ │ └── asm-offsets.h │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ ├── mach-bmips │ │ └── Makefile │ ├── mach-ath79 │ │ ├── ar934x │ │ │ └── Makefile │ │ ├── ar933x │ │ │ └── Makefile │ │ ├── qca953x │ │ │ └── Makefile │ │ └── qca956x │ │ │ └── Makefile │ ├── mach-jz47xx │ │ ├── jz4780 │ │ │ └── Makefile │ │ └── Makefile │ └── mach-mtmips │ │ └── mt7628 │ │ └── Makefile ├── xtensa │ ├── include │ │ └── asm │ │ │ ├── spl.h │ │ │ ├── dma-mapping.h │ │ │ ├── linkage.h │ │ │ └── unaligned.h │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ └── Makefile ├── microblaze │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ ├── unaligned.h │ │ │ └── dma-mapping.h │ ├── dts │ │ ├── include │ │ │ └── dt-bindings │ │ └── microblaze-generic.dts │ └── Makefile ├── powerpc │ ├── dts │ │ ├── .gitignore │ │ └── gdsys │ │ │ └── soc │ │ │ ├── i2c │ │ │ ├── dallas-rtc.dtsi │ │ │ └── cirrus-audio-codec.dtsi │ │ │ └── lbc │ │ │ └── gazerbeam.dtsi │ ├── cpu │ │ ├── mpc85xx │ │ │ └── resetvec.S │ │ ├── Makefile │ │ └── mpc83xx │ │ │ └── sysio │ │ │ └── Kconfig │ └── include │ │ └── asm │ │ ├── dma-mapping.h │ │ ├── gpio.h │ │ └── linkage.h ├── sandbox │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── dma-mapping.h │ │ │ ├── string.h │ │ │ └── unaligned.h │ └── dts │ │ └── include │ │ └── dt-bindings ├── .gitignore ├── x86 │ ├── dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── pcspkr.dtsi │ │ ├── keyboard.dtsi │ │ ├── reset.dtsi │ │ ├── rtc.dtsi │ │ └── tsc_timer.dtsi │ ├── include │ │ └── asm │ │ │ ├── ioctl.h │ │ │ └── unaligned.h │ ├── lib │ │ └── coreboot │ │ │ └── Makefile │ └── cpu │ │ ├── efi │ │ └── Kconfig │ │ ├── braswell │ │ └── Makefile │ │ ├── queensbay │ │ └── Makefile │ │ └── slimbootloader │ │ └── Makefile ├── riscv │ ├── include │ │ └── asm │ │ │ ├── unaligned.h │ │ │ └── gpio.h │ ├── cpu │ │ ├── generic │ │ │ └── Makefile │ │ └── Makefile │ └── dts │ │ └── qemu-virt.dts └── u-boot-elf.lds ├── doc ├── .gitignore ├── media │ └── linker_lists.h.rst.exceptions ├── develop │ └── package │ │ ├── binman.rst │ │ └── entries.rst ├── sphinx │ └── requirements.txt ├── device-tree-bindings │ ├── spi │ │ └── spi_altera.txt │ ├── misc │ │ └── altera_sysid.txt │ ├── serial │ │ └── altera_jtaguart.txt │ └── root.txt ├── api │ ├── logging.rst │ ├── sysreset.rst │ ├── serial.rst │ ├── unicode.rst │ ├── dfu.rst │ ├── lmb.rst │ └── pinctrl.rst ├── chromium │ └── files │ │ └── devkeys │ │ ├── kernel.keyblock │ │ └── kernel_data_key.vbprivk ├── board │ ├── apple │ │ └── index.rst │ ├── tbs │ │ └── index.rst │ ├── atmel │ │ └── index.rst │ ├── sipeed │ │ └── index.rst │ ├── coreboot │ │ └── index.rst │ ├── highbank │ │ └── index.rst │ ├── samsung │ │ └── index.rst │ ├── siemens │ │ └── index.rst │ ├── ste │ │ └── index.rst │ ├── congatec │ │ └── index.rst │ ├── openpiton │ │ └── index.rst │ ├── microchip │ │ └── index.rst │ ├── socionext │ │ └── index.rst │ ├── sifive │ │ └── index.rst │ ├── xen │ │ └── index.rst │ ├── advantech │ │ └── index.rst │ └── qualcomm │ │ └── index.rst └── README.fsl-clk ├── include ├── ctype.h ├── string.h ├── fdt.h ├── .gitignore ├── spd_sdram.h ├── linux │ └── ioctl.h ├── sparse_defs.h └── asm-offsets.h ├── test ├── py │ ├── .gitignore │ └── tests │ │ ├── test_pstore_data_panic1.hex │ │ ├── test_pstore_data_panic2.hex │ │ ├── test_pstore_data_console.hex │ │ └── vboot │ │ └── sandbox-kernel.dts ├── common │ └── Makefile └── image │ └── Makefile ├── scripts ├── dtc │ ├── .gitignore │ ├── version_gen.h │ └── pylibfdt │ │ └── .gitignore ├── basic │ └── .gitignore ├── .gitignore ├── kconfig │ ├── tests │ │ ├── no_write_if_dep_unmet │ │ │ ├── config │ │ │ └── expected_config │ │ ├── err_recursive_inc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.inc3 │ │ │ ├── Kconfig.inc2 │ │ │ └── Kconfig.inc1 │ │ ├── inter_choice │ │ │ ├── defconfig │ │ │ └── expected_config │ │ ├── choice_value_with_m_dep │ │ │ ├── config │ │ │ ├── expected_config │ │ │ └── expected_stdout │ │ ├── rand_nested_choice │ │ │ ├── expected_stdout0 │ │ │ ├── expected_stdout1 │ │ │ └── expected_stdout2 │ │ ├── choice │ │ │ └── oldask1_config │ │ └── new_choice_with_dep │ │ │ └── config │ ├── lxdialog │ │ └── .gitignore │ └── .gitignore └── const_structs.checkpatch ├── board ├── emulation │ ├── qemu-x86 │ │ ├── qemu-x86.c │ │ └── Makefile │ ├── qemu-arm │ │ └── Makefile │ ├── qemu-riscv │ │ └── Makefile │ └── common │ │ └── Makefile ├── intel │ ├── edison │ │ ├── edison-osip.dat │ │ └── .gitignore │ ├── bayleybay │ │ ├── .gitignore │ │ └── bayleybay.c │ ├── galileo │ │ └── .gitignore │ ├── minnowmax │ │ ├── .gitignore │ │ └── Makefile │ ├── crownbay │ │ └── Makefile │ ├── cherryhill │ │ └── Makefile │ ├── cougarcanyon2 │ │ └── Makefile │ ├── agilex-socdk │ │ ├── Makefile │ │ └── socfpga.c │ ├── slimbootloader │ │ └── Makefile │ └── n5x-socdk │ │ ├── Makefile │ │ └── socfpga.c ├── rockchip │ ├── evb_rk3128 │ │ ├── evk-rk3128.c │ │ └── Makefile │ ├── evb_px5 │ │ ├── README │ │ ├── evb-px5.c │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── sheep_rk3368 │ │ ├── sheep_rk3368.c │ │ └── Makefile │ ├── evb_px30 │ │ ├── evb_px30.c │ │ └── Makefile │ ├── evb_rk3288 │ │ ├── evb-rk3288.c │ │ └── Makefile │ ├── evb_rk3328 │ │ ├── evb-rk3328.c │ │ └── Makefile │ ├── evb_rk3568 │ │ ├── evb_rk3568.c │ │ └── Makefile │ ├── evb_rk3036 │ │ └── Makefile │ ├── evb_rk3229 │ │ └── Makefile │ ├── kylin_rk3036 │ │ └── Makefile │ ├── evb_rk3308 │ │ └── Makefile │ ├── evb_rk3399 │ │ └── Makefile │ ├── evb_rv1108 │ │ └── Makefile │ └── tinker_rk3288 │ │ └── Makefile ├── l+g │ └── vinco │ │ └── Makefile ├── xilinx │ ├── zynq │ │ ├── zynq-cse-nand │ │ ├── zynq-cse-nor │ │ ├── zynq-cse-qspi-single │ │ └── .gitignore │ ├── zynqmp │ │ ├── zynqmp-mini │ │ ├── avnet-ultra96-rev1 │ │ ├── zynqmp-mini-emmc0 │ │ ├── zynqmp-mini-emmc1 │ │ ├── zynqmp-mini-qspi │ │ ├── zynqmp-smk-k26-revA │ │ ├── zynqmp-zcu104-revC │ │ ├── zynqmp-zcu1275-revA │ │ ├── zynqmp-g-a2197-00-revA │ │ ├── zynqmp-m-a2197-01-revA │ │ ├── zynqmp-m-a2197-02-revA │ │ ├── zynqmp-m-a2197-03-revA │ │ ├── zynqmp-p-a2197-00-revA │ │ └── sleep.h │ └── zynqmp_r5 │ │ └── Makefile ├── Marvell │ ├── db-xc3-24g4xg │ │ └── .gitignore │ ├── db-88f6720 │ │ └── Makefile │ ├── mvebu_armada-37xx │ │ └── Makefile │ ├── mvebu_armada-8k │ │ └── Makefile │ ├── db-88f6820-gp │ │ └── Makefile │ ├── db-mv784mp-gp │ │ └── Makefile │ └── db-88f6820-amc │ │ └── Makefile ├── mikrotik │ └── crs3xx-98dx3236 │ │ └── .gitignore ├── novtech │ └── meerkat96 │ │ └── Makefile ├── st │ └── stm32mp1 │ │ └── README ├── aspeed │ ├── evb_ast2500 │ │ ├── Makefile │ │ └── evb_ast2500.c │ └── evb_ast2600 │ │ ├── Makefile │ │ └── evb_ast2600.c ├── cobra5272 │ ├── bdm │ │ ├── gdbinit.reset │ │ ├── reset │ │ └── load-cobra_uboot │ ├── MAINTAINERS │ └── Makefile ├── topic │ └── zynq │ │ └── board.c ├── geekbuying │ └── geekbox │ │ ├── README │ │ ├── Makefile │ │ └── geekbox.c ├── pine64 │ ├── pinebook-pro-rk3399 │ │ └── Makefile │ └── rockpro64_rk3399 │ │ └── Makefile ├── advantech │ └── som-db5800-som-6867 │ │ └── .gitignore ├── congatec │ └── conga-qeval20-qa3-e3845 │ │ └── .gitignore ├── imgtec │ └── ci20 │ │ └── Makefile ├── qca │ ├── ap121 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── ap143 │ │ ├── Makefile │ │ └── MAINTAINERS │ └── ap152 │ │ ├── Makefile │ │ └── MAINTAINERS ├── comtrend │ ├── ct5361 │ │ ├── Makefile │ │ └── ct-5361.c │ ├── ar5315u │ │ ├── Makefile │ │ └── ar-5315u.c │ ├── ar5387un │ │ ├── Makefile │ │ └── ar-5387un.c │ ├── vr3032u │ │ ├── Makefile │ │ └── vr-3032u.c │ └── wap5813n │ │ ├── Makefile │ │ └── wap-5813n.c ├── huawei │ └── hg556a │ │ ├── Makefile │ │ └── hg556a.c ├── mediatek │ ├── mt7620 │ │ └── Makefile │ ├── mt7628 │ │ └── Makefile │ ├── mt8512 │ │ └── Makefile │ ├── mt7622 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── mt7623 │ │ └── Makefile │ ├── mt7629 │ │ └── Makefile │ ├── mt8518 │ │ └── Makefile │ ├── mt8183 │ │ └── Makefile │ └── mt8516 │ │ └── Makefile ├── netgear │ ├── cg3100d │ │ ├── Makefile │ │ └── cg3100d.c │ └── dgnd3700v2 │ │ └── Makefile ├── sagem │ └── f@st1704 │ │ ├── Makefile │ │ └── f@st1704.c ├── sfr │ └── nb4_ser │ │ ├── Makefile │ │ └── nb4-ser.c ├── ste │ └── stemmy │ │ └── Makefile ├── tplink │ └── wdr4300 │ │ └── Makefile ├── vocore │ └── vocore2 │ │ ├── Makefile │ │ └── board.c ├── vscom │ └── baltos │ │ └── README ├── broadcom │ ├── bcm963158 │ │ └── Makefile │ ├── bcm968360bg │ │ └── Makefile │ ├── bcm968380gerg │ │ ├── Makefile │ │ └── board.c │ ├── bcm968580xref │ │ └── Makefile │ ├── bcmns3 │ │ └── Makefile │ └── bcm_ep │ │ └── Makefile ├── hisilicon │ ├── hikey960 │ │ └── Makefile │ ├── hikey │ │ └── Makefile │ └── poplar │ │ └── Makefile ├── samsung │ ├── axy17lte │ │ └── Makefile │ ├── smdk5250 │ │ └── Makefile │ ├── smdk5420 │ │ └── Makefile │ ├── arndale │ │ └── Makefile │ ├── trats │ │ ├── Makefile │ │ └── MAINTAINERS │ └── origen │ │ └── MAINTAINERS ├── seeed │ ├── linkit-smart-7688 │ │ └── Makefile │ └── npi_imx6ull │ │ └── Makefile ├── gardena │ ├── smart-gateway-mt7688 │ │ └── Makefile │ └── smart-gateway-at91sam │ │ └── Makefile ├── gdsys │ └── a38x │ │ └── ihs_phys.h ├── mscc │ ├── jr2 │ │ └── Makefile │ ├── luton │ │ └── Makefile │ ├── ocelot │ │ └── Makefile │ ├── serval │ │ └── Makefile │ ├── servalt │ │ └── Makefile │ └── common │ │ └── Makefile ├── bitmain │ └── antminer_s9 │ │ └── board.c ├── opalkelly │ └── zynq │ │ └── board.c ├── udoo │ ├── neo │ │ └── Makefile │ ├── Makefile │ ├── Kconfig │ └── MAINTAINERS ├── google │ ├── gru │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── chromebook_samus │ │ ├── Makefile │ │ └── samus.c │ ├── chromebox_panther │ │ ├── Makefile │ │ └── panther.c │ ├── chromebook_coral │ │ ├── dialog-2ch-48khz-24b.dat │ │ ├── dmic-1ch-48khz-16b.dat │ │ ├── dmic-2ch-48khz-16b.dat │ │ ├── dmic-4ch-48khz-16b.dat │ │ ├── max98357-render-2ch-48khz-24b.dat │ │ ├── variant_dptf.asl │ │ └── Makefile │ ├── chromebook_link │ │ └── link.c │ ├── common │ │ └── Makefile │ └── veyron │ │ └── Makefile ├── grinn │ ├── liteboard │ │ └── Makefile │ └── chiliboard │ │ └── Makefile ├── warp7 │ └── Makefile ├── efi │ ├── efi-x86_app │ │ ├── Makefile │ │ └── app.c │ └── efi-x86_payload │ │ └── Makefile ├── is1 │ ├── socfpga.c │ ├── Makefile │ └── MAINTAINERS ├── myir │ └── mys_6ulx │ │ └── Makefile ├── armadeus │ └── opos6uldev │ │ └── Makefile ├── engicam │ ├── imx6q │ │ └── Makefile │ ├── px30_core │ │ ├── px30_core.c │ │ └── Makefile │ └── imx6ul │ │ └── Makefile ├── variscite │ └── dart_6ul │ │ └── Makefile ├── hardkernel │ └── odroid_go2 │ │ ├── go2.c │ │ └── Makefile ├── maxbcm │ ├── Makefile │ └── MAINTAINERS ├── radxa │ ├── rock │ │ ├── rock.c │ │ ├── Makefile │ │ └── MAINTAINERS │ └── rock2 │ │ ├── rock2.c │ │ ├── Makefile │ │ └── MAINTAINERS ├── sandbox │ └── Makefile ├── sr1500 │ ├── Makefile │ └── MAINTAINERS ├── storopack │ └── smegw01 │ │ └── Makefile ├── toradex │ ├── apalis-imx8 │ │ └── Makefile │ ├── colibri_imx7 │ │ └── Makefile │ ├── apalis-imx8x │ │ └── Makefile │ ├── apalis_t30 │ │ └── Makefile │ ├── colibri-imx6ull │ │ └── Makefile │ ├── colibri-imx8x │ │ └── Makefile │ ├── colibri_t20 │ │ └── Makefile │ ├── colibri_t30 │ │ └── Makefile │ └── apalis-tk1 │ │ └── Makefile ├── freescale │ ├── ls1021atsn │ │ └── Makefile │ ├── mx6slevk │ │ └── Makefile │ ├── ls1028a │ │ └── Makefile │ ├── mx6sllevk │ │ └── Makefile │ ├── mx6ullevk │ │ └── Makefile │ ├── vf610twr │ │ └── Makefile │ ├── mx6sxsabresd │ │ └── Makefile │ ├── mx7dsabresd │ │ └── Makefile │ ├── mx6sxsabreauto │ │ └── Makefile │ ├── mx6ul_14x14_evk │ │ └── Makefile │ ├── m5272c3 │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── imx8qm_mek │ │ └── Makefile │ ├── imx8qxp_mek │ │ └── Makefile │ ├── m5249evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── m5275evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── m5282evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── ls1046afrwy │ │ └── Makefile │ ├── ls2080ardb │ │ └── Makefile │ ├── m5208evbe │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── imx8ulp_evk │ │ └── Makefile │ ├── ls2080aqds │ │ └── Makefile │ ├── m5235evb │ │ └── Makefile │ ├── m53017evb │ │ └── Makefile │ └── mpc837xerdb │ │ └── Makefile ├── mqmaker │ └── miqi_rk3288 │ │ ├── miqi-rk3288.c │ │ └── Makefile ├── phytec │ ├── pcm052 │ │ └── Makefile │ └── pcl063 │ │ └── Makefile ├── tbs │ └── tbs2910 │ │ └── Makefile ├── abilis │ └── tb100 │ │ ├── Makefile │ │ ├── config.mk │ │ └── MAINTAINERS ├── cadence │ └── xtfpga │ │ └── Makefile ├── cavium │ └── thunderx │ │ └── Makefile ├── nvidia │ ├── p2771-0000 │ │ └── Makefile │ ├── cardhu │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── dalmore │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── harmony │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── beaver │ │ └── Makefile │ ├── seaboard │ │ └── Makefile │ ├── p2571 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── p3450-0000 │ │ └── Makefile │ ├── ventana │ │ └── Makefile │ ├── p2371-0000 │ │ └── Makefile │ ├── p2371-2180 │ │ └── Makefile │ └── venice2 │ │ └── MAINTAINERS ├── solidrun │ ├── clearfog │ │ └── Makefile │ └── common │ │ └── Makefile ├── technexion │ ├── pico-imx7d │ │ └── Makefile │ └── pico-imx6 │ │ └── Makefile ├── terasic │ ├── de10-nano │ │ ├── Makefile │ │ └── socfpga.c │ ├── sockit │ │ ├── socfpga.c │ │ └── MAINTAINERS │ ├── de0-nano-soc │ │ └── socfpga.c │ └── de1-soc │ │ └── MAINTAINERS ├── ti │ ├── dra7xx │ │ └── Makefile │ ├── am57xx │ │ └── Makefile │ ├── evm │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── panda │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── omap5_uevm │ │ └── Makefile │ └── ti816x │ │ └── MAINTAINERS ├── xen │ └── xenguest_arm64 │ │ └── Makefile ├── amlogic │ ├── p200 │ │ └── Makefile │ ├── p201 │ │ └── Makefile │ ├── p212 │ │ └── Makefile │ ├── q200 │ │ └── Makefile │ ├── s400 │ │ └── Makefile │ ├── u200 │ │ └── Makefile │ ├── vim3 │ │ └── Makefile │ ├── w400 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── sei510 │ │ └── Makefile │ ├── sei610 │ │ └── Makefile │ └── odroid-n2 │ │ └── Makefile ├── aries │ └── mcvevk │ │ └── socfpga.c ├── devboards │ └── dbm-soc1 │ │ ├── Makefile │ │ └── socfpga.c ├── ge │ ├── common │ │ ├── Kconfig │ │ ├── ge_rtc.h │ │ └── Makefile │ ├── b1x5v2 │ │ └── Makefile │ └── bx50v3 │ │ └── Makefile ├── ea │ ├── mx7ulp_com │ │ └── Makefile │ └── ea-lpc3250devkitv2 │ │ └── Makefile ├── keymile │ ├── scripts │ │ ├── ramfs-arm.txt │ │ ├── develop-arm.txt │ │ ├── develop-ppc_8xx.txt │ │ ├── ramfs-ppc_82xx.txt │ │ ├── ramfs-ppc_8xx.txt │ │ └── develop-ppc_82xx.txt │ └── secu1 │ │ └── Makefile ├── kobol │ └── helios4 │ │ └── Makefile ├── raspberrypi │ └── rpi │ │ ├── Makefile │ │ └── MAINTAINERS ├── CZ.NIC │ ├── turris_omnia │ │ └── Makefile │ └── turris_mox │ │ └── Makefile ├── altera │ ├── arria10-socdk │ │ ├── Makefile │ │ └── socfpga.c │ ├── arria5-socdk │ │ └── socfpga.c │ ├── cyclone5-socdk │ │ └── socfpga.c │ └── stratix10-socdk │ │ ├── Makefile │ │ └── socfpga.c ├── amarula │ └── vyasa-rk3288 │ │ └── Makefile ├── ebv │ └── socrates │ │ └── socfpga.c ├── firefly │ ├── firefly-rk3288 │ │ └── Makefile │ ├── firefly-rk3308 │ │ └── Makefile │ └── roc-pc-rk3399 │ │ └── Makefile ├── out4 │ └── o4-imx6ull-nano │ │ └── Makefile ├── sipeed │ └── maix │ │ └── Makefile ├── synopsys │ ├── axs10x │ │ └── Makefile │ ├── nsim │ │ └── Makefile │ ├── emsdp │ │ ├── Makefile │ │ └── config.mk │ └── iot_devkit │ │ ├── Makefile │ │ └── MAINTAINERS ├── Synology │ ├── common │ │ └── Makefile │ └── ds414 │ │ └── MAINTAINERS ├── buffalo │ └── lsxl │ │ └── Makefile ├── socrates │ └── Kconfig ├── sysam │ └── amcore │ │ └── Makefile ├── theobroma-systems │ └── lion_rk3368 │ │ ├── lion_rk3368.c │ │ └── Makefile ├── atmel │ ├── sama5d4ek │ │ └── Makefile │ └── sama5d4_xplained │ │ └── Makefile ├── compulab │ └── trimslice │ │ └── Makefile ├── elgin │ └── elgin_rv1108 │ │ └── Makefile ├── theadorable │ └── Makefile ├── wandboard │ ├── Kconfig │ └── Makefile ├── warp │ └── MAINTAINERS ├── Seagate │ └── nas220 │ │ └── Makefile ├── armltd │ ├── vexpress64 │ │ └── pcie.h │ ├── total_compute │ │ └── Makefile │ └── vexpress │ │ └── Makefile ├── somlabs │ └── visionsom-6ull │ │ └── Makefile ├── chipspark │ └── popmetal_rk3288 │ │ └── Makefile ├── dfi │ └── dfi-bt700 │ │ └── Makefile ├── eets │ └── pdu001 │ │ └── MAINTAINERS ├── ids │ └── ids8313 │ │ └── MAINTAINERS ├── kosagi │ └── novena │ │ └── MAINTAINERS ├── liebherr │ └── xea │ │ └── MAINTAINERS ├── openpiton │ └── riscv64 │ │ └── Makefile ├── siemens │ ├── rut │ │ └── MAINTAINERS │ ├── corvus │ │ └── MAINTAINERS │ └── pxm2 │ │ └── MAINTAINERS ├── BuS │ └── eb_cpu5282 │ │ └── Makefile ├── alliedtelesis │ ├── SBx81LIFKW │ │ └── Makefile │ └── SBx81LIFXCAT │ │ └── Makefile ├── cortina │ └── presidio-asic │ │ └── Makefile ├── highbank │ ├── Makefile │ └── MAINTAINERS ├── lego │ └── ev3 │ │ └── MAINTAINERS ├── lg │ └── sniper │ │ └── MAINTAINERS ├── qualcomm │ └── dragonboard410c │ │ └── Makefile ├── ronetix │ ├── pm9261 │ │ └── MAINTAINERS │ ├── pm9263 │ │ └── MAINTAINERS │ ├── pm9g45 │ │ └── MAINTAINERS │ └── imx7-cm │ │ └── MAINTAINERS ├── astro │ └── mcf5373l │ │ └── Makefile ├── avionic-design │ └── tec-ng │ │ └── Makefile ├── microchip │ └── pic32mzda │ │ └── Makefile ├── raidsonic │ └── ib62x0 │ │ └── MAINTAINERS └── softing │ └── vining_fpga │ └── MAINTAINERS ├── drivers ├── video │ ├── fonts │ │ ├── .gitignore │ │ ├── rufscript010.ttf │ │ ├── ankacoder_c75_r.ttf │ │ ├── cantoraone_regular.ttf │ │ └── nimbus_sans_l_regular.ttf │ └── tegra124 │ │ └── Makefile ├── mtd │ ├── ubispl │ │ └── Makefile │ └── nand │ │ ├── Kconfig │ │ └── spi │ │ └── Makefile ├── phy │ ├── ti │ │ └── Makefile │ ├── cadence │ │ └── Makefile │ └── socionext │ │ └── Makefile ├── clk │ ├── microchip │ │ └── Makefile │ ├── mvebu │ │ └── Makefile │ ├── owl │ │ └── Makefile │ ├── analogbits │ │ ├── Kconfig │ │ └── Makefile │ ├── uniphier │ │ └── Makefile │ ├── intel │ │ └── Makefile │ ├── mtmips │ │ └── Makefile │ └── sifive │ │ └── Makefile ├── pinctrl │ ├── aspeed │ │ └── Makefile │ ├── ath79 │ │ └── Makefile │ └── intel │ │ └── Makefile ├── tee │ ├── broadcom │ │ └── Makefile │ └── optee │ │ └── Makefile ├── ddr │ ├── imx │ │ └── Kconfig │ ├── microchip │ │ └── Makefile │ └── marvell │ │ └── a38x │ │ └── mv_ddr_build_message.c ├── memory │ └── Makefile ├── misc │ ├── imx8 │ │ └── Makefile │ └── imx8ulp │ │ └── Makefile ├── w1 │ └── Makefile ├── crypto │ └── Kconfig ├── ram │ ├── sifive │ │ └── Makefile │ ├── aspeed │ │ └── Makefile │ └── mediatek │ │ └── Makefile ├── nvme │ └── Makefile └── net │ └── qe │ └── Makefile ├── lib ├── .gitignore ├── efi_loader │ └── .gitignore ├── efi_selftest │ └── .gitignore ├── ecdsa │ └── Makefile ├── errno.c ├── libfdt │ ├── libfdt_internal.h │ ├── fdt.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdt_overlay.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ └── fdt_strerror.c ├── lzma │ └── license.txt ├── crypto │ └── rsapubkey.asn1 ├── optee │ └── Makefile ├── dhry │ └── Makefile ├── aes │ └── Makefile ├── acpi │ └── Makefile ├── zlib │ └── Makefile ├── zstd │ └── Makefile ├── lzo │ └── Makefile ├── at91 │ └── Makefile └── tizen │ └── Makefile ├── examples └── api │ └── .gitignore ├── .get_maintainer.conf ├── cmd ├── sandbox │ └── Makefile ├── .gitignore ├── riscv │ └── Makefile └── broadcom │ └── Makefile ├── api └── Kconfig ├── post └── cpu │ └── mpc83xx │ └── Makefile └── .gitattributes /fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dtoc/dtoc: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /arch/arc/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nds32/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/sh/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- 1 | linux/ctype.h -------------------------------------------------------------------------------- /test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/binman/binman: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /tools/patman/patman: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /arch/arm/include/asm/acpi_table.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/m68k/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/mips/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/sh/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/spl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/dtc/.gitignore: -------------------------------------------------------------------------------- 1 | /dtc 2 | -------------------------------------------------------------------------------- /tools/binman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/binman/README.rst: -------------------------------------------------------------------------------- 1 | binman.rst -------------------------------------------------------------------------------- /tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /tools/dtoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/dtoc/test_fdt: -------------------------------------------------------------------------------- 1 | test_fdt.py -------------------------------------------------------------------------------- /tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/string.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/powerpc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/emulation/qemu-x86/qemu-x86.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/intel/edison/edison-osip.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3128/evk-rk3128.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/video/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | *.S 2 | -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | oid_registry_data.c 2 | -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-ls102xa/soc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/media/linker_lists.h.rst.exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/concurrencytest/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/l+g/vinco/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += vinco.o 2 | -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nand: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm011 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nor: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm012 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-qspi-single: -------------------------------------------------------------------------------- 1 | zynq-zc706 -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/1.dat: -------------------------------------------------------------------------------- 1 | sorry I'm late 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/ignored_dir.dat/ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | /ps7_init_gpl.[ch] 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /lib/efi_loader/.gitignore: -------------------------------------------------------------------------------- 1 | *.efi 2 | *.so 3 | *.S 4 | -------------------------------------------------------------------------------- /tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../env/attr.c" 2 | -------------------------------------------------------------------------------- /board/Marvell/db-xc3-24g4xg/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/mikrotik/crs3xx-98dx3236/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/novtech/meerkat96/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := meerkat96.o 2 | -------------------------------------------------------------------------------- /board/st/stm32mp1/README: -------------------------------------------------------------------------------- 1 | see doc/board/st/stm32mp1.rst 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/avnet-ultra96-rev1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc0: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-qspi: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-smk-k26-revA: -------------------------------------------------------------------------------- 1 | zynqmp-sm-k26-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zcu104-revC: -------------------------------------------------------------------------------- 1 | zynqmp-zcu104-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zcu1275-revA: -------------------------------------------------------------------------------- 1 | zynqmp-zc1254-revA -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- 1 | #include "../scripts/dtc/libfdt/fdt.h" 2 | -------------------------------------------------------------------------------- /tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../env/flags.c" 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/mips/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2500/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += evb_ast2500.o 2 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2600/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += evb_ast2600.o 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-g-a2197-00-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-01-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-02-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-m-a2197-03-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-p-a2197-00-revA: -------------------------------------------------------------------------------- 1 | zynqmp-a2197-revA -------------------------------------------------------------------------------- /doc/develop/package/binman.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/binman/binman.rst -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | bin2c 5 | -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_bad.c: -------------------------------------------------------------------------------- 1 | u_boot_binman_syms.c -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_x86.c: -------------------------------------------------------------------------------- 1 | u_boot_binman_syms.c -------------------------------------------------------------------------------- /.get_maintainer.conf: -------------------------------------------------------------------------------- 1 | --find-maintainer-files --maintainer-path=. 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nios2/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/sandbox/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/xtensa/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/topic/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/zynq/board.c" 2 | -------------------------------------------------------------------------------- /doc/develop/package/entries.rst: -------------------------------------------------------------------------------- 1 | ../../../tools/binman/entries.rst -------------------------------------------------------------------------------- /drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /lib/efi_selftest/.gitignore: -------------------------------------------------------------------------------- 1 | efi_miniapp_*.h 2 | *.efi 3 | *.so 4 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /tools/env/linux_string.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/linux_string.c" 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/microblaze/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/riscv/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/intel/bayleybay/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/edison/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/galileo/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/minnowmax/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.4.6-g84e414b0" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /tools/getline.h: -------------------------------------------------------------------------------- 1 | int getline(char **lineptr, size_t *n, FILE *stream); 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/cobra5272/bdm/reset: -------------------------------------------------------------------------------- 1 | m68k-bdm-elf-gdb -n -x bdm/gdbinit.reset 2 | 3 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /board/pine64/pinebook-pro-rk3399/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += pinebook-pro-rk3399.o 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/sleep.h: -------------------------------------------------------------------------------- 1 | /* Intentionally empty file for psu_init* */ 2 | -------------------------------------------------------------------------------- /lib/ecdsa/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(SPL_)ECDSA_VERIFY) += ecdsa-verify.o 2 | -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int errno __errno_asm_label = 0; 4 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/not-this-one: -------------------------------------------------------------------------------- 1 | this does not have a .dat extenion 2 | -------------------------------------------------------------------------------- /tools/env/.gitignore: -------------------------------------------------------------------------------- 1 | embedded.c 2 | fw_printenv 3 | fw_printenv_unstripped 4 | -------------------------------------------------------------------------------- /arch/arc/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/arm/dts/bcm283x-rpi-usb-host.dtsi: -------------------------------------------------------------------------------- 1 | &usb { 2 | dr_mode = "host"; 3 | }; 4 | -------------------------------------------------------------------------------- /arch/m68k/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/mips/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /arch/sh/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /drivers/phy/ti/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(SPL_)PHY_J721E_WIZ) += phy-j721e-wiz.o 2 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /arch/arm/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj- += dummy.o 4 | -------------------------------------------------------------------------------- /arch/powerpc/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /board/advantech/som-db5800-som-6867/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /drivers/clk/microchip/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mpfs_clk.o mpfs_clk_cfg.o mpfs_clk_periph.o 2 | -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | /autoconf.mk* 2 | /bmp_logo.h 3 | /bmp_logo_data.h 4 | /config.h 5 | -------------------------------------------------------------------------------- /lib/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- 1 | #include "../../scripts/dtc/libfdt/libfdt_internal.h" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc2: -------------------------------------------------------------------------------- 1 | 2 | 3 | source "Kconfig.inc3" 4 | -------------------------------------------------------------------------------- /tools/binman/test/files/2.dat: -------------------------------------------------------------------------------- 1 | Oh, don't bother apologising, I'm sorry you're alive 2 | -------------------------------------------------------------------------------- /tools/libfdt/fdt.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt.c" 3 | -------------------------------------------------------------------------------- /tools/logos/esd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/esd.bmp -------------------------------------------------------------------------------- /arch/microblaze/include/asm/dma-mapping.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0-only */ 2 | -------------------------------------------------------------------------------- /board/congatec/conga-qeval20-qa3-e3845/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/imgtec/ci20/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := ci20.o 4 | -------------------------------------------------------------------------------- /board/qca/ap121/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap121.o 4 | -------------------------------------------------------------------------------- /board/qca/ap143/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap143.o 4 | -------------------------------------------------------------------------------- /board/qca/ap152/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap152.o 4 | -------------------------------------------------------------------------------- /doc/sphinx/requirements.txt: -------------------------------------------------------------------------------- 1 | docutils==0.16 2 | Sphinx==3.4.3 3 | sphinx_rtd_theme 4 | six 5 | -------------------------------------------------------------------------------- /drivers/pinctrl/aspeed/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ASPEED_AST2500_PINCTRL) += pinctrl_ast2500.o 2 | -------------------------------------------------------------------------------- /scripts/const_structs.checkpatch: -------------------------------------------------------------------------------- 1 | # Put structs here that should be constant 2 | __dummy__ 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | source "Kconfig.inc2" 5 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_ro.c" 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_sw.c" 3 | -------------------------------------------------------------------------------- /tools/logos/atmel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/atmel.bmp -------------------------------------------------------------------------------- /tools/logos/denx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/denx.bmp -------------------------------------------------------------------------------- /arch/arm/dts/tegra114-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra124-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra186-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra210-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra30-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/mach-zynqmp-r5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += cpu.o 4 | -------------------------------------------------------------------------------- /arch/mips/mach-bmips/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += dram.o 4 | -------------------------------------------------------------------------------- /arch/powerpc/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /arch/x86/dts/pcspkr.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | pcspkr { 3 | compatible = "i8254,beeper"; 4 | }; 5 | }; 6 | -------------------------------------------------------------------------------- /board/comtrend/ct5361/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ct-5361.o 4 | -------------------------------------------------------------------------------- /board/huawei/hg556a/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += hg556a.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7620/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7628/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt8512/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt8512.o 4 | -------------------------------------------------------------------------------- /board/netgear/cg3100d/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cg3100d.o 4 | -------------------------------------------------------------------------------- /board/sagem/f@st1704/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += f@st1704.o 4 | -------------------------------------------------------------------------------- /board/sfr/nb4_ser/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += nb4-ser.o 4 | -------------------------------------------------------------------------------- /board/ste/stemmy/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-or-later 2 | obj-y := stemmy.o 3 | -------------------------------------------------------------------------------- /board/tplink/wdr4300/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = wdr4300.o 4 | -------------------------------------------------------------------------------- /board/vocore/vocore2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/vscom/baltos/README: -------------------------------------------------------------------------------- 1 | BSP for VScom OnRISC Balios family devices, like Balios iR 5221. 2 | -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt.c" 3 | -------------------------------------------------------------------------------- /lib/lzma/license.txt: -------------------------------------------------------------------------------- 1 | License 2 | 3 | LZMA SDK is placed in the public domain. 4 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/config: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE0=m 2 | CONFIG_CHOICE1=m 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout0: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | # CONFIG_B is not set 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_wip.c" 3 | -------------------------------------------------------------------------------- /tools/logos/compulab.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/compulab.bmp -------------------------------------------------------------------------------- /tools/logos/engicam.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/engicam.bmp -------------------------------------------------------------------------------- /tools/logos/ronetix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/ronetix.bmp -------------------------------------------------------------------------------- /tools/logos/siemens.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/siemens.bmp -------------------------------------------------------------------------------- /tools/logos/solidrun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/solidrun.bmp -------------------------------------------------------------------------------- /tools/logos/syteco.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/syteco.bmp -------------------------------------------------------------------------------- /tools/logos/toradex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/toradex.bmp -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt7622/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt8183/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt8516/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | -------------------------------------------------------------------------------- /board/broadcom/bcm963158/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm963158.o 4 | -------------------------------------------------------------------------------- /board/comtrend/ar5315u/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ar-5315u.o 4 | -------------------------------------------------------------------------------- /board/comtrend/ar5387un/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ar-5387un.o 4 | -------------------------------------------------------------------------------- /board/comtrend/vr3032u/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += vr-3032u.o 4 | -------------------------------------------------------------------------------- /board/comtrend/wap5813n/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += wap-5813n.o 4 | -------------------------------------------------------------------------------- /board/emulation/qemu-arm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += qemu-arm.o 4 | -------------------------------------------------------------------------------- /board/hisilicon/hikey960/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := hikey960.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7622/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt7622_rfb.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7623/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt7623_rfb.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7629/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt7629_rfb.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt8518/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt8518_ap1.o 4 | -------------------------------------------------------------------------------- /board/samsung/axy17lte/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | obj-y += axy17lte.o 4 | -------------------------------------------------------------------------------- /drivers/clk/mvebu/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_CLK_ARMADA_3720) += armada-37xx-periph.o armada-37xx-tbg.o 2 | -------------------------------------------------------------------------------- /drivers/tee/broadcom/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += chimp_optee.o 4 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_ro.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_rw.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_sw.c" 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_overlay.c" 3 | -------------------------------------------------------------------------------- /tools/logos/denx-comp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/denx-comp.bmp -------------------------------------------------------------------------------- /tools/logos/freescale.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/freescale.bmp -------------------------------------------------------------------------------- /tools/logos/gateworks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/gateworks.bmp -------------------------------------------------------------------------------- /tools/logos/microchip.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/microchip.bmp -------------------------------------------------------------------------------- /tools/logos/technexion.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/technexion.bmp -------------------------------------------------------------------------------- /tools/logos/wandboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/wandboard.bmp -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/sunxi/start.c: -------------------------------------------------------------------------------- 1 | /* Intentionally empty. Only needed to get FEL SPL link line right */ 2 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/arm64/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += mem_map.o 4 | -------------------------------------------------------------------------------- /arch/x86/dts/keyboard.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | keyboard { 3 | compatible = "intel,i8042-keyboard"; 4 | }; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | #ifndef __ASM_LINKAGE_H 2 | #define __ASM_LINKAGE_H 3 | 4 | #endif 5 | -------------------------------------------------------------------------------- /board/broadcom/bcm968360bg/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm968360bg.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt8183/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt8183_pumpkin.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt8516/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt8516_pumpkin.o 4 | -------------------------------------------------------------------------------- /board/netgear/dgnd3700v2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += dgnd3700v2.o 4 | -------------------------------------------------------------------------------- /board/seeed/linkit-smart-7688/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /drivers/clk/owl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CLK_OWL) += clk_owl.o 4 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_wip.c" 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/oldask1_config: -------------------------------------------------------------------------------- 1 | # CONFIG_MODULES is not set 2 | CONFIG_OPT_BOOL_CHOICE0=y 3 | -------------------------------------------------------------------------------- /tools/binman/test/ifwi.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/binman/test/ifwi.bin.gz -------------------------------------------------------------------------------- /tools/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_addresses.c" 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_strerror.c" 3 | -------------------------------------------------------------------------------- /tools/logos/intercontrol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/intercontrol.bmp -------------------------------------------------------------------------------- /tools/logos/u-boot_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/u-boot_logo.bmp -------------------------------------------------------------------------------- /board/broadcom/bcm968380gerg/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm968380gerg.o 4 | -------------------------------------------------------------------------------- /board/broadcom/bcm968580xref/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm968580xref.o 4 | -------------------------------------------------------------------------------- /board/gardena/smart-gateway-mt7688/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/gdsys/a38x/ihs_phys.h: -------------------------------------------------------------------------------- 1 | uint calculate_octo_phy_mask(void); 2 | int init_octo_phys(uint octo_phy_mask); 3 | -------------------------------------------------------------------------------- /board/mscc/jr2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_JR2) := jr2.o 4 | -------------------------------------------------------------------------------- /cmd/sandbox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CMD_EXCEPTION) += exception.o 4 | -------------------------------------------------------------------------------- /drivers/ddr/imx/Kconfig: -------------------------------------------------------------------------------- 1 | source "drivers/ddr/imx/imx8m/Kconfig" 2 | source "drivers/ddr/imx/imx8ulp/Kconfig" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_overlay.c" 3 | -------------------------------------------------------------------------------- /scripts/dtc/pylibfdt/.gitignore: -------------------------------------------------------------------------------- 1 | /_libfdt.* 2 | /libfdt.py 3 | /libfdt.pyc 4 | /libfdt_wrap.c 5 | /__pycache__ 6 | -------------------------------------------------------------------------------- /tools/binman/test/001_invalid.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_empty_tree.c" 3 | -------------------------------------------------------------------------------- /arch/arm/dts/imx23-evk-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | #include "imx23-u-boot.dtsi" 4 | 5 | -------------------------------------------------------------------------------- /board/bitmain/antminer_s9/board.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | #include "../../xilinx/zynq/board.c" 3 | -------------------------------------------------------------------------------- /board/cobra5272/bdm/load-cobra_uboot: -------------------------------------------------------------------------------- 1 | m68k-bdm-elf-gdb -n -x board/cobra5272/bdm/cobra5272_uboot.gdb u-boot 2 | 3 | -------------------------------------------------------------------------------- /board/mscc/luton/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_LUTON) := luton.o 4 | -------------------------------------------------------------------------------- /board/opalkelly/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/common/board.c" 2 | 3 | #include "../../xilinx/zynq/board.c" 4 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_addresses.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_empty_tree.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_strerror.c" 3 | -------------------------------------------------------------------------------- /tools/binman/test/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/binman/test/descriptor.bin -------------------------------------------------------------------------------- /tools/binman/test/fitimage.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/binman/test/fitimage.bin.gz -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-hummingboard2-emmc-som-v15-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl-hummingboard2-emmc-som-v15-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-hummingboard2-emmc-som-v15-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include "imx6qdl-hummingboard2-emmc-som-v15-u-boot.dtsi" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/sun4i-a10-inet97fv2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/arch/arm/dts/sun4i-a10-inet97fv2.dts -------------------------------------------------------------------------------- /arch/arm/mach-apple/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-aspeed/ast2500/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += lowlevel_init.o 2 | obj-y += board_common.o 3 | obj-y += clk_ast2500.o 4 | -------------------------------------------------------------------------------- /arch/arm/mach-aspeed/ast2600/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += lowlevel_init.o board_common.o 2 | obj-$(CONFIG_SPL_BUILD) += spl.o 3 | -------------------------------------------------------------------------------- /arch/mips/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /board/mscc/ocelot/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_OCELOT) := ocelot.o 4 | -------------------------------------------------------------------------------- /board/mscc/serval/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_SERVAL) := serval.o 4 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/evb-px5.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Andy Yan 4 | */ 5 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3128/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | # 4 | 5 | obj-y += evk-rk3128.o 6 | -------------------------------------------------------------------------------- /board/udoo/neo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 UDOO Team 3 | 4 | obj-y := neo.o 5 | -------------------------------------------------------------------------------- /drivers/memory/Makefile: -------------------------------------------------------------------------------- 1 | 2 | obj-$(CONFIG_STM32_FMC2_EBI) += stm32-fmc2-ebi.o 3 | obj-$(CONFIG_TI_AEMIF) += ti-aemif.o 4 | -------------------------------------------------------------------------------- /drivers/video/fonts/rufscript010.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/drivers/video/fonts/rufscript010.ttf -------------------------------------------------------------------------------- /include/spd_sdram.h: -------------------------------------------------------------------------------- 1 | #ifndef _SPD_SDRAM_H_ 2 | #define _SPD_SDRAM_H_ 3 | 4 | long int spd_sdram(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /lib/crypto/rsapubkey.asn1: -------------------------------------------------------------------------------- 1 | RsaPubKey ::= SEQUENCE { 2 | n INTEGER ({ rsa_get_n }), 3 | e INTEGER ({ rsa_get_e }) 4 | } 5 | -------------------------------------------------------------------------------- /lib/optee/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2017 Linaro 4 | 5 | obj-y += optee.o 6 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_config: -------------------------------------------------------------------------------- 1 | CONFIG_MODULES=y 2 | CONFIG_DEP=m 3 | CONFIG_CHOICE0=y 4 | -------------------------------------------------------------------------------- /tools/binman/test/002_missing_node.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | }; 7 | -------------------------------------------------------------------------------- /tools/logos/linux_logo_ttcontrol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/linux_logo_ttcontrol.bmp -------------------------------------------------------------------------------- /arch/arm/dts/imx23-olinuxino-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | &ssp0 { 4 | non-removable; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/x86/dts/reset.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | reset: reset { 3 | compatible = "x86,reset"; 4 | u-boot,dm-pre-proper; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /board/google/gru/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Google LLC 4 | 5 | obj-y += gru.o 6 | -------------------------------------------------------------------------------- /board/grinn/liteboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Grinn 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/mscc/servalt/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_SERVALT) := servalt.o 4 | -------------------------------------------------------------------------------- /drivers/clk/analogbits/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | config CLK_ANALOGBITS_WRPLL_CLN28HPC 4 | bool 5 | -------------------------------------------------------------------------------- /drivers/clk/uniphier/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += clk-uniphier-core.o 2 | obj-y += clk-uniphier-sys.o 3 | obj-y += clk-uniphier-mio.o 4 | -------------------------------------------------------------------------------- /drivers/video/fonts/ankacoder_c75_r.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/drivers/video/fonts/ankacoder_c75_r.ttf -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/config: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_B=y 2 | # CONFIG_CHOICE_D is not set 3 | CONFIG_CHOICE_E=y 4 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt7623/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt7629/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt8512/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt8518/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-owl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += soc.o 4 | obj-$(CONFIG_ARM64) += sysmap-owl.o 5 | -------------------------------------------------------------------------------- /board/broadcom/bcmns3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2020 Broadcom. 4 | 5 | obj-y := ns3.o 6 | -------------------------------------------------------------------------------- /board/grinn/chiliboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 Grinn 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/rockchip/sheep_rk3368/sheep_rk3368.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Andy Yan 4 | */ 5 | -------------------------------------------------------------------------------- /board/warp7/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 NXP Semiconductors 3 | 4 | obj-y := warp7.o 5 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/spi/spi_altera.txt: -------------------------------------------------------------------------------- 1 | Altera SPI 2 | 3 | Required properties: 4 | - compatible : should be "altr,spi-1.0". 5 | -------------------------------------------------------------------------------- /test/py/tests/test_pstore_data_panic1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/test/py/tests/test_pstore_data_panic1.hex -------------------------------------------------------------------------------- /test/py/tests/test_pstore_data_panic2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/test/py/tests/test_pstore_data_panic2.hex -------------------------------------------------------------------------------- /arch/arm/dts/imx7d-sdb-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | &fec2 { 2 | status = "disable"; 3 | }; 4 | 5 | &usbotg1 { 6 | dr_mode = "peripheral"; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/ar934x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cpu.o 4 | obj-y += clk.o 5 | obj-y += ddr.o 6 | -------------------------------------------------------------------------------- /arch/sh/include/asm/processor.h: -------------------------------------------------------------------------------- 1 | #ifndef _ASM_SH_PROCESSOR_H_ 2 | #define _ASM_SH_PROCESSOR_H_ 3 | # include 4 | #endif 5 | -------------------------------------------------------------------------------- /board/efi/efi-x86_app/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += app.o 6 | -------------------------------------------------------------------------------- /board/is1/socfpga.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Currently nothing special is needed on this board, empty file to 3 | * make build scripts happy 4 | */ 5 | -------------------------------------------------------------------------------- /board/myir/mys_6ulx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := mys_6ulx.o 4 | obj-$(CONFIG_SPL_BUILD) += spl.o 5 | -------------------------------------------------------------------------------- /doc/api/logging.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Logging API 4 | =========== 5 | 6 | .. kernel-doc:: include/log.h 7 | -------------------------------------------------------------------------------- /doc/chromium/files/devkeys/kernel.keyblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/doc/chromium/files/devkeys/kernel.keyblock -------------------------------------------------------------------------------- /drivers/misc/imx8/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += scu_api.o scu.o 4 | obj-$(CONFIG_CMD_FUSE) += fuse.o 5 | -------------------------------------------------------------------------------- /drivers/video/fonts/cantoraone_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/drivers/video/fonts/cantoraone_regular.ttf -------------------------------------------------------------------------------- /drivers/w1/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_W1) += w1-uclass.o 2 | 3 | obj-$(CONFIG_W1_GPIO) += w1-gpio.o 4 | obj-$(CONFIG_W1_MXC) += mxc_w1.o 5 | -------------------------------------------------------------------------------- /test/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | obj-y += cmd_ut_common.o 3 | obj-$(CONFIG_AUTOBOOT) += test_autoboot.o 4 | -------------------------------------------------------------------------------- /test/py/tests/test_pstore_data_console.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/test/py/tests/test_pstore_data_console.hex -------------------------------------------------------------------------------- /tools/logos/linux_logo_ttcontrol_palfin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/tools/logos/linux_logo_ttcontrol_palfin.bmp -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/bcmns3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2020 Broadcom. 4 | 5 | obj-y += lowlevel.o 6 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qdl-udoo-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | / { 4 | aliases { 5 | mmc0 = &usdhc3; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-d2net-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-is2-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-ns2-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-ns2max-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #ifdef CONFIG_GPIO_EXTRA_HEADER 2 | #include 3 | #endif 4 | #include 5 | -------------------------------------------------------------------------------- /arch/mips/mach-jz47xx/jz4780/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := gpio.o jz4780.o pll.o reset.o sdram.o timer.o 4 | -------------------------------------------------------------------------------- /board/armadeus/opos6uldev/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 Armadeus Systems 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/engicam/imx6q/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Amarula Solutions B.V. 3 | 4 | obj-y := imx6q.o 5 | -------------------------------------------------------------------------------- /board/engicam/px30_core/px30_core.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2020 Amarula Solutions(India) 4 | */ 5 | -------------------------------------------------------------------------------- /board/is1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/seeed/npi_imx6ull/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := npi_imx6ull.o 4 | obj-$(CONFIG_SPL_BUILD) += spl.o 5 | -------------------------------------------------------------------------------- /board/variscite/dart_6ul/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := dart_6ul.o 4 | obj-$(CONFIG_SPL_BUILD) += spl.o 5 | -------------------------------------------------------------------------------- /cmd/.gitignore: -------------------------------------------------------------------------------- 1 | config_data.gz 2 | config_data_gz.h 3 | config_data_size.h 4 | license_data.gz 5 | license_data_gz.h 6 | license_data_size.h 7 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/misc/altera_sysid.txt: -------------------------------------------------------------------------------- 1 | Altera sysid 2 | 3 | Required properties: 4 | - compatible : should be "altr,sysid-1.0" 5 | -------------------------------------------------------------------------------- /drivers/clk/intel/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2010 Google LLC 4 | # 5 | 6 | obj-y += clk_intel.o 7 | -------------------------------------------------------------------------------- /drivers/video/fonts/nimbus_sans_l_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/drivers/video/fonts/nimbus_sans_l_regular.ttf -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout1: -------------------------------------------------------------------------------- 1 | # CONFIG_A is not set 2 | CONFIG_B=y 3 | CONFIG_C=y 4 | # CONFIG_D is not set 5 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-net2big-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-ns2lite-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/kirkwood-ns2mini-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | 3 | / { 4 | aliases { 5 | spi0 = &spi0; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/ar933x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += clk.o 4 | obj-y += ddr.o 5 | obj-y += lowlevel_init.o 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/i2c/dallas-rtc.dtsi: -------------------------------------------------------------------------------- 1 | &IIC { 2 | ds1339@68 { 3 | compatible = "dallas,ds1339"; 4 | reg = <0x68>; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /board/broadcom/bcm_ep/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += board.o 6 | -------------------------------------------------------------------------------- /board/engicam/imx6ul/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Amarula Solutions B.V. 3 | 4 | obj-y := imx6ul.o 5 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Andreas Färber 4 | 5 | obj-y += geekbox.o 6 | -------------------------------------------------------------------------------- /board/google/chromebook_samus/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Google, Inc 4 | 5 | obj-y += samus.o 6 | -------------------------------------------------------------------------------- /board/hardkernel/odroid_go2/go2.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2019 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/maxbcm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Stefan Roese 4 | 5 | obj-y := maxbcm.o 6 | -------------------------------------------------------------------------------- /board/radxa/rock/rock.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/radxa/rock2/rock2.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_px30/evb_px30.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2019 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/sandbox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2011 The Chromium OS Authors. 4 | 5 | obj-y := sandbox.o 6 | -------------------------------------------------------------------------------- /board/sr1500/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/storopack/smegw01/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 NXP Semiconductors 3 | 4 | obj-y := smegw01.o 5 | -------------------------------------------------------------------------------- /board/toradex/apalis-imx8/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Toradex 4 | # 5 | 6 | obj-y += apalis-imx8.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_imx7/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Toradex AG 3 | 4 | obj-y := colibri_imx7.o 5 | -------------------------------------------------------------------------------- /cmd/riscv/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CMD_EXCEPTION) += exception.o 4 | obj-$(CONFIG_CMD_SBI) += sbi.o 5 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/serial/altera_jtaguart.txt: -------------------------------------------------------------------------------- 1 | Altera JTAG UART 2 | 3 | Required properties: 4 | - compatible : should be "altr,juart-1.0" 5 | -------------------------------------------------------------------------------- /drivers/clk/analogbits/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC) += wrpll-cln28hpc.o 4 | -------------------------------------------------------------------------------- /drivers/misc/imx8ulp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += s400_api.o imx8ulp_mu.o 4 | obj-$(CONFIG_CMD_FUSE) += fuse.o 5 | -------------------------------------------------------------------------------- /include/linux/ioctl.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_IOCTL_H 2 | #define _LINUX_IOCTL_H 3 | 4 | #include 5 | 6 | #endif /* _LINUX_IOCTL_H */ 7 | -------------------------------------------------------------------------------- /lib/dhry/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += cmd_dhry.o dhry_1.o dhry_2.o 6 | -------------------------------------------------------------------------------- /test/image/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2021 Google LLC 4 | 5 | obj-$(CONFIG_SPL_BUILD) += spl_load.o 6 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/bcmcygnus/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += reset.o 6 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/bcmnsp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += reset.o 6 | -------------------------------------------------------------------------------- /arch/arm/dts/at91sam9g25-gardena-smart-gateway-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | &dbgu { 4 | u-boot,dm-pre-reloc; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/arm/mach-u8500/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-or-later 2 | 3 | obj-y += cache.o 4 | obj-$(CONFIG_DISPLAY_CPUINFO) += cpuinfo.o 5 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/qca953x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += clk.o 4 | obj-y += ddr.o 5 | obj-y += lowlevel_init.o 6 | -------------------------------------------------------------------------------- /arch/x86/dts/rtc.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | rtc: rtc { 3 | compatible = "motorola,mc146818"; 4 | u-boot,dm-pre-proper; 5 | reg = <0x70 2>; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /board/efi/efi-x86_app/app.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/freescale/ls1021atsn/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | obj-y += ls1021atsn.o 3 | obj-$(CONFIG_ARMV7_PSCI) += ../ls1021atwr/psci.o 4 | -------------------------------------------------------------------------------- /board/google/chromebox_panther/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += panther.o 6 | -------------------------------------------------------------------------------- /board/mqmaker/miqi_rk3288/miqi-rk3288.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/mscc/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_JR2) := spi.o 4 | obj-$(CONFIG_SOC_OCELOT) := spi.o 5 | -------------------------------------------------------------------------------- /board/phytec/pcm052/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := pcm052.o 6 | -------------------------------------------------------------------------------- /board/radxa/rock/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Heiko Stuebner 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += rock.o 8 | -------------------------------------------------------------------------------- /board/radxa/rock2/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += rock2.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3288/evb-rk3288.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3328/evb-rk3328.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3568/evb_rk3568.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2021 Rockchip Electronics Co., Ltd 4 | */ 5 | -------------------------------------------------------------------------------- /board/tbs/tbs2910/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Soeren Moch 4 | 5 | obj-y := tbs2910.o 6 | -------------------------------------------------------------------------------- /board/toradex/apalis-imx8x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2020 Toradex 4 | # 5 | 6 | obj-y += apalis-imx8x.o 7 | -------------------------------------------------------------------------------- /board/toradex/apalis_t30/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014 Marcel Ziswiler 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += apalis_t30.o 5 | -------------------------------------------------------------------------------- /board/toradex/colibri-imx6ull/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2018 Toradex AG 3 | 4 | obj-y := colibri-imx6ull.o 5 | -------------------------------------------------------------------------------- /board/toradex/colibri-imx8x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Toradex 4 | # 5 | 6 | obj-y += colibri-imx8x.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_t20/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2012 Lucas Stach 4 | 5 | obj-y += colibri_t20.o 6 | -------------------------------------------------------------------------------- /doc/chromium/files/devkeys/kernel_data_key.vbprivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/doc/chromium/files/devkeys/kernel_data_key.vbprivk -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 3 | 4 | obj-y := cbfs.o 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/expected_config: -------------------------------------------------------------------------------- 1 | CONFIG_MODULES=y 2 | CONFIG_CHOICE_VAL0=y 3 | # CONFIG_CHOIVE_VAL1 is not set 4 | CONFIG_DUMMY=y 5 | -------------------------------------------------------------------------------- /test/py/tests/vboot/sandbox-kernel.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | model = "Sandbox Verified Boot Test"; 5 | compatible = "sandbox"; 6 | 7 | }; 8 | -------------------------------------------------------------------------------- /tools/binman/test/003_empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /arch/arm/mach-cortina/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 Cortina Access Inc. 4 | # 5 | obj-y += lowlevel_init.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-tegra/tegra186/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016, NVIDIA CORPORATION. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0 4 | 5 | obj-y += cache.o 6 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/qca956x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cpu.o 4 | obj-y += clk.o 5 | obj-y += ddr.o qca956x-ddr-tap.o 6 | -------------------------------------------------------------------------------- /board/abilis/tb100/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2014 Pierrick Hascoet, Abilis Systems 4 | 5 | obj-y += tb100.o 6 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2500/evb_ast2500.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2016 Google, Inc 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/cadence/xtfpga/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2007 - 2013, Tensilica Inc. 4 | 5 | obj-y += ${BOARD}.o 6 | -------------------------------------------------------------------------------- /board/cavium/thunderx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014, Cavium Inc. 3 | # 4 | # 5 | 6 | obj-y := thunderx.o atf.o 7 | -------------------------------------------------------------------------------- /board/freescale/mx6slevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6slevk.o 5 | -------------------------------------------------------------------------------- /board/google/chromebook_coral/dialog-2ch-48khz-24b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/board/google/chromebook_coral/dialog-2ch-48khz-24b.dat -------------------------------------------------------------------------------- /board/google/chromebook_coral/dmic-1ch-48khz-16b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/board/google/chromebook_coral/dmic-1ch-48khz-16b.dat -------------------------------------------------------------------------------- /board/google/chromebook_coral/dmic-2ch-48khz-16b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/board/google/chromebook_coral/dmic-2ch-48khz-16b.dat -------------------------------------------------------------------------------- /board/google/chromebook_coral/dmic-4ch-48khz-16b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/board/google/chromebook_coral/dmic-4ch-48khz-16b.dat -------------------------------------------------------------------------------- /board/google/chromebook_link/link.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2014 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2014 Google, Inc 4 | 5 | obj-$(CONFIG_X86) += early_init.o 6 | -------------------------------------------------------------------------------- /board/google/veyron/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += veyron.o 8 | -------------------------------------------------------------------------------- /board/nvidia/p2771-0000/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016, NVIDIA CORPORATION. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0 4 | 5 | obj-y += p2771-0000.o 6 | -------------------------------------------------------------------------------- /board/samsung/smdk5250/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2012 Samsung Electronics 4 | 5 | obj-y += smdk5250_spl.o 6 | -------------------------------------------------------------------------------- /board/samsung/smdk5420/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013 Samsung Electronics 4 | 5 | obj-y += smdk5420_spl.o 6 | -------------------------------------------------------------------------------- /board/solidrun/clearfog/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := clearfog.o 6 | -------------------------------------------------------------------------------- /board/solidrun/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) SolidRun 4 | 5 | obj-$(CONFIG_TARGET_CLEARFOG) += tlv_data.o 6 | -------------------------------------------------------------------------------- /board/technexion/pico-imx7d/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 NXP Semiconductors 3 | 4 | obj-y := pico-imx7d.o spl.o 5 | -------------------------------------------------------------------------------- /board/terasic/de10-nano/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2017, Intel Corporation 3 | # 4 | # 5 | 6 | obj-y := socfpga.o 7 | -------------------------------------------------------------------------------- /board/terasic/de10-nano/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017, Intel Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/ti/dra7xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 4 | # Texas Instruments, 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_t30/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013-2014 Stefan Agner 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += colibri_t30.o 5 | -------------------------------------------------------------------------------- /board/udoo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := udoo.o udoo_spl.o 6 | -------------------------------------------------------------------------------- /board/xen/xenguest_arm64/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 EPAM Systems Inc. 4 | 5 | obj-y := xenguest_arm64.o 6 | -------------------------------------------------------------------------------- /doc/board/apple/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Apple 4 | ===== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | m1 10 | -------------------------------------------------------------------------------- /doc/board/tbs/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | TBS 4 | === 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | tbs2910 10 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/root.txt: -------------------------------------------------------------------------------- 1 | The root node 2 | 3 | Optional properties: 4 | - serial-number : a string representing the device's serial number 5 | -------------------------------------------------------------------------------- /drivers/mtd/nand/Kconfig: -------------------------------------------------------------------------------- 1 | config MTD_NAND_CORE 2 | tristate 3 | 4 | source "drivers/mtd/nand/raw/Kconfig" 5 | 6 | source "drivers/mtd/nand/spi/Kconfig" 7 | -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-$(CONFIG_$(SPL_)FS_FAT) = fat.o 5 | obj-$(CONFIG_$(SPL_)FAT_WRITE) = fat_write.o 6 | -------------------------------------------------------------------------------- /include/sparse_defs.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2014 Broadcom Corporation. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /lib/aes/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2019, Softathome 4 | 5 | obj-$(CONFIG_$(SPL_)FIT_CIPHER) += aes-decrypt.o 6 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout: -------------------------------------------------------------------------------- 1 | Tristate Choice [M/y/?] y 2 | Tristate Choice 3 | > 1. Choice 0 (CHOICE0) 4 | choice[1]: 1 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout2: -------------------------------------------------------------------------------- 1 | # CONFIG_A is not set 2 | CONFIG_B=y 3 | # CONFIG_C is not set 4 | CONFIG_D=y 5 | CONFIG_E=y 6 | -------------------------------------------------------------------------------- /arch/arc/cpu/arcv1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += ivt.o 6 | -------------------------------------------------------------------------------- /arch/arc/cpu/arcv2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += ivt.o 6 | -------------------------------------------------------------------------------- /arch/arm/include/asm/xen.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ 2 | * 3 | * (C) 2020 EPAM Systems Inc. 4 | */ 5 | 6 | extern unsigned long rom_pointer[]; 7 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/imx8ulp/upower/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2020 NXP 4 | # 5 | 6 | obj-y += upower_api.o upower_hal.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/armada3700/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y = cpu.o 6 | -------------------------------------------------------------------------------- /arch/mips/mach-jz47xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | extra-$(CONFIG_SPL_BUILD) := start.o 4 | 5 | obj-$(CONFIG_SOC_JZ4780) += jz4780/ 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/i2c/cirrus-audio-codec.dtsi: -------------------------------------------------------------------------------- 1 | &IIC { 2 | cs4265@4f { 3 | compatible = "cirrus,cs4265"; 4 | reg = <0x0000004f>; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /arch/riscv/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2018 SiFive, Inc. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /arch/sh/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/sh/lib/start.o 4 | 5 | libs-y += arch/sh/cpu/$(CPU)/ 6 | libs-y += arch/sh/lib/ 7 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6720/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := db-88f6720.o 6 | -------------------------------------------------------------------------------- /board/Marvell/mvebu_armada-37xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := board.o 6 | -------------------------------------------------------------------------------- /board/Marvell/mvebu_armada-8k/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := board.o 6 | -------------------------------------------------------------------------------- /board/amlogic/p200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Beniamino Galvani 4 | 5 | obj-y := p200.o 6 | -------------------------------------------------------------------------------- /board/amlogic/p201/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Beniamino Galvani 4 | 5 | obj-y := p201.o 6 | -------------------------------------------------------------------------------- /board/aries/mcvevk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Marek Vasut 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2600/evb_ast2600.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) Aspeed Technology Inc. 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/devboards/dbm-soc1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Marek Vasut 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/freescale/ls1028a/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2019 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += ls1028a.o 8 | obj-y += ddr.o 9 | -------------------------------------------------------------------------------- /board/freescale/mx6sllevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sllevk.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx6ullevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6ullevk.o 5 | -------------------------------------------------------------------------------- /board/freescale/vf610twr/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := vf610twr.o 6 | -------------------------------------------------------------------------------- /board/ge/common/Kconfig: -------------------------------------------------------------------------------- 1 | config GE_VPD 2 | bool "Enable GE VPD Support" 3 | default y 4 | 5 | config GE_RTC 6 | bool "Enable GE RTC Support" 7 | default y 8 | -------------------------------------------------------------------------------- /board/ge/common/ge_rtc.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2017 General Electric Company 4 | */ 5 | 6 | void check_time(void); 7 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/geekbox.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2016 Andreas Färber 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/chromebook_samus/samus.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2016 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/chromebox_panther/panther.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/intel/crownbay/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014, Bin Meng 4 | 5 | obj-y += crownbay.o 6 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Rockchip Electronics Co., Ltd 4 | 5 | obj-y += evb-px5.o 6 | -------------------------------------------------------------------------------- /board/ti/am57xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2014 4 | # Texas Instruments, 5 | 6 | obj-y := board.o 7 | -------------------------------------------------------------------------------- /board/udoo/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_UDOO 2 | 3 | config SYS_BOARD 4 | default "udoo" 5 | 6 | config SYS_CONFIG_NAME 7 | default "udoo" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp_r5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # (C) Copyright 2018 Xilinx, Inc. (Michal Simek) 4 | # 5 | 6 | obj-y := board.o 7 | -------------------------------------------------------------------------------- /doc/api/sysreset.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | System reset 4 | ============ 5 | 6 | .. kernel-doc:: include/sysreset.h 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/board/atmel/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Atmel 4 | ===== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | at91ek 10 | -------------------------------------------------------------------------------- /doc/board/sipeed/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Sipeed 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | maix 10 | -------------------------------------------------------------------------------- /drivers/clk/mtmips/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-$(CONFIG_SOC_MT7620) += clk-mt7620.o 4 | obj-$(CONFIG_SOC_MT7628) += clk-mt7628.o 5 | -------------------------------------------------------------------------------- /drivers/crypto/Kconfig: -------------------------------------------------------------------------------- 1 | menu "Hardware crypto devices" 2 | 3 | source drivers/crypto/hash/Kconfig 4 | 5 | source drivers/crypto/fsl/Kconfig 6 | 7 | endmenu 8 | -------------------------------------------------------------------------------- /include/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #ifndef DO_DEPS_ONLY 2 | 3 | #include 4 | /* #include */ 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/expected_config: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated file; DO NOT EDIT. 3 | # Main menu 4 | # 5 | # CONFIG_A is not set 6 | -------------------------------------------------------------------------------- /tools/binman/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Binman 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | README 10 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-marsboard-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | / { 4 | aliases { 5 | mmc0 = &usdhc2; 6 | mmc1 = &usdhc3; 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/clk/dpll-pro5.c: -------------------------------------------------------------------------------- 1 | #include "../init.h" 2 | 3 | int uniphier_pro5_dpll_init(const struct uniphier_board_data *bd) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/clk/dpll-pxs2.c: -------------------------------------------------------------------------------- 1 | #include "../init.h" 2 | 3 | int uniphier_pxs2_dpll_init(const struct uniphier_board_data *bd) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /arch/nios2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/nios2/cpu/start.o 4 | 5 | libs-y += arch/nios2/cpu/ 6 | libs-y += arch/nios2/lib/ 7 | -------------------------------------------------------------------------------- /arch/u-boot-elf.lds: -------------------------------------------------------------------------------- 1 | ENTRY(CONFIG_PLATFORM_ELFENTRY) 2 | SECTIONS 3 | { 4 | . = CONFIG_PLATFORM_ELFENTRY; 5 | 6 | .data : { 7 | *(.data*) 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6820-gp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := db-88f6820-gp.o 6 | -------------------------------------------------------------------------------- /board/Marvell/db-mv784mp-gp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Stefan Roese 4 | 5 | obj-y := db-mv784mp-gp.o 6 | -------------------------------------------------------------------------------- /board/devboards/dbm-soc1/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Marek Vasut 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/ea/mx7ulp_com/Makefile: -------------------------------------------------------------------------------- 1 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0+ 4 | # 5 | 6 | obj-y := mx7ulp_com.o 7 | -------------------------------------------------------------------------------- /board/efi/efi-x86_payload/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += payload.o 6 | -------------------------------------------------------------------------------- /board/emulation/qemu-riscv/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += qemu-riscv.o 6 | -------------------------------------------------------------------------------- /board/emulation/qemu-x86/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Bin Meng 4 | 5 | obj-y += qemu-x86.o 6 | -------------------------------------------------------------------------------- /board/freescale/mx6sxsabresd/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sxsabresd.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx7dsabresd/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx7dsabresd.o 5 | -------------------------------------------------------------------------------- /board/intel/cherryhill/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += cherryhill.o 6 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-arm.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/ramfs-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/kobol/helios4/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Dennis Gilmore 4 | 5 | obj-y := helios4.o 6 | -------------------------------------------------------------------------------- /board/raspberrypi/rpi/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # (C) Copyright 2012 Stephen Warren 4 | 5 | obj-y := rpi.o 6 | obj-y += lowlevel_init.o 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3036/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3036.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3229/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3229.o 8 | -------------------------------------------------------------------------------- /board/rockchip/kylin_rk3036/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += kylin_rk3036.o 8 | -------------------------------------------------------------------------------- /doc/README.fsl-clk: -------------------------------------------------------------------------------- 1 | Freescale system clock options 2 | 3 | - CONFIG_SYS_FSL_CLK 4 | Enable to call get_clocks() in board_init_f() for 5 | non-PPC platforms. 6 | -------------------------------------------------------------------------------- /doc/api/serial.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Serial system 4 | ============= 5 | 6 | .. kernel-doc:: drivers/serial/serial.c 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/api/unicode.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Unicode support 4 | =============== 5 | 6 | .. kernel-doc:: include/charset.h 7 | :internal: 8 | -------------------------------------------------------------------------------- /drivers/clk/sifive/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += sifive-prci.o 4 | 5 | obj-$(CONFIG_CLK_SIFIVE_PRCI) += fu540-prci.o fu740-prci.o 6 | -------------------------------------------------------------------------------- /drivers/ddr/microchip/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Microchip Technology Inc. 4 | obj-$(CONFIG_MACH_PIC32) += ddr2.o 5 | -------------------------------------------------------------------------------- /drivers/phy/cadence/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_$(SPL_)PHY_CADENCE_SIERRA) += phy-cadence-sierra.o 2 | obj-$(CONFIG_$(SPL_)PHY_CADENCE_TORRENT) += phy-cadence-torrent.o 3 | -------------------------------------------------------------------------------- /drivers/ram/sifive/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2020 SiFive, Inc 4 | # 5 | 6 | obj-$(CONFIG_SIFIVE_DDR) += sifive_ddr.o 7 | -------------------------------------------------------------------------------- /lib/acpi/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-y += acpigen.o 5 | obj-y += acpi_device.o 6 | obj-y += acpi_dp.o 7 | obj-y += acpi_table.o 8 | -------------------------------------------------------------------------------- /tools/binman/test/073_gbb_no_size.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | gbb { 7 | }; 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-riotboard-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | / { 4 | aliases { 5 | mmc0 = &usdhc2; 6 | mmc1 = &usdhc3; 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qp-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | #ifndef __ASM_LINKAGE_H 2 | #define __ASM_LINKAGE_H 3 | 4 | #define __ALIGN .align 0 5 | #define __ALIGN_STR ".align 0" 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /arch/x86/lib/coreboot/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2021 Google LLC 4 | # 5 | 6 | obj-y += cb_sysinfo.o 7 | obj-y += cb_support.o 8 | -------------------------------------------------------------------------------- /arch/xtensa/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/xtensa/cpu/start.o 4 | 5 | libs-y += arch/xtensa/cpu/ 6 | libs-y += arch/xtensa/lib/ 7 | -------------------------------------------------------------------------------- /board/CZ.NIC/turris_omnia/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017 Marek Behun 4 | 5 | obj-y := turris_omnia.o 6 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6820-amc/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := db-88f6820-amc.o 6 | -------------------------------------------------------------------------------- /board/altera/arria10-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (C) 2015 Altera Corporation 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/amarula/vyasa-rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2017 Amarula Solutions 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += vyasa-rk3288.o 8 | -------------------------------------------------------------------------------- /board/cobra5272/MAINTAINERS: -------------------------------------------------------------------------------- 1 | COBRA5272 BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/cobra5272/ 5 | F: include/configs/cobra5272.h 6 | F: configs/cobra5272_defconfig 7 | -------------------------------------------------------------------------------- /board/ebv/socrates/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/firefly/firefly-rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += firefly-rk3288.o 8 | -------------------------------------------------------------------------------- /board/freescale/mx6sxsabreauto/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sxsabreauto.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx6ul_14x14_evk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6ul_14x14_evk.o 5 | -------------------------------------------------------------------------------- /board/gardena/smart-gateway-at91sam/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | 5 | ifdef CONFIG_SPL_BUILD 6 | obj-y += spl.o 7 | endif 8 | -------------------------------------------------------------------------------- /board/ge/b1x5v2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2018-2020 Collabora 4 | # Copyright 2018-2020 GE 5 | 6 | obj-y := b1x5v2.o spl.o 7 | -------------------------------------------------------------------------------- /board/intel/cougarcanyon2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016, Bin Meng 4 | 5 | obj-y += cougarcanyon2.o 6 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-arm.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/develop-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-ppc_8xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/develop-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-ppc_82xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/ramfs-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-ppc_8xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/ramfs-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/out4/o4-imx6ull-nano/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2021 Oleh Kravchenko 3 | 4 | obj-y := o4-imx6ull-nano.o 5 | -------------------------------------------------------------------------------- /board/rockchip/sheep_rk3368/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Rockchip Electronics Co., Ltd 4 | 5 | obj-y += sheep_rk3368.o 6 | -------------------------------------------------------------------------------- /board/sipeed/maix/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2019 Western Digital Corporation or its affiliates. 4 | 5 | obj-y += maix.o 6 | -------------------------------------------------------------------------------- /board/synopsys/axs10x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += axs10x.o 6 | -------------------------------------------------------------------------------- /board/synopsys/nsim/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2020 Synopsys, Inc. All rights reserved. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += nsim.o 8 | -------------------------------------------------------------------------------- /board/technexion/pico-imx6/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := pico-imx6.o spl.o 6 | -------------------------------------------------------------------------------- /board/terasic/sockit/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /doc/api/dfu.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Device firmware update 4 | ====================== 5 | 6 | .. kernel-doc:: include/dfu.h 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/api/lmb.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Logical memory blocks 4 | ===================== 5 | 6 | .. kernel-doc:: include/lmb.h 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/board/coreboot/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Coreboot 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | coreboot 10 | -------------------------------------------------------------------------------- /doc/board/highbank/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Highbank 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | highbank 10 | -------------------------------------------------------------------------------- /doc/board/samsung/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Samsung 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | axy17lte 10 | -------------------------------------------------------------------------------- /doc/board/siemens/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Siemens 4 | ======= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | iot2050 10 | -------------------------------------------------------------------------------- /doc/board/ste/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | ST-Ericsson 4 | =========== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | stemmy 10 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/xen/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) 2018 NXP 4 | # (C) 2020 EPAM Systems Inc. 5 | 6 | obj-y += lowlevel_init.o hypercall.o 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qp-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx8mm-cl-iot-gate-optee.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | /* 3 | * Copyright 2019 NXP 4 | */ 5 | 6 | #include "imx8mm-cl-iot-gate.dts" 7 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/armada8k/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y = cpu.o cache_llc.o dram.o 6 | -------------------------------------------------------------------------------- /arch/riscv/cpu/generic/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += dram.o 6 | obj-y += cpu.o 7 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/string.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2011 The Chromium OS Authors. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/CZ.NIC/turris_mox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Marek Behun 4 | 5 | obj-y := turris_mox.o mox_sp.o 6 | -------------------------------------------------------------------------------- /board/Synology/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2021 Phil Sutter 4 | 5 | obj-$(SUPPORT_PASSING_ATAGS) += legacy.o 6 | -------------------------------------------------------------------------------- /board/altera/arria5-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/buffalo/lsxl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2012 Michael Walle 4 | # Michael Walle 5 | 6 | obj-y := lsxl.o 7 | -------------------------------------------------------------------------------- /board/ea/ea-lpc3250devkitv2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2021 Trevor Woerner 3 | 4 | obj-y += ea-lpc3250devkitv2.o 5 | -------------------------------------------------------------------------------- /board/engicam/px30_core/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2020 Amarula Solutions(India) 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += px30_core.o 8 | -------------------------------------------------------------------------------- /board/google/chromebook_coral/max98357-render-2ch-48khz-24b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unifreq/u-boot/HEAD/board/google/chromebook_coral/max98357-render-2ch-48khz-24b.dat -------------------------------------------------------------------------------- /board/google/chromebook_coral/variant_dptf.asl: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0 */ 2 | /* 3 | * Copyright 2016 Google Inc. 4 | */ 5 | 6 | #include "baseboard_dptf.asl" 7 | -------------------------------------------------------------------------------- /board/intel/agilex-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2019 Intel Corporation 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-y := socfpga.o 8 | -------------------------------------------------------------------------------- /board/intel/slimbootloader/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2019 Intel Corporation 4 | 5 | obj-y += slimbootloader.o 6 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-ppc_82xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot ${load_addr_r} scripts/develop-common.txt && env import -t ${load_addr_r} ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/secu1/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2020 Hitachi Power Grids 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y := socfpga.o ../common/ivm.o 8 | -------------------------------------------------------------------------------- /board/maxbcm/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MAXBCM BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/maxbcm/ 5 | F: include/configs/maxbcm.h 6 | F: configs/maxbcm_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/cardhu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010-2012 4 | # NVIDIA Corporation 5 | 6 | obj-y := cardhu.o 7 | -------------------------------------------------------------------------------- /board/nvidia/dalmore/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved. 4 | 5 | obj-y := dalmore.o 6 | -------------------------------------------------------------------------------- /board/nvidia/harmony/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y := harmony.o 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_px30/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2017 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_px30.o 8 | -------------------------------------------------------------------------------- /board/samsung/arndale/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013 Samsung Electronics 4 | 5 | obj-y += arndale_spl.o 6 | obj-y += arndale.o 7 | -------------------------------------------------------------------------------- /board/socrates/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_SOCRATES 2 | 3 | config SYS_BOARD 4 | default "socrates" 5 | 6 | config SYS_CONFIG_NAME 7 | default "socrates" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/synopsys/emsdp/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2018 Synopsys, Inc. All rights reserved. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += emsdp.o 8 | -------------------------------------------------------------------------------- /board/sysam/amcore/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2014 Angelo Dureghello 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y = amcore.o 8 | -------------------------------------------------------------------------------- /board/theobroma-systems/lion_rk3368/lion_rk3368.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH 4 | */ 5 | -------------------------------------------------------------------------------- /board/toradex/apalis-tk1/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016 Toradex, Inc. 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += as3722_init.o 5 | obj-y += apalis-tk1.o 6 | -------------------------------------------------------------------------------- /board/udoo/MAINTAINERS: -------------------------------------------------------------------------------- 1 | UDOO BOARD 2 | M: Fabio Estevam 3 | S: Maintained 4 | F: board/udoo/ 5 | F: include/configs/udoo.h 6 | F: configs/udoo_defconfig 7 | -------------------------------------------------------------------------------- /doc/api/pinctrl.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Pinctrl and Pinmux 4 | ================== 5 | 6 | .. kernel-doc:: include/dm/pinctrl.h 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/board/congatec/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Congatec 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | cgtqmx8.rst 10 | -------------------------------------------------------------------------------- /doc/board/openpiton/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | OpenPiton 4 | ========= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | riscv64 10 | -------------------------------------------------------------------------------- /drivers/nvme/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += nvme-uclass.o nvme.o nvme_show.o 6 | -------------------------------------------------------------------------------- /drivers/ram/aspeed/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | obj-$(CONFIG_ASPEED_AST2500) += sdram_ast2500.o 4 | obj-$(CONFIG_ASPEED_AST2600) += sdram_ast2600.o 5 | -------------------------------------------------------------------------------- /lib/zlib/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += zlib.o 7 | -------------------------------------------------------------------------------- /lib/zstd/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += zstd_decompress.o 2 | 3 | zstd_decompress-y := huf_decompress.o decompress.o \ 4 | entropy_common.o fse_decompress.o zstd_common.o zstd.o 5 | -------------------------------------------------------------------------------- /api/Kconfig: -------------------------------------------------------------------------------- 1 | menu "API" 2 | 3 | config API 4 | bool "Enable U-Boot API" 5 | help 6 | This option enables the U-Boot API. See api/README for more information. 7 | 8 | endmenu 9 | -------------------------------------------------------------------------------- /arch/arm/cpu/arm926ejs/mxs/mxsimage-spl.mx23.cfg: -------------------------------------------------------------------------------- 1 | DISPLAYPROGRESS 2 | SECTION 0x0 BOOTABLE 3 | TAG LAST 4 | LOAD 0x1000 spl/u-boot-spl.bin 5 | CALL 0x1000 0x0 6 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/s5p4418/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Nexell 4 | # Hyunseok, Jung 5 | 6 | obj-y += cpu.o 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/mmu.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | 3 | #ifndef __ASM_ARM_MMU_H 4 | #define __ASM_ARM_MMU_H 5 | 6 | void init_addr_map(void); 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /arch/arm/mach-exynos/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) Albert ARIBAUD 4 | 5 | SPL_OBJCFLAGS += -j .machine_param 6 | -------------------------------------------------------------------------------- /arch/arm/mach-stm32/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | obj-y += soc.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/bcu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_ARCH_UNIPHIER_LD4) += bcu-ld4.o 4 | obj-$(CONFIG_ARCH_UNIPHIER_SLD8) += bcu-ld4.o 5 | -------------------------------------------------------------------------------- /arch/microblaze/dts/microblaze-generic.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | / { 3 | #address-cells = <1>; 4 | #size-cells = <1>; 5 | aliases { 6 | } ; 7 | chosen { 8 | } ; 9 | } ; 10 | -------------------------------------------------------------------------------- /arch/nds32/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/nds32/cpu/$(CPU)/start.o 4 | 5 | libs-y += arch/nds32/cpu/$(CPU)/ 6 | libs-y += arch/nds32/lib/ 7 | -------------------------------------------------------------------------------- /arch/x86/cpu/efi/Kconfig: -------------------------------------------------------------------------------- 1 | if EFI 2 | 3 | config SYS_CAR_ADDR 4 | hex 5 | default 0x100000 6 | 7 | config SYS_CAR_SIZE 8 | hex 9 | default 0x20000 10 | 11 | endif 12 | -------------------------------------------------------------------------------- /arch/x86/dts/tsc_timer.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | tsc-timer { 3 | compatible = "x86,tsc-timer"; 4 | clock-frequency = ; 5 | u-boot,dm-pre-reloc; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /board/altera/arria10-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2015 Altera Corporation 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/altera/cyclone5-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/atmel/sama5d4ek/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Atmel 4 | # Bo Shen 5 | 6 | obj-y += sama5d4ek.o 7 | -------------------------------------------------------------------------------- /board/compulab/trimslice/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010-2012 4 | # NVIDIA Corporation 5 | 6 | obj-y := trimslice.o 7 | -------------------------------------------------------------------------------- /board/elgin/elgin_rv1108/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += elgin_rv1108.o 8 | -------------------------------------------------------------------------------- /board/emulation/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_SYS_MTDPARTS_RUNTIME) += qemu_mtdparts.o 4 | obj-$(CONFIG_SET_DFU_ALT_INFO) += qemu_dfu.o 5 | -------------------------------------------------------------------------------- /board/freescale/m5272c3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5272C3 BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5272c3/ 5 | F: include/configs/M5272C3.h 6 | F: configs/M5272C3_defconfig 7 | -------------------------------------------------------------------------------- /board/huawei/hg556a/hg556a.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/intel/n5x-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2020-2021 Intel Corporation 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-y := socfpga.o 8 | -------------------------------------------------------------------------------- /board/mqmaker/miqi_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += miqi-rk3288.o 8 | -------------------------------------------------------------------------------- /board/nvidia/beaver/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved. 4 | 5 | obj-y = ../cardhu/cardhu.o 6 | -------------------------------------------------------------------------------- /board/nvidia/seaboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y := seaboard.o 7 | -------------------------------------------------------------------------------- /board/pine64/rockpro64_rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2019 Vasily Khoruzhick 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += rockpro64-rk3399.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3288.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3308/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2018 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3308.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3328/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3328.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3399.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3568/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2021 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3568.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rv1108/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rv1108.o 8 | -------------------------------------------------------------------------------- /board/sfr/nb4_ser/nb4-ser.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/terasic/de0-nano-soc/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/terasic/sockit/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCKIT BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: include/configs/socfpga_sockit.h 5 | F: configs/socfpga_sockit_defconfig 6 | -------------------------------------------------------------------------------- /board/theadorable/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015-2016 Stefan Roese 4 | 5 | obj-y := theadorable.o 6 | obj-y += fpga.o 7 | -------------------------------------------------------------------------------- /board/wandboard/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_WANDBOARD 2 | 3 | config SYS_BOARD 4 | default "wandboard" 5 | 6 | config SYS_CONFIG_NAME 7 | default "wandboard" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/warp/MAINTAINERS: -------------------------------------------------------------------------------- 1 | WaRP BOARD 2 | M: Otavio Salvador 3 | S: Maintained 4 | F: board/warp/ 5 | F: include/configs/warp.h 6 | F: configs/warp_defconfig 7 | -------------------------------------------------------------------------------- /doc/board/microchip/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Microchip 4 | ========= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | mpfs_icicle 10 | -------------------------------------------------------------------------------- /doc/board/socionext/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Socionext 4 | ========= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | developerbox 10 | -------------------------------------------------------------------------------- /drivers/phy/socionext/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Makefile for the phy drivers. 4 | # 5 | 6 | obj-$(CONFIG_PHY_UNIPHIER_PCIE) += phy-uniphier-pcie.o 7 | -------------------------------------------------------------------------------- /drivers/pinctrl/ath79/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_PINCTRL_AR933X) += pinctrl_ar933x.o 4 | obj-$(CONFIG_PINCTRL_QCA953X) += pinctrl_qca953x.o 5 | -------------------------------------------------------------------------------- /drivers/ram/mediatek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2018 MediaTek Inc. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-$(CONFIG_TARGET_MT7629) = ddr3-mt7629.o 8 | -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2008 4 | # Stefan Roese, DENX Software Engineering, sr@denx.de. 5 | 6 | obj-y += lzo1x_decompress.o 7 | -------------------------------------------------------------------------------- /scripts/kconfig/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | *.moc 5 | 6 | # 7 | # configuration programs 8 | # 9 | conf 10 | mconf 11 | nconf 12 | qconf 13 | gconf 14 | -------------------------------------------------------------------------------- /tools/binman/test/005_simple.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | u-boot { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /arch/arm/dts/bcm2836-rpi.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | #include "bcm2835-rpi.dtsi" 3 | 4 | &vchiq { 5 | compatible = "brcm,bcm2836-vchiq", "brcm,bcm2835-vchiq"; 6 | }; 7 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/serdes/axp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_SPL_BUILD) = high_speed_env_lib.o 4 | obj-$(CONFIG_SPL_BUILD) += high_speed_env_spec.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-versal/include/mach/gpio.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2016 - 2018 Xilinx, Inc. 4 | */ 5 | 6 | /* Empty file - for compilation */ 7 | -------------------------------------------------------------------------------- /arch/microblaze/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/microblaze/cpu/start.o 4 | 5 | libs-y += arch/microblaze/cpu/ 6 | libs-y += arch/microblaze/lib/ 7 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_MPC83xx) += mpc8xxx/ 4 | obj-$(CONFIG_MPC85xx) += mpc8xxx/ 5 | obj-$(CONFIG_MPC86xx) += mpc8xxx/ 6 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc83xx/sysio/Kconfig: -------------------------------------------------------------------------------- 1 | menu "System I/O configuration" 2 | 3 | if ARCH_MPC8308 4 | source "arch/powerpc/cpu/mpc83xx/sysio/Kconfig.mpc8308" 5 | endif 6 | 7 | endmenu 8 | -------------------------------------------------------------------------------- /arch/powerpc/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2014 Google, Inc 4 | */ 5 | 6 | /* We don't need anything here at present */ 7 | -------------------------------------------------------------------------------- /arch/riscv/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | extra-y = start.o 6 | 7 | obj-y += cpu.o mtrap.o 8 | -------------------------------------------------------------------------------- /arch/x86/cpu/braswell/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += braswell.o early_uart.o fsp_configs.o 6 | -------------------------------------------------------------------------------- /arch/x86/cpu/queensbay/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014, Bin Meng 4 | 5 | obj-y += fsp_configs.o 6 | obj-y += tnc.o 7 | -------------------------------------------------------------------------------- /board/Seagate/nas220/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2014 Evgeni Dobrev 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y := nas220.o 8 | -------------------------------------------------------------------------------- /board/altera/stratix10-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016-2017 Intel Corporation 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-y := socfpga.o 8 | -------------------------------------------------------------------------------- /board/armltd/vexpress64/pcie.h: -------------------------------------------------------------------------------- 1 | #ifndef __VEXPRESS64_PCIE_H__ 2 | #define __VEXPRESS64_PCIE_H__ 3 | 4 | void vexpress64_pcie_init(void); 5 | 6 | #endif /* __VEXPRESS64_PCIE_H__ */ 7 | -------------------------------------------------------------------------------- /board/comtrend/ar5315u/ar-5315u.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/ct5361/ct-5361.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/vr3032u/vr-3032u.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/firefly/firefly-rk3308/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2018 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += roc_cc_rk3308.o 8 | -------------------------------------------------------------------------------- /board/firefly/roc-pc-rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += roc-pc-rk3399.o 8 | -------------------------------------------------------------------------------- /board/freescale/imx8qm_mek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2018 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += imx8qm_mek.o 8 | obj-$(CONFIG_SPL_BUILD) += spl.o 9 | -------------------------------------------------------------------------------- /board/freescale/imx8qxp_mek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2017 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += imx8qxp_mek.o 8 | obj-$(CONFIG_SPL_BUILD) += spl.o 9 | -------------------------------------------------------------------------------- /board/freescale/m5249evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5249EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5249evb/ 5 | F: include/configs/M5249EVB.h 6 | F: configs/M5249EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/m5275evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5275EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5275evb/ 5 | F: include/configs/M5275EVB.h 6 | F: configs/M5275EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/m5282evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5282EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5282evb/ 5 | F: include/configs/M5282EVB.h 6 | F: configs/M5282EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/ge/bx50v3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Timesys Corporation 4 | # Copyright 2015 General Electric Company 5 | 6 | obj-y := bx50v3.o 7 | -------------------------------------------------------------------------------- /board/intel/agilex-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2019 Intel Corporation 4 | * 5 | */ 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /board/intel/n5x-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2020-2021 Intel Corporation 4 | * 5 | */ 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /board/netgear/cg3100d/cg3100d.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/nvidia/p2571/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2571.o 9 | -------------------------------------------------------------------------------- /board/phytec/pcl063/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2018 Collabora Ltd. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0+ 4 | # 5 | 6 | obj-y := pcl063.o 7 | obj-$(CONFIG_SPL_BUILD) += spl.o 8 | -------------------------------------------------------------------------------- /board/qca/ap121/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP121 BOARD 2 | M: Wills Wang 3 | S: Maintained 4 | F: board/qca/ap121/ 5 | F: include/configs/ap121.h 6 | F: configs/ap121_defconfig 7 | -------------------------------------------------------------------------------- /board/qca/ap143/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP143 BOARD 2 | M: Wills Wang 3 | S: Maintained 4 | F: board/qca/ap143/ 5 | F: include/configs/ap143.h 6 | F: configs/ap143_defconfig 7 | -------------------------------------------------------------------------------- /board/qca/ap152/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP152 BOARD 2 | M: Rosy Song 3 | S: Maintained 4 | F: board/qca/ap152/ 5 | F: include/configs/ap152.h 6 | F: configs/ap152_defconfig 7 | -------------------------------------------------------------------------------- /board/radxa/rock/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RADXA_ROCK 2 | M: Heiko Stuebner 3 | S: Maintained 4 | F: board/radxa/rock 5 | F: include/configs/rock.h 6 | F: configs/rock_defconfig 7 | -------------------------------------------------------------------------------- /board/radxa/rock2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | FIREFLY 2 | M: Simon Glass 3 | S: Maintained 4 | F: board/radxa/rock2 5 | F: include/configs/rock2.h 6 | F: configs/rock2_defconfig 7 | -------------------------------------------------------------------------------- /board/rockchip/tinker_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += tinker-rk3288.o 8 | -------------------------------------------------------------------------------- /board/sagem/f@st1704/f@st1704.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/somlabs/visionsom-6ull/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2019 Arkadiusz Karas 3 | 4 | obj-y := visionsom-6ull.o 5 | -------------------------------------------------------------------------------- /board/synopsys/emsdp/config.mk: -------------------------------------------------------------------------------- 1 | PLATFORM_CPPFLAGS += -mcpu=arcem -mlittle-endian -mnorm -mswap -mmpy-option=3 \ 2 | -mbarrel-shifter -mfpu=fpuda_all -mcode-density 3 | -------------------------------------------------------------------------------- /board/synopsys/iot_devkit/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2018 Synopsys, Inc. All rights reserved. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += iot_devkit.o 8 | -------------------------------------------------------------------------------- /board/ti/evm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /cmd/broadcom/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright 2020 Broadcom 3 | 4 | obj-y += chimp_boot.o 5 | obj-y += nitro_image_load.o 6 | obj-y += chimp_handshake.o 7 | -------------------------------------------------------------------------------- /doc/board/sifive/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | SiFive 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | unleashed 10 | unmatched 11 | -------------------------------------------------------------------------------- /doc/board/xen/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | XenGuestARM64 4 | ============= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | xenguest_arm64 10 | -------------------------------------------------------------------------------- /drivers/video/tegra124/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2014 Google, Inc 4 | # 5 | 6 | obj-y += display.o 7 | obj-y += dp.o 8 | obj-y += sor.o 9 | -------------------------------------------------------------------------------- /lib/at91/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017 Microchip 4 | # Wenyou.Yang 5 | 6 | obj-$(CONFIG_ARCH_AT91) += at91.o 7 | -------------------------------------------------------------------------------- /post/cpu/mpc83xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2002-2007 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += ecc.o 7 | -------------------------------------------------------------------------------- /tools/binman/test/036_u_boot_img.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | u-boot-img { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /tools/binman/test/079_uses_pos.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | u-boot { 7 | pos = <10>; 8 | }; 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /tools/dtoc/test/dtoc_test_scan_drivers.cxx: -------------------------------------------------------------------------------- 1 | /* Aliases must be in driver files */ 2 | U_BOOT_DRIVER(sandbox_gpio) { 3 | }; 4 | 5 | DM_DRIVER_ALIAS(sandbox_gpio, sandbox_gpio_alias2) 6 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/hisilicon/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 Linaro 4 | # Peter Griffin 5 | 6 | obj-y += pinmux.o 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-octeontx/gpio.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0 2 | * 3 | * Copyright (C) 2018 Marvell International Ltd. 4 | * 5 | * https://spdx.org/licenses 6 | */ 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-octeontx2/gpio.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0 2 | * 3 | * Copyright (C) 2018 Marvell International Ltd. 4 | * 5 | * https://spdx.org/licenses 6 | */ 7 | -------------------------------------------------------------------------------- /arch/arm/mach-highbank/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := timer.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/mx7ulp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 4 | # 5 | 6 | obj-y := soc.o clock.o iomux.o pcc.o scg.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-stm32/stm32f7/Kconfig: -------------------------------------------------------------------------------- 1 | if STM32F7 2 | 3 | config TARGET_STM32F746_DISCO 4 | bool "STM32F746 Discovery board" 5 | 6 | source "board/st/stm32f746-disco/Kconfig" 7 | 8 | endif 9 | -------------------------------------------------------------------------------- /arch/mips/mach-mtmips/mt7628/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += lowlevel_init.o 4 | obj-y += init.o 5 | obj-y += ddr.o 6 | obj-$(CONFIG_SPL_BUILD) += serial.o 7 | -------------------------------------------------------------------------------- /arch/riscv/dts/qemu-virt.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2021, Bin Meng 4 | */ 5 | 6 | /dts-v1/; 7 | 8 | #include "binman.dtsi" 9 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2011 The Chromium OS Authors. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/Synology/ds414/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DS414 BOARD 2 | M: Phil Sutter 3 | S: Maintained 4 | F: board/Synology/ds414/ 5 | F: include/configs/ds414.h 6 | F: configs/ds414_defconfig 7 | -------------------------------------------------------------------------------- /board/abilis/tb100/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2020 Synopsys, Inc. All rights reserved. 4 | 5 | PLATFORM_CPPFLAGS += -mcpu=arc700 -mlock -mswape 6 | -------------------------------------------------------------------------------- /board/amlogic/p212/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := p212.o 7 | -------------------------------------------------------------------------------- /board/amlogic/q200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := q200.o 7 | -------------------------------------------------------------------------------- /board/amlogic/s400/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := s400.o 7 | -------------------------------------------------------------------------------- /board/amlogic/u200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := u200.o 7 | -------------------------------------------------------------------------------- /board/amlogic/vim3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := vim3.o 7 | -------------------------------------------------------------------------------- /board/amlogic/w400/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2019 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := w400.o 7 | -------------------------------------------------------------------------------- /board/armltd/total_compute/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 Arm Limited 4 | # Usama Arif 5 | 6 | obj-y := total_compute.o 7 | -------------------------------------------------------------------------------- /board/chipspark/popmetal_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += popmetal-rk3288.o 8 | -------------------------------------------------------------------------------- /board/comtrend/ar5387un/ar-5387un.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/wap5813n/wap-5813n.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/dfi/dfi-bt700/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Google, Inc 4 | 5 | obj-y += dfi-bt700.o 6 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o 7 | -------------------------------------------------------------------------------- /board/eets/pdu001/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PDU001 BOARD 2 | M: Felix Brack 3 | S: Maintained 4 | F: board/eets/pdu001/ 5 | F: include/configs/pdu001.h 6 | F: configs/am335x_pdu001_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/ls1046afrwy/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 NXP 4 | 5 | obj-y += ddr.o 6 | obj-y += ls1046afrwy.o 7 | obj-$(CONFIG_NET) += eth.o 8 | -------------------------------------------------------------------------------- /board/freescale/ls2080ardb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Freescale Semiconductor 4 | 5 | obj-y += ls2080ardb.o eth_ls2080rdb.o 6 | obj-y += ddr.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5208evbe/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5208EVBE BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5208evbe/ 5 | F: include/configs/M5208EVBE.h 6 | F: configs/M5208EVBE_defconfig 7 | -------------------------------------------------------------------------------- /board/google/chromebook_coral/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Google LLC 4 | 5 | obj-y += coral.o 6 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o 7 | -------------------------------------------------------------------------------- /board/hardkernel/odroid_go2/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2020 Theobroma Systems Design und Consulting GmbH 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += go2.o 8 | -------------------------------------------------------------------------------- /board/hisilicon/hikey/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := hikey.o 7 | -------------------------------------------------------------------------------- /board/hisilicon/poplar/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2017 Linaro 4 | # Jorge Ramirez-Ortiz 5 | obj-y := poplar.o 6 | -------------------------------------------------------------------------------- /board/ids/ids8313/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IDS8313 BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/ids/ids8313/ 5 | F: include/configs/ids8313.h 6 | F: configs/ids8313_defconfig 7 | -------------------------------------------------------------------------------- /board/intel/minnowmax/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Google, Inc 4 | 5 | obj-y += minnowmax.o 6 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o 7 | -------------------------------------------------------------------------------- /board/is1/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCFPGA IS1 BOARD 2 | M: Pavel Machek 3 | S: Maintained 4 | F: board/is1/ 5 | F: include/configs/socfpga_is1.h 6 | F: configs/socfpga_is1_defconfig 7 | -------------------------------------------------------------------------------- /board/kosagi/novena/MAINTAINERS: -------------------------------------------------------------------------------- 1 | NOVENA BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: board/kosagi/novena/ 5 | F: include/configs/novena.h 6 | F: configs/novena_defconfig 7 | -------------------------------------------------------------------------------- /board/liebherr/xea/MAINTAINERS: -------------------------------------------------------------------------------- 1 | XEA BOARD 2 | M: Lukasz Majewski 3 | S: Maintained 4 | F: board/liebherr/xea/ 5 | F: include/configs/xea.h 6 | F: configs/imx28_xea_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/p2571/MAINTAINERS: -------------------------------------------------------------------------------- 1 | P2571 BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/p2571/ 5 | F: include/configs/p2571.h 6 | F: configs/p2571_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/p3450-0000/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2018 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p3450-0000.o 9 | -------------------------------------------------------------------------------- /board/nvidia/ventana/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y = ../seaboard/seaboard.o 7 | -------------------------------------------------------------------------------- /board/openpiton/riscv64/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2021 Tianrui Wei 4 | # Tianrui Wei 5 | obj-y += openpiton-riscv64.o 6 | -------------------------------------------------------------------------------- /board/samsung/trats/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2011 Samsung Electronics 4 | # Heungjun Kim 5 | 6 | obj-y += trats.o 7 | -------------------------------------------------------------------------------- /board/siemens/rut/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RUT BOARD 2 | M: Samuel Egli 3 | S: Maintained 4 | F: board/siemens/rut/ 5 | F: include/configs/rut.h 6 | F: configs/rut_defconfig 7 | -------------------------------------------------------------------------------- /board/synopsys/iot_devkit/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IOT DEVKIT BOARD 2 | M: Alexey Brodkin 3 | S: Maintained 4 | F: board/synopsys/iot_devkit/ 5 | F: configs/iot_devkit_defconfig 6 | -------------------------------------------------------------------------------- /board/terasic/de1-soc/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DE1-SoC BOARD 2 | M: Anatolij Gustschin 3 | S: Maintained 4 | F: include/configs/socfpga_de1_soc.h 5 | F: configs/socfpga_de1_soc_defconfig 6 | -------------------------------------------------------------------------------- /board/theobroma-systems/lion_rk3368/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH 4 | 5 | obj-y += lion_rk3368.o 6 | -------------------------------------------------------------------------------- /board/ti/panda/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := panda.o 7 | -------------------------------------------------------------------------------- /board/vocore/vocore2/board.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 Mauro Condarelli 4 | * 5 | * Nothing actually needed here 6 | */ 7 | -------------------------------------------------------------------------------- /board/wandboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := wandboard.o 6 | obj-$(CONFIG_SPL_BUILD) += spl.o 7 | -------------------------------------------------------------------------------- /doc/board/advantech/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Advantech 4 | ========= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | imx8qm-rom7720-a1.rst 10 | -------------------------------------------------------------------------------- /drivers/ddr/marvell/a38x/mv_ddr_build_message.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | const char mv_ddr_build_message[] = ""; 3 | const char mv_ddr_version_string[] = "mv_ddr: 14.0.0"; 4 | -------------------------------------------------------------------------------- /drivers/net/qe/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2020 Heiko Schocher 4 | 5 | obj-$(CONFIG_QE_UEC) += dm_qe_uec.o dm_qe_uec_phy.o uccf.o 6 | -------------------------------------------------------------------------------- /drivers/pinctrl/intel/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Google LLC 4 | 5 | obj-y += pinctrl.o 6 | obj-$(CONFIG_PINCTRL_INTEL_APL) += pinctrl_apl.o 7 | -------------------------------------------------------------------------------- /fs/squashfs/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-$(CONFIG_$(SPL_)FS_SQUASHFS) = sqfs.o \ 5 | sqfs_inode.o \ 6 | sqfs_dir.o \ 7 | sqfs_decompressor.o 8 | -------------------------------------------------------------------------------- /lib/tizen/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2012 Samsung Electronics 4 | # Donghwa Lee 5 | 6 | obj-$(CONFIG_TIZEN) += tizen.o 7 | -------------------------------------------------------------------------------- /tools/binman/test/072_gbb_too_small.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | gbb { 7 | size = <0x200>; 8 | }; 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7m/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 4 | # Kamil Lulko, 5 | 6 | PLATFORM_CPPFLAGS += -mno-unaligned-access 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx8mm-venice-gw71xx-0x-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright 2021 Gateworks Corporation 4 | */ 5 | #include "imx8mm-venice-gw700x-u-boot.dtsi" 6 | -------------------------------------------------------------------------------- /arch/arm/dts/imx8mm-venice-gw72xx-0x-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright 2021 Gateworks Corporation 4 | */ 5 | #include "imx8mm-venice-gw700x-u-boot.dtsi" 6 | -------------------------------------------------------------------------------- /arch/arm/dts/imx8mm-venice-gw73xx-0x-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright 2021 Gateworks Corporation 4 | */ 5 | #include "imx8mm-venice-gw700x-u-boot.dtsi" 6 | -------------------------------------------------------------------------------- /arch/arm/dts/px30-firefly-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | /* 3 | * (C) Copyright 2020 Rockchip Electronics Co., Ltd 4 | */ 5 | 6 | #include "px30-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3036-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 Jagan Teki 4 | */ 5 | 6 | #include "rockchip-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3399pro-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 Jagan Teki 4 | */ 5 | 6 | #include "rk3399-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/stm32h750.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2 | /* Copyright (C) STMicroelectronics 2021 - All Rights Reserved */ 3 | 4 | #include "stm32h743.dtsi" 5 | 6 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #ifndef _ASM_XTENSA_UNALIGNED_H 2 | #define _ASM_XTENSA_UNALIGNED_H 3 | 4 | #include 5 | 6 | #endif /* _ASM_XTENSA_UNALIGNED_H */ 7 | -------------------------------------------------------------------------------- /board/BuS/eb_cpu5282/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = eb_cpu5282.o 7 | -------------------------------------------------------------------------------- /board/alliedtelesis/SBx81LIFKW/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010, 2018 4 | # Allied Telesis 5 | # 6 | 7 | obj-y += sbx81lifkw.o 8 | -------------------------------------------------------------------------------- /board/altera/stratix10-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2016-2018 Intel Corporation 4 | * 5 | */ 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /board/amlogic/sei510/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := sei510.o 7 | -------------------------------------------------------------------------------- /board/amlogic/sei610/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := sei610.o 7 | -------------------------------------------------------------------------------- /board/amlogic/w400/MAINTAINERS: -------------------------------------------------------------------------------- 1 | W400 2 | M: Neil Armstrong 3 | S: Maintained 4 | L: u-boot-amlogic@groups.io 5 | F: board/amlogic/w400/ 6 | F: doc/board/amlogic/w400.rst 7 | -------------------------------------------------------------------------------- /board/atmel/sama5d4_xplained/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Atmel 4 | # Bo Shen 5 | 6 | obj-y += sama5d4_xplained.o 7 | -------------------------------------------------------------------------------- /board/broadcom/bcm968380gerg/board.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Philippe Reynes 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/cobra5272/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = cobra5272.o flash.o 7 | -------------------------------------------------------------------------------- /board/cortina/presidio-asic/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 Cortina-Access.Inc. 4 | # 5 | # 6 | 7 | obj-y := presidio.o 8 | obj-y += lowlevel_init.o 9 | -------------------------------------------------------------------------------- /board/freescale/imx8ulp_evk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += imx8ulp_evk.o 4 | 5 | ifdef CONFIG_SPL_BUILD 6 | obj-y += spl.o ddr_init.o lpddr4_timing.o 7 | endif 8 | -------------------------------------------------------------------------------- /board/freescale/ls2080aqds/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Freescale Semiconductor 4 | 5 | obj-y += ls2080aqds.o 6 | obj-y += ddr.o 7 | obj-y += eth.o 8 | -------------------------------------------------------------------------------- /board/freescale/m5235evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5235evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5249evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5249evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5272c3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5272c3.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5275evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5275evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5282evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5282evb.o 7 | -------------------------------------------------------------------------------- /board/highbank/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := highbank.o ahci.o 7 | -------------------------------------------------------------------------------- /board/lego/ev3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | LEGOEV3 BOARD 2 | M: David Lechner 3 | S: Maintained 4 | F: board/lego/ev3/ 5 | F: include/configs/legoev3.h 6 | F: configs/legoev3_defconfig 7 | -------------------------------------------------------------------------------- /board/lg/sniper/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SNIPER BOARD 2 | M: Paul Kocialkowski 3 | S: Maintained 4 | F: board/lg/sniper/ 5 | F: include/configs/sniper.h 6 | F: configs/sniper_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/cardhu/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CARDHU BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/cardhu/ 5 | F: include/configs/cardhu.h 6 | F: configs/cardhu_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/p2371-0000/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2371-0000.o 9 | -------------------------------------------------------------------------------- /board/nvidia/p2371-2180/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2371-2180.o 9 | -------------------------------------------------------------------------------- /board/qualcomm/dragonboard410c/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 Mateusz Kulikowski 4 | 5 | obj-y := dragonboard410c.o 6 | -------------------------------------------------------------------------------- /board/raspberrypi/rpi/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RPI BOARD 2 | M: Matthias Brugger 3 | S: Maintained 4 | F: board/raspberrypi/rpi/ 5 | F: include/configs/rpi.h 6 | F: configs/rpi_*defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9261/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9261 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9261/ 5 | F: include/configs/pm9261.h 6 | F: configs/pm9261_defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9263/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9263 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9263/ 5 | F: include/configs/pm9263.h 6 | F: configs/pm9263_defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9g45/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9G45 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9g45/ 5 | F: include/configs/pm9g45.h 6 | F: configs/pm9g45_defconfig 7 | -------------------------------------------------------------------------------- /board/siemens/corvus/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CORVUS BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/siemens/corvus/ 5 | F: include/configs/corvus.h 6 | F: configs/corvus_defconfig 7 | -------------------------------------------------------------------------------- /board/siemens/pxm2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PXM2 BOARD 2 | M: Samuel Egli 3 | S: Maintained 4 | F: board/siemens/pxm2/ 5 | F: include/configs/pxm2.h 6 | F: configs/pxm2_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/evm/MAINTAINERS: -------------------------------------------------------------------------------- 1 | EVM BOARD 2 | M: Derald D. Woods 3 | S: Maintained 4 | F: board/ti/evm/ 5 | F: include/configs/omap3_evm.h 6 | F: configs/omap3_evm_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/omap5_uevm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /board/ti/panda/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PANDA BOARD 2 | M: Tom Rini 3 | S: Maintained 4 | F: board/ti/panda/ 5 | F: include/configs/omap4_panda.h 6 | F: configs/omap4_panda_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/ti816x/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TI816X BOARD 2 | M: Tom Rini 3 | S: Maintained 4 | F: board/ti/ti816x/ 5 | F: include/configs/ti816x_evm.h 6 | F: configs/ti816x_evm_defconfig 7 | -------------------------------------------------------------------------------- /doc/board/qualcomm/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Qualcomm 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | dragonboard410c 10 | sdm845 11 | -------------------------------------------------------------------------------- /drivers/mtd/nand/spi/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | spinand-objs := core.o gigadevice.o macronix.o micron.o toshiba.o winbond.o 4 | obj-$(CONFIG_MTD_SPI_NAND) += spinand.o 5 | -------------------------------------------------------------------------------- /drivers/tee/optee/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += core.o 4 | obj-y += supplicant.o 5 | obj-$(CONFIG_DM_I2C) += i2c.o 6 | obj-$(CONFIG_SUPPORT_EMMC_RPMB) += rpmb.o 7 | -------------------------------------------------------------------------------- /tools/binman/test/004_invalid_entry.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | not-a-valid-type { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /tools/binman/test/091_hash_no_algo.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | u-boot { 7 | hash { 8 | }; 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Declare files that always have LF line endings on checkout 2 | * text eol=lf 3 | # Denote all files that are truly binary and should not be modified 4 | *.bmp binary 5 | *.ttf binary 6 | -------------------------------------------------------------------------------- /arch/arm/dts/imx8mq-phanbell-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: (GPL-2.0 OR MIT) 2 | 3 | #include "imx8mq-u-boot.dtsi" 4 | 5 | ®_usdhc2_vmmc { 6 | u-boot,off-on-delay-us = <20000>; 7 | }; 8 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3399-roc-pc-mezzanine-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2020 Amarula Solutions(India) 4 | */ 5 | 6 | #include "rk3399-roc-pc-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/stm32mp157c-dk2-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause 2 | /* 3 | * Copyright : STMicroelectronics 2018 4 | */ 5 | 6 | #include "stm32mp157a-dk1-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/mach-k3/j7200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/ 4 | obj-y += clk-data.o 5 | obj-y += dev-data.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-k3/j721e/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/ 4 | obj-y += clk-data.o 5 | obj-y += dev-data.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-octeontx2/config.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(CONFIG_ARCH_OCTEONTX2),y) 2 | PLATFORM_CPPFLAGS += $(call cc-option,-march=armv8.2-a,) 3 | PLATFORM_CPPFLAGS += $(call cc-option,-mtune=octeontx2,) 4 | endif 5 | -------------------------------------------------------------------------------- /arch/arm/mach-rockchip/rv1108/rv1108.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | * Author: Andy Yan 5 | */ 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/lbc/gazerbeam.dtsi: -------------------------------------------------------------------------------- 1 | &board_lbc { 2 | ranges = <0x0 0x0 0xfe000000 0x00800000 3 | 0x1 0x0 0xe0600000 0x00003000 4 | 0x2 0x0 0xe0700000 0x00003000>; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/x86/cpu/slimbootloader/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2019 Intel Corporation 4 | 5 | obj-y += car.o slimbootloader.o sdram.o serial.o 6 | -------------------------------------------------------------------------------- /board/abilis/tb100/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TB100 BOARD 2 | M: Alexey Brodkin 3 | S: Maintained 4 | F: board/abilis/tb100/ 5 | F: include/configs/tb100.h 6 | F: configs/tb100_defconfig 7 | -------------------------------------------------------------------------------- /board/alliedtelesis/SBx81LIFXCAT/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010, 2018 4 | # Allied Telesis 5 | # 6 | 7 | obj-y += sbx81lifxcat.o 8 | -------------------------------------------------------------------------------- /board/amlogic/odroid-n2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2020 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := odroid-n2.o 7 | -------------------------------------------------------------------------------- /board/armltd/vexpress/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := vexpress_common.o 7 | -------------------------------------------------------------------------------- /board/astro/mcf5373l/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = mcf5373l.o fpga.o 7 | -------------------------------------------------------------------------------- /board/avionic-design/tec-ng/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 4 | # Avionic Design GmbH 5 | 6 | obj-y := ../common/tamonten-ng.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5208evbe/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5208evbe.o 7 | -------------------------------------------------------------------------------- /board/freescale/m53017evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m53017evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/mpc837xerdb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += mpc837xerdb.o 7 | -------------------------------------------------------------------------------- /board/ge/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2017 General Electric Company 4 | 5 | obj-$(CONFIG_GE_VPD) += vpd_reader.o 6 | obj-$(CONFIG_GE_RTC) += ge_rtc.o 7 | -------------------------------------------------------------------------------- /board/google/gru/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CHROMEBOOK BOB BOARD 2 | M: Simon Glass 3 | S: Maintained 4 | F: board/google/gru/ 5 | F: include/configs/gru.h 6 | F: configs/chromebook_bob_defconfig 7 | -------------------------------------------------------------------------------- /board/highbank/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HIGHBANK BOARD 2 | M: Andre Przywara 3 | S: Maintained 4 | F: board/highbank/ 5 | F: include/configs/highbank.h 6 | F: configs/highbank_defconfig 7 | -------------------------------------------------------------------------------- /board/intel/bayleybay/bayleybay.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015, Bin Meng 4 | */ 5 | 6 | #include 7 | #include 8 | -------------------------------------------------------------------------------- /board/mediatek/mt7622/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MT7622 2 | M: Sam Shih 3 | S: Maintained 4 | F: board/mediatek/mt7622 5 | F: include/configs/mt7622.h 6 | F: configs/mt7622_rfb_defconfig 7 | -------------------------------------------------------------------------------- /board/microchip/pic32mzda/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 3 | # Purna Chandra Mandal, purna.mandal@microchip.com. 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | obj-y := pic32mzda.o 8 | -------------------------------------------------------------------------------- /board/nvidia/dalmore/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DALMORE BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/dalmore/ 5 | F: include/configs/dalmore.h 6 | F: configs/dalmore_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/harmony/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HARMONY BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/harmony/ 5 | F: include/configs/harmony.h 6 | F: configs/harmony_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/venice2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | VENICE2 BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/venice2/ 5 | F: include/configs/venice2.h 6 | F: configs/venice2_defconfig 7 | -------------------------------------------------------------------------------- /board/raidsonic/ib62x0/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IB62X0 BOARD 2 | M: Luka Perkov 3 | S: Maintained 4 | F: board/raidsonic/ib62x0/ 5 | F: include/configs/ib62x0.h 6 | F: configs/ib62x0_defconfig 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PX5 EVB 2 | M: Andy Yan 3 | S: Maintained 4 | F: board/rockchip/evb_px5 5 | F: include/configs/evb_px5.h 6 | F: configs/evb-px5_defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/imx7-cm/MAINTAINERS: -------------------------------------------------------------------------------- 1 | i.MX7-CM BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/imx7_cm/ 5 | F: include/configs/imx7_cm.h 6 | F: configs/imx7_cm_defconfig -------------------------------------------------------------------------------- /board/samsung/origen/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ORIGEN BOARD 2 | M: Minkyu Kang 3 | S: Maintained 4 | F: board/samsung/origen/ 5 | F: include/configs/origen.h 6 | F: configs/origen_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/trats/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TRATS BOARD 2 | M: Jaehoon Chung 3 | S: Maintained 4 | F: board/samsung/trats/ 5 | F: include/configs/trats.h 6 | F: configs/trats_defconfig 7 | -------------------------------------------------------------------------------- /board/softing/vining_fpga/MAINTAINERS: -------------------------------------------------------------------------------- 1 | VINING FPGA BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: include/configs/socfpga_vining_fpga.h 5 | F: configs/socfpga_vining_fpga_defconfig 6 | -------------------------------------------------------------------------------- /board/sr1500/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCFPGA SR1500 BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/sr1500/ 5 | F: include/configs/socfpga_sr1500.h 6 | F: configs/socfpga_sr1500_defconfig 7 | --------------------------------------------------------------------------------