Lines Matching refs:size
34 unsigned long size;
48 /* The 2 bits controlling the window size are often set to allow reading
63 MODULE_PARM_DESC(win_size_bits, "ROM window size bits override for 0x43 byte, normally set by BIOS.");
98 window->size = 0;
126 /* Assume the rom window is properly setup, and find it's size */
137 window->size = 0xffffffffUL - window->phys + 1UL;
143 * request_mem_region() fails then once the rom size is
148 window->rsrc.end = window->phys + window->size - 1;
166 window->virt = ioremap(window->phys, window->size);
169 window->phys, window->size);
204 map->map.size = 0xffffffffUL - map_top + 1UL;
232 /* Trim the size if we are larger than the map */
233 if (map->mtd->size > map->map.size) {
236 (unsigned long long)map->mtd->size, map->map.size);
237 map->mtd->size = map->map.size;
247 map->rsrc.end = map->map.phys + map->mtd->size - 1;
274 map_top += map->mtd->size;