| /linux/tools/testing/selftests/arm64/mte/ |
| H A D | check_buffer_fill.c | 16 static int sizes[] = { variable 35 item = ARRAY_SIZE(sizes); in check_buffer_by_byte() 38 ptr = (char *)mte_allocate_memory(sizes[i], mem_type, 0, true); in check_buffer_by_byte() 39 if (check_allocated_memory(ptr, sizes[i], mem_type, true) != KSFT_PASS) in check_buffer_by_byte() 41 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[i]); in check_buffer_by_byte() 43 for (j = 0; j < sizes[i]; j++) in check_buffer_by_byte() 48 for (j = 0; j < sizes[i] && !err; j++) { in check_buffer_by_byte() 52 mte_free_memory((void *)ptr, sizes[i], mem_type, true); in check_buffer_by_byte() 72 item = ARRAY_SIZE(sizes); in check_buffer_underflow_by_byte() 74 ptr = (char *)mte_allocate_memory_tag_range(sizes[i], mem_type, 0, in check_buffer_underflow_by_byte() [all …]
|
| H A D | check_child_memory.c | 24 static int sizes[] = { variable 88 int item = ARRAY_SIZE(sizes); in check_child_memory_mapping() 90 item = ARRAY_SIZE(sizes); in check_child_memory_mapping() 93 ptr = (char *)mte_allocate_memory_tag_range(sizes[run], mem_type, mapping, in check_child_memory_mapping() 95 if (check_allocated_memory_range(ptr, sizes[run], mem_type, in check_child_memory_mapping() 98 result = check_child_tag_inheritance(ptr, sizes[run], mode); in check_child_memory_mapping() 99 mte_free_memory_tag_range((void *)ptr, sizes[run], mem_type, UNDERFLOW, OVERFLOW); in check_child_memory_mapping() 110 int total = ARRAY_SIZE(sizes); in check_child_file_mapping() 118 map_size = sizes[run] + OVERFLOW + UNDERFLOW; in check_child_file_mapping() 125 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_child_file_mapping() [all …]
|
| H A D | check_mmap_options.c | 58 static int sizes[] = { variable 118 int item = ARRAY_SIZE(sizes); in check_anonymous_memory_mapping() 125 map_size = sizes[run] + OVERFLOW + UNDERFLOW; in check_anonymous_memory_mapping() 131 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_anonymous_memory_mapping() 133 ptr = mte_insert_tags((void *)ptr, sizes[run]); in check_anonymous_memory_mapping() 139 result = check_mte_memory(ptr, sizes[run], mode, tag_check, atag_check, tag_op); in check_anonymous_memory_mapping() 140 mte_clear_tags((void *)ptr, sizes[run]); in check_anonymous_memory_mapping() 153 int total = ARRAY_SIZE(sizes); in check_file_memory_mapping() 165 map_size = sizes[run] + UNDERFLOW + OVERFLOW; in check_file_memory_mapping() 172 mte_initialize_current_context(mode, (uintptr_t)ptr, sizes[run]); in check_file_memory_mapping() [all …]
|
| /linux/drivers/gpu/drm/exynos/ |
| H A D | exynos_drm_fbdev.c | 58 struct drm_fb_helper_surface_size *sizes, in exynos_drm_fbdev_update() argument 68 drm_fb_helper_fill_info(fbi, helper, sizes); in exynos_drm_fbdev_update() 85 struct drm_fb_helper_surface_size *sizes) in exynos_drm_fbdev_driver_fbdev_probe() argument 95 sizes->surface_width, sizes->surface_height, in exynos_drm_fbdev_driver_fbdev_probe() 96 sizes->surface_bpp); in exynos_drm_fbdev_driver_fbdev_probe() 98 mode_cmd.width = sizes->surface_width; in exynos_drm_fbdev_driver_fbdev_probe() 99 mode_cmd.height = sizes->surface_height; in exynos_drm_fbdev_driver_fbdev_probe() 100 mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3); in exynos_drm_fbdev_driver_fbdev_probe() 101 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in exynos_drm_fbdev_driver_fbdev_probe() 102 sizes->surface_depth); in exynos_drm_fbdev_driver_fbdev_probe() [all …]
|
| /linux/drivers/gpu/drm/gma500/ |
| H A D | fbdev.c | 106 struct drm_fb_helper_surface_size *sizes) in psb_fbdev_driver_fbdev_probe() argument 121 if (sizes->surface_bpp == 24) { in psb_fbdev_driver_fbdev_probe() 122 sizes->surface_bpp = 32; in psb_fbdev_driver_fbdev_probe() 123 sizes->surface_depth = 24; in psb_fbdev_driver_fbdev_probe() 125 bpp = sizes->surface_bpp; in psb_fbdev_driver_fbdev_probe() 126 depth = sizes->surface_depth; in psb_fbdev_driver_fbdev_probe() 133 size = ALIGN(sizes->surface_width * DIV_ROUND_UP(bpp, 8), 64) * in psb_fbdev_driver_fbdev_probe() 134 sizes->surface_height; in psb_fbdev_driver_fbdev_probe() 138 sizes->surface_bpp = 16; in psb_fbdev_driver_fbdev_probe() 139 sizes->surface_depth = 16; in psb_fbdev_driver_fbdev_probe() [all …]
|
| /linux/drivers/gpu/drm/msm/ |
| H A D | msm_fbdev.c | 90 struct drm_fb_helper_surface_size *sizes) in msm_fbdev_driver_fbdev_probe() argument 101 format = drm_mode_legacy_fb_format(sizes->surface_bpp, sizes->surface_depth); in msm_fbdev_driver_fbdev_probe() 103 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in msm_fbdev_driver_fbdev_probe() 104 sizes->surface_height, sizes->surface_bpp, in msm_fbdev_driver_fbdev_probe() 105 sizes->fb_width, sizes->fb_height); in msm_fbdev_driver_fbdev_probe() 107 pitch = align_pitch(sizes->surface_width, sizes->surface_bpp); in msm_fbdev_driver_fbdev_probe() 108 fb = msm_alloc_stolen_fb(dev, sizes->surface_width, in msm_fbdev_driver_fbdev_probe() 109 sizes->surface_height, pitch, format); in msm_fbdev_driver_fbdev_probe() 136 drm_fb_helper_fill_info(fbi, helper, sizes); in msm_fbdev_driver_fbdev_probe()
|
| /linux/tools/perf/pmu-events/arch/x86/sapphirerapids/ |
| H A D | virtual-memory.json | 22 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 35 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 44 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 53 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 86 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 99 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 108 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 117 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/graniterapids/ |
| H A D | virtual-memory.json | 22 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 35 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 44 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 53 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 86 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 99 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 108 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 117 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/emeraldrapids/ |
| H A D | virtual-memory.json | 22 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 35 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 44 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 53 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 86 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 99 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 108 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 117 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/icelakex/ |
| H A D | virtual-memory.json | 22 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 35 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 44 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 53 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 86 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 99 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 108 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 117 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_fbdev_dma.c | 200 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_dma_driver_fbdev_probe_tail() argument 215 info->screen_size = sizes->surface_height * fb->pitches[0]; in drm_fbdev_dma_driver_fbdev_probe_tail() 227 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_dma_driver_fbdev_probe_tail_shadowed() argument 268 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_dma_driver_fbdev_probe() argument 280 sizes->surface_width, sizes->surface_height, in drm_fbdev_dma_driver_fbdev_probe() 281 sizes->surface_bpp); in drm_fbdev_dma_driver_fbdev_probe() 283 format = drm_driver_legacy_fb_format(dev, sizes->surface_bpp, in drm_fbdev_dma_driver_fbdev_probe() 284 sizes->surface_depth); in drm_fbdev_dma_driver_fbdev_probe() 285 buffer = drm_client_buffer_create_dumb(client, sizes->surface_width, in drm_fbdev_dma_driver_fbdev_probe() 286 sizes->surface_height, format); in drm_fbdev_dma_driver_fbdev_probe() [all …]
|
| H A D | drm_fbdev_shmem.c | 134 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_shmem_driver_fbdev_probe() argument 147 sizes->surface_width, sizes->surface_height, in drm_fbdev_shmem_driver_fbdev_probe() 148 sizes->surface_bpp); in drm_fbdev_shmem_driver_fbdev_probe() 150 format = drm_driver_legacy_fb_format(dev, sizes->surface_bpp, sizes->surface_depth); in drm_fbdev_shmem_driver_fbdev_probe() 151 buffer = drm_client_buffer_create_dumb(client, sizes->surface_width, in drm_fbdev_shmem_driver_fbdev_probe() 152 sizes->surface_height, format); in drm_fbdev_shmem_driver_fbdev_probe() 171 drm_fb_helper_fill_info(info, fb_helper, sizes); in drm_fbdev_shmem_driver_fbdev_probe() 179 info->screen_size = sizes->surface_height * fb->pitches[0]; in drm_fbdev_shmem_driver_fbdev_probe()
|
| /linux/drivers/gpu/drm/omapdrm/ |
| H A D | omap_fbdev.c | 152 struct drm_fb_helper_surface_size *sizes) in omap_fbdev_driver_fbdev_probe() argument 165 sizes->surface_bpp = 32; in omap_fbdev_driver_fbdev_probe() 166 sizes->surface_depth = 24; in omap_fbdev_driver_fbdev_probe() 168 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in omap_fbdev_driver_fbdev_probe() 169 sizes->surface_height, sizes->surface_bpp, in omap_fbdev_driver_fbdev_probe() 170 sizes->fb_width, sizes->fb_height); in omap_fbdev_driver_fbdev_probe() 172 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in omap_fbdev_driver_fbdev_probe() 173 sizes->surface_depth); in omap_fbdev_driver_fbdev_probe() 175 mode_cmd.width = sizes->surface_width; in omap_fbdev_driver_fbdev_probe() 176 mode_cmd.height = sizes->surface_height; in omap_fbdev_driver_fbdev_probe() [all …]
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | vidioc-subdev-enum-frame-size.rst | 13 VIDIOC_SUBDEV_ENUM_FRAME_SIZE - Enumerate media bus frame sizes 34 This ioctl allows applications to access the enumeration of frame sizes 47 Therefore, to enumerate frame sizes allowed on the specified pad 54 A successful call will return with minimum and maximum frame sizes filled in. 59 Sub-devices that only support discrete frame sizes (such as most 60 sensors) will return one or more frame sizes with identical minimum and 63 Not all possible sizes in given [minimum, maximum] ranges need to be 70 Available frame sizes may depend on the current 'try' formats at other 111 - Frame sizes to be enumerated, from enum
|
| /linux/arch/parisc/boot/compressed/ |
| H A D | Makefile | 11 targets += $(OBJECTS) sizes.h 27 sed-sizes := -e 's/^\([0-9a-fA-F]*\) . \(__bss_start\|_end\|parisc_kernel_start\)$$/\#define SZ\2 0… 30 cmd_sizes = $(NM) $< | sed -n $(sed-sizes) > $@ 32 $(obj)/sizes.h: vmlinux FORCE 33 $(call if_changed,sizes) 36 $(obj)/head.o: $(obj)/sizes.h 39 $(obj)/misc.o: $(obj)/sizes.h 44 $(obj)/vmlinux.lds: $(obj)/sizes.h
|
| /linux/tools/testing/selftests/mm/ |
| H A D | uffd-wp-mremap.c | 22 static int detect_thp_sizes(size_t sizes[], int max) in detect_thp_sizes() argument 40 sizes[count++] = kb * 1024; in detect_thp_sizes() 248 size_t *sizes; member 258 .sizes = &pagesize, 265 .sizes = &pagesize, 272 .sizes = &pagesize, 279 .sizes = &pagesize, 288 .sizes = thpsizes, 295 .sizes = thpsizes, 302 .sizes = thpsizes, [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/skylake/ |
| H A D | virtual-memory.json | 31 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 35 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 44 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 53 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 62 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 104 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 108 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 117 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 126 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 135 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/skylakex/ |
| H A D | virtual-memory.json | 31 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 35 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 44 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 53 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 62 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 104 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 108 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 117 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 126 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 135 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/cascadelakex/ |
| H A D | virtual-memory.json | 31 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 35 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 44 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 53 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 62 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 104 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 108 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 117 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 126 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 135 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/rocketlake/ |
| H A D | virtual-memory.json | 22 "BriefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 "PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. This implies it missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 35 "PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 44 "PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 53 "PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 86 "BriefDescription": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 "PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. This implies it missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 99 "PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 108 "PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 117 "PublicDescription": "Counts completed page walks (4K sizes) cause [all...] |
| /linux/tools/perf/pmu-events/arch/x86/icelake/ |
| H A D | virtual-memory.json | 22 "BriefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 26 "PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. This implies it missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 35 "PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 44 "PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 53 "PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 86 "BriefDescription": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 90 "PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. This implies it missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 99 "PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 108 "PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. This implies address translations missed in the DTLB and further levels of TLB. The page walk can end with or without a fault.", 117 "PublicDescription": "Counts completed page walks (4K sizes) cause [all...] |
| /linux/tools/perf/pmu-events/arch/x86/pantherlake/ |
| H A D | virtual-memory.json | 12 …ue to a demand load that did not start a page walk. Accounts for all page sizes. Will result in a … 52 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 56 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 66 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 76 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 86 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 111 … hits due to stores that did not start a page walk. Accounts for all page sizes. Will result in a … 115 …ue to a demand load that did not start a page walk. Accounts for all page sizes. Will result in a … 152 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 156 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … [all …]
|
| /linux/drivers/gpu/drm/armada/ |
| H A D | armada_fbdev.c | 44 struct drm_fb_helper_surface_size *sizes) in armada_fbdev_driver_fbdev_probe() argument 55 mode.width = sizes->surface_width; in armada_fbdev_driver_fbdev_probe() 56 mode.height = sizes->surface_height; in armada_fbdev_driver_fbdev_probe() 57 mode.pitches[0] = armada_pitch(mode.width, sizes->surface_bpp); in armada_fbdev_driver_fbdev_probe() 58 mode.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in armada_fbdev_driver_fbdev_probe() 59 sizes->surface_depth); in armada_fbdev_driver_fbdev_probe() 102 drm_fb_helper_fill_info(info, fbh, sizes); in armada_fbdev_driver_fbdev_probe()
|
| /linux/drivers/gpu/drm/tegra/ |
| H A D | fbdev.c | 71 struct drm_fb_helper_surface_size *sizes) in tegra_fbdev_driver_fbdev_probe() argument 84 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in tegra_fbdev_driver_fbdev_probe() 86 cmd.width = sizes->surface_width; in tegra_fbdev_driver_fbdev_probe() 87 cmd.height = sizes->surface_height; in tegra_fbdev_driver_fbdev_probe() 88 cmd.pitches[0] = round_up(sizes->surface_width * bytes_per_pixel, in tegra_fbdev_driver_fbdev_probe() 91 cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in tegra_fbdev_driver_fbdev_probe() 92 sizes->surface_depth); in tegra_fbdev_driver_fbdev_probe() 117 drm_fb_helper_fill_info(info, helper, sizes); in tegra_fbdev_driver_fbdev_probe()
|
| /linux/tools/perf/pmu-events/arch/x86/alderlake/ |
| H A D | virtual-memory.json | 34 …iefDescription": "Load miss in all TLB levels causes a page walk that completes. (All page sizes)", 38 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data loads. T… 48 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data loads. This im… 58 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data loads. This… 68 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data loads. This im… 115 …Description": "Store misses in all TLB levels causes a page walk that completes. (All page sizes)", 119 …"PublicDescription": "Counts completed page walks (all page sizes) caused by demand data stores. … 129 …"PublicDescription": "Counts completed page walks (1G sizes) caused by demand data stores. This i… 139 …"PublicDescription": "Counts completed page walks (2M/4M sizes) caused by demand data stores. Thi… 149 …"PublicDescription": "Counts completed page walks (4K sizes) caused by demand data stores. This i… [all …]
|