u-boot/include
Sean Anderson c8ce7ba87d misc: Add support for nvmem cells
This adds support for "nvmem cells" as seen in Linux. The nvmem device
class in Linux is used for various assorted ROMs and EEPROMs. In this
sense, it is similar to UCLASS_MISC, but also includes
UCLASS_I2C_EEPROM, UCLASS_RTC, and UCLASS_MTD. New drivers corresponding
to a Linux-style nvmem device should be implemented as one of the
previously-mentioned uclasses. The nvmem API acts as a compatibility
layer to adapt the (slightly different) APIs of these uclasses. It also
handles the lookup of nvmem cells.

While nvmem devices can be accessed directly, they are most often used
by reading/writing contiguous values called "cells". Cells typically
hold information like calibration, versions, or configuration (such as
mac addresses).

nvmem devices can specify "cells" in their device tree:

	qfprom: eeprom@700000 {
		#address-cells = <1>;
		#size-cells = <1>;
		reg = <0x00700000 0x100000>;

		/* ... */

		tsens_calibration: calib@404 {
			reg = <0x404 0x10>;
		};
	};

which can then be referenced like:

	tsens {
		/* ... */
		nvmem-cells = <&tsens_calibration>;
		nvmem-cell-names = "calibration";
	};

The tsens driver could then read the calibration value like:

	struct nvmem_cell cal_cell;
	u8 cal[16];
	nvmem_cell_get_by_name(dev, "calibration", &cal_cell);
	nvmem_cell_read(&cal_cell, cal, sizeof(cal));

Because nvmem devices are not all of the same uclass, supported uclasses
must register a nvmem_interface struct. This allows CONFIG_NVMEM to be
enabled without depending on specific uclasses. At the moment,
nvmem_interface is very bare-bones, and assumes that no initialization
is necessary. However, this could be amended in the future.

Although I2C_EEPROM and MISC are quite similar (and could likely be
unified), they present different read/write function signatures. To
abstract over this, NVMEM uses the same read/write signature as Linux.
In particular, short read/writes are not allowed, which is allowed by
MISC.

The functionality implemented by nvmem cells is very similar to that
provided by i2c_eeprom_partition. "fixed-partition"s for eeproms does
not seem to have made its way into Linux or into any device tree other
than sandbox. It is possible that with the introduction of this API it
would be possible to remove it.

Signed-off-by: Sean Anderson <sean.anderson@seco.com>
2022-06-08 14:00:22 -04:00
..
acpi acpi: Move acpi_write_tables() to a generic header 2022-02-11 11:29:23 -05:00
andestech
asm-generic common/board_r.c: drop legacy and unused bi_enetaddr 2022-06-06 18:01:21 -04:00
broadcom
cavium
clk clk: sunxi: add and use dummy gate clocks 2022-05-24 01:16:15 +01:00
configs include/configs: Remove rootwait=1 to all the affected boards 2022-06-06 18:01:21 -04:00
cramfs
crypto dm: crypto: Define UCLASS API for ECDSA signature verification 2021-08-16 10:49:35 +02:00
dm arm: pxa: Remove CONFIG_CPU_PXA25X 2022-06-06 12:09:12 -04:00
dt-bindings dt-bindings: sunxi: Update clock/reset binding headers 2022-05-23 00:37:50 +01:00
environment include/configs: Remove rootwait=1 to all the affected boards 2022-06-06 18:01:21 -04:00
faraday Finish conversion of CONFIG_SYS_CLK_FREQ to Kconfig 2021-12-27 16:20:18 -05:00
fsl-mc drivers: net: fsl-mc: add a command which dumps the MC log 2021-11-09 17:18:06 +05:30
jffs2
k210 k210: use the board vendor name rather than the marketing name 2022-03-15 17:43:11 +08:00
keys
linux usb: xhci-dwc3: Support role switch default role 2022-05-20 09:41:33 +02:00
lzma
mtd mtd: cfi: change CONFIG_SYS_MAX_FLASH_BANKS_DETECT as boolean 2022-01-21 14:01:35 -05:00
mvebu phy: marvell: Remove unused function comphy_update_map() 2022-01-20 14:46:03 +01:00
net doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
power pmic: pca9450: Add regulator driver 2022-05-20 12:36:48 +02:00
reboot-mode doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
samsung
spmi doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
synopsys
tee lib: optee: Avoid CONFIG_TZDRAM_* in optee_verify_bootm_image() 2021-10-05 08:46:23 -04:00
test bootstd: Add tests for bootstd including all uclasses 2022-04-25 10:00:04 -04:00
u-boot crc16: Move standard CRC-16 implementation from ubifs to lib 2022-04-21 14:32:40 -04:00
usb doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
valgrind Add valgrind headers to U-Boot 2022-04-11 10:00:30 -04:00
xen
zfs
_exports.h net: phy: don't require PHY interface mode during PHY creation 2022-04-10 08:44:13 +03:00
.gitignore
abuf.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
ACEX1K.h
adc.h
addr_map.h
ahci.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
ali512x.h
altera.h
android_ab.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
android_bootloader_message.h
android_image.h
ansi.h
api_public.h
api.h
armcoremodule.h arm: integrator: Migrate platform-specific options and cleanup armcoremodule.h 2022-04-08 09:05:19 -04:00
asm-offsets.h
ata.h Convert CONFIG_SYS_IDE_MAXBUS et al to Kconfig 2022-02-09 09:16:47 -05:00
atf_common.h
atmel_hlcdc.h
atmel_lcd.h
atmel_lcdc.h
atmel_mci.h
atsha204a-i2c.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
audio_codec.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
autoboot.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
avb_verify.h
axi.h
axp_pmic.h include: axp_pmic: Include headers for all variants 2021-10-25 14:50:42 +01:00
axp152.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
axp209.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
axp221.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
axp305.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
axp809.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
axp818.h pmic: axp: define ALDO_IN startup bit 2022-01-30 01:25:00 +00:00
backlight.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bcb.h
bcd.h
binman_sym.h
binman.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bios_emul.h pci: Drop DM_PCI check from bios_emul 2021-08-05 19:46:35 -04:00
bitfield.h
blk.h dm: blk: Add a function to return the device type 2022-04-25 10:00:03 -04:00
bloblist.h bloblist: Update to use conditional value 2022-02-08 23:07:59 -05:00
bmp_layout.h
boot_fit.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bootcount.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bootdev.h bootstd: Add the bootdev uclass 2022-04-25 10:00:04 -04:00
bootflow.h bootstd: Add support for bootflows 2022-04-25 10:00:04 -04:00
bootm.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bootmeth.h bootstd: Add the bootmeth uclass and helpers 2022-04-25 10:00:04 -04:00
bootretry.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bootstage.h Introduce Verifying Program Loader (VPL) 2022-05-02 09:58:13 -04:00
bootstd.h bootstd: Add the bootstd uclass and core implementation 2022-04-25 10:00:04 -04:00
bouncebuf.h
btrfs.h
bus_vcxk.h
button.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
bzlib.h
cache.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
capitalization.h
cbfs.h cbfs: Add some more definititions 2022-04-06 14:01:42 -04:00
charset.h lib/charset: fix compile warnings 2022-05-28 10:59:27 +02:00
circbuf.h
cli_hush.h
cli.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
clk-uclass.h clk: Make rfree return void 2022-03-30 13:02:55 -04:00
clk.h clk: Make clk_free return void 2022-03-30 13:02:55 -04:00
clock_legacy.h Finish conversion of CONFIG_SYS_CLK_FREQ to Kconfig 2021-12-27 16:20:18 -05:00
cmd_spl.h
command.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
common_timing_params.h
common.h
compiler.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
config_distro_bootcmd.h fdt: Add -q option to fdt addr for distro_bootcmd 2022-04-22 15:44:10 -04:00
config_fallbacks.h Convert CONFIG_SPL_PAD_TO et al to Kconfig 2022-06-06 12:09:06 -04:00
config_fsl_chain_trust.h
config_phylib_all_drivers.h
config_uncmd_spl.h Finish converting CONFIG_BOOTM_NETBSD et al to Kconfig 2022-04-01 10:28:45 -04:00
console.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
cortina.h
cp437.h
cp1250.h
cpsw.h
cpu_func.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
cpu.h
cros_ec_message.h
cros_ec.h cros_ec: Complete the comment for cros_ec_read_batt_charge() 2022-04-06 14:01:42 -04:00
crypt.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
ctype.h
ddr_spd.h
debug_uart.h
dfu.h DFU: Check the number of arguments and argument string strictly 2022-02-11 11:29:23 -05:00
dialog_pmic.h
display_options.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
display.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
distro.h bootstd: Add an implementation of distro boot 2022-04-25 10:00:04 -04:00
div64.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
dm-demo.h
dm.h
dma-uclass.h
dma.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
dp83848.h
ds1722.h
dsi_host.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
dt_table.h
dt-structs.h dm: Add comments to dt-structs contents 2021-09-25 09:46:15 -06:00
dw_hdmi.h
dwc_ahsata.h
dwc3-omap-uboot.h
dwc3-sti-glue.h
dwc3-uboot.h
dwmmc.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
e500.h
ec_commands.h
edid.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
eeprom_field.h
eeprom_layout.h
eeprom.h Convert CONFIG_SYS_I2C_EEPROM_ADDR et al to Kconfig 2021-08-30 14:10:06 -04:00
efi_api.h efi_loader: add sha384/512 on certificate revocation 2022-05-07 23:17:26 +02:00
efi_default_filename.h efi_loader: bootmgr: add booting from removable media 2022-05-03 21:39:22 +02:00
efi_driver.h
efi_dt_fixup.h cmd: efidebug: simplify printing GUIDs 2022-01-19 16:16:33 +01:00
efi_load_initrd.h efi_loader: avoid multiple local copies of lf2_initrd_guid 2021-10-21 03:46:04 +02:00
efi_loader.h efi_loader: disk: add efi_disk_is_removable() 2022-05-28 10:59:27 +02:00
efi_riscv.h efi_loader: Enable RISCV_EFI_BOOT_PROTOCOL support 2022-01-29 10:23:40 +01:00
efi_rng.h cmd: efidebug: simplify printing GUIDs 2022-01-19 16:16:33 +01:00
efi_selftest.h efi: Use 16-bit unicode strings 2022-02-03 12:16:01 -05:00
efi_tcg2.h efi_loader: printing TCG2 protocol GUID 2022-01-19 16:16:33 +01:00
efi_variable.h efi_loader: function to get GUID for variable name 2021-10-25 21:13:06 +02:00
efi.h efi: Tidy up some comments in efi header 2022-01-15 10:57:22 +01:00
elf.h
env_attr.h
env_callback.h bootstd: Add the bootmeth uclass and helpers 2022-04-25 10:00:04 -04:00
env_default.h Convert CONFIG_BOOTFILE to Kconfig 2022-03-03 16:51:20 -05:00
env_flags.h
env_internal.h env: Implement lower priority arch_env_get_location() 2022-04-21 09:08:40 -04:00
env.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
erofs.h fs/erofs: add erofs filesystem support 2022-03-15 16:19:29 -04:00
errno.h errno: Avoid including strings in SPL 2022-04-06 14:01:42 -04:00
eth_phy.h
ethsw.h
event_internal.h event: Add basic support for events 2022-03-10 08:28:36 -05:00
event.h event: fix static events for CONFIG_NEEDS_MANUAL_RELOC 2022-06-06 18:01:20 -04:00
exception.h
exports.h net: phy: don't require PHY interface mode during PHY creation 2022-04-10 08:44:13 +03:00
ext_common.h
ext4fs.h
extension_board.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
exynos_lcd.h
fastboot-internal.h
fastboot.h
fat.h
fb_mmc.h
fb_nand.h
fdt_region.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
fdt_simplefb.h common: add fdt_simplefb_enable_and_mem_rsv function 2021-11-30 16:43:28 +01:00
fdt_support.h Merge https://source.denx.de/u-boot/custodians/u-boot-marvell 2022-01-20 12:40:20 -05:00
fdt.h
fdtdec.h fdtdec.h: Remove gurads around fdtdec_resetup function 2022-02-16 14:19:29 -05:00
fis.h
flash.h flash.h: Remove CONFIG_SYS_FLASH_CFI from flash_info_t 2021-08-11 10:36:10 +02:00
fm_eth.h treewide: Rename PHY_INTERFACE_MODE_NONE to PHY_INTERFACE_MODE_NA 2022-04-10 08:44:13 +03:00
fpga.h
fs_internal.h
fs_loader.h
fs.h fs: Add a function to set the filesystem type 2022-04-25 10:00:03 -04:00
fsl_csu.h
fsl_ddr_dimm_params.h
fsl_ddr_sdram.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
fsl_ddr.h
fsl_ddrc_version.h
fsl_devdis.h
fsl_dspi.h m68k: Remove M5475x boards 2021-07-07 19:52:22 -04:00
fsl_dtsec.h
fsl_errata.h
fsl_esdhc_imx.h mmc: fsl_esdhc_imx: use VENDORSPEC_FRC_SDCLK_ON when necessary 2022-03-16 16:40:56 +09:00
fsl_esdhc.h mmc: fsl_esdhc: Define macro ESDHCCTL_SNOOP for Snoop attribute 2022-04-26 17:18:39 +05:30
fsl_fman.h
fsl_ifc.h
fsl_immap.h
fsl_lpuart.h driver: serial: fsl_lpuart: support i.MX8ULP 2021-08-09 14:46:51 +02:00
fsl_mdio.h
fsl_memac.h net: fsl: Fix busy flag polling register 2022-01-15 18:53:16 +02:00
fsl_mmdc.h
fsl_pmic.h
fsl_qbman.h
fsl_qe.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
fsl_sec_mon.h
fsl_sec.h i.MX6SX: crypto/fsl: fix entropy delay value 2022-05-19 21:39:36 +02:00
fsl_secboot_err.h
fsl_sfp.h
fsl_tgec.h
fsl_usb.h
fsl_validate.h
fsl_wdog.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
fuse.h
g_dnl.h
gdsys_fpga.h
generic-phy.h generic-phy: s/CONFIG_PHY/CONFIG_IS_ENABLED(PHY)/ 2022-04-22 10:35:14 +02:00
getopt.h
gsc.h drivers: misc: add Gateworks System Controller driver 2022-04-12 15:36:17 +02:00
gt64120.h pci: gt64120: Use PCI_CONF1_ADDRESS() macro 2022-01-12 14:21:24 -05:00
gzip.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
handoff.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
hang.h
hash.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
hda_codec.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
hexdump.h hexdump: Allow ctrl-c to interrupt output 2021-06-08 11:39:09 -04:00
host_arch.h
hw_sha.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
hwconfig.h
hwspinlock.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
i2c_eeprom.h misc: i2c_eeprom: Add fallbacks 2022-06-08 13:59:53 -04:00
i2c.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
i2s.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
i8042.h i8042: Do not abuse CONFIG namespace 2021-08-30 14:13:28 -04:00
ide.h ide: Drop CONFIG_IDE_AHB 2022-02-09 09:16:47 -05:00
image-android-dt.h
image-sparse.h
image.h lib: rsa: Fix const-correctness of rsassa_pss functions 2022-04-11 11:39:19 -04:00
imx_lpi2c.h
imx_sip.h
imx_thermal.h
imx8image.h
imximage.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
init.h arm: init: save previous bootloader data 2022-04-04 14:53:26 -04:00
initcall.h
input.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
inttypes.h
iommu.h iommu: Add IOMMU uclass 2021-10-31 08:46:44 -04:00
iomux.h IOMUX: Fix access past end of console_devices 2022-04-19 14:52:34 -04:00
ioports.h
iotrace.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
ipu_pixfmt.h
irq_func.h
irq.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
k3-avs.h
k3-clk.h clk: clk-k3: Add support for J721S2 SoC 2022-02-08 09:41:27 -05:00
k3-ddrss.h ram: k3-ddrss: Introduce ECC Functionality for full memory space 2022-04-04 19:02:04 -04:00
k3-dev.h power: domain: ti: Add support for J721S2 SoC 2022-02-08 09:41:27 -05:00
key_matrix.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
keyboard.h
kgdb.h common: board_r: drop initr_kgdb wrapper 2022-01-18 08:31:02 -05:00
lattice.h
lcd_console.h
lcd.h arm: pxa: Remove CONFIG_CPU_PXA25X 2022-06-06 12:09:12 -04:00
lcdvideo.h
ld9040.h
led.h led: Drop led_default_state() 2022-04-28 09:26:44 -04:00
libata.h
libtizen.h
linker_lists.h treewide: Convert macro and uses of __section(foo) to __section("foo") 2021-05-24 14:21:30 -04:00
linux_logo.h
lmb.h lmb: drop unused lmb_size_bytes() 2021-11-20 10:53:00 +01:00
log.h event: Add basic support for events 2022-03-10 08:28:36 -05:00
lxt971a.h
mailbox-uclass.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
mailbox.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
malloc.h malloc: Annotate allocator for valgrind 2022-04-11 10:00:30 -04:00
mapmem.h
mc9sdz60.h
mc13783.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
mc13892.h
mc34704.h
MCD_dma.h
MCD_progCheck.h
MCD_tasksInit.h
media_bus_format.h
memalign.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
membuff.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
menu.h bootmenu: factor out the user input handling 2022-05-07 23:17:26 +02:00
micrel.h
mii_phy.h
miiphy.h net: mdio-uclass: add dm_phy_find_by_ofnode() helper 2022-05-04 07:05:51 +02:00
mipi_display.h
mipi_dsi.h
misc.h misc: mark write buffer const 2022-01-24 10:35:10 -05:00
mk48t59.h
mm_communication.h
mmc.h bootstd: mmc: Add a bootdev driver 2022-04-25 10:00:04 -04:00
mpc8xx_irq.h
mpc8xx.h
mpc83xx.h powerpc: mpc83xx: Migrate DEFAULT_IMMR to Kconfig 2022-04-08 10:46:22 -04:00
mpc85xx.h ppc / layerscape: Clean up CONFIG_SYS_CCSR_DO_NOT_RELOCATE usage 2022-06-06 12:09:12 -04:00
mpc86xx.h
mpc106.h
msc01.h pci: msc01: Use PCI_CONF1_ADDRESS() macro 2022-01-12 14:21:24 -05:00
mtd_node.h
mtd.h mtd: spi: nor: force mtd name to "nor%d" 2021-09-28 12:03:20 -04:00
mux-internal.h
mux.h mux: correct prototype for mux_control_try_select() 2021-07-23 07:13:25 -04:00
mv88e6352.h
mvebu_mmc.h
mvmfp.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
mxs_nand.h mtd: gpmi: fix the bch setting backward compatible issue 2022-03-28 08:22:17 -04:00
nand.h Finish conversion CONFIG_SYS_NAND_SELF_INIT to Kconfig 2021-12-27 16:20:18 -05:00
net.h net: Check for the minimum IP fragmented datagram size 2022-06-03 11:15:24 -04:00
netdev.h net: remove unused CONFIG_DRIVER_AT91EMAC_* 2021-09-21 10:08:24 +03:00
ns16550.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
nuvoton_nct6102d.h
nvme.h
nvmem.h misc: Add support for nvmem cells 2022-06-08 14:00:22 -04:00
of_live.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
omap3_spi.h
onenand_uboot.h
opensbi.h
os.h sandbox: compatibility of os_get_filesize() 2022-01-13 09:13:41 -07:00
p2sb.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
palmas.h
panel.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
part_efi.h
part.h disk: part_efi: add support to repair gpt table 2022-05-06 14:39:15 -04:00
pca953x.h
pca9564.h
pca9698.h
pch.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
pci_ep.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
pci_gt64120.h
pci_ids.h pci: Add defines for normal and subtractive PCI bridges 2022-03-25 13:35:50 -04:00
pci_msc01.h
pci_rom.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
pci_tegra.h
pci.h pci: Add mask parameter to dm_pci_map_bar() 2022-05-03 18:33:29 -04:00
pe.h
phy_interface.h net: fix phy_string_for_interface 2022-05-23 13:52:02 -04:00
phy-mipi-dphy.h
phy-sun4i-usb.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
phy.h Merge branch 'next' of https://source.denx.de/u-boot/custodians/u-boot-net 2022-04-15 08:10:32 -04:00
phys2bus.h
physmem.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
post.h ppc: Remove sbc8641d board 2021-07-07 19:52:24 -04:00
power-domain-uclass.h
power-domain.h power_domain: Add power_domain_get_by_name() 2022-04-21 12:44:23 +02:00
ppc_asm.tmpl
ppc_defs.h
pvblock.h
pwm.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
pwrseq.h
pxa_lcd.h
pxe_utils.h cmd: pxe_utils: sysboot: add kaslr-seed generation support 2022-02-11 09:00:47 -05:00
qfw.h
ram.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
rand.h
rc4.h
regmap.h
reiserfs.h
relocate.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
remoteproc.h remoteproc: uclass: Add remoteproc resource handling helpers 2022-02-08 11:00:03 -05:00
reset-uclass.h
reset.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
rng.h
rtc_def.h
rtc.h lib/date: Make rtc_mktime and mktime64 Y2038-ready 2022-05-05 15:06:02 -04:00
s_record.h
SA-1100.h
samsung-usb-phy-uboot.h
sandbox-adc.h
sandbox-clk.h
sandboxblockdev.h sandbox: move a function prototype 2022-04-23 22:05:33 +02:00
sandboxfs.h
sandboxtee.h
sata.h
scf0403_lcd.h
scmi_agent-uclass.h
scmi_agent.h scmi: change parameter dev in devm_scmi_process_msg 2022-03-02 17:42:06 -05:00
scmi_protocols.h clk: scmi: register scmi clocks with CCF 2022-03-02 17:42:06 -05:00
scp03.h
scsi.h scsi: Drop CONFIG_SYS_SCSI_MAX_DEVICE 2022-02-09 09:16:48 -05:00
sdhci.h mmc: sdhci: Add HS400 Enhanced Strobe support 2022-03-16 18:10:19 +09:00
sdp.h SPL: Add struct spl_boot_device parameter into spl_parse_board_header() 2022-01-20 11:35:29 +01:00
search.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
semihosting.h arm64: Catch non-emulated semihosting calls 2022-04-01 16:56:53 -04:00
semihostingfs.h fs: Add semihosting filesystem 2022-04-01 15:03:13 -04:00
serial.h serial: dm: Add support for puts 2022-04-01 16:56:54 -04:00
sh_pfc.h
signatures.h
sja1000.h
sl28cpld.h board: sl28: print CPLD version on bootup 2022-02-28 11:59:35 +05:30
slre.h
smbios.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
smem.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
smsc_lpc47m.h
smsc_sio1007.h
soc.h
sort.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
sound.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
sparse_defs.h
sparse_format.h
spartan2.h
spartan3.h
spd_sdram.h
spd.h
spi_flash.h spi: spi_flash_probe_bus_cs() rely on DT for spi speed and mode 2022-05-23 09:33:10 -04:00
spi-mem.h spi: spi-mem: add spi_mem_dtr_supports_op() 2021-06-28 11:56:06 +05:30
spi.h spi: spi-uclass: Add new spi_get_bus_and_cs() implementation 2022-05-23 09:33:10 -04:00
spl_gpio.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
spl.h Introduce Verifying Program Loader (VPL) 2022-05-02 09:58:13 -04:00
splash.h video: Support virtio devices with the splash screen 2021-12-26 23:33:24 +01:00
squashfs.h
st_logo_data.h WS cleanup: remove trailing empty lines 2021-09-30 08:08:56 -04:00
status_led.h
stdint.h stdint: Add a definition of UINT8_MAX 2022-04-06 14:03:17 -04:00
stdio_dev.h usb: gadget: Add CDC ACM function 2022-01-26 23:23:17 +01:00
stdio.h serial: Rename SERIAL_SUPPORT to SERIAL 2021-09-04 12:26:01 -04:00
stdlib.h
stm32_rcc.h
stratixII.h
string.h
sunxi_image.h tools: mkimage: Add Allwinner TOC0 support 2022-04-04 23:24:17 +01:00
sy8106a.h
sym53c8xx.h
syscon.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
sysinfo.h sysinfo: Require that sysinfo_detect be called before other methods 2021-05-04 07:57:18 -04:00
sysreset.h watchdog: Automatically register device with sysreset 2021-11-04 08:57:19 +01:00
system-constants.h Convert CONFIG_SYS_SPL_MALLOC_SIZE et al to Kconfig 2022-06-06 12:09:28 -04:00
tables_csum.h Remove duplication of table_compute_checksum function 2022-04-14 15:39:15 -04:00
tca642x.h
tee.h efi_loader: Don't limit the StMM buffer size explicitly 2021-12-31 06:44:29 +01:00
tegra-kbc.h
thermal.h
thor.h
ti-usb-phy-uboot.h
time.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
timer.h
timestamp.h
tlv_eeprom.h
tmu.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tpm_api.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tpm-common.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tpm-v1.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tpm-v2.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tps6586x.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
trace.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
tsec.h net: tsec: add support for promiscuous mode 2021-11-23 09:57:55 +02:00
tsi148.h
twl4030.h
twl6030.h
ubi_uboot.h
ubifs_uboot.h
ubispl.h
uboot_aes.h
ufs.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
universe.h
usb_cdc_acm.h
usb_defs.h
usb_ether.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
usb_mass_storage.h
usb.h usb: ehci-mx6: Enable OTG detection on imx8mm and imx8mn 2022-02-11 00:03:48 +01:00
usbdescriptors.h
usbdevice.h
usbroothubdes.h
uuid.h
vbe.h
versalpl.h
version_string.h version: Move version_string[] from version.h to version_string.h 2021-09-17 12:10:44 -04:00
version.h Remove including timestamp.h in version.h 2021-09-17 12:10:44 -04:00
video_bridge.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
video_console.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
video_easylogo.h
video_font_4x6.h WS cleanup: remove SPACE(s) followed by TAB 2021-09-30 09:08:16 -04:00
video_font_data.h
video_font.h
video_osd.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
video.h video: Clean up the uclass header 2022-03-28 20:17:20 +02:00
virtex2.h
virtio_ring.h virtio_ring: Check used descriptors are chain heads 2022-06-08 09:24:03 -04:00
virtio_types.h
virtio.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
vsc7385.h
vsc9953.h treewide: Rename PHY_INTERFACE_MODE_NONE to PHY_INTERFACE_MODE_NA 2022-04-10 08:44:13 +03:00
vsprintf.h lib: Add a way to find the postiion of a trailing number 2022-04-25 10:00:03 -04:00
vxworks.h
w1-eeprom.h w1: replace dt detection by automatic detection 2021-05-13 13:09:09 -04:00
w1.h w1: replace dt detection by automatic detection 2021-05-13 13:09:09 -04:00
w83c553f.h
wait_bit.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
watchdog.h Rename SPL_WATCHDOG_SUPPORT to SPL_WATCHDOG 2021-07-28 14:27:54 -04:00
wdt.h doc: replace @return by Return: 2022-01-19 18:11:34 +01:00
winbond_w83627.h
xen.h
xilinx.h
xyzModem.h
zfs_common.h
zynq_bootimg.h
zynqmp_firmware.h firmware: firmware-zynqmp: Add zynqmp_pm_set_gem_config api 2022-04-05 15:13:13 +02:00
zynqmppl.h
zynqpl.h