/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/mmz/ |
H A D | cmpi_mm.c | 67 hi_ulong page_size; in cmpi_remap_cached() local 74 page_size = ((size + diff - 1) & 0xfffff000UL) + 0x1000; in cmpi_remap_cached() 76 page_addr = hil_mmf_map2kern_cache(page_phy, page_size); in cmpi_remap_cached() 78 osal_printk("phy(0x%llx) size(0x%lx) map cache err!\n", page_phy, page_size); in cmpi_remap_cached() 91 hi_ulong page_size; in cmpi_remap_nocache() local 98 page_size = ((size + diff - 1) & 0xfffff000UL) + 0x1000; in cmpi_remap_nocache() 100 page_addr = hil_mmf_map2kern_nocache(page_phy, page_size); in cmpi_remap_nocache() 102 osal_printk("phy(0x%llx) size(0x%lx) map nocache err!\n", page_phy, page_size); in cmpi_remap_nocache()
|
/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/include/ |
H A D | drv_spiflash.h | 44 uint32_t page_size; ///< Optimal programming page size in bytes member
|
H A D | drv_eflash.h | 44 uint32_t page_size; ///< Optimal programming page size in bytes member
|
/device/soc/rockchip/rk3588/kernel/scripts/ |
H A D | mkbootimg | 50 def get_number_of_pages(image_size, page_size): 52 return (image_size + page_size - 1) / page_size
|
/device/soc/rockchip/common/hardware/rga/include/ |
H A D | rga.h | 507 unsigned char cmd_flush, unsigned long base_addr, unsigned char page_size); 510 unsigned char cmd_flush, unsigned int base_addr, unsigned char page_size);
|
/device/soc/rockchip/rk3399/hardware/rga/include/ |
H A D | rga.h | 589 unsigned char page_size 599 unsigned char page_size
|
/device/soc/rockchip/rk3568/hardware/rga/include/ |
H A D | rga.h | 589 unsigned char page_size 599 unsigned char page_size
|
/device/soc/rockchip/common/vendor/drivers/video/rockchip/mpp/ |
H A D | mpp_rkvdec2.c | 1030 size_t page_size = PAGE_ALIGN(rcb_size - sram_size);
in rkvdec2_alloc_rcbbuf() local 1032 page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(page_size));
in rkvdec2_alloc_rcbbuf() 1039 ret = iommu_map(domain, iova + sram_size, page_to_phys(page), page_size, IOMMU_READ | IOMMU_WRITE);
in rkvdec2_alloc_rcbbuf() 1042 __free_pages(page, get_order(page_size));
in rkvdec2_alloc_rcbbuf() 1215 size_t page_size = PAGE_ALIGN(dec->rcb_size - dec->sram_size);
in rkvdec2_free_rcbbuf() local 1217 __free_pages(dec->rcb_page, get_order(page_size));
in rkvdec2_free_rcbbuf()
|
H A D | mpp_rkvenc2.c | 1479 size_t page_size = PAGE_ALIGN(sram_used - sram_size);
in rkvenc2_alloc_rcbbuf() local 1481 page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(page_size));
in rkvenc2_alloc_rcbbuf() 1488 ret = iommu_map(domain, iova + sram_size, page_to_phys(page), page_size, IOMMU_READ | IOMMU_WRITE);
in rkvenc2_alloc_rcbbuf() 1491 __free_pages(page, get_order(page_size));
in rkvenc2_alloc_rcbbuf() 1647 size_t page_size = PAGE_ALIGN(enc->sram_used - enc->sram_size);
in rkvenc2_free_rcbbuf() local 1649 __free_pages(enc->rcb_page, get_order(page_size));
in rkvenc2_free_rcbbuf()
|
/device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/mpp/ |
H A D | mpp_rkvdec2.c | 1030 size_t page_size = PAGE_ALIGN(rcb_size - sram_size); in rkvdec2_alloc_rcbbuf() local 1032 page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(page_size)); in rkvdec2_alloc_rcbbuf() 1040 page_size, IOMMU_READ | IOMMU_WRITE); in rkvdec2_alloc_rcbbuf() 1043 __free_pages(page, get_order(page_size)); in rkvdec2_alloc_rcbbuf() 1214 size_t page_size = PAGE_ALIGN(dec->rcb_size - dec->sram_size); in rkvdec2_free_rcbbuf() local 1216 __free_pages(dec->rcb_page, get_order(page_size)); in rkvdec2_free_rcbbuf()
|
H A D | mpp_rkvenc2.c | 1466 size_t page_size = PAGE_ALIGN(sram_used - sram_size); in rkvenc2_alloc_rcbbuf() local 1468 page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(page_size)); in rkvenc2_alloc_rcbbuf() 1476 page_size, IOMMU_READ | IOMMU_WRITE); in rkvenc2_alloc_rcbbuf() 1479 __free_pages(page, get_order(page_size)); in rkvenc2_alloc_rcbbuf() 1635 size_t page_size = PAGE_ALIGN(enc->sram_used - enc->sram_size); in rkvenc2_free_rcbbuf() local 1637 __free_pages(enc->rcb_page, get_order(page_size)); in rkvenc2_free_rcbbuf()
|
/device/soc/rockchip/common/sdk_linux/drivers/dma-buf/heaps/ |
H A D | system_heap.c | 458 size_remaining -= page_size(page); in system_heap_do_allocate() 471 sg_set_page(sg, page, page_size(page), 0); in system_heap_do_allocate()
|
/device/soc/rockchip/common/sdk_linux/drivers/pci/controller/dwc/ |
H A D | pcie-designware.h | 235 size_t page_size; member
|
/device/soc/rockchip/common/sdk_linux/include/linux/ |
H A D | mm.h | 988 static inline unsigned long page_size(struct page *page)
in page_size() function
|