Staging: rtl8192e: Add #include <linux/vmalloc.h>
[linux-2.6/mini2440.git] / drivers / char / agp / parisc-agp.c
blob1c129211302d34e15c6fce2a4475fce8b15a32d5
1 /*
2 * HP Quicksilver AGP GART routines
4 * Copyright (c) 2006, Kyle McMartin <kyle@parisc-linux.org>
6 * Based on drivers/char/agpgart/hp-agp.c which is
7 * (c) Copyright 2002, 2003 Hewlett-Packard Development Company, L.P.
8 * Bjorn Helgaas <bjorn.helgaas@hp.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/module.h>
17 #include <linux/pci.h>
18 #include <linux/init.h>
19 #include <linux/klist.h>
20 #include <linux/agp_backend.h>
21 #include <linux/log2.h>
23 #include <asm/parisc-device.h>
24 #include <asm/ropes.h>
26 #include "agp.h"
28 #define DRVNAME "quicksilver"
29 #define DRVPFX DRVNAME ": "
31 #define AGP8X_MODE_BIT 3
32 #define AGP8X_MODE (1 << AGP8X_MODE_BIT)
34 static unsigned long
35 parisc_agp_mask_memory(struct agp_bridge_data *bridge, dma_addr_t addr,
36 int type);
38 static struct _parisc_agp_info {
39 void __iomem *ioc_regs;
40 void __iomem *lba_regs;
42 int lba_cap_offset;
44 u64 *gatt;
45 u64 gatt_entries;
47 u64 gart_base;
48 u64 gart_size;
50 int io_page_size;
51 int io_pages_per_kpage;
52 } parisc_agp_info;
54 static struct gatt_mask parisc_agp_masks[] =
57 .mask = SBA_PDIR_VALID_BIT,
58 .type = 0
62 static struct aper_size_info_fixed parisc_agp_sizes[] =
64 {0, 0, 0}, /* filled in by parisc_agp_fetch_size() */
67 static int
68 parisc_agp_fetch_size(void)
70 int size;
72 size = parisc_agp_info.gart_size / MB(1);
73 parisc_agp_sizes[0].size = size;
74 agp_bridge->current_size = (void *) &parisc_agp_sizes[0];
76 return size;
79 static int
80 parisc_agp_configure(void)
82 struct _parisc_agp_info *info = &parisc_agp_info;
84 agp_bridge->gart_bus_addr = info->gart_base;
85 agp_bridge->capndx = info->lba_cap_offset;
86 agp_bridge->mode = readl(info->lba_regs+info->lba_cap_offset+PCI_AGP_STATUS);
88 return 0;
91 static void
92 parisc_agp_tlbflush(struct agp_memory *mem)
94 struct _parisc_agp_info *info = &parisc_agp_info;
96 writeq(info->gart_base | ilog2(info->gart_size), info->ioc_regs+IOC_PCOM);
97 readq(info->ioc_regs+IOC_PCOM); /* flush */
100 static int
101 parisc_agp_create_gatt_table(struct agp_bridge_data *bridge)
103 struct _parisc_agp_info *info = &parisc_agp_info;
104 int i;
106 for (i = 0; i < info->gatt_entries; i++) {
107 info->gatt[i] = (unsigned long)agp_bridge->scratch_page;
110 return 0;
113 static int
114 parisc_agp_free_gatt_table(struct agp_bridge_data *bridge)
116 struct _parisc_agp_info *info = &parisc_agp_info;
118 info->gatt[0] = SBA_AGPGART_COOKIE;
120 return 0;
123 static int
124 parisc_agp_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
126 struct _parisc_agp_info *info = &parisc_agp_info;
127 int i, k;
128 off_t j, io_pg_start;
129 int io_pg_count;
131 if (type != 0 || mem->type != 0) {
132 return -EINVAL;
135 io_pg_start = info->io_pages_per_kpage * pg_start;
136 io_pg_count = info->io_pages_per_kpage * mem->page_count;
137 if ((io_pg_start + io_pg_count) > info->gatt_entries) {
138 return -EINVAL;
141 j = io_pg_start;
142 while (j < (io_pg_start + io_pg_count)) {
143 if (info->gatt[j])
144 return -EBUSY;
145 j++;
148 if (!mem->is_flushed) {
149 global_cache_flush();
150 mem->is_flushed = true;
153 for (i = 0, j = io_pg_start; i < mem->page_count; i++) {
154 unsigned long paddr;
156 paddr = page_to_phys(mem->pages[i]);
157 for (k = 0;
158 k < info->io_pages_per_kpage;
159 k++, j++, paddr += info->io_page_size) {
160 info->gatt[j] =
161 parisc_agp_mask_memory(agp_bridge,
162 paddr, type);
166 agp_bridge->driver->tlb_flush(mem);
168 return 0;
171 static int
172 parisc_agp_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
174 struct _parisc_agp_info *info = &parisc_agp_info;
175 int i, io_pg_start, io_pg_count;
177 if (type != 0 || mem->type != 0) {
178 return -EINVAL;
181 io_pg_start = info->io_pages_per_kpage * pg_start;
182 io_pg_count = info->io_pages_per_kpage * mem->page_count;
183 for (i = io_pg_start; i < io_pg_count + io_pg_start; i++) {
184 info->gatt[i] = agp_bridge->scratch_page;
187 agp_bridge->driver->tlb_flush(mem);
188 return 0;
191 static unsigned long
192 parisc_agp_mask_memory(struct agp_bridge_data *bridge, dma_addr_t addr,
193 int type)
195 return SBA_PDIR_VALID_BIT | addr;
198 static void
199 parisc_agp_enable(struct agp_bridge_data *bridge, u32 mode)
201 struct _parisc_agp_info *info = &parisc_agp_info;
202 u32 command;
204 command = readl(info->lba_regs + info->lba_cap_offset + PCI_AGP_STATUS);
206 command = agp_collect_device_status(bridge, mode, command);
207 command |= 0x00000100;
209 writel(command, info->lba_regs + info->lba_cap_offset + PCI_AGP_COMMAND);
211 agp_device_command(command, (mode & AGP8X_MODE) != 0);
214 static const struct agp_bridge_driver parisc_agp_driver = {
215 .owner = THIS_MODULE,
216 .size_type = FIXED_APER_SIZE,
217 .configure = parisc_agp_configure,
218 .fetch_size = parisc_agp_fetch_size,
219 .tlb_flush = parisc_agp_tlbflush,
220 .mask_memory = parisc_agp_mask_memory,
221 .masks = parisc_agp_masks,
222 .agp_enable = parisc_agp_enable,
223 .cache_flush = global_cache_flush,
224 .create_gatt_table = parisc_agp_create_gatt_table,
225 .free_gatt_table = parisc_agp_free_gatt_table,
226 .insert_memory = parisc_agp_insert_memory,
227 .remove_memory = parisc_agp_remove_memory,
228 .alloc_by_type = agp_generic_alloc_by_type,
229 .free_by_type = agp_generic_free_by_type,
230 .agp_alloc_page = agp_generic_alloc_page,
231 .agp_alloc_pages = agp_generic_alloc_pages,
232 .agp_destroy_page = agp_generic_destroy_page,
233 .agp_destroy_pages = agp_generic_destroy_pages,
234 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
235 .cant_use_aperture = true,
238 static int __init
239 agp_ioc_init(void __iomem *ioc_regs)
241 struct _parisc_agp_info *info = &parisc_agp_info;
242 u64 iova_base, *io_pdir, io_tlb_ps;
243 int io_tlb_shift;
245 printk(KERN_INFO DRVPFX "IO PDIR shared with sba_iommu\n");
247 info->ioc_regs = ioc_regs;
249 io_tlb_ps = readq(info->ioc_regs+IOC_TCNFG);
250 switch (io_tlb_ps) {
251 case 0: io_tlb_shift = 12; break;
252 case 1: io_tlb_shift = 13; break;
253 case 2: io_tlb_shift = 14; break;
254 case 3: io_tlb_shift = 16; break;
255 default:
256 printk(KERN_ERR DRVPFX "Invalid IOTLB page size "
257 "configuration 0x%llx\n", io_tlb_ps);
258 info->gatt = NULL;
259 info->gatt_entries = 0;
260 return -ENODEV;
262 info->io_page_size = 1 << io_tlb_shift;
263 info->io_pages_per_kpage = PAGE_SIZE / info->io_page_size;
265 iova_base = readq(info->ioc_regs+IOC_IBASE) & ~0x1;
266 info->gart_base = iova_base + PLUTO_IOVA_SIZE - PLUTO_GART_SIZE;
268 info->gart_size = PLUTO_GART_SIZE;
269 info->gatt_entries = info->gart_size / info->io_page_size;
271 io_pdir = phys_to_virt(readq(info->ioc_regs+IOC_PDIR_BASE));
272 info->gatt = &io_pdir[(PLUTO_IOVA_SIZE/2) >> PAGE_SHIFT];
274 if (info->gatt[0] != SBA_AGPGART_COOKIE) {
275 info->gatt = NULL;
276 info->gatt_entries = 0;
277 printk(KERN_ERR DRVPFX "No reserved IO PDIR entry found; "
278 "GART disabled\n");
279 return -ENODEV;
282 return 0;
285 static int
286 lba_find_capability(int cap)
288 struct _parisc_agp_info *info = &parisc_agp_info;
289 u16 status;
290 u8 pos, id;
291 int ttl = 48;
293 status = readw(info->lba_regs + PCI_STATUS);
294 if (!(status & PCI_STATUS_CAP_LIST))
295 return 0;
296 pos = readb(info->lba_regs + PCI_CAPABILITY_LIST);
297 while (ttl-- && pos >= 0x40) {
298 pos &= ~3;
299 id = readb(info->lba_regs + pos + PCI_CAP_LIST_ID);
300 if (id == 0xff)
301 break;
302 if (id == cap)
303 return pos;
304 pos = readb(info->lba_regs + pos + PCI_CAP_LIST_NEXT);
306 return 0;
309 static int __init
310 agp_lba_init(void __iomem *lba_hpa)
312 struct _parisc_agp_info *info = &parisc_agp_info;
313 int cap;
315 info->lba_regs = lba_hpa;
316 info->lba_cap_offset = lba_find_capability(PCI_CAP_ID_AGP);
318 cap = readl(lba_hpa + info->lba_cap_offset) & 0xff;
319 if (cap != PCI_CAP_ID_AGP) {
320 printk(KERN_ERR DRVPFX "Invalid capability ID 0x%02x at 0x%x\n",
321 cap, info->lba_cap_offset);
322 return -ENODEV;
325 return 0;
328 static int __init
329 parisc_agp_setup(void __iomem *ioc_hpa, void __iomem *lba_hpa)
331 struct pci_dev *fake_bridge_dev = NULL;
332 struct agp_bridge_data *bridge;
333 int error = 0;
335 fake_bridge_dev = alloc_pci_dev();
336 if (!fake_bridge_dev) {
337 error = -ENOMEM;
338 goto fail;
341 error = agp_ioc_init(ioc_hpa);
342 if (error)
343 goto fail;
345 error = agp_lba_init(lba_hpa);
346 if (error)
347 goto fail;
349 bridge = agp_alloc_bridge();
350 if (!bridge) {
351 error = -ENOMEM;
352 goto fail;
354 bridge->driver = &parisc_agp_driver;
356 fake_bridge_dev->vendor = PCI_VENDOR_ID_HP;
357 fake_bridge_dev->device = PCI_DEVICE_ID_HP_PCIX_LBA;
358 bridge->dev = fake_bridge_dev;
360 error = agp_add_bridge(bridge);
362 fail:
363 return error;
366 static int
367 find_quicksilver(struct device *dev, void *data)
369 struct parisc_device **lba = data;
370 struct parisc_device *padev = to_parisc_device(dev);
372 if (IS_QUICKSILVER(padev))
373 *lba = padev;
375 return 0;
378 static int
379 parisc_agp_init(void)
381 extern struct sba_device *sba_list;
383 int err = -1;
384 struct parisc_device *sba = NULL, *lba = NULL;
385 struct lba_device *lbadev = NULL;
387 if (!sba_list)
388 goto out;
390 /* Find our parent Pluto */
391 sba = sba_list->dev;
392 if (!IS_PLUTO(sba)) {
393 printk(KERN_INFO DRVPFX "No Pluto found, so no AGPGART for you.\n");
394 goto out;
397 /* Now search our Pluto for our precious AGP device... */
398 device_for_each_child(&sba->dev, &lba, find_quicksilver);
400 if (!lba) {
401 printk(KERN_INFO DRVPFX "No AGP devices found.\n");
402 goto out;
405 lbadev = parisc_get_drvdata(lba);
407 /* w00t, let's go find our cookies... */
408 parisc_agp_setup(sba_list->ioc[0].ioc_hpa, lbadev->hba.base_addr);
410 return 0;
412 out:
413 return err;
416 module_init(parisc_agp_init);
418 MODULE_AUTHOR("Kyle McMartin <kyle@parisc-linux.org>");
419 MODULE_LICENSE("GPL");