• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/

Lines Matching defs:agp

907 marvel_agp_setup(alpha_agp_info *agp)
917 aper->arena = agp->hose->sg_pci;
928 agp->aperture.bus_base =
930 agp->aperture.size = aper->pg_count * PAGE_SIZE;
931 agp->aperture.sysdata = aper;
937 marvel_agp_cleanup(alpha_agp_info *agp)
939 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
954 kfree(agp);
958 marvel_agp_configure(alpha_agp_info *agp)
960 io7_ioport_csrs *csrs = ((struct io7_port *)agp->hose->sysdata)->csrs;
961 struct io7 *io7 = ((struct io7_port *)agp->hose->sysdata)->io7;
977 if (agp->mode.bits.rate != 2)
986 if (agp->mode.bits.rate == 2)
1006 agp->mode.bits.rate,
1009 agp->mode.bits.rate = new_rate;
1013 agp->hose->index, agp->mode.bits.rate,
1014 agp->mode.bits.sba ? " - SBA" : "", agp->mode.bits.rq);
1016 csrs->AGP_CMD.csr = agp->mode.lw;
1022 marvel_agp_bind_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_unbind_memory(alpha_agp_info *agp, off_t pg_start, struct agp_memory *mem)
1032 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
1038 marvel_agp_translate(alpha_agp_info *agp, dma_addr_t addr)
1040 struct marvel_agp_aperture *aper = agp->aperture.sysdata;
1044 if (addr < agp->aperture.bus_base ||
1045 addr >= agp->aperture.bus_base + agp->aperture.size) {
1073 alpha_agp_info *agp;
1106 agp = kmalloc(sizeof(*agp), GFP_KERNEL);
1111 agp->hose = hose;
1112 agp->private = NULL;
1113 agp->ops = &marvel_agp_ops;
1118 agp->aperture.bus_base = 0;
1119 agp->aperture.size = 0;
1120 agp->aperture.sysdata = NULL;
1129 agp->capability.lw = csrs->AGP_STAT.csr;
1130 agp->capability.bits.rq = 0xf;
1135 agp->mode.lw = csrs->AGP_CMD.csr;
1137 return agp;