/u-boot/arch/arm/include/asm/armv8/ |
A D | mmu.h | 18 #undef PAGE_SIZE 20 #define PAGE_SIZE (1 << PAGE_SHIFT) macro 21 #define PAGE_MASK (~(PAGE_SIZE - 1))
|
/u-boot/drivers/xen/ |
A D | gnttab.c | 40 #define NR_GRANT_ENTRIES (NR_GRANT_FRAMES * PAGE_SIZE / sizeof(struct grant_entry_v1)) 121 *map = (void *)memalign(PAGE_SIZE, PAGE_SIZE); in gnttab_alloc_and_grant()
|
A D | pvblock.c | 144 s = (struct blkif_sring *)memalign(PAGE_SIZE, PAGE_SIZE); in init_blkfront() 151 FRONT_RING_INIT(&dev->ring, s, PAGE_SIZE); in init_blkfront() 478 PAGE_SIZE - 1) & PAGE_MASK; in blkfront_aio() 479 n = (end - start) / PAGE_SIZE; in blkfront_aio() 496 req->seg[j].last_sect = PAGE_SIZE / dev->info.sector_size - 1; in blkfront_aio() 503 uintptr_t data = start + j * PAGE_SIZE; in blkfront_aio() 632 min((size_t)(BLKIF_MAX_SEGMENTS_PER_REQUEST * PAGE_SIZE), in pvblock_iop()
|
A D | hypervisor.c | 132 HYPERVISOR_shared_info = (struct shared_info *)memalign(PAGE_SIZE, in map_shared_info() 133 PAGE_SIZE); in map_shared_info()
|
/u-boot/include/ |
A D | lcd.h | 215 #ifndef PAGE_SIZE 216 #define PAGE_SIZE 4096 macro
|
/u-boot/drivers/virtio/ |
A D | virtio_mmio.h | 117 #define VIRTIO_MMIO_VRING_ALIGN PAGE_SIZE
|
A D | virtio_ring.c | 261 for (; num && vring_size(num, vring_align) > PAGE_SIZE; num /= 2) { in vring_create_virtqueue() 262 queue = memalign(PAGE_SIZE, vring_size(num, vring_align)); in vring_create_virtqueue() 272 queue = memalign(PAGE_SIZE, vring_size(num, vring_align)); in vring_create_virtqueue()
|
A D | virtio_mmio.c | 240 writel(PAGE_SIZE, priv->base + VIRTIO_MMIO_QUEUE_ALIGN); in virtio_mmio_setup_vq() 381 writel(PAGE_SIZE, priv->base + VIRTIO_MMIO_GUEST_PAGE_SIZE); in virtio_mmio_probe()
|
/u-boot/board/xen/xenguest_arm64/ |
A D | xenguest_arm64.c | 85 xen_mem_map[i].size = PAGE_SIZE; in setup_mem_map() 99 xen_mem_map[i].size = PAGE_SIZE; in setup_mem_map()
|
/u-boot/arch/arm/include/asm/proc-armv/ |
A D | processor.h | 23 #define KERNEL_STACK_SIZE PAGE_SIZE
|
/u-boot/arch/xtensa/include/asm/ |
A D | cacheasm.h | 14 #define PAGE_SIZE 4096 macro 69 __loopi \ar, \at, PAGE_SIZE, 4 << (\line_width)
|
A D | ptrace.h | 37 #define KERNEL_STACK_SIZE (2 * PAGE_SIZE)
|
/u-boot/drivers/mtd/ |
A D | mtdcore.c | 242 return snprintf(buf, PAGE_SIZE, "%s\n", type); in mtd_type_show() 251 return snprintf(buf, PAGE_SIZE, "0x%lx\n", (unsigned long)mtd->flags); in mtd_flags_show() 261 return snprintf(buf, PAGE_SIZE, "%llu\n", in mtd_size_show() 293 return snprintf(buf, PAGE_SIZE, "%u\n", subpagesize); in mtd_subpagesize_show() 303 return snprintf(buf, PAGE_SIZE, "%lu\n", (unsigned long)mtd->oobsize); in mtd_oobsize_show() 313 return snprintf(buf, PAGE_SIZE, "%u\n", mtd->numeraseregions); in mtd_numeraseregions_show() 324 return snprintf(buf, PAGE_SIZE, "%s\n", mtd->name); in mtd_name_show() 334 return snprintf(buf, PAGE_SIZE, "%u\n", mtd->ecc_strength); in mtd_ecc_strength_show() 344 return snprintf(buf, PAGE_SIZE, "%u\n", mtd->bitflip_threshold); in mtd_bitflip_threshold_show() 371 return snprintf(buf, PAGE_SIZE, "%u\n", mtd->ecc_step_size); in mtd_ecc_step_size_show() [all …]
|
/u-boot/fs/btrfs/ |
A D | compression.c | 71 rem_page = PAGE_SIZE - (tot_in % PAGE_SIZE); in decompress_lzo()
|
/u-boot/fs/ubifs/ |
A D | ubifs.c | 847 if (offset & (PAGE_SIZE - 1)) { in ubifs_read() 849 PAGE_SIZE); in ubifs_read() 889 page.index = offset / PAGE_SIZE; in ubifs_read() 896 last_block_size = size - (i * PAGE_SIZE); in ubifs_read() 902 page.addr += PAGE_SIZE; in ubifs_read() 908 *actread = i * PAGE_SIZE; in ubifs_read()
|
/u-boot/arch/arm/include/asm/xen/ |
A D | system.h | 78 #define PFN_UP(x) (unsigned long)(((x) + PAGE_SIZE - 1) >> PAGE_SHIFT)
|
/u-boot/include/linux/ |
A D | compat.h | 135 #ifndef PAGE_SIZE 136 #define PAGE_SIZE 4096 macro
|
/u-boot/include/linux/usb/ |
A D | dwc3.h | 15 #define DWC3_EVENT_BUFFERS_SIZE PAGE_SIZE
|
/u-boot/drivers/video/ |
A D | pxa_lcd.c | 405 size += PAGE_SIZE; in calc_fbsize() 423 fbi->palette = (u_long)lcdbase + fb_size + PAGE_SIZE - palette_mem_size; in pxafb_init_mem()
|
A D | atmel_lcdfb.c | 242 NBITS(panel_info.vl_bpix)) / 8) + PAGE_SIZE; in calc_fbsize()
|
/u-boot/drivers/mmc/ |
A D | dw_mmc.c | 22 #define PAGE_SIZE 4096 macro 80 (ulong)bounce_buffer + (i * PAGE_SIZE)); in dwmci_prepare_data()
|
/u-boot/lib/crypto/ |
A D | asymmetric_type.c | 509 parse_buf = kstrndup(restriction, PAGE_SIZE, GFP_KERNEL); in asymmetric_lookup_restriction()
|
/u-boot/drivers/fastboot/ |
A D | fb_mmc.c | 369 hdr_addr = (uintptr_t)download_buffer + ALIGN(download_bytes, PAGE_SIZE); in fb_mmc_update_zimage()
|
/u-boot/drivers/spi/ |
A D | mtk_snor.c | 97 #define MTK_NOR_BOUNCE_BUF_SIZE PAGE_SIZE
|
/u-boot/common/ |
A D | lcd.c | 39 #define CONFIG_LCD_ALIGNMENT PAGE_SIZE
|