/u-boot/doc/sphinx/ |
A D | rstFlatTable.py | 200 row = nodes.row() 213 row += entry 214 return row 234 self.rows.append(row) 282 for row in self.rows: 292 for row in self.rows: 295 if row[-1] is None: 307 for row in self.rows: 309 for col in row: 326 row = [] [all …]
|
/u-boot/drivers/video/ |
A D | video_osd-uclass.c | 18 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in video_osd_set_mem() argument 23 return ops->set_mem(dev, col, row, buf, buflen, count); in video_osd_set_mem() 26 int video_osd_set_size(struct udevice *dev, uint col, uint row) in video_osd_set_size() argument 30 return ops->set_size(dev, col, row); in video_osd_set_size() 33 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color, in video_osd_print() argument 38 return ops->print(dev, col, row, color, text); in video_osd_print()
|
A D | vidconsole-uclass.c | 194 if (row >= priv->rows) in set_cursor_position() 195 row = priv->rows - 1; in set_cursor_position() 282 int row, col, num; in vidconsole_escape_char() local 296 row -= num; in vidconsole_escape_char() 302 row += num; in vidconsole_escape_char() 307 if (row < 0) in vidconsole_escape_char() 308 row = 0; in vidconsole_escape_char() 315 int row, col; in vidconsole_escape_char() local 329 if (row) in vidconsole_escape_char() 330 --row; in vidconsole_escape_char() [all …]
|
A D | sandbox_osd.c | 42 int sandbox_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in sandbox_osd_set_mem() argument 50 pos = 2 * (row * priv->width + col); in sandbox_osd_set_mem() 61 int _sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in _sandbox_osd_set_size() argument 68 priv->height = row; in _sandbox_osd_set_size() 85 int sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in sandbox_osd_set_size() argument 87 return _sandbox_osd_set_size(dev, col, row); in sandbox_osd_set_size() 90 int sandbox_osd_print(struct udevice *dev, uint col, uint row, ulong color, in sandbox_osd_print() argument 98 if (col >= priv->width || row >= priv->height) in sandbox_osd_print() 122 pos = row * priv->width + col; in sandbox_osd_print()
|
A D | console_normal.c | 16 static int console_normal_set_row(struct udevice *dev, uint row, int clr) in console_normal_set_row() argument 24 line = vid_priv->fb + row * VIDEO_FONT_HEIGHT * vid_priv->line_length; in console_normal_set_row() 88 int i, row; in console_normal_putc_xy() local 100 for (row = 0; row < VIDEO_FONT_HEIGHT; row++) { in console_normal_putc_xy() 101 unsigned int idx = (u8)ch * VIDEO_FONT_HEIGHT + row; in console_normal_putc_xy()
|
A D | ihs_video_out.c | 132 int ihs_video_out_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in ihs_video_out_set_mem() argument 143 offset = row * priv->base_width + col + rep * (buflen / 2); in ihs_video_out_set_mem() 182 int ihs_video_out_set_size(struct udevice *dev, uint col, uint row) in ihs_video_out_set_size() argument 187 !row || row > MAX_VIDEOMEM_HEIGHT || row > MAX_Y_CHARS) { in ihs_video_out_set_size() 192 ihs_video_out_set(priv->map, xy_size, ((col - 1) << 8) | (row - 1)); in ihs_video_out_set_size() 197 div2_u16(priv->res_y - CHAR_HEIGHT * row)); in ihs_video_out_set_size() 202 int ihs_video_out_print(struct udevice *dev, uint col, uint row, ulong color, in ihs_video_out_print() argument 216 res = ihs_video_out_set_mem(dev, col, row, buffer, 2 * len, 1); in ihs_video_out_print()
|
A D | console_truetype.c | 126 static int console_truetype_set_row(struct udevice *dev, uint row, int clr) in console_truetype_set_row() argument 134 line = vid_priv->fb + row * priv->font_size * vid_priv->line_length; in console_truetype_set_row() 216 int row, ret; in console_truetype_putc_xy() local 277 for (row = 0; row < height; row++) { in console_truetype_putc_xy() 360 int row, i, ret; in console_truetype_erase() local 365 for (row = ystart; row < yend; row++) { in console_truetype_erase()
|
A D | console_rotate.c | 14 static int console_set_row_1(struct udevice *dev, uint row, int clr) in console_set_row_1() argument 23 (row + 1) * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_1() 157 static int console_set_row_2(struct udevice *dev, uint row, int clr) in console_set_row_2() argument 165 (row + 1) * VIDEO_FONT_HEIGHT * vid_priv->line_length; in console_set_row_2() 230 int i, row, x, linenum, ret; in console_putc_xy_2() local 240 for (row = 0; row < VIDEO_FONT_HEIGHT; row++) { in console_putc_xy_2() 241 unsigned int idx = (u8)ch * VIDEO_FONT_HEIGHT + row; in console_putc_xy_2() 294 static int console_set_row_3(struct udevice *dev, uint row, int clr) in console_set_row_3() argument 301 start = vid_priv->fb + row * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_3()
|
/u-boot/include/ |
A D | video_osd.h | 83 int (*set_mem)(struct udevice *dev, uint col, uint row, u8 *buf, 95 int (*set_size)(struct udevice *dev, uint col, uint row); 113 int (*print)(struct udevice *dev, uint col, uint row, ulong color, 160 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, 172 int video_osd_set_size(struct udevice *dev, uint col, uint row); 189 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color,
|
A D | lcd_console.h | 16 void (*fp_console_setrow)(struct console_t *pcons, u32 row, int clr); 56 void lcd_set_row(short row); 66 void lcd_position_cursor(unsigned col, unsigned row);
|
A D | video_console.h | 133 int (*set_row)(struct udevice *dev, uint row, int clr); 201 int vidconsole_set_row(struct udevice *dev, uint row, int clr); 244 unsigned row);
|
/u-boot/common/ |
A D | lcd_console.c | 26 void lcd_set_row(short row) in lcd_set_row() argument 28 cons.curr_row = row; in lcd_set_row() 31 void lcd_position_cursor(unsigned col, unsigned row) in lcd_position_cursor() argument 34 cons.curr_row = min_t(short, row, cons.rows - 1); in lcd_position_cursor() 51 int i, row; in lcd_putc_xy0() local 56 for (row = 0; row < VIDEO_FONT_HEIGHT; row++) { in lcd_putc_xy0() 57 uchar bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row]; in lcd_putc_xy0() 70 row * VIDEO_FONT_HEIGHT * in console_setrow0() 227 unsigned int col, row; in do_lcd_setcursor() local 233 row = simple_strtoul(argv[2], NULL, 10); in do_lcd_setcursor() [all …]
|
A D | lcd_console_rotation.c | 31 static inline void console_setrow90(struct console_t *pcons, u32 row, int clr) in console_setrow90() argument 36 row*VIDEO_FONT_HEIGHT+1; in console_setrow90() 68 int i, row; in lcd_putc_xy180() local 75 for (row = 0; row < VIDEO_FONT_HEIGHT; row++) { in lcd_putc_xy180() 76 uchar bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row]; in lcd_putc_xy180() 86 static inline void console_setrow180(struct console_t *pcons, u32 row, int clr) in console_setrow180() argument 90 (pcons->rows-row-1) * VIDEO_FONT_HEIGHT * in console_setrow180() 133 static inline void console_setrow270(struct console_t *pcons, u32 row, int clr) in console_setrow270() argument 137 row*VIDEO_FONT_HEIGHT; in console_setrow270()
|
A D | splash.c | 128 int col, row, ret; in splash_display_banner() local 136 row = BMP_LOGO_HEIGHT / VIDEO_FONT_HEIGHT + 1; in splash_display_banner() 139 row = 0; in splash_display_banner() 145 vidconsole_position_cursor(dev, 0, row); in splash_display_banner()
|
/u-boot/drivers/ram/rockchip/ |
A D | sdram_common.c | 289 u32 row, col, bk, bw, cs_cap, cs; in sdram_detect_dbw() local 295 row = cap_info->cs0_row; in sdram_detect_dbw() 311 row = cap_info->cs1_row; in sdram_detect_dbw() 335 u32 row; in sdram_detect_row() local 339 for (row = rowtmp; row > 12; row--) { in sdram_detect_row() 348 if (row == 12) { in sdram_detect_row() 353 cap_info->cs0_row = row; in sdram_detect_row() 363 u32 row = cap_info->cs0_row; in sdram_detect_row_3_4() local 393 u32 row = 0, bktmp, coltmp, bw; in sdram_detect_cs1_row() local 423 for (row = cap_info->cs0_row; row > 12; row--) { in sdram_detect_cs1_row() [all …]
|
/u-boot/scripts/kconfig/ |
A D | gconf.c | 1048 g_free(row[i]); in fill_row() 1049 bzero(row, sizeof(row)); in fill_row() 1051 row[COL_OPTION] = in fill_row() 1084 return row; in fill_row() 1104 row[COL_VALUE] = in fill_row() 1157 return row; in fill_row() 1169 row[COL_PIXBUF]); in set_node() 1178 COL_NO, row[COL_NO], in set_node() 1179 COL_MOD, row[COL_MOD], in set_node() 1180 COL_YES, row[COL_YES], in set_node() [all …]
|
/u-boot/drivers/input/ |
A D | key_matrix.c | 44 if (keys[j].row == keys[i].row) in has_ghosting() 67 debug(" valid=%d, row=%d, col=%d\n", key->valid, key->row, in key_matrix_decode() 71 pos = key->row * config->num_cols + key->col; in key_matrix_decode() 124 int key_code, row, col; in create_keymap() local 127 row = (tmp >> 24) & 0xff; in create_keymap() 130 entry = row * config->num_cols + col; in create_keymap() 132 debug(" map %d, %d: pos=%d, keycode=%d\n", row, col, in create_keymap()
|
A D | cros_ec_keyb.c | 53 unsigned int row, col, bit, data; in check_for_keys() local 91 for (row = 0; row < priv->matrix.num_rows; row++) { in check_for_keys() 97 key->row = row; in check_for_keys()
|
/u-boot/include/dt-bindings/input/ |
A D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/u-boot/arch/arm/cpu/arm1136/mx35/ |
A D | mx35_sdram.c | 40 u32 row, u32 col, u32 dsize, u32 refresh) in mx3_setup_sdram_bank() argument 61 if (row < 11 || row > 14 || col < 8 || col > 10) in mx3_setup_sdram_bank() 63 ctlval = (row - 11) << 24 | (col - 8) << 20 | (dsize << 16); in mx3_setup_sdram_bank()
|
/u-boot/tools/ |
A D | rkmux.py | 187 for row in reader: 189 if not row[0]: 190 field.desc.append(row[3]) 196 field = RegField(row) 199 for row in rows: 201 printer.output_regfield(row)
|
/u-boot/board/tqc/tqm834x/ |
A D | tqm834x.c | 262 long row; in get_ddr_bank_size() member 285 set_cs_config(cs, CSCONFIG_EN | conf[i].col | conf[i].row); in get_ddr_bank_size() 294 conf[i].row, in get_ddr_bank_size() 309 conf[detected].row, conf[detected].col, conf[detected].size >> 20, base); in get_ddr_bank_size() 312 set_cs_config(cs, CSCONFIG_EN | conf[detected].row | in get_ddr_bank_size()
|
/u-boot/doc/device-tree-bindings/clock/ |
A D | rockchip,rk3368-dmc.txt | 47 DMC_MSCH_CBDR: column -> bank -> device -> row 48 DMC_MSCH_CBRD: column -> band -> row -> device 49 DMC_MSCH_CRBD: column -> row -> band -> device
|
/u-boot/arch/arm/include/asm/arch-mx35/ |
A D | sys_proto.h | 12 void mx3_setup_sdram_bank(u32 start_address, u32 ddr2_config, u32 row,
|
/u-boot/drivers/ddr/altera/ |
A D | sdram_gen5.c | 505 unsigned long row, bank, col, cs, width; in sdram_calculate_size() local 524 row = readl(socfpga_get_sysmgr_addr() + in sdram_calculate_size() 526 if (row == 0) in sdram_calculate_size() 527 row = rowbits; in sdram_calculate_size() 535 if (row > 31) in sdram_calculate_size() 536 row = rowbits; in sdram_calculate_size() 558 temp = 1 << (row + bank + col); in sdram_calculate_size()
|