2 * HP zx1 AGPGART routines.
4 * (c) Copyright 2002, 2003 Hewlett-Packard Development Company, L.P.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/acpi.h>
13 #include <linux/module.h>
14 #include <linux/pci.h>
15 #include <linux/init.h>
16 #include <linux/agp_backend.h>
17 #include <linux/log2.h>
18 #include <linux/slab.h>
20 #include <asm/acpi-ext.h>
24 #define HP_ZX1_IOC_OFFSET 0x1000 /* ACPI reports SBA, we want IOC */
26 /* HP ZX1 IOC registers */
27 #define HP_ZX1_IBASE 0x300
28 #define HP_ZX1_IMASK 0x308
29 #define HP_ZX1_PCOM 0x310
30 #define HP_ZX1_TCNFG 0x318
31 #define HP_ZX1_PDIR_BASE 0x320
33 #define HP_ZX1_IOVA_BASE GB(1UL)
34 #define HP_ZX1_IOVA_SIZE GB(1UL)
35 #define HP_ZX1_GART_SIZE (HP_ZX1_IOVA_SIZE / 2)
36 #define HP_ZX1_SBA_IOMMU_COOKIE 0x0000badbadc0ffeeUL
38 #define HP_ZX1_PDIR_VALID_BIT 0x8000000000000000UL
39 #define HP_ZX1_IOVA_TO_PDIR(va) ((va - hp_private.iova_base) >> hp_private.io_tlb_shift)
41 #define AGP8X_MODE_BIT 3
42 #define AGP8X_MODE (1 << AGP8X_MODE_BIT)
44 /* AGP bridge need not be PCI device, but DRM thinks it is. */
45 static struct pci_dev fake_bridge_dev;
47 static int hp_zx1_gart_found;
49 static struct aper_size_info_fixed hp_zx1_sizes[] =
51 {0, 0, 0}, /* filled in by hp_zx1_fetch_size() */
54 static struct gatt_mask hp_zx1_masks[] =
56 {.mask = HP_ZX1_PDIR_VALID_BIT, .type = 0}
59 static struct _hp_private {
60 volatile u8 __iomem *ioc_regs;
61 volatile u8 __iomem *lba_regs;
63 u64 *io_pdir; // PDIR for entire IOVA
64 u64 *gatt; // PDIR just for GART (subset of above)
70 int io_pdir_owner; // do we own it, or share it with sba_iommu?
73 int io_tlb_ps; // IOC ps config
74 int io_pages_per_kpage;
77 static int __init hp_zx1_ioc_shared(void)
79 struct _hp_private *hp = &hp_private;
81 printk(KERN_INFO PFX "HP ZX1 IOC: IOPDIR shared with sba_iommu\n");
84 * IOC already configured by sba_iommu module; just use
85 * its setup. We assume:
86 * - IOVA space is 1Gb in size
87 * - first 512Mb is IOMMU, second 512Mb is GART
89 hp->io_tlb_ps = readq(hp->ioc_regs+HP_ZX1_TCNFG);
90 switch (hp->io_tlb_ps) {
91 case 0: hp->io_tlb_shift = 12; break;
92 case 1: hp->io_tlb_shift = 13; break;
93 case 2: hp->io_tlb_shift = 14; break;
94 case 3: hp->io_tlb_shift = 16; break;
96 printk(KERN_ERR PFX "Invalid IOTLB page size "
97 "configuration 0x%x\n", hp->io_tlb_ps);
102 hp->io_page_size = 1 << hp->io_tlb_shift;
103 hp->io_pages_per_kpage = PAGE_SIZE / hp->io_page_size;
105 hp->iova_base = readq(hp->ioc_regs+HP_ZX1_IBASE) & ~0x1;
106 hp->gart_base = hp->iova_base + HP_ZX1_IOVA_SIZE - HP_ZX1_GART_SIZE;
108 hp->gart_size = HP_ZX1_GART_SIZE;
109 hp->gatt_entries = hp->gart_size / hp->io_page_size;
111 hp->io_pdir = phys_to_virt(readq(hp->ioc_regs+HP_ZX1_PDIR_BASE));
112 hp->gatt = &hp->io_pdir[HP_ZX1_IOVA_TO_PDIR(hp->gart_base)];
114 if (hp->gatt[0] != HP_ZX1_SBA_IOMMU_COOKIE) {
115 /* Normal case when no AGP device in system */
117 hp->gatt_entries = 0;
118 printk(KERN_ERR PFX "No reserved IO PDIR entry found; "
127 hp_zx1_ioc_owner (void)
129 struct _hp_private *hp = &hp_private;
131 printk(KERN_INFO PFX "HP ZX1 IOC: IOPDIR dedicated to GART\n");
134 * Select an IOV page size no larger than system page size.
136 if (PAGE_SIZE >= KB(64)) {
137 hp->io_tlb_shift = 16;
139 } else if (PAGE_SIZE >= KB(16)) {
140 hp->io_tlb_shift = 14;
142 } else if (PAGE_SIZE >= KB(8)) {
143 hp->io_tlb_shift = 13;
146 hp->io_tlb_shift = 12;
149 hp->io_page_size = 1 << hp->io_tlb_shift;
150 hp->io_pages_per_kpage = PAGE_SIZE / hp->io_page_size;
152 hp->iova_base = HP_ZX1_IOVA_BASE;
153 hp->gart_size = HP_ZX1_GART_SIZE;
154 hp->gart_base = hp->iova_base + HP_ZX1_IOVA_SIZE - hp->gart_size;
156 hp->gatt_entries = hp->gart_size / hp->io_page_size;
157 hp->io_pdir_size = (HP_ZX1_IOVA_SIZE / hp->io_page_size) * sizeof(u64);
163 hp_zx1_ioc_init (u64 hpa)
165 struct _hp_private *hp = &hp_private;
167 hp->ioc_regs = ioremap(hpa, 1024);
172 * If the IOTLB is currently disabled, we can take it over.
173 * Otherwise, we have to share with sba_iommu.
175 hp->io_pdir_owner = (readq(hp->ioc_regs+HP_ZX1_IBASE) & 0x1) == 0;
177 if (hp->io_pdir_owner)
178 return hp_zx1_ioc_owner();
180 return hp_zx1_ioc_shared();
184 hp_zx1_lba_find_capability (volatile u8 __iomem *hpa, int cap)
190 status = readw(hpa+PCI_STATUS);
191 if (!(status & PCI_STATUS_CAP_LIST))
193 pos = readb(hpa+PCI_CAPABILITY_LIST);
194 while (ttl-- && pos >= 0x40) {
196 id = readb(hpa+pos+PCI_CAP_LIST_ID);
201 pos = readb(hpa+pos+PCI_CAP_LIST_NEXT);
207 hp_zx1_lba_init (u64 hpa)
209 struct _hp_private *hp = &hp_private;
212 hp->lba_regs = ioremap(hpa, 256);
216 hp->lba_cap_offset = hp_zx1_lba_find_capability(hp->lba_regs, PCI_CAP_ID_AGP);
218 cap = readl(hp->lba_regs+hp->lba_cap_offset) & 0xff;
219 if (cap != PCI_CAP_ID_AGP) {
220 printk(KERN_ERR PFX "Invalid capability ID 0x%02x at 0x%x\n",
221 cap, hp->lba_cap_offset);
222 iounmap(hp->lba_regs);
230 hp_zx1_fetch_size(void)
234 size = hp_private.gart_size / MB(1);
235 hp_zx1_sizes[0].size = size;
236 agp_bridge->current_size = (void *) &hp_zx1_sizes[0];
241 hp_zx1_configure (void)
243 struct _hp_private *hp = &hp_private;
245 agp_bridge->gart_bus_addr = hp->gart_base;
246 agp_bridge->capndx = hp->lba_cap_offset;
247 agp_bridge->mode = readl(hp->lba_regs+hp->lba_cap_offset+PCI_AGP_STATUS);
249 if (hp->io_pdir_owner) {
250 writel(virt_to_phys(hp->io_pdir), hp->ioc_regs+HP_ZX1_PDIR_BASE);
251 readl(hp->ioc_regs+HP_ZX1_PDIR_BASE);
252 writel(hp->io_tlb_ps, hp->ioc_regs+HP_ZX1_TCNFG);
253 readl(hp->ioc_regs+HP_ZX1_TCNFG);
254 writel((unsigned int)(~(HP_ZX1_IOVA_SIZE-1)), hp->ioc_regs+HP_ZX1_IMASK);
255 readl(hp->ioc_regs+HP_ZX1_IMASK);
256 writel(hp->iova_base|1, hp->ioc_regs+HP_ZX1_IBASE);
257 readl(hp->ioc_regs+HP_ZX1_IBASE);
258 writel(hp->iova_base|ilog2(HP_ZX1_IOVA_SIZE), hp->ioc_regs+HP_ZX1_PCOM);
259 readl(hp->ioc_regs+HP_ZX1_PCOM);
266 hp_zx1_cleanup (void)
268 struct _hp_private *hp = &hp_private;
271 if (hp->io_pdir_owner) {
272 writeq(0, hp->ioc_regs+HP_ZX1_IBASE);
273 readq(hp->ioc_regs+HP_ZX1_IBASE);
275 iounmap(hp->ioc_regs);
278 iounmap(hp->lba_regs);
282 hp_zx1_tlbflush (struct agp_memory *mem)
284 struct _hp_private *hp = &hp_private;
286 writeq(hp->gart_base | ilog2(hp->gart_size), hp->ioc_regs+HP_ZX1_PCOM);
287 readq(hp->ioc_regs+HP_ZX1_PCOM);
291 hp_zx1_create_gatt_table (struct agp_bridge_data *bridge)
293 struct _hp_private *hp = &hp_private;
296 if (hp->io_pdir_owner) {
297 hp->io_pdir = (u64 *) __get_free_pages(GFP_KERNEL,
298 get_order(hp->io_pdir_size));
300 printk(KERN_ERR PFX "Couldn't allocate contiguous "
301 "memory for I/O PDIR\n");
303 hp->gatt_entries = 0;
306 memset(hp->io_pdir, 0, hp->io_pdir_size);
308 hp->gatt = &hp->io_pdir[HP_ZX1_IOVA_TO_PDIR(hp->gart_base)];
311 for (i = 0; i < hp->gatt_entries; i++) {
312 hp->gatt[i] = (unsigned long) agp_bridge->scratch_page;
319 hp_zx1_free_gatt_table (struct agp_bridge_data *bridge)
321 struct _hp_private *hp = &hp_private;
323 if (hp->io_pdir_owner)
324 free_pages((unsigned long) hp->io_pdir,
325 get_order(hp->io_pdir_size));
327 hp->gatt[0] = HP_ZX1_SBA_IOMMU_COOKIE;
332 hp_zx1_insert_memory (struct agp_memory *mem, off_t pg_start, int type)
334 struct _hp_private *hp = &hp_private;
336 off_t j, io_pg_start;
339 if (type != mem->type ||
340 agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type)) {
344 io_pg_start = hp->io_pages_per_kpage * pg_start;
345 io_pg_count = hp->io_pages_per_kpage * mem->page_count;
346 if ((io_pg_start + io_pg_count) > hp->gatt_entries) {
351 while (j < (io_pg_start + io_pg_count)) {
358 if (!mem->is_flushed) {
359 global_cache_flush();
360 mem->is_flushed = true;
363 for (i = 0, j = io_pg_start; i < mem->page_count; i++) {
366 paddr = page_to_phys(mem->pages[i]);
368 k < hp->io_pages_per_kpage;
369 k++, j++, paddr += hp->io_page_size) {
370 hp->gatt[j] = HP_ZX1_PDIR_VALID_BIT | paddr;
374 agp_bridge->driver->tlb_flush(mem);
379 hp_zx1_remove_memory (struct agp_memory *mem, off_t pg_start, int type)
381 struct _hp_private *hp = &hp_private;
382 int i, io_pg_start, io_pg_count;
384 if (type != mem->type ||
385 agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type)) {
389 io_pg_start = hp->io_pages_per_kpage * pg_start;
390 io_pg_count = hp->io_pages_per_kpage * mem->page_count;
391 for (i = io_pg_start; i < io_pg_count + io_pg_start; i++) {
392 hp->gatt[i] = agp_bridge->scratch_page;
395 agp_bridge->driver->tlb_flush(mem);
400 hp_zx1_mask_memory (struct agp_bridge_data *bridge, dma_addr_t addr, int type)
402 return HP_ZX1_PDIR_VALID_BIT | addr;
406 hp_zx1_enable (struct agp_bridge_data *bridge, u32 mode)
408 struct _hp_private *hp = &hp_private;
411 command = readl(hp->lba_regs+hp->lba_cap_offset+PCI_AGP_STATUS);
412 command = agp_collect_device_status(bridge, mode, command);
413 command |= 0x00000100;
415 writel(command, hp->lba_regs+hp->lba_cap_offset+PCI_AGP_COMMAND);
417 agp_device_command(command, (mode & AGP8X_MODE) != 0);
420 const struct agp_bridge_driver hp_zx1_driver = {
421 .owner = THIS_MODULE,
422 .size_type = FIXED_APER_SIZE,
423 .configure = hp_zx1_configure,
424 .fetch_size = hp_zx1_fetch_size,
425 .cleanup = hp_zx1_cleanup,
426 .tlb_flush = hp_zx1_tlbflush,
427 .mask_memory = hp_zx1_mask_memory,
428 .masks = hp_zx1_masks,
429 .agp_enable = hp_zx1_enable,
430 .cache_flush = global_cache_flush,
431 .create_gatt_table = hp_zx1_create_gatt_table,
432 .free_gatt_table = hp_zx1_free_gatt_table,
433 .insert_memory = hp_zx1_insert_memory,
434 .remove_memory = hp_zx1_remove_memory,
435 .alloc_by_type = agp_generic_alloc_by_type,
436 .free_by_type = agp_generic_free_by_type,
437 .agp_alloc_page = agp_generic_alloc_page,
438 .agp_alloc_pages = agp_generic_alloc_pages,
439 .agp_destroy_page = agp_generic_destroy_page,
440 .agp_destroy_pages = agp_generic_destroy_pages,
441 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
442 .cant_use_aperture = true,
446 hp_zx1_setup (u64 ioc_hpa, u64 lba_hpa)
448 struct agp_bridge_data *bridge;
451 error = hp_zx1_ioc_init(ioc_hpa);
455 error = hp_zx1_lba_init(lba_hpa);
459 bridge = agp_alloc_bridge();
464 bridge->driver = &hp_zx1_driver;
466 fake_bridge_dev.vendor = PCI_VENDOR_ID_HP;
467 fake_bridge_dev.device = PCI_DEVICE_ID_HP_PCIX_LBA;
468 bridge->dev = &fake_bridge_dev;
470 error = agp_add_bridge(bridge);
477 static acpi_status __init
478 zx1_gart_probe (acpi_handle obj, u32 depth, void *context, void **ret)
480 acpi_handle handle, parent;
482 struct acpi_device_info *info;
483 u64 lba_hpa, sba_hpa, length;
486 status = hp_acpi_csr_space(obj, &lba_hpa, &length);
487 if (ACPI_FAILURE(status))
488 return AE_OK; /* keep looking for another bridge */
490 /* Look for an enclosing IOC scope and find its CSR space */
493 status = acpi_get_object_info(handle, &info);
494 if (ACPI_SUCCESS(status) && (info->valid & ACPI_VALID_HID)) {
495 /* TBD check _CID also */
496 match = (strcmp(info->hardware_id.string, "HWP0001") == 0);
499 status = hp_acpi_csr_space(handle, &sba_hpa, &length);
500 if (ACPI_SUCCESS(status))
503 printk(KERN_ERR PFX "Detected HP ZX1 "
504 "AGP LBA but no IOC.\n");
510 status = acpi_get_parent(handle, &parent);
512 } while (ACPI_SUCCESS(status));
514 if (ACPI_FAILURE(status))
515 return AE_OK; /* found no enclosing IOC */
517 if (hp_zx1_setup(sba_hpa + HP_ZX1_IOC_OFFSET, lba_hpa))
520 printk(KERN_INFO PFX "Detected HP ZX1 %s AGP chipset "
521 "(ioc=%llx, lba=%llx)\n", (char *)context,
522 sba_hpa + HP_ZX1_IOC_OFFSET, lba_hpa);
524 hp_zx1_gart_found = 1;
525 return AE_CTRL_TERMINATE; /* we only support one bridge; quit looking */
534 acpi_get_devices("HWP0003", zx1_gart_probe, "HWP0003", NULL);
535 if (hp_zx1_gart_found)
538 acpi_get_devices("HWP0007", zx1_gart_probe, "HWP0007", NULL);
539 if (hp_zx1_gart_found)
546 agp_hp_cleanup (void)
550 module_init(agp_hp_init);
551 module_exit(agp_hp_cleanup);
553 MODULE_LICENSE("GPL and additional rights");