Lines Matching full: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 & 0xff; in ehci_hub_control()
753 temp -= (temp > 0); in ehci_hub_control()
754 status_reg = &ehci->regs->port_status[temp]; in ehci_hub_control()
755 hostpc_reg = &ehci->regs->hostpc[temp]; in ehci_hub_control()
780 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
781 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
792 ehci_writel(ehci, temp & ~PORT_PE, status_reg); in ehci_hub_control()
795 ehci_writel(ehci, temp | PORT_PEC, status_reg); in ehci_hub_control()
798 if (temp & PORT_RESET) in ehci_hub_control()
809 if (!(temp & PORT_SUSPEND)) in ehci_hub_control()
811 if ((temp & PORT_PE) == 0) in ehci_hub_control()
824 temp &= ~PORT_WAKE_BITS; in ehci_hub_control()
825 ehci_writel(ehci, temp | PORT_RESUME, status_reg); in ehci_hub_control()
842 ehci_writel(ehci, temp | PORT_CSC, status_reg); in ehci_hub_control()
845 ehci_writel(ehci, temp | PORT_OCC, status_reg); in ehci_hub_control()
869 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
872 if (temp & PORT_CSC) in ehci_hub_control()
874 if (temp & PORT_PEC) in ehci_hub_control()
877 if ((temp & PORT_OCC) && (!ignore_oc && !ehci->spurious_oc)){ in ehci_hub_control()
887 if (((temp & PORT_OC) || (ehci->need_oc_pp_cycle)) in ehci_hub_control()
892 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
900 if (temp & PORT_RESUME) { in ehci_hub_control()
923 temp &= ~(PORT_RWC_BITS | PORT_SUSPEND | PORT_RESUME); in ehci_hub_control()
924 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
933 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
941 ehci_writel(ehci, temp & ~(PORT_RWC_BITS | PORT_RESET), in ehci_hub_control()
955 temp = check_reset_complete (ehci, wIndex, status_reg, in ehci_hub_control()
960 if ((temp & PORT_CONNECT) && in ehci_hub_control()
962 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
963 temp |= PORT_OWNER; in ehci_hub_control()
964 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
966 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
975 if (temp & PORT_CONNECT) { in ehci_hub_control()
982 status |= ehci_port_speed(ehci, temp); in ehci_hub_control()
984 if (temp & PORT_PE) in ehci_hub_control()
988 if (temp & (PORT_SUSPEND|PORT_RESUME)) { in ehci_hub_control()
994 if (temp & PORT_PE) in ehci_hub_control()
999 if (temp & PORT_OC) in ehci_hub_control()
1001 if (temp & PORT_RESET) in ehci_hub_control()
1003 if (temp & PORT_POWER) in ehci_hub_control()
1009 dbg_port(ehci, "GetStatus", wIndex + 1, temp); in ehci_hub_control()
1037 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
1038 if (temp & PORT_OWNER) in ehci_hub_control()
1041 temp &= ~PORT_RWC_BITS; in ehci_hub_control()
1046 if ((temp & PORT_PE) == 0 in ehci_hub_control()
1047 || (temp & PORT_RESET) != 0) in ehci_hub_control()
1054 temp &= ~PORT_WKCONN_E; in ehci_hub_control()
1055 temp |= PORT_WKDISC_E | PORT_WKOC_E; in ehci_hub_control()
1056 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg); in ehci_hub_control()
1085 if (temp & (PORT_SUSPEND|PORT_RESUME)) in ehci_hub_control()
1091 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT in ehci_hub_control()
1093 && PORT_USB11 (temp)) { in ehci_hub_control()
1097 temp |= PORT_OWNER; in ehci_hub_control()
1099 temp |= PORT_RESET; in ehci_hub_control()
1100 temp &= ~PORT_PE; in ehci_hub_control()
1114 temp |= (1 << PORTSC_FSL_PFSC); in ehci_hub_control()
1116 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
1146 temp = ehci_readl(ehci, sreg) & ~PORT_RWC_BITS; in ehci_hub_control()
1147 if (temp & PORT_PE) in ehci_hub_control()
1148 ehci_writel(ehci, temp | PORT_SUSPEND, in ehci_hub_control()
1156 temp = ehci_readl(ehci, status_reg); in ehci_hub_control()
1157 temp |= selector << 16; in ehci_hub_control()
1158 ehci_writel(ehci, temp, status_reg); in ehci_hub_control()
1202 u32 temp = ehci_readl(ehci, status_reg) & ~PORT_RWC_BITS; in ehci_port_power() local
1205 ehci_writel(ehci, temp | PORT_POWER, status_reg); in ehci_port_power()
1207 ehci_writel(ehci, temp & ~PORT_POWER, status_reg); in ehci_port_power()