Lines Matching refs:temp

150 	u32		temp;  in ehci_adjust_port_wakeup_flags()  local
168 temp = ehci_readl(ehci, hostpc_reg); in ehci_adjust_port_wakeup_flags()
169 ehci_writel(ehci, temp & ~HOSTPC_PHCD, hostpc_reg); in ehci_adjust_port_wakeup_flags()
200 temp = ehci_readl(ehci, hostpc_reg); in ehci_adjust_port_wakeup_flags()
201 ehci_writel(ehci, temp | HOSTPC_PHCD, hostpc_reg); in ehci_adjust_port_wakeup_flags()
379 u32 temp; in ehci_bus_resume() local
429 temp = ehci_readl(ehci, &ehci->regs->port_status[i]); in ehci_bus_resume()
430 if ((temp & PORT_PE) && in ehci_bus_resume()
431 !(temp & (PORT_SUSPEND | PORT_RESUME))) { in ehci_bus_resume()
432 ehci_dbg(ehci, "Port status(0x%x) is wrong\n", temp); in ehci_bus_resume()
451 temp = ehci_readl(ehci, hostpc_reg); in ehci_bus_resume()
452 ehci_writel(ehci, temp & ~HOSTPC_PHCD, in ehci_bus_resume()
466 temp = ehci_readl(ehci, &ehci->regs->port_status [i]); in ehci_bus_resume()
467 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); in ehci_bus_resume()
469 (temp & PORT_SUSPEND)) { in ehci_bus_resume()
470 temp |= PORT_RESUME; in ehci_bus_resume()
473 ehci_writel(ehci, temp, &ehci->regs->port_status [i]); in ehci_bus_resume()
490 temp = ehci_readl(ehci, &ehci->regs->port_status [i]); in ehci_bus_resume()
492 temp &= ~(PORT_RWC_BITS | PORT_SUSPEND | PORT_RESUME); in ehci_bus_resume()
493 ehci_writel(ehci, temp, &ehci->regs->port_status [i]); in ehci_bus_resume()
621 u32 temp, status; in ehci_hub_status_data() local
664 temp = ehci_readl(ehci, &ehci->regs->port_status[i]); in ehci_hub_status_data()
666 temp = 0; in ehci_hub_status_data()
675 if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend) in ehci_hub_status_data()
702 u16 temp; in ehci_hub_descriptor() local
709 temp = 1 + (ports / 8); in ehci_hub_descriptor()
710 desc->bDescLength = 7 + 2 * temp; in ehci_hub_descriptor()
713 memset(&desc->u.hs.DeviceRemovable[0], 0, temp); in ehci_hub_descriptor()
714 memset(&desc->u.hs.DeviceRemovable[temp], 0xff, temp); in ehci_hub_descriptor()
716 temp = HUB_CHAR_INDV_PORT_OCPM; /* per-port overcurrent reporting */ in ehci_hub_descriptor()
718 temp |= HUB_CHAR_INDV_PORT_LPSM; /* per-port power control */ in ehci_hub_descriptor()
720 temp |= HUB_CHAR_NO_LPSM; /* no power switching */ in ehci_hub_descriptor()
724 temp |= HUB_CHAR_PORTIND; /* per-port indicators (LEDs) */ in ehci_hub_descriptor()
726 desc->wHubCharacteristics = cpu_to_le16(temp); in ehci_hub_descriptor()
742 u32 temp, temp1, status; in ehci_hub_control() local
752 temp = (wIndex - 1) & 0xff; in ehci_hub_control()
753 if (temp >= HCS_N_PORTS_MAX) in ehci_hub_control()
754 temp = 0; in ehci_hub_control()
755 status_reg = &ehci->regs->port_status[temp]; in ehci_hub_control()
756 hostpc_reg = &ehci->regs->hostpc[temp]; in ehci_hub_control()
781 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
782 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
793 ehci_writel(ehci, temp & ~PORT_PE, status_reg); in ehci_hub_control()
796 ehci_writel(ehci, temp | PORT_PEC, status_reg); in ehci_hub_control()
799 if (temp & PORT_RESET) in ehci_hub_control()
810 if (!(temp & PORT_SUSPEND)) in ehci_hub_control()
812 if ((temp & PORT_PE) == 0) in ehci_hub_control()
825 temp &= ~PORT_WAKE_BITS; in ehci_hub_control()
826 ehci_writel(ehci, temp | PORT_RESUME, status_reg); in ehci_hub_control()
843 ehci_writel(ehci, temp | PORT_CSC, status_reg); in ehci_hub_control()
846 ehci_writel(ehci, temp | PORT_OCC, status_reg); in ehci_hub_control()
870 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
873 if (temp & PORT_CSC) in ehci_hub_control()
875 if (temp & PORT_PEC) in ehci_hub_control()
878 if ((temp & PORT_OCC) && (!ignore_oc && !ehci->spurious_oc)){ in ehci_hub_control()
888 if (((temp & PORT_OC) || (ehci->need_oc_pp_cycle)) in ehci_hub_control()
893 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
901 if (temp & PORT_RESUME) { in ehci_hub_control()
924 temp &= ~(PORT_RWC_BITS | PORT_SUSPEND | PORT_RESUME); in ehci_hub_control()
925 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
934 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
942 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET), in ehci_hub_control()
956 temp = check_reset_complete (ehci, wIndex, status_reg, in ehci_hub_control()
961 if ((temp & PORT_CONNECT) && in ehci_hub_control()
963 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
964 temp |= PORT_OWNER; in ehci_hub_control()
965 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
967 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
976 if (temp & PORT_CONNECT) { in ehci_hub_control()
983 status |= ehci_port_speed(ehci, temp); in ehci_hub_control()
985 if (temp & PORT_PE) in ehci_hub_control()
989 if (temp & (PORT_SUSPEND|PORT_RESUME)) { in ehci_hub_control()
995 if (temp & PORT_PE) in ehci_hub_control()
1000 if (temp & PORT_OC) in ehci_hub_control()
1002 if (temp & PORT_RESET) in ehci_hub_control()
1004 if (temp & PORT_POWER) in ehci_hub_control()
1010 dbg_port(ehci, "GetStatus", wIndex + 1, temp); in ehci_hub_control()
1038 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
1039 if (temp & PORT_OWNER) in ehci_hub_control()
1042 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
1047 if ((temp & PORT_PE) == 0 in ehci_hub_control()
1048 || (temp & PORT_RESET) != 0) in ehci_hub_control()
1055 temp &= ~PORT_WKCONN_E; in ehci_hub_control()
1056 temp |= PORT_WKDISC_E | PORT_WKOC_E; in ehci_hub_control()
1057 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg); in ehci_hub_control()
1086 if (temp & (PORT_SUSPEND|PORT_RESUME)) in ehci_hub_control()
1092 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT in ehci_hub_control()
1094 && PORT_USB11 (temp)) { in ehci_hub_control()
1098 temp |= PORT_OWNER; in ehci_hub_control()
1100 temp |= PORT_RESET; in ehci_hub_control()
1101 temp &= ~PORT_PE; in ehci_hub_control()
1115 temp |= (1 << PORTSC_FSL_PFSC); in ehci_hub_control()
1117 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
1147 temp = ehci_readl(ehci, sreg) & ~PORT_RWC_BITS; in ehci_hub_control()
1148 if (temp & PORT_PE) in ehci_hub_control()
1149 ehci_writel(ehci, temp | PORT_SUSPEND, in ehci_hub_control()
1157 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
1158 temp |= selector << 16; in ehci_hub_control()
1159 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
1203 u32 temp = ehci_readl(ehci, status_reg) & ~PORT_RWC_BITS; in ehci_port_power() local
1206 ehci_writel(ehci, temp | PORT_POWER, status_reg); in ehci_port_power()
1208 ehci_writel(ehci, temp & ~PORT_POWER, status_reg); in ehci_port_power()