Lines Matching full:window
54 * The 2 bits controlling the window size are often set to allow reading
62 * The bits are 6 and 7. If both bits are set, it is a 5MiB window.
63 * If only the 7 Bit is set, it is a 4MiB window. Otherwise, a
64 * 64KiB window.
67 * The 15 bits controlling the window size are distributed as follows:
71 * If all bits are enabled, we have a 16? MiB window
76 MODULE_PARM_DESC(win_size_bits, "ROM window size bits override, normally set by BIOS.");
82 static void ck804xrom_cleanup(struct ck804xrom_window *window) in ck804xrom_cleanup() argument
87 if (window->pdev) { in ck804xrom_cleanup()
88 /* Disable writes through the rom window */ in ck804xrom_cleanup()
89 pci_read_config_byte(window->pdev, 0x6d, &byte); in ck804xrom_cleanup()
90 pci_write_config_byte(window->pdev, 0x6d, byte & ~1); in ck804xrom_cleanup()
94 list_for_each_entry_safe(map, scratch, &window->maps, list) { in ck804xrom_cleanup()
103 if (window->rsrc.parent) in ck804xrom_cleanup()
104 release_resource(&window->rsrc); in ck804xrom_cleanup()
106 if (window->virt) { in ck804xrom_cleanup()
107 iounmap(window->virt); in ck804xrom_cleanup()
108 window->virt = NULL; in ck804xrom_cleanup()
109 window->phys = 0; in ck804xrom_cleanup()
110 window->size = 0; in ck804xrom_cleanup()
112 pci_dev_put(window->pdev); in ck804xrom_cleanup()
122 struct ck804xrom_window *window = &ck804xrom_window; in ck804xrom_init_one() local
126 /* Remember the pci dev I find the window in */ in ck804xrom_init_one()
127 window->pdev = pci_dev_get(pdev); in ck804xrom_init_one()
131 /* Enable the selected rom window. This is often incorrectly in ck804xrom_init_one()
133 * requires the full 5MiB of window space. in ck804xrom_init_one()
141 /* Assume the rom window is properly setup, and find it's size */ in ck804xrom_init_one()
145 window->phys = 0xffb00000; /* 5MiB */ in ck804xrom_init_one()
147 window->phys = 0xffc00000; /* 4MiB */ in ck804xrom_init_one()
149 window->phys = 0xffff0000; /* 64KiB */ in ck804xrom_init_one()
162 window->phys = 0xff000000; /* 16MiB, hardcoded for now */ in ck804xrom_init_one()
166 window->size = 0xffffffffUL - window->phys + 1UL; in ck804xrom_init_one()
169 * Try to reserve the window mem region. If this fails then in ck804xrom_init_one()
170 * it is likely due to a fragment of the window being in ck804xrom_init_one()
175 window->rsrc.name = MOD_NAME; in ck804xrom_init_one()
176 window->rsrc.start = window->phys; in ck804xrom_init_one()
177 window->rsrc.end = window->phys + window->size - 1; in ck804xrom_init_one()
178 window->rsrc.flags = IORESOURCE_MEM | IORESOURCE_BUSY; in ck804xrom_init_one()
179 if (request_resource(&iomem_resource, &window->rsrc)) { in ck804xrom_init_one()
180 window->rsrc.parent = NULL; in ck804xrom_init_one()
183 __func__, &window->rsrc); in ck804xrom_init_one()
187 /* Enable writes through the rom window */ in ck804xrom_init_one()
194 window->virt = ioremap(window->phys, window->size); in ck804xrom_init_one()
195 if (!window->virt) { in ck804xrom_init_one()
197 window->phys, window->size); in ck804xrom_init_one()
202 map_top = window->phys; in ck804xrom_init_one()
213 * bytes from the starting address of the window. in ck804xrom_init_one()
229 offset = map_top - window->phys; in ck804xrom_init_one()
231 (((unsigned long)(window->virt)) + offset); in ck804xrom_init_one()
263 " rom(%llu) larger than window(%lu). fixing...\n", in ck804xrom_init_one()
267 if (window->rsrc.parent) { in ck804xrom_init_one()
277 if (request_resource(&window->rsrc, &map->rsrc)) { in ck804xrom_init_one()
285 map->map.virt = window->virt; in ck804xrom_init_one()
286 map->map.phys = window->phys; in ck804xrom_init_one()
304 list_add(&map->list, &window->maps); in ck804xrom_init_one()
313 if (list_empty(&window->maps)) { in ck804xrom_init_one()
314 ck804xrom_cleanup(window); in ck804xrom_init_one()
323 struct ck804xrom_window *window = &ck804xrom_window; in ck804xrom_remove_one() local
325 ck804xrom_cleanup(window); in ck804xrom_remove_one()