u-boot/include
Tom Rini 6e2228fb05 Merge patch series "Clean up arm linker scripts"
Ilias Apalodimas <ilias.apalodimas@linaro.org> says:

The arm linker scripts had a mix of symbols and C defined variables in an
effort to emit relative references instead of absolute ones e.g [0]. A
linker bug prevented us from doing so [1] -- fixed since 2016.
This has led to confusion over the years, ending up with mixed section
definitions. Some sections are defined with overlays and different
definitions between v7 and v8 architectures.
For example __efi_runtime_rel_start/end is defined as a linker symbol for
armv8 and a C variable in armv7.

Linker scripts nowadays can emit relative references, as long as the symbol
definition is contained within the section definition. So let's switch most
of the C defined variables and clean up the arm sections.c file.
There's still a few symbols remaining -- __secure_start/end,
__secure_stack_start/end and __end which can be cleaned up
in a followup series.

For both QEMU v7/v8 bloat-o-meter shows now size difference
$~ ./scripts/bloat-o-meter u-boot u-boot.new
add/remove: 0/0 grow/shrink: 0/0 up/down: 0/0 (0)
Function                                     old     new   delta
Total: Before=798861, After=798861, chg +0.00%

The symbols seem largely unchanged apart from a difference in .bss
as well as the emited sections and object types of the affected variables.

On the output below the first value is from -next and the second comes from
-next + this patchset. The .bss_start/end sections have disappeared from
the newer binaries.

# For example on QEMU v8:
efi_runtime_start
  7945: 0000000000000178     0 OBJECT  GLOBAL DEFAULT    2 __efi_runtime_start
  7942: 0000000000000178     0 NOTYPE  GLOBAL DEFAULT    2 __efi_runtime_start
efi_runtime_stop
  9050: 0000000000000d38     0 OBJECT  GLOBAL DEFAULT    2 __efi_runtime_stop
  9047: 0000000000000d38     0 NOTYPE  GLOBAL DEFAULT    2 __efi_runtime_stop
__efi_runtime_rel_start
  7172: 00000000000dc2f0     0 OBJECT  GLOBAL DEFAULT   10 __efi_runtime_rel_start
  7169: 00000000000dc2f0     0 NOTYPE  GLOBAL DEFAULT   10 __efi_runtime_rel_start
__efi_runtime_rel_stop
  7954: 00000000000dc4a0     0 OBJECT  GLOBAL DEFAULT   10 __efi_runtime_rel_stop
  7951: 00000000000dc4a0     0 NOTYPE  GLOBAL DEFAULT   10 __efi_runtime_rel_stop
__rel_dyn_start
  7030: 00000000000dc4a0     0 OBJECT  GLOBAL DEFAULT   11 __rel_dyn_start
  7027: 00000000000dc4a0     0 NOTYPE  GLOBAL DEFAULT   11 __rel_dyn_start
__rel_dyn_end
  8959: 0000000000102b10     0 OBJECT  GLOBAL DEFAULT   12 __rel_dyn_end
  8956: 0000000000102b10     0 NOTYPE  GLOBAL DEFAULT   11 __rel_dyn_end
image_copy_start
  9051: 0000000000000000     0 OBJECT  GLOBAL DEFAULT    1 __image_copy_start
  9048: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT    1 __image_copy_start
image_copy_end
  7467: 00000000000dc4a0     0 OBJECT  GLOBAL DEFAULT   11 __image_copy_end
  7464: 00000000000dc4a0     0 NOTYPE  GLOBAL DEFAULT   11 __image_copy_end
bss_start
    12: 0000000000102b10     0 SECTION LOCAL  DEFAULT   12 .bss_start
  8087: 0000000000000018     0 NOTYPE  GLOBAL DEFAULT    1 _bss_start_ofs
  8375: 0000000000102b10     0 OBJECT  GLOBAL DEFAULT   12 __bss_start
  8084: 0000000000000018     0 NOTYPE  GLOBAL DEFAULT    1 _bss_start_ofs
  8372: 0000000000102b10     0 NOTYPE  GLOBAL DEFAULT   12 __bss_start
bss_end
    14: 000000000010bc30     0 SECTION LOCAL  DEFAULT   14 .bss_end
  7683: 000000000010bc30     0 OBJECT  GLOBAL DEFAULT   14 __bss_end
  8479: 0000000000000020     0 NOTYPE  GLOBAL DEFAULT    1 _bss_end_ofs
  7680: 000000000010bbb0     0 NOTYPE  GLOBAL DEFAULT   12 __bss_end
  8476: 0000000000000020     0 NOTYPE  GLOBAL DEFAULT    1 _bss_end_ofs

# For QEMU v7:
efi_runtime_start
 10703: 000003bc     0 OBJECT  GLOBAL DEFAULT    2 __efi_runtime_start
 10699: 000003c0     0 NOTYPE  GLOBAL DEFAULT    2 __efi_runtime_start
efi_runtime_stop
 11796: 000012ec     0 OBJECT  GLOBAL DEFAULT    2 __efi_runtime_stop
 11792: 000012ec     0 NOTYPE  GLOBAL DEFAULT    2 __efi_runtime_stop
__efi_runtime_rel_start
  9937: 000c40dc     0 OBJECT  GLOBAL DEFAULT    8 __efi_runtime_rel_start
  9935: 000c40dc     0 NOTYPE  GLOBAL DEFAULT    9 __efi_runtime_rel_start
__efi_runtime_rel_stop
 10712: 000c41dc     0 OBJECT  GLOBAL DEFAULT   10 __efi_runtime_rel_stop
 10708: 000c41dc     0 NOTYPE  GLOBAL DEFAULT    9 __efi_runtime_rel_stop
__rel_dyn_start
  9791: 000c41dc     0 OBJECT  GLOBAL DEFAULT   10 __rel_dyn_start
  9789: 000c41dc     0 NOTYPE  GLOBAL DEFAULT   10 __rel_dyn_start
__rel_dyn_end
 11708: 000da5f4     0 OBJECT  GLOBAL DEFAULT   10 __rel_dyn_end
 11704: 000da5f4     0 NOTYPE  GLOBAL DEFAULT   10 __rel_dyn_end
image_copy_start
   448: 0000177c     0 NOTYPE  LOCAL  DEFAULT    3 _image_copy_start_ofs
 11797: 00000000     0 OBJECT  GLOBAL DEFAULT    1 __image_copy_start
   445: 0000177c     0 NOTYPE  LOCAL  DEFAULT    3 _image_copy_start_ofs
 11793: 00000000     0 NOTYPE  GLOBAL DEFAULT    1 __image_copy_start
image_copy_end
   450: 00001780     0 NOTYPE  LOCAL  DEFAULT    3 _image_copy_end_ofs
 10225: 000c41dc     0 OBJECT  GLOBAL DEFAULT   10 __image_copy_end
   447: 00001780     0 NOTYPE  LOCAL  DEFAULT    3 _image_copy_end_ofs
 10222: 000c41dc     0 NOTYPE  GLOBAL DEFAULT   10 __image_copy_end
bss_start
    11: 000c41dc     0 SECTION LOCAL  DEFAULT   11 .bss_start
 11124: 000c41dc     0 OBJECT  GLOBAL DEFAULT   11 __bss_start
 11120: 000c41dc     0 NOTYPE  GLOBAL DEFAULT   11 __bss_start
bss_end
    13: 000cbbf8     0 SECTION LOCAL  DEFAULT   13 .bss_end
 10442: 000cbbf8     0 OBJECT  GLOBAL DEFAULT   13 __bss_end
 10439: 000cbbf8     0 NOTYPE  GLOBAL DEFAULT   11 __bss_end

It's worth noting that since the efi regions are affected by the change, booting
with EFI is preferable while testing. Booting the kernel only should be enough
since the efi stub and the kernel proper do request boottime and runtime
services respectively.
Something along the lines of
> virtio scan && load virtio 0 $kernel_addr_r Image && bootefi $kernel_addr_r
will work for QEMU aarch64.

Tested platforms:
- QEMU aarch64
- Xilinx kv260 kria starter kit & zynq
- QEMU armv7
- STM32MP157C-DK2

[0] commit 3ebd1cbc49 ("arm: make __bss_start and __bss_end__ compiler-generated")
[1] binutils commit 6b3b0ab89663 ("Make linker assigned symbol dynamic only for shared object")
2024-03-29 10:39:38 -04:00
..
acpi acpi: remove duplicate declaration of acpi_fill_header() 2024-03-27 09:22:07 +01:00
asm-generic arm: fix __efi_runtime_start/end definitions 2024-03-29 10:39:25 -04:00
broadcom
cavium
clk
configs First set of u-boot-at91 features for the 2024.07 cycle 2024-03-25 08:19:04 -04:00
cramfs
crypto common: Drop linux/printk.h from common header 2023-09-24 09:54:57 -04:00
dm headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
dt-bindings Merge tag 'u-boot-socfpga-next-20240319' of https://source.denx.de/u-boot/custodians/u-boot-socfpga into next 2024-03-19 09:10:30 -04:00
env include: env: Add phytec RAUC boot logic 2024-03-17 18:39:21 -03:00
faraday include: Remove unused header files 2023-05-31 12:31:47 -04:00
firmware/imx/sci imx: scu_api: add implementation of sc_pm_reset_reason 2024-02-08 09:17:46 -03:00
fsl-mc include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
jffs2
k210 clk_k210.c: Clean up how we handle nop 2023-11-07 14:49:40 -05:00
keys
linux firmware: psci: Fix bind_smccc_features psci check 2024-03-13 12:40:43 -04:00
lzma
meson drivers: introduce Meson Secure Monitor driver 2023-10-15 12:23:48 +02:00
mtd mtd: Rename SPL_MTD_SUPPORT to SPL_MTD 2023-11-16 12:43:48 -05:00
mvebu
net Prepare v2024.01-rc6 2024-01-03 09:22:47 -05:00
power power: rk8xx: add support for RK806 2024-03-14 18:19:44 +08:00
reboot-mode
renesas pinctrl: renesas: Add RZ/G2L PFC driver 2023-10-16 15:46:18 +02:00
samsung video: Drop CONFIG_LCD_MENU 2022-10-30 20:07:16 +01:00
spmi
tee treewide: Drop image_header_t typedef 2022-09-29 16:07:57 -04:00
test test: Add framework to test hush behavior 2023-12-28 12:02:56 -05:00
u-boot global: Restrict use of '#include <linux/kconfig.h>' 2023-12-21 08:54:05 -05:00
usb usb: xhci: Better error handling in abort_td() 2023-12-01 14:06:04 +01:00
valgrind valgrind: Rework test for unsupported platforms 2022-12-23 10:07:03 -05:00
xen
zfs
_exports.h
abuf.h abuf: Allow incrementing the size 2023-08-25 13:54:33 -04:00
ACEX1K.h
adc.h
addr_map.h
ahci.h scsi: Forceably finish migration to DM_SCSI 2023-11-07 18:36:06 -05:00
altera.h
android_ab.h android_ab: Add option to skip decrementing tries 2023-07-17 15:39:55 -04:00
android_bootloader_message.h
android_image.h android: boot: support bootconfig 2023-04-04 14:50:47 -04:00
ansi.h
api_public.h
api.h
arm_ffa_priv.h arm_ffa: introduce Arm FF-A support 2023-08-08 10:22:03 -04:00
arm_ffa.h arm_ffa: introduce Arm FF-A support 2023-08-08 10:22:03 -04:00
armcoremodule.h
asm-offsets.h
ata.h
atf_common.h
atmel_hlcdc.h
atmel_lcd.h include: Further cleanup includes 2023-12-21 08:54:37 -05:00
atmel_lcdc.h
atmel_mci.h
atsha204a-i2c.h
audio_codec.h
autoboot.h
avb_verify.h common: avb_verify: add str_avb_io_error/str_avb_slot_error 2024-02-15 10:38:34 +01:00
axi.h
axp_pmic.h power: regulator: add AXP313 support 2023-11-12 16:47:16 +00:00
axp152.h
axp209.h gpio: axp/sunxi: Remove virtual VBUS detection GPIO 2023-04-28 01:30:24 +01:00
axp221.h gpio: axp/sunxi: Remove virtual VBUS detection GPIO 2023-04-28 01:30:24 +01:00
axp305.h
axp809.h gpio: axp/sunxi: Remove virtual VBUS detection GPIO 2023-04-28 01:30:24 +01:00
axp818.h gpio: axp/sunxi: Remove virtual VBUS detection GPIO 2023-04-28 01:30:24 +01:00
backlight.h
bcb.h cmd: bcb: extend BCB C API to allow read/write the fields 2023-11-16 18:59:58 -05:00
bcd.h
binman_sym.h binman: Use unsigned long over typedef ulong 2023-04-28 11:30:17 -06:00
binman.h
bios_emul.h
bitfield.h
blk.h rockchip: block: blk-uclass: add bounce buffer flag to blk_desc 2023-10-24 15:55:17 +08:00
blkmap.h blk: blkmap: add ramdisk creation utility function 2023-11-18 10:08:08 +02:00
bloblist.h bloblist: Load the bloblist from the previous loader 2024-02-29 09:24:22 -05:00
bmp_layout.h
boot_fit.h
bootcount.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
bootdev.h Merge patch series "bootm: Refactoring to reduce reliance on CMDLINE (part A)" 2023-12-13 11:51:53 -05:00
bootflow.h bootstd: support scanning a single partition 2024-03-04 10:25:47 -05:00
bootm.h bootm: Create a new boot_run() function to handle booting 2023-12-21 16:07:52 -05:00
bootmeth.h bootstd: Support bootmeths which can scan any partition 2023-08-25 17:55:19 -04:00
bootretry.h
bootstage.h global: Restrict use of '#include <linux/kconfig.h>' 2023-12-21 08:54:05 -05:00
bootstd.h bootstd: Introduce programmatic boot 2023-12-13 11:51:24 -05:00
bouncebuf.h
btrfs.h
bus_vcxk.h
button.h boot: add support for button commands 2024-02-13 15:38:49 -05:00
bzlib.h
cache.h include: Add <linux/types.h> in a few places 2023-10-24 16:34:45 -04:00
capitalization.h
cbfs.h binman: Rename TYPE_STAGE to TYPE_LEGACY_STAGE 2023-11-02 22:38:01 -04:00
cedit.h expo: cedit: Support reading settings from CMOS RAM 2023-08-25 13:54:33 -04:00
charset.h lib/charset: Map Unicode code points to CP437 code points 1-31 2024-03-21 06:56:13 +01:00
circbuf.h
cli_hush.h cli: Enables using modern hush parser as command line parser 2023-12-28 12:02:56 -05:00
cli.h cli: Add a function to set up a new cread 2023-10-11 15:43:54 -04:00
clk-uclass.h clk: Document clk_ops return codes and behavior 2024-01-29 22:35:02 -05:00
clk.h treewide: Remove clk_free 2024-01-29 22:35:02 -05:00
clock_legacy.h
cmd_spl.h
command.h cmd/command.c: constify "arg" argument of cmd_get_data_size() 2024-01-16 17:05:29 -05:00
common_timing_params.h
common.h common: Drop linux/printk.h from common header 2023-09-24 09:54:57 -04:00
compiler.h
config_distro_bootcmd.h config_distro_bootcmd: remove booting environment variables from SPL environment 2023-05-10 16:45:42 -04:00
config_fallbacks.h global: Move remaining CONFIG_SYS_* to CFG_SYS_* 2022-12-05 16:06:08 -05:00
config_fsl_chain_trust.h
config_phylib_all_drivers.h
console.h common: console: introduce console_record_isempty helper 2024-01-09 14:58:33 +01:00
cortina.h
cp437.h lib/charset: Map Unicode code points to CP437 code points 1-31 2024-03-21 06:56:13 +01:00
cp1250.h lib/charset: Map Unicode code points to CP437 code points 1-31 2024-03-21 06:56:13 +01:00
cpsw.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
cpu_func.h
cpu.h include: Add <linux/types.h> in a few places 2023-10-24 16:34:45 -04:00
cros_ec_message.h
cros_ec.h
crypt.h
ctype.h
cyclic.h cyclic: get rid of cyclic_init() 2022-11-02 08:42:03 +01:00
ddr_spd.h
debug_uart.h
dfu.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
dialog_pmic.h
display_options.h display_options.h: Correct includes 2023-11-07 14:50:51 -05:00
display.h
div64.h
dm-demo.h
dm.h
dma-uclass.h dma: Transfer dma_ops should use DMA address types 2022-10-18 13:40:40 -04:00
dma.h
dsi_host.h
dt_table.h
dt-structs.h
dw_hdmi.h
dwc_ahsata.h
dwc3-omap-uboot.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
dwc3-sti-glue.h
dwc3-uboot.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
dwmmc.h
e500.h global: Move remaining CONFIG_SYS_NUM_* to CFG_SYS_NUM_* 2022-12-05 16:06:07 -05:00
ec_commands.h
edid.h
eeprom_field.h
eeprom_layout.h
eeprom.h
efi_api.h efi: Use the correct GUID for the SMBIOS table 2024-01-07 13:45:07 -07:00
efi_config.h Move bootorder and bootoption apis to lib 2023-07-15 11:20:41 +02:00
efi_default_filename.h
efi_driver.h efi_driver: add init function to EFI block driver 2022-10-06 22:54:58 +02:00
efi_dt_fixup.h
efi_load_initrd.h
efi_loader.h efi_loader: export efi_get_configuration_table 2024-01-29 11:31:06 +01:00
efi_riscv.h
efi_rng.h
efi_selftest.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
efi_tcg2.h tpm: Support boot measurements 2023-10-27 13:14:47 +03:00
efi_variable.h efi_loader: fix efi_get_next_variable_name_mem() 2022-12-20 16:06:48 +01:00
efi.h efi: Split out table-listing code into a new file 2023-03-25 11:07:22 +01:00
elf.h elf: add Elf64_Sym 2023-02-06 13:04:52 -05:00
env_attr.h
env_callback.h bootstd: Use the bootargs env var for changing the cmdline 2023-07-16 23:13:17 +08:00
env_default.h serial: zynqmp: Fetch baudrate from dtb and update 2023-11-07 13:47:08 +01:00
env_flags.h net: ipv6: IPv6 environment variable cleanup 2023-05-05 13:41:55 -04:00
env_internal.h global: Restrict use of '#include <linux/kconfig.h>' 2023-12-21 08:54:05 -05:00
env.h env: allow to copy value from default environment into a buffer 2024-01-19 10:57:36 +08:00
erofs.h
errno.h
eth_phy.h
ethsw.h
event_internal.h
event.h event: add new EVT_SETTINGS_R event 2023-10-23 17:07:06 +03:00
exception.h
expo.h expo: Add basic support for textline objects 2023-10-11 15:43:55 -04:00
exports.h
ext_common.h fs: ext4: Add some defines for testing 2023-10-17 20:50:52 -04:00
ext4fs.h fs: ext4: Remove unused parameter from ext4_mount 2023-11-16 18:53:09 -05:00
extcon.h dm: extcon: add an uclass for extcon 2023-05-02 14:23:34 -04:00
extension_board.h
extlinux.h bootstd: Rename distro and syslinux to extlinux 2023-05-13 09:52:32 -04:00
fastboot-internal.h fastboot: implement "getvar all" 2024-01-09 14:58:33 +01:00
fastboot.h fastboot: add oem console command support 2024-01-09 14:58:33 +01:00
fat.h fs: fat: calculate FAT type based on cluster count 2023-11-28 20:10:24 -05:00
fb_mmc.h
fb_nand.h
fdt_region.h
fdt_simplefb.h common: static fdt_simplefb_enable_existing_node() 2023-04-28 11:30:17 -06:00
fdt_support.h boot: Move adding initrd earlier in image_setup_libfdt() 2023-12-13 18:39:05 -05:00
fdt.h
fdtdec.h fdt: Allow the devicetree to come from a bloblist 2024-01-07 13:45:07 -07:00
fis.h
flash.h mtd: cfi: respect reg address length 2023-05-15 10:00:30 +02:00
fm_eth.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fpga.h fpga: define dummy fpga_load function for debug build 2023-09-21 13:20:11 +02:00
fs_internal.h
fs_loader.h misc: fs_loader: Add function to get the chosen loader 2023-01-12 14:06:15 -05:00
fs.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_csu.h arm: fsl: csu: Reduce size of ns_dev 2022-10-18 09:32:53 +08:00
fsl_ddr_dimm_params.h
fsl_ddr_sdram.h global: Finish CONFIG -> CFG migration 2023-01-20 12:27:24 -05:00
fsl_ddr.h global: Remove unused CONFIG defines 2023-01-20 12:27:06 -05:00
fsl_ddrc_version.h
fsl_devdis.h
fsl_dspi.h
fsl_dtsec.h
fsl_errata.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_esdhc_imx.h
fsl_esdhc.h
fsl_fman.h
fsl_ifc.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_immap.h
fsl_lpuart.h
fsl_mdio.h
fsl_memac.h
fsl_mmdc.h
fsl_pmic.h
fsl_qbman.h
fsl_qe.h fsl_qe: Drop common.h 2023-11-07 14:50:51 -05:00
fsl_sec_mon.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_sec.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_secboot_err.h
fsl_sfp.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
fsl_tgec.h
fsl_usb.h global: Finish CONFIG -> CFG migration 2023-01-20 12:27:24 -05:00
fsl_validate.h global: Use proper project name U-Boot 2023-06-12 13:24:31 +02:00
fsl_wdog.h
fuse.h
fuzzing_engine.h
fwu_mdata.h fwu_metadata: make sure structures are packed 2023-06-19 14:34:16 -04:00
fwu.h fwu: fix fwu_get_image_index interface 2024-01-13 18:17:47 +01:00
g_dnl.h
gdsys_fpga.h
generic-phy.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
getopt.h include: Further cleanup includes 2023-12-21 08:54:37 -05:00
gsc.h
gt64120.h
gzip.h
handoff.h
hang.h
hash.h
hda_codec.h
hexdump.h
host_arch.h
hw_sha.h
hwconfig.h
hwspinlock.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
i2c_eeprom.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
i2c.h i2c: Implement i2c_get_chip_by_phandle() 2023-10-31 09:08:51 +01:00
i2s.h
i8042.h
ide.h ide: Make function static 2023-04-27 13:51:06 -04:00
image-android-dt.h
image-sparse.h lib: sparse: allocate FASTBOOT_MAX_BLK_WRITE instead of small number 2023-07-25 12:44:46 -04:00
image.h tools: fix build without LIBCRYPTO support 2024-01-11 22:09:11 -05:00
imx_container.h arm: imx: Check header before calling spl_load_imx_container 2023-10-17 20:50:52 -04:00
imx_lpi2c.h
imx_sip.h imx: bootaux: change names of MACROs used to boot MCU on iMX devices 2023-07-13 11:29:40 +02:00
imx_thermal.h
imx8image.h
imximage.h tools: mkimage: Add support for i.MXRT FlexSPI Header 2024-02-08 09:01:22 -03:00
init.h arm: init: export prev_bl_fdt_addr 2024-03-01 14:44:35 +00:00
initcall.h initcall: Remove unused NEEDS_MANUAL_RELOC code bits 2023-09-14 10:42:24 -04:00
input.h
interrupt.h riscv: allow resume after exception 2023-11-02 16:22:06 +08:00
inttypes.h
iommu.h iommu: add a connect op 2023-12-21 11:59:49 -05:00
iomux.h
ioports.h
iotrace.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
ipu_pixfmt.h
irq_func.h
irq.h irq: Fix typo in header comment 2023-08-19 04:12:53 +02:00
k3-avs.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
k3-clk.h arm: mach-k3: am62px: introduce clock and device files for wkup spl 2024-03-13 10:10:04 -04:00
k3-ddrss.h
k3-dev.h arm: mach-k3: am62px: introduce clock and device files for wkup spl 2024-03-13 10:10:04 -04:00
key_matrix.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
keyboard.h
kgdb.h
lattice.h
led.h led: introduce led_bind_generic() 2023-12-13 11:35:13 -05:00
libata.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
libtizen.h video: samsung: Drop old LCD code 2022-10-30 20:07:17 +01:00
linker_lists.h linker_lists: Rework start/end macros to not rely on undefined behavior 2023-04-04 12:24:29 -04:00
lmb.h lmb: description lmb_is_reserved, lmb_is_reserved_flags 2023-08-15 18:21:17 +02:00
log.h log: fixup log_head after relocating global data 2024-03-02 12:26:56 -05:00
mailbox-uclass.h
mailbox.h
malloc.h test: Support testing malloc() failures 2022-09-29 16:07:58 -04:00
mapmem.h acpi: Write pointers to tables instead of addresses 2024-01-07 13:45:07 -07:00
marvell_phy.h net: phy: marvell: Import and use marvell_phy.h from Linux 2023-04-07 14:21:37 +02:00
mc13892.h
media_bus_format.h
memalign.h include: Further cleanup includes 2023-12-21 08:54:37 -05:00
membuff.h lib: membuff: fix readline not returning line in case of overflow 2024-01-09 14:58:33 +01:00
menu.h expo: Support handling any key in cedit 2023-10-11 15:43:55 -04:00
micrel.h
miiphy.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
mipi_display.h
mipi_dsi.h
misc.h
mm_communication.h arm_ffa: efi: introduce FF-A MM communication 2023-08-08 10:22:03 -04:00
mmc.h mmc: Introduce mmc_send_stop_transmission() 2023-07-18 09:17:16 +09:00
mpc8xx_irq.h
mpc8xx.h
mpc83xx.h powerpc: mpc83xx: Rework includes slightly 2023-11-07 14:50:51 -05:00
mpc85xx.h global: Move remaining CONFIG_SYS_* to CFG_SYS_* 2022-12-05 16:06:08 -05:00
msc01.h
mtd_node.h
mtd.h
mux-internal.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
mux.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
mv88e6352.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
mvebu_mmc.h global: Move remaining CONFIG_SYS_* to CFG_SYS_* 2022-12-05 16:06:08 -05:00
mxs_nand.h mtd: mxs_nand: Support EDO mode for imx8mn architecture 2022-10-09 10:42:26 +02:00
nand.h nand: Allow reinitialization 2023-11-16 12:43:49 -05:00
ndisc.h net: ipv6: Add support for default gateway discovery. 2023-05-05 17:58:52 -04:00
net.h cmd: efidebug: add uri device path 2023-11-18 10:08:09 +02:00
net6.h include: Further cleanup includes 2023-12-21 08:54:37 -05:00
netdev.h armada: usb: net: Drop unused USB drivers 2023-02-07 14:33:50 -05:00
ns16550.h pci: serial: Support reading PCI-register size with base 2023-10-06 14:38:13 -04:00
nuvoton_nct6102d.h
nvme.h
nvmem.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
nvmxip.h drivers/mtd/nvmxip: Trigger post bind as probe on driver level 2023-08-30 17:56:21 -04:00
of_live.h dm: core: Add a way to convert a devicetree to a dtb 2023-10-06 14:38:13 -04:00
omap3_spi.h drivers: spi: omap3_spi: Initialize mode for all channels 2023-06-20 16:08:13 -04:00
onenand_uboot.h
opensbi.h
os.h arch: sandbox: Add function to create temporary files 2023-11-16 12:43:49 -05:00
p2sb.h
palmas.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
panel.h
part_efi.h uuid: Add ChromiumOS partition types 2023-08-25 17:55:19 -04:00
part.h part: correct documentation of part_get_bootable() 2024-01-21 11:24:24 +01:00
pca953x.h
pch.h
pci_ep.h
pci_gt64120.h
pci_ids.h e1000: add support for i225-IT 2024-03-26 19:58:26 -04:00
pci_msc01.h
pci_rom.h
pci_tegra.h
pci.h drivers: pci: Fix dm_pci_map_bar() to support 64b BARs 2024-01-18 20:24:13 -05:00
pe.h
phy_interface.h net: phy: Synchronize PHY interface modes with Linux 2023-04-07 14:20:53 +02:00
phy-mipi-dphy.h
phy-sun4i-usb.h
phy.h net: phy: Factor out PHY GPIO reset code 2024-03-26 19:58:26 -04:00
phys2bus.h
physmem.h
post.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
power-domain-uclass.h
power-domain.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
ppc_asm.tmpl
ppc_defs.h
pvblock.h
pwm.h
pwrseq.h
pxe_utils.h net: dhcp6: pxe: Add DHCP/PXE commands for IPv6 2023-05-05 17:48:44 -04:00
qfw.h qemu: Move qfw kernel setup into a common file 2023-02-06 13:04:53 -05:00
ram.h
rand.h
rc4.h rc4: mark key as const 2023-01-16 18:01:10 +08:00
regmap.h core: remap: fix regmap_init_mem_plat() reg size handeling 2023-05-06 17:28:18 +08:00
relocate.h image: Remove unused NEEDS_MANUAL_RELOC code bits 2023-09-14 10:42:24 -04:00
remoteproc.h remoteproc: uclass: Add methods to load firmware to rproc and boot rproc 2024-03-22 15:50:28 -04:00
reset-uclass.h
reset.h reset: Allow reset_get_by_name() with NULL name 2023-02-12 13:44:20 -05:00
rkmtd.h rockchip: block: add rkmtd class and drivers 2023-10-24 15:55:17 +08:00
rng.h rng: eliminate common.h include from RNG drivers 2024-03-02 12:26:19 -05:00
rtc_def.h
rtc.h include: Further cleanup includes 2023-12-21 08:54:37 -05:00
s_record.h
samsung-usb-phy-uboot.h
sandbox_efi_capsule.h test: capsule: Generate EFI capsules through binman 2023-08-29 13:37:54 -04:00
sandbox_host.h blk: sandbox: Support binding a device with a given logical block size 2023-10-10 16:19:43 -04:00
sandbox-adc.h
sandbox-clk.h
sandbox-sm.h sandbox: add sandbox sm uclass driver 2023-10-15 12:23:48 +02:00
sandboxfs.h
sandboxtee.h
sata.h scsi: Forceably finish migration to DM_SCSI 2023-11-07 18:36:06 -05:00
scmi_agent-uclass.h power: domain: add SCMI driver 2023-10-24 17:05:24 -04:00
scmi_agent.h firmware: scmi: framework for installing additional protocols 2023-10-13 16:59:23 -04:00
scmi_protocols.h firmware: scmi: add power domain protocol support 2023-10-24 17:05:24 -04:00
scp03.h
scsi_emul.h usb: Update the test to cover reading and writing 2022-10-31 11:02:44 -04:00
scsi.h scsi: Forceably finish migration to DM_SCSI 2023-11-07 18:36:06 -05:00
sdhci.h mmc: sdhci: Rework SDHCI_QUIRK_BROKEN_R1B 2023-11-01 10:01:10 +09:00
sdp.h sdp: Use plain udevice for UDC controller interaction 2023-09-15 23:38:02 +02:00
search.h
semihosting.h lib: Add common semihosting library 2022-12-08 15:15:22 +08:00
semihostingfs.h
serial.h serial: zynqmp: Fetch baudrate from dtb and update 2023-11-07 13:47:08 +01:00
sh_pfc.h
signatures.h
sl28cpld.h
slre.h
sm-uclass.h drivers: introduce Secure Monitor uclass 2023-10-15 12:23:48 +02:00
sm.h drivers: introduce Secure Monitor uclass 2023-10-15 12:23:48 +02:00
smbios.h smbios: fill wake-up type 2024-03-27 09:23:30 +01:00
smem.h
smsc_lpc47m.h
smsc_sio1007.h
soc.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
sort.h
sound.h
sparse_defs.h
sparse_format.h
spartan2.h
spartan3.h
spd_sdram.h
spd.h
spi_flash.h
spi-mem.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
spi.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
spl_gpio.h
spl_load.h spl: Convert spi to spl_load 2023-11-16 13:49:14 -05:00
spl.h spl: Enforce framebuffer reservation from end of RAM 2024-01-29 14:49:17 -05:00
splash.h common: Replace #ifdef and #if with if's 2023-04-24 21:37:45 +02:00
squashfs.h
status_led.h
stdint.h
stdio_dev.h stdio: fix stdio_deregister_dev() 2023-10-09 15:24:31 -04:00
stdio.h
stdlib.h
stm32_rcc.h
stratixII.h
string.h
sunxi_gpio.h sunxi: introduce NCAT2 generation model 2023-10-22 23:41:46 +01:00
sunxi_image.h
sy8106a.h
syscon.h core: remap: fix regmap_init_mem_plat() reg size handeling 2023-05-06 17:28:18 +08:00
sysinfo.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
sysreset.h
system-constants.h global: Rework architecture global_data.h to include <linux/types.h> 2023-12-21 08:54:37 -05:00
tables_csum.h lib: make table_compute_checksum() arguments const 2024-01-09 10:08:52 +01:00
tca642x.h global: Move remaining CONFIG_SYS_* to CFG_SYS_* 2022-12-05 16:06:08 -05:00
tee.h Correct SPL use of TEE 2023-02-10 07:41:40 -05:00
tegra-kbc.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
thermal.h
thor.h thordown: Use plain udevice for UDC controller interaction 2023-09-15 23:38:02 +02:00
ti-usb-phy-uboot.h tree-wide: Replace http:// link with https:// link for ti.com 2023-11-10 11:01:50 -05:00
time.h
timer.h timer: document the unit of the timer rate 2023-09-09 06:12:47 +02:00
timestamp.h
tlv_eeprom.h headers: don't depend on errno.h being available 2024-01-24 11:12:11 -05:00
tmu.h
tpm_api.h tpm: add a function that performs selftest + startup 2023-02-28 09:44:19 +02:00
tpm-common.h tpm: Implement tpm_auto_start() for TPMv1.2 2023-02-28 09:44:33 +02:00
tpm-v1.h tpm: Implement tpm_auto_start() for TPMv1.2 2023-02-28 09:44:33 +02:00
tpm-v2.h tpm: Support boot measurements 2023-10-27 13:14:47 +03:00
tps6586x.h
trace.h trace: Reduce the number of function sites 2023-02-11 12:22:35 -05:00
tsec.h net: tsec: Remove non-DM_ETH support code 2022-12-07 16:04:16 -05:00
tsi148.h
twl4030.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
twl6030.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
ubi_uboot.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
ubifs_uboot.h ubifs: allow loading to above 4GiB 2023-06-06 10:37:25 +02:00
ubispl.h
uboot_aes.h
ufs.h
universe.h
usb_cdc_acm.h
usb_defs.h
usb_ether.h usb: eth: Remove non-DM_ETH code 2022-12-07 16:04:17 -05:00
usb_mass_storage.h cmd: ums: Use plain udevice for UDC controller interaction 2023-09-15 23:38:02 +02:00
usb.h usb: Return -ENOENT when no devices are found 2023-08-09 23:31:11 +08:00
usbdescriptors.h usb: Remove CONFIG_USBD_HS 2022-12-22 10:31:49 -05:00
usbdevice.h include: Drop <common.h> from include lists 2023-11-07 14:50:52 -05:00
usbroothubdes.h
uuid.h uuid: Move function comments to header file 2023-08-25 17:55:18 -04:00
vbe.h vbe: Record which phases loaded using VBE 2022-10-31 11:04:00 -04:00
versalpl.h arm64: zynqmp: Switch to amd.com emails 2023-07-21 09:00:38 +02:00
version_string.h acpi: Put the version numbers in a central place 2023-05-31 17:23:01 -04:00
version.h
vesa.h efi: Support a 64-bit frame buffer address 2023-03-13 13:53:01 +01:00
video_bridge.h
video_console.h video: console: Parse UTF-8 character sequences 2024-03-21 06:56:13 +01:00
video_font_4x6.h video console: implement multiple fonts configuration 2023-03-07 15:57:19 +01:00
video_font_8x16.h video console: implement multiple fonts configuration 2023-03-07 15:57:19 +01:00
video_font_data.h video console: implement multiple fonts configuration 2023-03-07 15:57:19 +01:00
video_font_sun12x22.h video console: add 12x22 Sun font from linux 2023-03-07 15:59:47 +01:00
video_font_ter16x32.h video console: add 16x32 Terminus font from linux 2023-03-07 15:59:58 +01:00
video_font.h video console: add 16x32 Terminus font from linux 2023-03-07 15:59:58 +01:00
video_osd.h
video.h efi: Correct handling of frame buffer 2023-11-14 20:04:00 -07:00
virtex2.h
virtio_ring.h virtio: Allocate bounce buffers for devices with VIRTIO_F_IOMMU_PLATFORM 2023-04-25 11:53:15 -04:00
virtio_types.h
virtio.h
vsc7385.h
vsc9953.h
vsprintf.h lib: Add a function to split a string into substrings 2023-01-23 18:11:39 -05:00
vxworks.h
w1-eeprom.h
w1.h
wait_bit.h
watchdog.h
wdt.h
winbond_w83627.h
xen.h
xilinx.h
xyzModem.h
zfs_common.h
zynq_bootimg.h
zynqmp_firmware.h firmware: zynqmp: Add support to check feature 2023-09-21 13:20:10 +02:00
zynqmppl.h arm64: zynqmp: Switch to amd.com emails 2023-07-21 09:00:38 +02:00
zynqpl.h