| /rk3399_rockchip-uboot/tools/ |
| H A D | rkmux.py | 26 def __init__(self, cols=None): argument 27 if cols: 29 [x.strip() for x in cols]) 37 def Setup(self, cols): argument 38 self.bits, self.attr, self.reset_val = cols[0:3] 39 if len(cols) > 3: 40 self.desc.append(cols[3]) 148 cols = re.split(' *', line, 3) 149 if leading > 15 or (len(cols) > 3 and is_field_start(cols[3])): 154 if cols[0] == 'Bit' or len(cols) < 3: [all …]
|
| /rk3399_rockchip-uboot/drivers/ram/ |
| H A D | bmips_ram.c | 53 static ulong bmips_dram_size(unsigned int cols, unsigned int rows, in bmips_dram_size() argument 57 cols += 8; /* 0 => 8 address bits ... 2 => 10 address bits */ in bmips_dram_size() 60 return 1 << (cols + rows + is_32b + banks); in bmips_dram_size() 65 unsigned int cols = 0, rows = 0, is_32b = 0, banks = 0; in bcm6338_get_ram_size() local 70 cols = (val & SDRAM_CFG_COL_MASK) >> SDRAM_CFG_COL_SHIFT; in bcm6338_get_ram_size() 74 return bmips_dram_size(cols, rows, is_32b, banks); in bcm6338_get_ram_size() 79 unsigned int cols = 0, rows = 0, is_32b = 0; in bcm6358_get_ram_size() local 84 cols = (val & MEMC_CFG_COL_MASK) >> MEMC_CFG_COL_SHIFT; in bcm6358_get_ram_size() 87 return bmips_dram_size(cols, rows, is_32b, 2); in bcm6358_get_ram_size()
|
| /rk3399_rockchip-uboot/common/ |
| H A D | lcd_console.c | 31 cons.curr_col = min_t(short, col, cons.cols - 1); in lcd_position_cursor() 42 return cons.cols; in lcd_get_screen_columns() 94 cons.curr_col = cons.cols - 1; in console_back() 125 pcons->cols = sizex / VIDEO_FONT_WIDTH; in console_calc_rowcol() 156 cons.cols, cons.rows, cons.lcdsizex, cons.lcdsizey, vl_rot); in lcd_init_console() 179 if (cons.curr_col >= cons.cols) in lcd_putc() 191 if (++cons.curr_col >= cons.cols) in lcd_putc()
|
| /rk3399_rockchip-uboot/lib/efi_loader/ |
| H A D | efi_console.c | 181 static bool cout_mode_matches(struct cout_mode *mode, int rows, int cols) in cout_mode_matches() argument 186 return (mode->rows == rows) && (mode->columns == cols); in cout_mode_matches() 199 int cols; in efi_cout_query_mode() local 222 cols = n[2]; in efi_cout_query_mode() 226 if (cols >= 80 && rows >= 50) { in efi_cout_query_mode() 235 if (!cout_mode_matches(&efi_cout_modes[0], rows, cols) && in efi_cout_query_mode() 236 !cout_mode_matches(&efi_cout_modes[1], rows, cols)) { in efi_cout_query_mode() 237 efi_cout_modes[EFI_COUT_MODE_2].columns = cols; in efi_cout_query_mode()
|
| /rk3399_rockchip-uboot/drivers/input/ |
| H A D | key_matrix.c | 179 int key_matrix_init(struct key_matrix *config, int rows, int cols, in key_matrix_init() argument 184 config->num_cols = cols; in key_matrix_init() 185 config->key_count = rows * cols; in key_matrix_init()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | key_matrix.h | 83 int key_matrix_init(struct key_matrix *config, int rows, int cols,
|
| H A D | lcd_console.h | 11 short cols, rows; member
|
| H A D | video_console.h | 38 int cols; member
|
| H A D | ec_commands.h | 1128 uint32_t cols; member
|
| /rk3399_rockchip-uboot/drivers/ddr/altera/ |
| H A D | sdram.c | 57 const unsigned int cols = in get_errata_rows() local 70 debug("workaround rows - cols %d\n", cols); in get_errata_rows() 75 newrows = lldiv(newrows, (1 << banks) * (1 << cols)); in get_errata_rows()
|
| /rk3399_rockchip-uboot/drivers/ram/rockchip/ |
| H A D | dmc-rk3368.c | 665 const u8 cols = params->chan.col - ((params->chan.bw == 2) ? 0 : 1); in msch_biu_config() local 741 match = (ddrconf_table[i].columns == cols) && in msch_biu_config() 746 match = (ddrconf_table[i].columns == cols) && in msch_biu_config() 751 match = (ddrconf_table[i].columns == cols) || in msch_biu_config() 752 ((ddrconf_table[i].columns <= cols) && in msch_biu_config()
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H A D | console_normal.c | 144 vc_priv->cols = vid_priv->xsize / VIDEO_FONT_WIDTH; in console_normal_probe()
|
| H A D | console_rotate.c | 411 vc_priv->cols = vid_priv->xsize / VIDEO_FONT_WIDTH; in console_probe_2() 425 vc_priv->cols = vid_priv->ysize / VIDEO_FONT_WIDTH; in console_probe_1_3()
|
| H A D | vidconsole-uclass.c | 74 priv->xcur_frac = (priv->cols - 1) * in vidconsole_back()
|
| H A D | console_truetype.c | 519 vc_priv->cols = vid_priv->xsize / priv->font_size; in console_truetype_probe()
|
| H A D | Kconfig | 536 VIDEO_VISIBLE_COLS visible pixel columns (cols=pitch)
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | cros_ec.c | 144 printf("cols = %u\n", info.cols); in do_cros_ec()
|