• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/kernel/

Lines Matching refs:agp

899 marvel_agp_setup(alpha_agp_info *agp)
909 aper->arena = agp->hose->sg_pci;
920 agp->aperture.bus_base =
922 agp->aperture.size = aper->pg_count * PAGE_SIZE;
923 agp->aperture.sysdata = aper;
929 marvel_agp_cleanup(alpha_agp_info *agp)
931 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
946 kfree(agp);
950 marvel_agp_configure(alpha_agp_info *agp)
952 io7_ioport_csrs *csrs = ((struct io7_port *)agp->hose->sysdata)->csrs;
953 struct io7 *io7 = ((struct io7_port *)agp->hose->sysdata)->io7;
969 if (agp->mode.bits.rate != 2)
978 if (agp->mode.bits.rate == 2)
998 agp->mode.bits.rate,
1001 agp->mode.bits.rate = new_rate;
1005 agp->hose->index, agp->mode.bits.rate,
1006 agp->mode.bits.sba ? " - SBA" : "", agp->mode.bits.rq);
1008 csrs->AGP_CMD.csr = agp->mode.lw;
1014 marvel_agp_bind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem)
1016 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
1022 marvel_agp_unbind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem)
1024 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
1030 marvel_agp_translate(alpha_agp_info *agp, dma_addr_t addr)
1032 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
1036 if (addr < agp->aperture.bus_base ||
1037 addr >= agp->aperture.bus_base + agp->aperture.size) {
1065 alpha_agp_info *agp;
1098 agp = kmalloc(sizeof(*agp), GFP_KERNEL);
1099 if (!agp)
1105 agp->hose = hose;
1106 agp->private = NULL;
1107 agp->ops = &marvel_agp_ops;
1112 agp->aperture.bus_base = 0;
1113 agp->aperture.size = 0;
1114 agp->aperture.sysdata = NULL;
1123 agp->capability.lw = csrs->AGP_STAT.csr;
1124 agp->capability.bits.rq = 0xf;
1129 agp->mode.lw = csrs->AGP_CMD.csr;
1131 return agp;