/openbmc/qemu/tests/unit/ |
H A D | test-qga.c | 143 const TestFixture *fixture = fix; in test_qga_sync_delimited() 184 const TestFixture *fixture = fix; in test_qga_sync() 212 const TestFixture *fixture = fix; in test_qga_ping() 222 const TestFixture *fixture = fix; in test_qga_id() 233 const TestFixture *fixture = fix; in test_qga_invalid_oob() 635 TestFixture fix; in test_qga_blockedrpcs() local 665 fixture_tear_down(&fix, NULL); in test_qga_blockedrpcs() 670 TestFixture fix; in test_qga_allowedrpcs() local 695 fixture_tear_down(&fix, NULL); in test_qga_allowedrpcs() 1084 TestFixture fix; in main() local [all …]
|
/openbmc/linux/drivers/clk/ |
H A D | clk-fixed-factor.c | 29 do_div(rate, fix->div); in clk_factor_recalc_rate() 41 best_parent = (rate / fix->mult) * fix->div; in clk_factor_round_rate() 45 return (*prate / fix->div) * fix->mult; in clk_factor_round_rate() 100 fix = kmalloc(sizeof(*fix), GFP_KERNEL); in __clk_hw_register_fixed_factor() 101 if (!fix) in __clk_hw_register_fixed_factor() 105 fix->mult = mult; in __clk_hw_register_fixed_factor() 106 fix->div = div; in __clk_hw_register_fixed_factor() 120 hw = &fix->hw; in __clk_hw_register_fixed_factor() 127 devres_free(fix); in __clk_hw_register_fixed_factor() 129 kfree(fix); in __clk_hw_register_fixed_factor() [all …]
|
/openbmc/linux/drivers/clk/uniphier/ |
H A D | clk-uniphier-fixed-factor.c | 16 struct clk_fixed_factor *fix; in uniphier_clk_register_fixed_factor() local 20 fix = devm_kzalloc(dev, sizeof(*fix), GFP_KERNEL); in uniphier_clk_register_fixed_factor() 21 if (!fix) in uniphier_clk_register_fixed_factor() 30 fix->mult = data->mult; in uniphier_clk_register_fixed_factor() 31 fix->div = data->div; in uniphier_clk_register_fixed_factor() 32 fix->hw.init = &init; in uniphier_clk_register_fixed_factor() 34 ret = devm_clk_hw_register(dev, &fix->hw); in uniphier_clk_register_fixed_factor() 38 return &fix->hw; in uniphier_clk_register_fixed_factor()
|
/openbmc/u-boot/drivers/video/ |
H A D | mxc_ipuv3_fb.c | 121 struct fb_fix_screeninfo *fix = &info->fix; in mxcfb_set_fix() local 129 fix->xpanstep = 1; in mxcfb_set_fix() 130 fix->ypanstep = 1; in mxcfb_set_fix() 186 fbi->fix.line_length, in setup_disp_channel2() 187 fbi->fix.smem_start, in setup_disp_channel2() 188 fbi->fix.smem_start + in setup_disp_channel2() 223 if (!fbi->fix.smem_start || (mem_len > fbi->fix.smem_len)) { in mxcfb_set_par() 399 if (fbi->fix.smem_len < fbi->var.yres_virtual * fbi->fix.line_length) { in mxcfb_map_video_memory() 403 fbi->fix.smem_len = roundup(fbi->fix.smem_len, ARCH_DMA_MINALIGN); in mxcfb_map_video_memory() 415 (uint32_t) fbi->fix.smem_start, fbi->fix.smem_len); in mxcfb_map_video_memory() [all …]
|
/openbmc/linux/drivers/video/fbdev/core/ |
H A D | fb_chrdev.c | 67 struct fb_fix_screeninfo fix; in do_fb_ioctl() local 100 memcpy(&fix, &info->fix, sizeof(fix)); in do_fb_ioctl() 102 fix.smem_start = 0; in do_fb_ioctl() 105 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0; in do_fb_ioctl() 254 sizeof(fix->reserved)); in do_fscreeninfo_to_user() 264 struct fb_fix_screeninfo fix; in fb_get_fscreeninfo() local 267 fix = info->fix; in fb_get_fscreeninfo() 269 fix.smem_start = 0; in fb_get_fscreeninfo() 352 start = info->fix.smem_start; in fb_mmap() 353 len = info->fix.smem_len; in fb_mmap() [all …]
|
/openbmc/linux/drivers/video/fbdev/ |
H A D | neofb.c | 1715 if (!request_mem_region(info->fix.smem_start, info->fix.smem_len, in neo_map_video() 1722 ioremap_wc(info->fix.smem_start, info->fix.smem_len); in neo_map_video() 1951 strscpy(info->fix.id, "MagicGraph128", sizeof(info->fix.id)); in neo_alloc_fb_info() 1954 strscpy(info->fix.id, "MagicGraph128V", sizeof(info->fix.id)); in neo_alloc_fb_info() 1957 strscpy(info->fix.id, "MagicGraph128ZV", sizeof(info->fix.id)); in neo_alloc_fb_info() 1960 strscpy(info->fix.id, "Mag.Graph128ZV+", sizeof(info->fix.id)); in neo_alloc_fb_info() 1963 strscpy(info->fix.id, "MagicGraph128XD", sizeof(info->fix.id)); in neo_alloc_fb_info() 1966 strscpy(info->fix.id, "MagicGraph256AV", sizeof(info->fix.id)); in neo_alloc_fb_info() 1972 strscpy(info->fix.id, "Mag.Graph256AV+", sizeof(info->fix.id)); in neo_alloc_fb_info() 1978 strscpy(info->fix.id, "MagicGraph256ZX", sizeof(info->fix.id)); in neo_alloc_fb_info() [all …]
|
H A D | stifb.c | 1201 fix = &info->fix; in stifb_init_fb() 1325 if (fix->smem_len > yres*fix->line_length) in stifb_init_fb() 1326 fix->smem_len = ALIGN(yres*fix->line_length, 4*1024*1024); in stifb_init_fb() 1377 if (!request_mem_region(fix->smem_start, fix->smem_len, "stifb fb")) { in stifb_init_fb() 1379 fix->smem_start, fix->smem_start+fix->smem_len); in stifb_init_fb() 1385 fix->mmio_start, fix->mmio_start+fix->mmio_len); in stifb_init_fb() 1395 fix->id, in stifb_init_fb() 1401 fix->mmio_start); in stifb_init_fb() 1407 release_mem_region(fix->mmio_start, fix->mmio_len); in stifb_init_fb() 1409 release_mem_region(fix->smem_start, fix->smem_len); in stifb_init_fb() [all …]
|
H A D | sunxvr2500.c | 85 strscpy(info->fix.id, "s3d", sizeof(info->fix.id)); in s3d_set_fbinfo() 86 info->fix.smem_start = sp->fb_base_phys; in s3d_set_fbinfo() 87 info->fix.smem_len = sp->fb_size; in s3d_set_fbinfo() 88 info->fix.type = FB_TYPE_PACKED_PIXELS; in s3d_set_fbinfo() 90 info->fix.visual = FB_VISUAL_TRUECOLOR; in s3d_set_fbinfo() 92 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in s3d_set_fbinfo() 171 info->fix.line_length = sp->width; in s3d_pci_register() 174 info->fix.line_length = sp->width * 2; in s3d_pci_register() 177 info->fix.line_length = sp->width * 3; in s3d_pci_register() 180 info->fix.line_length = sp->width * 4; in s3d_pci_register() [all …]
|
H A D | p9100.c | 226 info->fix.smem_start, info->fix.smem_len, in p9100_mmap() 235 FBTYPE_SUN3COLOR, 8, info->fix.smem_len); in p9100_ioctl() 244 snprintf(info->fix.id, sizeof(info->fix.id), "%pOFn", dp); in p9100_init_fix() 246 info->fix.type = FB_TYPE_PACKED_PIXELS; in p9100_init_fix() 247 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in p9100_init_fix() 249 info->fix.line_length = linebytes; in p9100_init_fix() 251 info->fix.accel = FB_ACCEL_SUN_CGTHREE; in p9100_init_fix() 271 info->fix.smem_start = op->resource[2].start; in p9100_probe() 280 info->fix.smem_len = PAGE_ALIGN(linebytes * info->var.yres); in p9100_probe() 289 info->fix.smem_len, "p9100 ram"); in p9100_probe() [all …]
|
H A D | bw2.c | 169 info->fix.smem_start, info->fix.smem_len, in bw2_mmap() 177 FBTYPE_SUN2BW, 1, info->fix.smem_len); in bw2_ioctl() 186 strscpy(info->fix.id, "bwtwo", sizeof(info->fix.id)); in bw2_init_fix() 188 info->fix.type = FB_TYPE_PACKED_PIXELS; in bw2_init_fix() 189 info->fix.visual = FB_VISUAL_MONO01; in bw2_init_fix() 191 info->fix.line_length = linebytes; in bw2_init_fix() 193 info->fix.accel = FB_ACCEL_SUN_BWTWO; in bw2_init_fix() 293 info->fix.smem_start = op->resource[0].start; in bw2_probe() 316 info->fix.smem_len = PAGE_ALIGN(linebytes * info->var.yres); in bw2_probe() 321 info->fix.smem_len, "bw2 ram"); in bw2_probe() [all …]
|
H A D | valkyriefb.c | 133 valkyrie_par_to_fix(par, &info->fix); in valkyriefb_set_par() 372 valkyrie_init_fix(&p->info.fix, p); in valkyriefb_init() 505 memset(fix, 0, sizeof(*fix)); in valkyrie_init_fix() 506 strcpy(fix->id, "valkyrie"); in valkyrie_init_fix() 509 fix->type = FB_TYPE_PACKED_PIXELS; in valkyrie_init_fix() 511 fix->smem_len = p->total_vram; in valkyrie_init_fix() 513 fix->type_aux = 0; in valkyrie_init_fix() 514 fix->ywrapstep = 0; in valkyrie_init_fix() 515 fix->ypanstep = 0; in valkyrie_init_fix() 516 fix->xpanstep = 0; in valkyrie_init_fix() [all …]
|
H A D | wm8505fb.c | 127 info->fix.visual = FB_VISUAL_TRUECOLOR; in wm8505fb_set_par() 205 switch (fbi->fb.fix.visual) { in wm8505fb_setcolreg() 279 strcpy(fbi->fb.fix.id, DRIVER_NAME); in wm8505fb_probe() 282 fbi->fb.fix.xpanstep = 1; in wm8505fb_probe() 283 fbi->fb.fix.ypanstep = 1; in wm8505fb_probe() 284 fbi->fb.fix.ywrapstep = 0; in wm8505fb_probe() 285 fbi->fb.fix.accel = FB_ACCEL_NONE; in wm8505fb_probe() 337 fbi->fb.fix.smem_start = fb_mem_phys; in wm8505fb_probe() 338 fbi->fb.fix.smem_len = fb_mem_len; in wm8505fb_probe() 368 fbi->fb.fix.id, fbi->fb.fix.smem_start, in wm8505fb_probe() [all …]
|
H A D | atmel_lcdfb.c | 297 struct fb_fix_screeninfo *fix = &info->fix; in atmel_lcdfb_update_dma() local 300 dma_addr = (fix->smem_start + var->yoffset * fix->line_length in atmel_lcdfb_update_dma() 314 info->fix.smem_start); in atmel_lcdfb_free_video_memory() 430 if (info->fix.smem_len) { in atmel_lcdfb_check_var() 717 switch (info->fix.visual) { in atmel_lcdfb_setcolreg() 1065 info->fix = atmel_lcdfb_fix; in atmel_lcdfb_probe() 1142 sinfo->mmio = ioremap(info->fix.mmio_start, info->fix.mmio_len); in atmel_lcdfb_probe() 1204 release_mem_region(info->fix.mmio_start, info->fix.mmio_len); in atmel_lcdfb_probe() 1213 release_mem_region(info->fix.smem_start, info->fix.smem_len); in atmel_lcdfb_probe() 1246 release_mem_region(info->fix.mmio_start, info->fix.mmio_len); in atmel_lcdfb_remove() [all …]
|
H A D | sunxvr1000.c | 81 strscpy(info->fix.id, "gfb", sizeof(info->fix.id)); in gfb_set_fbinfo() 82 info->fix.smem_start = gp->fb_base_phys; in gfb_set_fbinfo() 83 info->fix.smem_len = gp->fb_size; in gfb_set_fbinfo() 84 info->fix.type = FB_TYPE_PACKED_PIXELS; in gfb_set_fbinfo() 86 info->fix.visual = FB_VISUAL_TRUECOLOR; in gfb_set_fbinfo() 88 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in gfb_set_fbinfo() 137 info->fix.line_length = 16384; in gfb_probe() 138 gp->fb_size = info->fix.line_length * gp->height; in gfb_probe()
|
H A D | tcx.c | 307 info->fix.smem_start, info->fix.smem_len, in tcx_mmap() 319 info->fix.smem_len); in tcx_ioctl() 337 strscpy(info->fix.id, tcx_name, sizeof(info->fix.id)); in tcx_init_fix() 339 info->fix.type = FB_TYPE_PACKED_PIXELS; in tcx_init_fix() 340 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in tcx_init_fix() 342 info->fix.line_length = linebytes; in tcx_init_fix() 344 info->fix.accel = FB_ACCEL_SUN_TCX; in tcx_init_fix() 364 info->screen_base, info->fix.smem_len); in tcx_unmap_regs() 401 info->fix.smem_len, "tcx ram"); in tcx_probe() 409 info->fix.smem_len * sizeof(u32), in tcx_probe() [all …]
|
H A D | vga16fb.c | 242 info->fix.type = FB_TYPE_VGA_PLANES; in vga16fb_update_fix() 247 info->fix.type = FB_TYPE_TEXT; in vga16fb_update_fix() 918 switch (info->fix.type) { in vga16fb_fillrect() 1071 switch (info->fix.type) { in vga16fb_copyarea() 1168 image->dy * info->fix.line_length; in vga_imageblit_expand() 1174 switch (info->fix.type) { in vga_imageblit_expand() 1194 where += info->fix.line_length; in vga_imageblit_expand() 1216 where += info->fix.line_length; in vga_imageblit_expand() 1242 switch (info->fix.type) { in vga_imageblit_color() 1262 where += info->fix.line_length; in vga_imageblit_color() [all …]
|
/openbmc/linux/drivers/video/fbdev/geode/ |
H A D | gxfb_core.c | 161 info->fix.visual = FB_VISUAL_TRUECOLOR; in gxfb_set_par() 163 info->fix.visual = FB_VISUAL_PSEUDOCOLOR; in gxfb_set_par() 254 info->fix.smem_len); in gxfb_map_video_memory() 264 info->fix.smem_len / 1024, info->fix.smem_start); in gxfb_map_video_memory() 291 strcpy(info->fix.id, "Geode GX"); in gxfb_init_fbinfo() 293 info->fix.type = FB_TYPE_PACKED_PIXELS; in gxfb_init_fbinfo() 294 info->fix.type_aux = 0; in gxfb_init_fbinfo() 295 info->fix.xpanstep = 0; in gxfb_init_fbinfo() 296 info->fix.ypanstep = 0; in gxfb_init_fbinfo() 297 info->fix.ywrapstep = 0; in gxfb_init_fbinfo() [all …]
|
H A D | gx1fb_core.c | 136 info->fix.visual = FB_VISUAL_TRUECOLOR; in gx1fb_set_par() 226 info->fix.smem_len = fb_len; in gx1fb_map_video_memory() 227 info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len); in gx1fb_map_video_memory() 232 info->fix.smem_len / 1024, info->fix.smem_start); in gx1fb_map_video_memory() 277 strcpy(info->fix.id, "GX1"); in gx1fb_init_fbinfo() 279 info->fix.type = FB_TYPE_PACKED_PIXELS; in gx1fb_init_fbinfo() 280 info->fix.type_aux = 0; in gx1fb_init_fbinfo() 281 info->fix.xpanstep = 0; in gx1fb_init_fbinfo() 282 info->fix.ypanstep = 0; in gx1fb_init_fbinfo() 283 info->fix.ywrapstep = 0; in gx1fb_init_fbinfo() [all …]
|
H A D | lxfb_core.c | 263 > info->fix.smem_len) in lxfb_check_var() 272 info->fix.visual = FB_VISUAL_TRUECOLOR; in lxfb_set_par() 361 info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len); in lxfb_map_video_memory() 388 info->fix.smem_len / 1024, info->fix.smem_start); in lxfb_map_video_memory() 415 strcpy(info->fix.id, "Geode LX"); in lxfb_init_fbinfo() 417 info->fix.type = FB_TYPE_PACKED_PIXELS; in lxfb_init_fbinfo() 418 info->fix.type_aux = 0; in lxfb_init_fbinfo() 419 info->fix.xpanstep = 0; in lxfb_init_fbinfo() 420 info->fix.ypanstep = 0; in lxfb_init_fbinfo() 421 info->fix.ywrapstep = 0; in lxfb_init_fbinfo() [all …]
|
/openbmc/openbmc/poky/documentation/migration-guides/ |
H A D | release-notes-4.0.3.rst | 9 - binutils: fix :cve:`2019-1010204` 10 - busybox: fix :cve:`2022-30065` 13 - dpkg: fix :cve:`2022-1664` 14 - ghostscript: fix :cve:`2022-2085` 15 - harfbuzz: fix :cve:`2022-33068` 16 - libtirpc: fix :cve:`2021-46828` 17 - lua: fix :cve:`2022-33099` 19 - qemu: fix :cve:`2022-35414` 22 - u-boot: fix :cve:`2022-34835` 47 - efivar: fix import functionality [all …]
|
/openbmc/linux/drivers/media/test-drivers/vivid/ |
H A D | vivid-osd.c | 113 strscpy(fix->id, "vioverlay fb", sizeof(fix->id)); in vivid_fb_get_fix() 114 fix->smem_start = dev->video_pbase; in vivid_fb_get_fix() 115 fix->smem_len = dev->video_buffer_size; in vivid_fb_get_fix() 116 fix->type = FB_TYPE_PACKED_PIXELS; in vivid_fb_get_fix() 117 fix->visual = FB_VISUAL_TRUECOLOR; in vivid_fb_get_fix() 118 fix->xpanstep = 1; in vivid_fb_get_fix() 119 fix->ypanstep = 1; in vivid_fb_get_fix() 120 fix->ywrapstep = 0; in vivid_fb_get_fix() 122 fix->accel = FB_ACCEL_NONE; in vivid_fb_get_fix() 190 vivid_fb_get_fix(dev, &info->fix); in vivid_fb_set_par() [all …]
|
/openbmc/linux/Documentation/scsi/ |
H A D | ChangeLog.arcmsr | 9 ** 1.10.00.10 10/10/2004 Erich Chen bug fix for SMP & ioctl 10 ** 1.20.00.00 11/29/2004 Erich Chen bug fix with arcmsr_bus_reset when PHY error 11 ** 1.20.00.02 12/09/2004 Erich Chen bug fix with over 2T bytes RAID Volume 29 ** bug fix enormous stack usage (Adrian Bunk's comment) 30 ** 1.20.00.08 6/23/2005 Erich Chen bug fix with abort command, 34 ** and firmware update notify for hardware bug fix 97 ** 1.fix the portability problems 98 ** 2.fix type B where we should _not_ iounmap() acb->pmu; 105 ** 6.fix arcmsr_cdb->Context as (unsigned long)arcmsr_cdb 110 ** 9. fix the release of dma memory for type B in arcmsr_free_ccb_pool() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pngcheck/pngcheck/ |
H A D | 0001-png-fix-IDAT-windowsize-Fix-format-string-errors-in-.patch | 4 Subject: [PATCH 1/2] png-fix-IDAT-windowsize: Fix format string errors in 11 gpl/png-fix-IDAT-windowsize.c | 4 ++-- 14 diff --git a/gpl/png-fix-IDAT-windowsize.c b/gpl/png-fix-IDAT-windowsize.c 16 --- a/gpl/png-fix-IDAT-windowsize.c 17 +++ b/gpl/png-fix-IDAT-windowsize.c
|
/openbmc/linux/drivers/staging/sm750fb/ |
H A D | sm750.c | 179 pitch = info->fix.line_length; in lynxfb_ops_fillrect() 217 pitch = info->fix.line_length; in lynxfb_ops_copyarea() 251 pitch = info->fix.line_length; in lynxfb_ops_imageblit() 362 struct fb_fix_screeninfo *fix; in lynxfb_ops_set_par() local 374 fix = &info->fix; in lynxfb_ops_set_par() 379 fix->line_length = line_length; in lynxfb_ops_set_par() 687 struct fb_fix_screeninfo *fix; in lynxfb_set_fbinfo() local 711 fix = &info->fix; in lynxfb_set_fbinfo() 813 fix->type_aux = 0; in lynxfb_set_fbinfo() 817 fix->accel = FB_ACCEL_SMI; in lynxfb_set_fbinfo() [all …]
|
/openbmc/linux/arch/ia64/mm/ |
H A D | extable.c | 17 long fix = (u64) &e->fixup + e->fixup; in ia64_handle_exception() local 20 if (fix & 4) in ia64_handle_exception() 22 regs->cr_iip = fix & ~0xf; in ia64_handle_exception() 23 ia64_psr(regs)->ri = fix & 0x3; /* set continuation slot number */ in ia64_handle_exception()
|