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

Lines Matching refs:tioca_common

29  * @tioca_common: ptr to common prom/kernel struct identifying the 
40 struct tioca_common *tioca_common;
43 tioca_common = tioca_kern->ca_common;
44 ca_base = (struct tioca __iomem *)tioca_common->ca_common.bs_base;
220 struct tioca_common *common;
298 struct tioca_common *tioca_common;
306 tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
307 ca_base = (struct tioca __iomem *)tioca_common->ca_common.bs_base;
348 struct tioca_common *tioca_common;
356 tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
357 tioca_kern = (struct tioca_kernel *)tioca_common->ca_kernel_private;
445 struct tioca_common *tioca_common;
451 tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
452 tioca_kern = (struct tioca_kernel *)tioca_common->ca_kernel_private;
526 * @arg: pointer to tioca_common struct for the given CA
534 struct tioca_common *soft = arg;
555 * Replicates the tioca_common pointed to by @prom_bussoft in kernel
559 * On successful setup, returns the kernel version of tioca_common back to
565 struct tioca_common *tioca_common;
582 tioca_common = kzalloc(sizeof(struct tioca_common), GFP_KERNEL);
583 if (!tioca_common)
586 memcpy(tioca_common, prom_bussoft, sizeof(struct tioca_common));
587 tioca_common->ca_common.bs_base = (unsigned long)
588 ioremap(REGION_OFFSET(tioca_common->ca_common.bs_base),
589 sizeof(struct tioca_common));
595 kfree(tioca_common);
599 tioca_kern->ca_common = tioca_common;
603 nasid_to_cnodeid(tioca_common->ca_closest_nasid);
604 tioca_common->ca_kernel_private = (u64) tioca_kern;
606 bus = pci_find_bus(tioca_common->ca_common.bs_persist_segment,
607 tioca_common->ca_common.bs_persist_busnum);
615 kfree(tioca_common);
624 IRQF_SHARED, "TIOCA error", (void *)tioca_common))
629 (int)tioca_common->ca_common.bs_persist_busnum);
633 return tioca_common;