| /openbmc/qemu/hw/display/ |
| H A D | pl110_template.h | 38 static void glue(pl110_draw_line1_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue() 41 uint32_t data; in glue() local 42 while (width > 0) { in glue() 43 data = *(uint32_t *)src; in glue() 45 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 7 - (x))) & 1]); in glue() 47 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x) + y)) & 1]); in glue() 61 width -= 32; in glue() 66 static void glue(pl110_draw_line2_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue() 69 uint32_t data; in glue() local 70 while (width > 0) { in glue() [all …]
|
| H A D | vga-helpers.h | 28 ((uint32_t *)d)[0] = (-((font_data >> 7)) & xorcol) ^ bgcol; in vga_draw_glyph_line() 29 ((uint32_t *)d)[1] = (-((font_data >> 6) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 30 ((uint32_t *)d)[2] = (-((font_data >> 5) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 31 ((uint32_t *)d)[3] = (-((font_data >> 4) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 32 ((uint32_t *)d)[4] = (-((font_data >> 3) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 33 ((uint32_t *)d)[5] = (-((font_data >> 2) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 34 ((uint32_t *)d)[6] = (-((font_data >> 1) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 35 ((uint32_t *)d)[7] = (-((font_data >> 0) & 1) & xorcol) ^ bgcol; in vga_draw_glyph_line() 50 } while (--h); in vga_draw_glyph8() 68 } while (--h); in vga_draw_glyph16() [all …]
|
| H A D | ramfb.c | 11 * See the COPYING file in the top-level directory. 18 #include "hw/display/bochs-vbe.h" /* for limits */ 26 uint32_t width; member 35 uint32_t width, height; member 41 void *data = pixman_image_get_data(image); in ramfb_unmap_display_surface() local 44 cpu_physical_memory_unmap(data, size, 0, 0); in ramfb_unmap_display_surface() 47 static DisplaySurface *ramfb_create_display_surface(int width, int height, in ramfb_create_display_surface() argument 53 void *data; in ramfb_create_display_surface() local 55 if (width < 16 || width > VBE_DISPI_MAX_XRES || in ramfb_create_display_surface() 60 linesize = width * PIXMAN_FORMAT_BPP(format) / 8; in ramfb_create_display_surface() [all …]
|
| H A D | artist.c | 4 * Copyright (c) 2019-2022 Sven Schnelle <svens@stackframe.org> 11 #include "qemu/error-report.h" 19 #include "hw/qdev-core.h" 20 #include "hw/qdev-properties.h" 32 uint8_t *data; member 34 unsigned int width; member 53 uint16_t width; member 226 int start = starty * buf->width; in artist_invalidate_lines() 229 if (starty + height > buf->height) { in artist_invalidate_lines() 230 height = buf->height - starty; in artist_invalidate_lines() [all …]
|
| H A D | qxl-render.c | 29 DisplaySurface *surface = qemu_console_surface(qxl->vga.con); in qxl_blit() 37 trace_qxl_render_blit(qxl->guest_primary.qxl_stride, in qxl_blit() 38 rect->left, rect->right, rect->top, rect->bottom); in qxl_blit() 39 src = qxl->guest_primary.data; in qxl_blit() 40 if (qxl->guest_primary.qxl_stride < 0) { in qxl_blit() 43 src += (qxl->guest_primary.surface.height - rect->top - 1) * in qxl_blit() 44 qxl->guest_primary.abs_stride; in qxl_blit() 46 src += rect->top * qxl->guest_primary.abs_stride; in qxl_blit() 48 dst += rect->top * qxl->guest_primary.abs_stride; in qxl_blit() 49 src += rect->left * qxl->guest_primary.bytes_pp; in qxl_blit() [all …]
|
| H A D | cg3.c | 5 * Copyright (c) 2013 Mark Cave-Ayland 29 #include "qemu/error-report.h" 35 #include "hw/qdev-properties.h" 84 uint16_t width, height, depth; member 91 DisplaySurface *surface = qemu_console_surface(s->con); in cg3_update_display() 93 uint32_t *data; in cg3_update_display() local 96 unsigned int width, height; in cg3_update_display() local 103 width = s->width; in cg3_update_display() 104 height = s->height; in cg3_update_display() 106 y_start = -1; in cg3_update_display() [all …]
|
| H A D | virtio-gpu-gl.c | 4 * Copyright Red Hat, Inc. 2013-2014 11 * See the COPYING file in the top-level directory. 17 #include "qemu/error-report.h" 21 #include "hw/virtio/virtio-gpu.h" 22 #include "hw/virtio/virtio-gpu-bswap.h" 23 #include "hw/virtio/virtio-gpu-pixman.h" 24 #include "hw/qdev-properties.h" 33 uint32_t width, height; in virtio_gpu_gl_update_cursor_data() local 34 uint32_t pixels, *data; in virtio_gpu_gl_update_cursor_data() local 36 if (gl->renderer_state != RS_INITED) { in virtio_gpu_gl_update_cursor_data() [all …]
|
| /openbmc/qemu/ui/ |
| H A D | cursor.c | 7 /* for creating built-in cursors */ 12 unsigned int width, height, colors, chars; in cursor_parse_xpm() local 17 /* parse header line: width, height, #colors, #chars */ in cursor_parse_xpm() 19 &width, &height, &colors, &chars) != 4) { in cursor_parse_xpm() 47 /* parse pixel data */ in cursor_parse_xpm() 48 c = cursor_alloc(width, height); in cursor_parse_xpm() 54 c->data[pixel] = ctab[idx]; in cursor_parse_xpm() 63 uint32_t *data = c->data; in cursor_print_ascii_art() local 66 for (y = 0; y < c->height; y++) { in cursor_print_ascii_art() 68 for (x = 0; x < c->width; x++, data++) { in cursor_print_ascii_art() [all …]
|
| H A D | dbus-display1.xml | 1 <?xml version="1.0" encoding="utf-8"?> 3 <!-- 7 --> 9 <!-- 13 --> 16 <!-- 20 --> 23 <!-- 27 --> 30 <!-- [all …]
|
| /openbmc/u-boot/scripts/kconfig/lxdialog/ |
| H A D | textbox.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * textbox.c -- implements the text box 12 static void print_page(WINDOW *win, int height, int width, update_text_fn 13 update_text, void *data); 14 static void print_line(WINDOW *win, int row, int width); 28 void *data) in refresh_text_box() argument 30 print_page(box, boxh, boxw, update_text, data); in refresh_text_box() 40 * keys is a null-terminated array 45 update_text_fn update_text, void *data) in dialog_textbox() argument 48 int height, width, boxh, boxw; in dialog_textbox() local [all …]
|
| /openbmc/openbmc/poky/documentation/overview-manual/svg/ |
| H A D | bitbake_tasks_map.svg | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- Do not edit this file with editors other than draw.io --> 3 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> 4 …width="12270px" height="3804px" viewBox="-0.5 -0.5 12270 3804" content="<mxfile host="app.…
|
| /openbmc/u-boot/lib/ |
| H A D | display_options.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * (C) Copyright 2000-2002 22 len += snprintf(buf + len, size - len, ", Build: %s", in display_options_get_banner_priv() 24 if (len > size - 3) in display_options_get_banner_priv() 25 len = size - 3; in display_options_get_banner_priv() 99 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) { in print_size() 112 f = size & ((1ULL << d) - 1); in print_size() 116 m = (10ULL * f + (1ULL << (d - 1))) >> d; in print_size() 119 m -= 10; in print_size() 133 int print_buffer(ulong addr, const void *data, uint width, uint count, in print_buffer() argument [all …]
|
| /openbmc/u-boot/drivers/i2c/muxes/ |
| H A D | pca954x.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * Copyright (C) 2015 - 2016 Xilinx, Inc. 13 #include <asm-generic/gpio.h> 30 u32 width; member 35 u32 width; /* I2C mux width - number of busses */ member 43 .width = 4, 48 .width = 8, 53 .width = 8, 58 .width = 4, 68 return dm_i2c_write(mux, priv->addr, &byte, 1); in pca954x_deselect() [all …]
|
| /openbmc/u-boot/tools/ |
| H A D | bmp_logo.c | 9 uint16_t width; member 12 uint8_t *data; member 19 fprintf(stderr, "Usage: %s [--gen-info|--gen-data] file\n", prog); in usage() 38 while (n-- > 0) in skip_bytes() 69 b->width, b->height, n_colors, in gen_info() 86 if (!strcmp(argv[1], "--gen-info")) in main() 88 else if (!strcmp(argv[1], "--gen-data")) in main() 105 * read width and height of the image, and the number of colors used; in main() 110 error ("Couldn't read bitmap data offset", fp); in main() 117 if (fread (&b->width, sizeof (uint16_t), 1, fp) != 1) in main() [all …]
|
| /openbmc/qemu/include/ui/ |
| H A D | pixman-minimal.h | 2 * SPDX-License-Identifier: MIT 61 (((val >> (ofs)) & ((1 << (num)) - 1)) << ((val >> 22) & 3)) 95 typedef void (*pixman_image_destroy_func_t)(pixman_image_t *image, void *data); 100 int width; member 103 uint32_t *data; member 117 int width, in create_bits() argument 127 * stride = ((width * bpp + 0x1f) >> 5) * sizeof(uint32_t); in create_bits() 130 if (unlikely(__builtin_mul_overflow(width, bpp, &stride))) { in create_bits() 156 int width, in pixman_image_create_bits() argument 163 i->width = width; in pixman_image_create_bits() [all …]
|
| /openbmc/openbmc-tools/bi2cp/ |
| H A D | bi2cp | 3 # SPDX-License-Identifier: Apache-2.0 16 def __new__(cls, value, width): argument 19 obj.width = width 22 MONITOR_CONFIG = (0xD5, -1) 26 DEVICE_ID = (0xFD, -1) 30 def __new__(cls, value, width): argument 33 obj.width = width 41 PAGE_PLUS_WRITE = (0x05, -1) 42 PAGE_PLUS_READ = (0x06, -1) 83 MFR_MODEL = (0x9A, -1) [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/bb/tests/fetch-testdata/apple/cups/ |
| H A D | releases | 10 <meta charset="utf-8"> 11 <link rel="dns-prefetch" href="https://github.githubassets.com"> 12 <link rel="dns-prefetch" href="https://avatars0.githubusercontent.com"> 13 <link rel="dns-prefetch" href="https://avatars1.githubusercontent.com"> 14 <link rel="dns-prefetch" href="https://avatars2.githubusercontent.com"> 15 <link rel="dns-prefetch" href="https://avatars3.githubusercontent.com"> 16 <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com"> 17 <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/"> 21 …-7mtunHqp/Bw0ND9akjJME8XCh0WPm3HAXOSeX7skL0qGAhpdfzkQvYcujYcwNPTpWKeKMFUGZGtvnEkcczFgwQ==" rel="st… 22 …-CmoegizWCUR1jC94Y2eukVQIFxJ9GxYerz9q7dBwImLlx8ODwYkXAMIhCfTnA45Ep6++rcO/ZtKVLvFBM8dapA==" rel="st… [all …]
|
| /openbmc/u-boot/tools/easylogo/ |
| H A D | easylogo.c | 2 ** Easylogo TGA->header converter 5 ** AIRVENT SAM s.p.a - RIMINI(ITALY) 6 ** (C) 2007-2008 Mike Frysinger <vapier@gentoo.org> 52 void *data, *palette; member 53 int width, height, pixels, bpp, pixel_size, size, palette_size, yuyv; member 72 while (count--) { in StringUpperCase() 75 *str = 'A' + (c - 'a'); in StringUpperCase() 85 while (count--) { in StringLowerCase() 88 *str = 'a' + (c - 'A'); in StringLowerCase() 96 /* Transform (0-255) components to (0-100) */ in pixel_rgb_to_yuyv() [all …]
|
| /openbmc/u-boot/drivers/video/ |
| H A D | bus_vcxk.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * (C) Copyright 2005-2009 4 * Jens Scharsig @ BuS Elektronik GmbH & Co. KG, <esw@bus-elektronik.de> 25 writel(PIN, &pio->PORT.per); \ 26 writel(PIN, &pio->PORT.DDR); \ 27 writel(PIN, &pio->PORT.mddr); \ 29 writel(PIN, &pio->PORT.puer); \ 32 #define VCXK_SET_PIN(PORT, PIN) writel(PIN, &pio->PORT.sodr); 33 #define VCXK_CLR_PIN(PORT, PIN) writel(PIN, &pio->PORT.codr); 36 (!(readl(&pio->CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT.pdsr) & \ [all …]
|
| /openbmc/u-boot/doc/device-tree-bindings/spi/ |
| H A D | spi-bus.txt | 10 - #address-cells - number of cells required to define a chip select 12 - #size-cells - should be zero. 13 - compatible - name of SPI bus controller following generic names 15 - cs-gpios - (optional) gpios chip select. 20 flexible and non-standardized, it is left out of this binding with the 26 - num-cs : total number of chipselects 28 If cs-gpios is used the number of chip select will automatically increased 29 with max(cs-gpios > hw cs) 31 So if for example the controller has 2 CS lines, and the cs-gpios 34 cs-gpios = <&gpio1 0 0> <0> <&gpio1 1 0> <&gpio1 2 0>; [all …]
|
| /openbmc/u-boot/board/toradex/apalis_imx6/ |
| H A D | ddr-setup.cfg | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 4 * Copyright (C) 2014-2016, Toradex AG 6 * Device Configuration Data (DCD) 9 * Addr-type Address Value 12 * Addr-type register length (1,2 or 4 bytes) 20 * memory bus width: 64 bits x16/x32/x64 22 * memory bus width: 64 bits x16/x32/x64 24 * memory bus width: 32 bits x16/x32 26 DATA 4, MX6_IOM_DRAM_SDQS0, 0x00000030 27 DATA 4, MX6_IOM_DRAM_SDQS1, 0x00000030 [all …]
|
| /openbmc/u-boot/board/toradex/colibri_imx6/ |
| H A D | ddr-setup.cfg | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 4 * Copyright (C) 2014-2016, Toradex AG 6 * Device Configuration Data (DCD) 9 * Addr-type Address Value 12 * Addr-type register length (1,2 or 4 bytes) 20 * memory bus width: 64 bits x16/x32/x64 22 * memory bus width: 64 bits x16/x32/x64 24 * memory bus width: 32 bits x16/x32 26 DATA 4, MX6_IOM_DRAM_SDQS0, 0x00000030 27 DATA 4, MX6_IOM_DRAM_SDQS1, 0x00000030 [all …]
|
| /openbmc/u-boot/board/boundary/nitrogen6x/ |
| H A D | ddr-setup.cfg | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 5 * Device Configuration Data (DCD) 8 * Addr-type Address Value 11 * Addr-type register length (1,2 or 4 bytes) 19 * memory bus width: 64 bits x16/x32/x64 21 * memory bus width: 64 bits x16/x32/x64 23 * memory bus width: 32 bits x16/x32 25 DATA 4, MX6_IOM_DRAM_SDQS0, 0x00000030 26 DATA 4, MX6_IOM_DRAM_SDQS1, 0x00000030 27 DATA 4, MX6_IOM_DRAM_SDQS2, 0x00000030 [all …]
|
| /openbmc/webui-vue/tests/unit/__snapshots__/ |
| H A D | AppNavigation.spec.js.snap | 6 class="nav-container" 9 aria-label="appNavigation.primaryNavigation" 12 class="nav mb-4 flex-column" 15 class="nav-item" 16 data-test-id="nav-item-overview" 19 aria-current="page" 20 class="nav-link router-link-exact-active router-link-active" 25 aria-hidden="true" 31 width="16" 35 … d="M24 21H26V26H24zM20 16H22V26H20zM11 26a5.0059 5.0059 0 01-5-5H8a3 3 0 103-3V16a5 5 0 010 10z" [all …]
|
| /openbmc/u-boot/arch/sandbox/include/asm/ |
| H A D | sdl.h | 1 /* SPDX-License-Identifier: GPL-2.0+ */ 14 * sandbox_sdl_init_display() - Set up SDL video ready for use 16 * @width: Window width in pixels 20 * @return 0 if OK, -ENODEV if no device, -EIO if SDL failed to initialize 21 * and -EPERM if the video failed to come up. 23 int sandbox_sdl_init_display(int width, int height, int log2_bpp); 26 * sandbox_sdl_sync() - Sync current U-Boot LCD frame buffer to SDL 32 * @return 0 if screen was updated, -ENODEV is there is no screen. 37 * sandbox_sdl_scan_keys() - scan for pressed keys 43 * @return number of keycodes found, 0 if none, -ENODEV if no keyboard [all …]
|