Searched refs:wr (Results 1 - 15 of 15) sorted by path

/u-boot/arch/m68k/include/asm/coldfire/
H A Dqspi.h18 u16 wr; /* 0x08 Wrap */ member in struct:qspi_ctrl
/u-boot/include/
H A Dspartan2.h21 xilinx_wr_fn wr; member in struct:__anon1368
36 xilinx_wr_fn wr; member in struct:__anon1369
H A Dspartan3.h21 xilinx_wr_fn wr; member in struct:__anon1370
36 xilinx_wr_fn wr; member in struct:__anon1371
H A Dvirtex2.h24 xilinx_wr_fn wr; member in struct:__anon811
/u-boot/lib/bzip2/
H A Dbzlib_compress.c165 Int32 wr; local
199 wr = 0;
205 AssertD ( wr <= i, "generateMTFValues(1)" );
218 mtfv[wr] = BZ_RUNB; wr++;
221 mtfv[wr] = BZ_RUNA; wr++;
246 mtfv[wr] = j+1; wr++; s->mtfFreq[j+1]++;
256 mtfv[wr]
[all...]
/u-boot/board/astro/mcf5373l/
H A Dfpga.c401 xilinx_fns.wr = xilinx_wr_config_fn;
/u-boot/common/
H A Dcli_hush_upstream.c8327 ndelay_on(pair.wr);
8329 written = write(pair.wr, heredoc, len);
8334 close(pair.wr);
8340 ndelay_off(pair.wr);
8360 full_write(pair.wr, heredoc, len); /* may loop or block */
8364 xmove_fd(pair.wr, STDOUT_FILENO);
8377 close(pair.wr);
10213 pipefds.wr = 1;
10253 xmove_fd(pipefds.wr, 1);
10310 close(pipefds.wr);
[all...]
/u-boot/drivers/ddr/fsl/
H A Dctrl_regs.c1373 unsigned int wr = 0; /* Write Recovery */ local
1428 wr = wr_table[wr_mclk - 10];
1464 | ((wr & 0x7) << 9)
1545 unsigned int wr = 0; /* Write Recovery */ local
1603 wr = wr_table[wr_mclk - 5];
1655 | ((wr & 0x7) << 9)
1753 unsigned int wr; /* Write Recovery */ local
1788 wr = 0; /* Historical */
1790 wr = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
1830 | ((wr
[all...]
/u-boot/drivers/fpga/
H A Dspartan2.c114 "wr:\t0x%p\n"
121 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy,
157 (*fn->wr) (true, true, cookie); /* Assert write, commit */
199 (*fn->wr) (false, true, cookie); /* Deassert the write pin */
312 "wr:\t0x%p\n"
315 fn->clk, fn->wr, fn->done);
370 (*fn->wr) ((val & 0x80), true, cookie);
394 (*fn->wr) (true, true, cookie);
H A Dspartan3.c120 "wr:\t0x%p\n"
127 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy,
163 (*fn->wr) (true, true, cookie); /* Assert write, commit */
205 (*fn->wr) (false, true, cookie); /* Deassert the write pin */
320 "wr:\t0x%p\n"
323 fn->clk, fn->wr, fn->done);
387 (*fn->wr) ((val & 0x80), true, cookie);
412 (*fn->wr) (true, true, cookie);
H A Dvirtex2.c168 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata,
217 if (fn->wr)
218 (*fn->wr)(true, true, cookie);
239 if (fn->wr)
240 (*fn->wr)(false, true, cookie);
/u-boot/drivers/i2c/
H A Docores_i2c.c452 u32 curr, wr; local
460 wr = (curr & 0xff00) | value;
462 wr = (((u32)value) << 8) | (curr & 0xff);
464 wr = value;
466 out_be32(i2c->base + (rreg << i2c->reg_shift), wr);
/u-boot/fs/ubifs/
H A Dlpt.c1727 * @wr: whether to initialize lpt for writing
1729 * For mounting 'rw', @rd and @wr are both true. For mounting 'ro', @rd is true
1730 * and @wr is false. For mounting from 'ro' to 'rw', @rd is false and @wr is
1735 int ubifs_lpt_init(struct ubifs_info *c, int rd, int wr) argument
1746 if (wr) {
1757 if (wr)
H A Dubifs.h2291 int ubifs_lpt_init(struct ubifs_info *c, int rd, int wr);
/u-boot/tools/
H A Dkwboot.c422 ssize_t wr = write(fd, buf + tot, len - tot); local
424 if (wr < 0 && errno == EINTR)
426 else if (wr < 0)
427 return wr;
429 tot += wr;

Completed in 126 milliseconds