Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 665) sorted by relevance

12345678910>>...27

/u-boot/test/dm/
A Dmmc.c33 char write[1024], read[1024]; in dm_test_mmc_blk() local
43 ut_asserteq(2, blk_dread(dev_desc, 0, 2, read)); in dm_test_mmc_blk()
44 ut_asserteq_mem(write, read, sizeof(write)); in dm_test_mmc_blk()
49 ut_asserteq(2, blk_dread(dev_desc, 0, 2, read)); in dm_test_mmc_blk()
50 ut_asserteq_mem(write, read, sizeof(write)); in dm_test_mmc_blk()
A Dmdio_mux.c44 ut_assertnonnull(ops->read); in dm_test_mdio_mux()
53 ut_assertnonnull(ops->read); in dm_test_mdio_mux()
60 reg = ops->read(mdio_ch0, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio_mux()
64 reg = ops->read(mdio_ch1, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio_mux()
69 reg = ops_parent->read(mdio, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio_mux()
74 reg = ops_parent->read(mdio, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio_mux()
A Dmdio.c38 ut_assertnonnull(ops->read); in dm_test_mdio()
43 reg = ops->read(dev, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio()
47 ut_assert(ops->read(dev, SANDBOX_PHY_ADDR + 1, MDIO_DEVAD_NONE, in dm_test_mdio()
51 reg = ops->read(dev, SANDBOX_PHY_ADDR, MDIO_DEVAD_NONE, in dm_test_mdio()
/u-boot/drivers/mtd/nand/raw/
A Dnand_spl_loaders.c104 int page, read; in nand_spl_read_block() local
119 read = min(len, CONFIG_SYS_NAND_PAGE_SIZE - offset); in nand_spl_read_block()
120 memcpy(dst, scratch_buf + offset, read); in nand_spl_read_block()
124 read = CONFIG_SYS_NAND_PAGE_SIZE; in nand_spl_read_block()
127 len -= read; in nand_spl_read_block()
128 dst += read; in nand_spl_read_block()
/u-boot/doc/SPI/
A Dstatus.txt12 - Added memory_mapped support for read operations.
14 - Extended read commands support(dual read, dual IO read)
16 - Quad Read support(quad fast read, quad IO read)
A DREADME.ti_qspi_flash6 dual and quad read access to external spi devices. The module
18 will be changed to qspi boot. Then, the ROM code will read MLO
20 execute it after storing it in SDRAM. Then, the MLO will read
31 Memory mapped read mode
34 controller is switched to memory mapped port for data read.
/u-boot/tools/dtoc/
A Dtest_dtoc.py292 data = infile.read()
298 data = infile.read()
313 data = infile.read()
324 data = infile.read()
348 data = infile.read()
357 data = infile.read()
377 data = infile.read()
389 data = infile.read()
459 data = infile.read()
475 data = infile.read()
[all …]
/u-boot/drivers/i2c/
A Dihs_i2c.c95 static int wait_for_int(struct udevice *dev, int read) in wait_for_int() argument
97 static int wait_for_int(bool read) in wait_for_int()
155 if (!read && len) { in ihs_i2c_transfer()
168 | (read ? 0 : I2CMB_WRITE) in ihs_i2c_transfer()
180 res = wait_for_int(dev, read); in ihs_i2c_transfer()
182 res = wait_for_int(read); in ihs_i2c_transfer()
192 if (read) { in ihs_i2c_transfer()
210 int read) in ihs_i2c_send_buffer()
223 res = ihs_i2c_transfer(chip, data, transfer, read, in ihs_i2c_send_buffer()
252 int alen, uchar *buffer, int len, int read) in ihs_i2c_access() argument
[all …]
/u-boot/doc/
A DREADME.sata6 * ext2load to read a file from ext2 file system
8 1.0 How to read the SATA hard disk's information?
34 1.2 How to raw read the kernel, file system, dtb from a SATA hard disk?
37 => sata read 200000 0 2000
40 => sata read 1000000 2000 8000
43 => sata read 2000000 a000 1000
/u-boot/arch/arm/dts/
A Dkeystone-k2l-evm.dts56 ti,cs-read-hold-ns = <6>;
57 ti,cs-read-strobe-ns = <23>;
58 ti,cs-read-setup-ns = <9>;
81 read-only;
87 read-only;
105 m25p,fast-read;
111 read-only;
A Dkeystone-k2e-evm.dts79 ti,cs-read-hold-ns = <6>;
80 ti,cs-read-strobe-ns = <23>;
81 ti,cs-read-setup-ns = <9>;
104 read-only;
110 read-only;
128 m25p,fast-read;
134 read-only;
A Dfsl-ls1028a-kontron-sl28.dts69 m25p,fast-read;
79 read-only;
85 read-only;
91 read-only;
97 read-only;
103 read-only;
A Dkeystone-k2hk-evm.dts100 ti,cs-read-hold-ns = <6>;
101 ti,cs-read-strobe-ns = <23>;
102 ti,cs-read-setup-ns = <9>;
125 read-only;
131 read-only;
156 m25p,fast-read;
162 read-only;
/u-boot/arch/x86/include/asm/acpi/
A Dcpu.asl9 /* Notify OS to re-read CPU tables */
15 /* Notify OS to re-read CPU _PPC limit */
21 /* Notify OS to re-read Throttle Limit tables */
/u-boot/drivers/mtd/onenand/
A Donenand_spl.c134 int page, read; in onenand_spl_read_block() local
153 read = min(len, psize - offset); in onenand_spl_read_block()
154 memcpy(dst, scratch_buf + offset, read); in onenand_spl_read_block()
158 read = psize; in onenand_spl_read_block()
161 len -= read; in onenand_spl_read_block()
162 dst += read; in onenand_spl_read_block()
/u-boot/common/spl/
A Dspl_nor.c51 load.read = spl_nor_load_read; in spl_nor_load_image()
99 load.read = spl_nor_load_read; in spl_nor_load_image()
107 load.read = spl_nor_load_read; in spl_nor_load_image()
115 load.read = spl_nor_load_read; in spl_nor_load_image()
/u-boot/drivers/pci/
A Dpci_compat.c25 PCI_HOSE_OP(read, byte, 8, u8 *)
26 PCI_HOSE_OP(read, word, 16, u16 *)
27 PCI_HOSE_OP(read, dword, 32, u32 *)
/u-boot/arch/arm/lib/
A Dsemihosting.c94 } read; in smh_read() local
98 read.fd = fd; in smh_read()
99 read.memp = memp; in smh_read()
100 read.len = len; in smh_read()
102 ret = smh_trap(SYSREAD, &read); in smh_read()
/u-boot/doc/usage/
A Dload.rst16 The load command is used to read a file from a filesystem into memory.
51 149280 bytes read in 11 ms (12.9 MiB/s)
54 149280 bytes read in 9 ms (15.8 MiB/s)
57 149024 bytes read in 10 ms (14.2 MiB/s)
60 16 bytes read in 1 ms (15.6 KiB/s)
/u-boot/drivers/rng/
A Drng-uclass.c14 if (!ops->read) in dm_rng_read()
17 return ops->read(dev, buffer, size); in dm_rng_read()
/u-boot/arch/mips/mach-mscc/
A Dphy.c10 int mscc_phy_rd_wr(u8 read, in mscc_phy_rd_wr() argument
20 data = (read ? MSCC_F_MII_CMD_MIIM_CMD_OPR_FIELD(2) : /* Read */ in mscc_phy_rd_wr()
44 if (read) { in mscc_phy_rd_wr()
/u-boot/drivers/axi/
A Daxi_sandbox.c37 if (!ops || !ops->read) in axi_sandbox_read()
40 return ops->read(emul, address, data, size); in axi_sandbox_read()
68 .read = axi_sandbox_read,
A Daxi-uclass.c16 if (!ops->read) in axi_read()
19 return ops->read(dev, address, data, size); in axi_read()
/u-boot/drivers/dfu/
A DKconfig40 This option enables using DFU to read and write to MMC based storage.
47 This option enables using DFU to read and write to NAND based
60 This option enables using DFU to read and write RAM on the target.
65 This option enables using DFU to read and write to SPI flash based
81 This option enables using DFU to read and write to on any MTD device.
86 This option enables using DFU to read and write to VIRTUAL device
/u-boot/board/freescale/common/
A DKconfig33 bool "Enable the LTC3882 voltage monitor read"
35 This option enables LTC3882 voltage monitor read
47 bool "Enable the ISL68233 voltage monitor read"
49 This option enables ISL68233 voltage monitor read

Completed in 265 milliseconds

12345678910>>...27