Lines Matching refs:size
38 unsigned long size;
54 * The 2 bits controlling the window size are often set to allow reading
67 * The 15 bits controlling the window size are distributed as follows:
76 MODULE_PARM_DESC(win_size_bits, "ROM window size bits override, normally set by BIOS.");
110 window->size = 0;
141 /* Assume the rom window is properly setup, and find it's size */
166 window->size = 0xffffffffUL - window->phys + 1UL;
172 * request_mem_region() fails then once the rom size is
177 window->rsrc.end = window->phys + window->size - 1;
194 window->virt = ioremap(window->phys, window->size);
197 window->phys, window->size);
234 map->map.size = 0xffffffffUL - map_top + 1UL;
262 /* Trim the size if we are larger than the map */
263 if (map->mtd->size > map->map.size) {
266 (unsigned long long)map->mtd->size, map->map.size);
267 map->mtd->size = map->map.size;
277 map->rsrc.end = map->map.phys + map->mtd->size - 1;
303 map_top += map->mtd->size;