• Home
  • Raw
  • Download

Lines Matching refs:temp

134 	u32		temp;  in tegra_ehci_internal_port_reset()  local
151 temp = ehci_readl(ehci, portsc_reg); in tegra_ehci_internal_port_reset()
152 temp |= PORT_RESET; in tegra_ehci_internal_port_reset()
153 ehci_writel(ehci, temp, portsc_reg); in tegra_ehci_internal_port_reset()
155 temp &= ~PORT_RESET; in tegra_ehci_internal_port_reset()
156 ehci_writel(ehci, temp, portsc_reg); in tegra_ehci_internal_port_reset()
167 temp = ehci_readl(ehci, portsc_reg); in tegra_ehci_internal_port_reset()
168 } while (!(temp & PORT_PE) && tries--); in tegra_ehci_internal_port_reset()
169 if (temp & PORT_PE) in tegra_ehci_internal_port_reset()
179 if (temp & PORT_CSC) in tegra_ehci_internal_port_reset()
186 temp = ehci_readl(ehci, &ehci->regs->status); in tegra_ehci_internal_port_reset()
187 ehci_writel(ehci, temp, &ehci->regs->status); in tegra_ehci_internal_port_reset()
206 u32 temp; in tegra_ehci_hub_control() local
215 temp = ehci_readl(ehci, status_reg); in tegra_ehci_hub_control()
216 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) { in tegra_ehci_hub_control()
224 temp = ehci_readl(ehci, status_reg); in tegra_ehci_hub_control()
225 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) { in tegra_ehci_hub_control()
230 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E); in tegra_ehci_hub_control()
231 temp |= PORT_WKDISC_E | PORT_WKOC_E; in tegra_ehci_hub_control()
232 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg); in tegra_ehci_hub_control()
262 temp = ehci_readl(ehci, status_reg); in tegra_ehci_hub_control()
263 if ((temp & PORT_RESET) || !(temp & PORT_PE)) { in tegra_ehci_hub_control()
268 if (!(temp & PORT_SUSPEND)) in tegra_ehci_hub_control()
276 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); in tegra_ehci_hub_control()
278 ehci_writel(ehci, temp | PORT_RESUME, status_reg); in tegra_ehci_hub_control()
316 struct dma_aligned_buffer *temp; in free_dma_aligned_buffer() local
322 temp = container_of(urb->transfer_buffer, in free_dma_aligned_buffer()
331 memcpy(temp->old_xfer_buffer, temp->data, length); in free_dma_aligned_buffer()
333 urb->transfer_buffer = temp->old_xfer_buffer; in free_dma_aligned_buffer()
334 kfree(temp->kmalloc_ptr); in free_dma_aligned_buffer()
341 struct dma_aligned_buffer *temp, *kmalloc_ptr; in alloc_dma_aligned_buffer() local
358 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1; in alloc_dma_aligned_buffer()
359 temp->kmalloc_ptr = kmalloc_ptr; in alloc_dma_aligned_buffer()
360 temp->old_xfer_buffer = urb->transfer_buffer; in alloc_dma_aligned_buffer()
362 memcpy(temp->data, urb->transfer_buffer, in alloc_dma_aligned_buffer()
364 urb->transfer_buffer = temp->data; in alloc_dma_aligned_buffer()