Lines Matching refs:proto_tce
107 u64 proto_tce; in tce_build_pSeries() local
111 proto_tce = TCE_PCI_READ; // Read allowed in tce_build_pSeries()
114 proto_tce |= TCE_PCI_WRITE; in tce_build_pSeries()
121 *tcep = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT); in tce_build_pSeries()
158 u64 proto_tce, tce; in tce_build_pSeriesLP() local
164 proto_tce = TCE_PCI_READ; in tce_build_pSeriesLP()
166 proto_tce |= TCE_PCI_WRITE; in tce_build_pSeriesLP()
169 tce = proto_tce | (rpn & TCE_RPN_MASK) << tceshift; in tce_build_pSeriesLP()
201 u64 proto_tce; in tce_buildmulti_pSeriesLP() local
235 proto_tce = TCE_PCI_READ; in tce_buildmulti_pSeriesLP()
237 proto_tce |= TCE_PCI_WRITE; in tce_buildmulti_pSeriesLP()
248 tcep[l] = cpu_to_be64(proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT); in tce_buildmulti_pSeriesLP()
413 u64 tce_size, num_tce, dma_offset, next, proto_tce, liobn; in tce_setrange_multi_pSeriesLP() local
444 proto_tce = TCE_PCI_READ | TCE_PCI_WRITE; in tce_setrange_multi_pSeriesLP()
470 tcep[l] = cpu_to_be64(proto_tce | next); in tce_setrange_multi_pSeriesLP()
659 u64 proto_tce = iommu_direction_to_tce_perm(*direction); in tce_exchange_pseries() local
660 unsigned long newtce = *tce | proto_tce; in tce_exchange_pseries()