Lines Matching defs:size
62 /* Get address and size of the sram */
74 bcom_sram->size = (unsigned int) size64;
77 if (!request_mem_region(bcom_sram->base_phys, bcom_sram->size, owner)) {
86 bcom_sram->base_virt = (void*) ioremap(bcom_sram->base_phys, bcom_sram->size);
91 owner, (long)bcom_sram->base_phys, bcom_sram->size );
110 rh_attach_region(bcom_sram->rh, 0, bcom_sram->size);
127 release_mem_region(bcom_sram->base_phys, bcom_sram->size);
142 release_mem_region(bcom_sram->base_phys, bcom_sram->size);
149 void* bcom_sram_alloc(int size, int align, phys_addr_t *phys)
154 offset = rh_alloc_align(bcom_sram->rh, size, align, NULL);