| /u-boot/drivers/video/ |
| A D | coreboot.c | 19 if (!fb) in save_vesa_mode() 22 vesa->x_resolution = fb->x_resolution; in save_vesa_mode() 23 vesa->y_resolution = fb->y_resolution; in save_vesa_mode() 24 vesa->bits_per_pixel = fb->bits_per_pixel; in save_vesa_mode() 26 vesa->phys_base_ptr = fb->physical_address; in save_vesa_mode() 27 vesa->red_mask_size = fb->red_mask_size; in save_vesa_mode() 28 vesa->red_mask_pos = fb->red_mask_pos; in save_vesa_mode() 30 vesa->green_mask_pos = fb->green_mask_pos; in save_vesa_mode() 31 vesa->blue_mask_size = fb->blue_mask_size; in save_vesa_mode() 32 vesa->blue_mask_pos = fb->blue_mask_pos; in save_vesa_mode() [all …]
|
| A D | video_bmp.c | 33 ushort *fb = *fbp; in draw_encoded_bitmap() local 36 *fb++ = col; in draw_encoded_bitmap() 39 *fbp = fb; in draw_encoded_bitmap() 79 fb = (uchar *)(priv->fb + (y + y_off - 1) in video_display_rle8_bitmap() 94 (ushort **)&fb, in video_display_rle8_bitmap() 195 uchar *start, *fb; in video_bmp_display() local 302 fb += sizeof(uint16_t) / sizeof(*fb); in video_bmp_display() 315 *(fb++) = 0; in video_bmp_display() 346 fb += 2; in video_bmp_display() 351 *(fb++) = 0; in video_bmp_display() [all …]
|
| A D | video-uclass.c | 123 u16 *ppix = priv->fb; in video_clear() 124 u16 *end = priv->fb + priv->fb_size; in video_clear() 132 u32 *ppix = priv->fb; in video_clear() 133 u32 *end = priv->fb + priv->fb_size; in video_clear() 143 ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size); in video_clear() 197 flush_dcache_range((ulong)priv->fb, in video_sync() 206 sandbox_sdl_sync(priv->fb); in video_sync() 254 offset = from - priv->fb; in video_sync_copy() 257 offset = to - priv->fb; in video_sync_copy() 270 priv->fb, from, to, offset); in video_sync_copy() [all …]
|
| A D | mxsfb.c | 181 int bpp, u32 fb) in mxs_probe_common() argument 184 mxs_lcd_init(dev, fb, timings, bpp); in mxs_probe_common() 212 static int mxs_remove_common(u32 fb) in mxs_remove_common() argument 217 if (!fb) in mxs_remove_common() 220 writel(fb, ®s->hw_lcdif_cur_buf_reg); in mxs_remove_common() 248 void *fb = NULL; in video_hw_init() local 293 fb = memalign(ARCH_DMA_MINALIGN, in video_hw_init() 295 if (!fb) { in video_hw_init() 301 memset(fb, 0, panel.memSize); in video_hw_init() 303 panel.frameAdrs = (u32)fb; in video_hw_init() [all …]
|
| A D | cfb_console.c | 1057 fb ++; \ 1065 fb += 2; \ 1073 fb += 2; \ 1081 fb += 4; \ 1086 fb[0] = b; \ 1087 fb[1] = g; \ 1089 fb += 3; \ 1096 fb += 3; \ 1323 uchar *fb; in video_display_bitmap() local 1536 fb += 2; in video_display_bitmap() [all …]
|
| A D | console_rotate.c | 22 start = vid_priv->fb + vid_priv->line_length - in console_set_row_1() 72 dst = vid_priv->fb + vid_priv->line_length - in console_move_rows_1() 74 src = vid_priv->fb + vid_priv->line_length - in console_move_rows_1() 102 start = vid_priv->fb + linenum * vid_priv->line_length - x * pbytes; in console_putc_xy_1() 164 start = vid_priv->fb + vid_priv->ysize * vid_priv->line_length - in console_set_row_2() 213 end = vid_priv->fb + vid_priv->ysize * vid_priv->line_length; in console_move_rows_2() 237 start = vid_priv->fb + linenum * vid_priv->line_length + x * pbytes; in console_putc_xy_2() 301 start = vid_priv->fb + row * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_3() 350 dst = vid_priv->fb + rowdst * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3() 351 src = vid_priv->fb + rowsrc * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_3() [all …]
|
| A D | console_normal.c | 24 line = vid_priv->fb + row * VIDEO_FONT_HEIGHT * vid_priv->line_length; in console_normal_set_row() 72 dst = vid_priv->fb + rowdst * VIDEO_FONT_HEIGHT * vid_priv->line_length; in console_normal_move_rows() 73 src = vid_priv->fb + rowsrc * VIDEO_FONT_HEIGHT * vid_priv->line_length; in console_normal_move_rows() 93 start = vid_priv->fb + y * vid_priv->line_length + in console_normal_putc_xy()
|
| A D | console_truetype.c | 134 line = vid_priv->fb + row * priv->font_size * vid_priv->line_length; in console_truetype_set_row() 185 dst = vid_priv->fb + rowdst * priv->font_size * vid_priv->line_length; in console_truetype_move_rows() 186 src = vid_priv->fb + rowsrc * priv->font_size * vid_priv->line_length; in console_truetype_move_rows() 265 start = vid_priv->fb + y * vid_priv->line_length + in console_truetype_putc_xy() 362 start = vid_priv->fb + ystart * vid_priv->line_length; in console_truetype_erase()
|
| A D | atmel_lcdfb.c | 62 void fb_put_word(uchar **fb, uchar **from) in fb_put_word() argument 64 *(*fb)++ = (((*from)[0] & 0x1f) << 2) | ((*from)[1] & 0x03); in fb_put_word() 65 *(*fb)++ = ((*from)[0] & 0xe0) | (((*from)[1] & 0x7c) >> 2); in fb_put_word()
|
| A D | fsl_diu_fb.c | 222 unsigned int depth, char **fb) in allocate_fb() argument 244 if (fb) in allocate_fb() 245 *fb = addr.vaddr + ad_size; in allocate_fb()
|
| /u-boot/arch/x86/lib/ |
| A D | coreboot_table.c | 106 struct cb_framebuffer *fb; in write_coreboot_table() local 152 fb = (struct cb_framebuffer *)cbr; in write_coreboot_table() 153 fb->tag = CB_TAG_FRAMEBUFFER; in write_coreboot_table() 154 fb->size = sizeof(struct cb_framebuffer); in write_coreboot_table() 156 fb->x_resolution = vesa->x_resolution; in write_coreboot_table() 157 fb->y_resolution = vesa->y_resolution; in write_coreboot_table() 158 fb->bits_per_pixel = vesa->bits_per_pixel; in write_coreboot_table() 161 fb->red_mask_size = vesa->red_mask_size; in write_coreboot_table() 162 fb->red_mask_pos = vesa->red_mask_pos; in write_coreboot_table() 164 fb->green_mask_pos = vesa->green_mask_pos; in write_coreboot_table() [all …]
|
| /u-boot/common/ |
| A D | lcd.c | 424 *fb++ = c; in draw_encoded_bitmap() 425 *fb++ = c; in draw_encoded_bitmap() 426 *fb++ = c; in draw_encoded_bitmap() 427 *fb++ = c; in draw_encoded_bitmap() 428 *fb++ = c; in draw_encoded_bitmap() 429 *fb++ = c; in draw_encoded_bitmap() 430 *fb++ = c; in draw_encoded_bitmap() 431 *fb++ = c; in draw_encoded_bitmap() 438 *fbp = fb; in draw_encoded_bitmap() 563 uchar *fb; in lcd_display_bitmap() local [all …]
|
| /u-boot/arch/x86/dts/ |
| A D | efi-x86_payload.dts | 42 efi-fb { 43 compatible = "efi-fb";
|
| A D | coreboot.dts | 47 coreboot-fb { 48 compatible = "coreboot-fb";
|
| /u-boot/lib/efi_loader/ |
| A D | efi_gop.c | 38 void *fb; member 100 u32 *fb32 = gopobj->fb; in gop_blt_int() 101 u16 *fb16 = gopobj->fb; in gop_blt_int() 437 void *fb; in efi_gop_register() local 454 fb_base = (uintptr_t)priv->fb; in efi_gop_register() 456 fb = priv->fb; in efi_gop_register() 465 fb = (void*)gd->fb_base; in efi_gop_register() 529 gopobj->fb = fb; in efi_gop_register()
|
| /u-boot/board/nvidia/p2771-0000/ |
| A D | p2771-0000.c | 104 struct fdt_memory fb; in ft_copy_carveout() local 107 err = fdtdec_get_carveout(src, node, "memory-region", 0, &fb); in ft_copy_carveout() 117 &fb); in ft_copy_carveout()
|
| /u-boot/board/nvidia/p2371-2180/ |
| A D | p2371-2180.c | 128 struct fdt_memory fb; in ft_copy_carveout() local 131 err = fdtdec_get_carveout(src, node, "memory-region", 0, &fb); in ft_copy_carveout() 141 &fb); in ft_copy_carveout()
|
| /u-boot/board/nvidia/p3450-0000/ |
| A D | p3450-0000.c | 127 struct fdt_memory fb; in ft_copy_carveout() local 130 err = fdtdec_get_carveout(src, node, "memory-region", 0, &fb); in ft_copy_carveout() 140 &fb); in ft_copy_carveout()
|
| /u-boot/drivers/video/ti/ |
| A D | Makefile | 9 obj-$(CONFIG_AM335X_LCD) += am335x-fb.o
|
| /u-boot/board/eets/pdu001/ |
| A D | MAINTAINERS | 2 M: Felix Brack <fb@ltec.ch>
|
| /u-boot/arch/arm/dts/ |
| A D | imx6qdl-dhcom.dtsi | 138 lltc,fb-voltage-divider = <100000 110000>; 148 lltc,fb-voltage-divider = <100000 28000>; 157 lltc,fb-voltage-divider = <100000 110000>; 167 lltc,fb-voltage-divider = <100000 93100>; 176 lltc,fb-voltage-divider = <102000 29400>; 184 lltc,fb-voltage-divider = <100000 41200>;
|
| /u-boot/doc/device-tree-bindings/video/tilcdc/ |
| A D | tilcdc.txt | 53 fb: fb@4830e000 {
|
| /u-boot/include/ |
| A D | video.h | 105 void *fb; member
|
| /u-boot/doc/device-tree-bindings/video/ |
| A D | displaymode.txt | 23 framework described here in Documentation/fb/framebuffer.txt. This
|
| /u-boot/cmd/ |
| A D | bdinfo.c | 80 bdinfo_print_num_ll("FB base", (ulong)upriv->fb); in show_video_info()
|