Searched refs:col (Results 51 - 75 of 101) sorted by relevance

12345

/u-boot/drivers/ram/rockchip/
H A Dsdram-rv1126-ddr3-detect-924.inc5 .col = 0xC,
H A Dsdram-rv1126-lpddr4-detect-1056.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-328.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-396.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-528.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-664.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-784.inc5 .col = 0xB,
H A Dsdram-rv1126-lpddr4-detect-924.inc5 .col = 0xB,
H A Dsdram-rv1126-ddr4-detect-1056.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-328.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-396.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-528.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-664.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-784.inc5 .col = 0xA,
H A Dsdram-rv1126-ddr4-detect-924.inc5 .col = 0xA,
H A Ddmc-rk3368.c612 int row, col; local
619 /* Detect col */
620 for (col = 11; col >= 9; col--) {
623 (1 << (col + params->chan.bw - 1));
630 if (col == 8) {
631 pr_err("%s: col detect error\n", __func__);
655 debug("%s: col %d, row %d\n", __func__, col, ro
[all...]
H A Dsdram_rk3066.c62 * [1:0] col(9+n), assume bw=2
63 * row col,bw
536 sys_reg |= (info->col - 9) << SYS_REG_COL_SHIFT(chan);
609 int row, col; local
616 /* Detect col. */
617 for (col = 11; col >= 9; col--) {
620 (1 << (col + sdram_params->ch[channel].bw - 1));
626 if (col
[all...]
H A Dsdram_rk3188.c62 * [1:0] col(9+n), assume bw=2
63 * row col,bw
551 sys_reg |= (info->col - 9) << SYS_REG_COL_SHIFT(chan);
625 * @sdram_params: sdram parameters, function will fill in col and row values
632 int row, col; local
639 /* Detect col */
640 for (col = 11; col >= 9; col--) {
643 (1 << (col
[all...]
H A Dsdram_rk3288.c63 /* row col,bw */
609 sys_reg |= (info->col - 9) << SYS_REG_COL_SHIFT(chan);
678 int row, col; local
685 /* Detect col */
686 for (col = 11; col >= 9; col--) {
689 (1 << (col + sdram_params->ch[channel].bw - 1));
695 if (col == 8) {
700 sdram_params->ch[channel].col
[all...]
/u-boot/arch/arm/mach-rockchip/rk3036/
H A Dsdram_rk3036.c56 * [0] col(10+n)
292 * 00: 9col
293 * 01: 10col
294 * 10: 11col
295 * 11: 12col
657 1 << 3 | (config.col - 10);
668 (config.col - 10);
677 2 << 1 | (config.col - 10);
685 (config.col - 10);
710 (config.col
721 u32 size, os_reg, cs0_row, cs1_row, col, bank, rank; local
[all...]
/u-boot/lib/efi_selftest/
H A Defi_selftest_bitblt.c41 const struct efi_gop_pixel col, struct efi_gop_pixel *pix)
50 *pix = col;
56 const struct efi_gop_pixel col, struct efi_gop_pixel *pix)
59 *pix = col;
38 ellipse(efi_uintn_t x, efi_uintn_t y, efi_uintn_t x0, efi_uintn_t y0, efi_uintn_t x1, efi_uintn_t y1, const struct efi_gop_pixel col, struct efi_gop_pixel *pix) argument
53 rectangle(efi_uintn_t x, efi_uintn_t y, efi_uintn_t x0, efi_uintn_t y0, efi_uintn_t x1, efi_uintn_t y1, const struct efi_gop_pixel col, struct efi_gop_pixel *pix) argument
/u-boot/drivers/misc/
H A Dcros_ec_sandbox.c63 int col; /* key matrix column */ member in struct:ec_keymatrix_entry
244 matrix->col = (word >> 16) & 0xff;
249 matrix->col >= KEYBOARD_COLS) {
251 __func__, matrix->row, matrix->col);
294 matrix->col);
295 ec->keyscan[matrix->col] |= 1 << matrix->row;
/u-boot/scripts/
H A Dspdxcheck.py199 col = line.find(expr) + pe.tok.lexpos
201 sys.stdout.write('%s: %d:%d %s: %s\n' %(fname, self.curline, col, pe.txt, tok))
203 sys.stdout.write('%s: %d:0 %s\n' %(fname, self.curline, col, pe.txt))
/u-boot/arch/x86/cpu/quark/
H A Dsmc.h138 #define DCMD_WR(rnk, col) (4 | ((rnk) << 22) | ((col) << 6))
139 #define DCMD_RD(rnk, col) (5 | ((rnk) << 22) | ((col) << 6))
/u-boot/lib/efi_loader/
H A Defi_gop.c468 u32 bpix, format, col, row; local
484 col = video_get_xsize(vdev);
530 gopobj->info.width = col;
549 gopobj->info.pixels_per_scanline = col;

Completed in 543 milliseconds

12345