Lines Matching defs:temp

1555 	u32 temp;
1559 temp = gpmc_ps_to_ticks(time_ps);
1560 temp = (temp + div - 1) / div;
1561 return gpmc_ticks_to_ps(temp * div);
1569 u32 temp;
1572 temp = dev_t->t_avdp_r;
1579 temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_avdh);
1580 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
1582 gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp);
1585 temp = dev_t->t_oeasu; /* XXX: remove this ? */
1587 temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_ach);
1588 temp = max_t(u32, temp, gpmc_t->adv_rd_off +
1591 gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp);
1598 temp = max_t(u32, dev_t->t_iaa, dev_t->cyc_iaa * gpmc_t->sync_clk);
1599 temp += gpmc_t->clk_activation;
1601 temp = max_t(u32, temp, gpmc_t->oe_on +
1603 gpmc_t->access = gpmc_round_ps_to_ticks(temp);
1609 temp = max_t(u32, dev_t->t_cez_r, dev_t->t_oez);
1610 temp = gpmc_round_ps_to_sync_clk(temp, gpmc_t->sync_clk) +
1614 temp = max_t(u32, temp, gpmc_t->cs_rd_off + dev_t->t_ce_rdyz);
1615 gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp);
1624 u32 temp;
1627 temp = dev_t->t_avdp_w;
1629 temp = max_t(u32, temp,
1631 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
1633 gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp);
1636 temp = max_t(u32, dev_t->t_weasu,
1642 temp = max_t(u32, temp,
1644 temp = max_t(u32, temp, gpmc_t->adv_wr_off +
1647 gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp);
1660 temp = gpmc_t->we_on + dev_t->t_wpl;
1661 temp = max_t(u32, temp,
1663 temp = max_t(u32, temp,
1665 gpmc_t->we_off = gpmc_round_ps_to_ticks(temp);
1671 temp = gpmc_round_ps_to_sync_clk(dev_t->t_cez_w, gpmc_t->sync_clk);
1672 temp += gpmc_t->wr_access;
1675 temp = max_t(u32, temp,
1677 gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp);
1686 u32 temp;
1689 temp = dev_t->t_avdp_r;
1691 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
1692 gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp);
1695 temp = dev_t->t_oeasu;
1697 temp = max_t(u32, temp, gpmc_t->adv_rd_off + dev_t->t_aavdh);
1698 gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp);
1701 temp = max_t(u32, dev_t->t_iaa, /* XXX: remove t_iaa in async ? */
1703 temp = max_t(u32, temp, gpmc_t->cs_on + dev_t->t_ce);
1704 temp = max_t(u32, temp, gpmc_t->adv_on + dev_t->t_aa);
1705 gpmc_t->access = gpmc_round_ps_to_ticks(temp);
1711 temp = max_t(u32, dev_t->t_rd_cycle,
1713 temp = max_t(u32, temp, gpmc_t->oe_off + dev_t->t_oez);
1714 gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp);
1723 u32 temp;
1726 temp = dev_t->t_avdp_w;
1728 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
1729 gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp);
1732 temp = dev_t->t_weasu;
1734 temp = max_t(u32, temp, gpmc_t->adv_wr_off + dev_t->t_aavdh);
1735 temp = max_t(u32, temp, gpmc_t->adv_wr_off +
1738 gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp);
1747 temp = gpmc_t->we_on + dev_t->t_wpl;
1748 gpmc_t->we_off = gpmc_round_ps_to_ticks(temp);
1754 temp = max_t(u32, dev_t->t_wr_cycle,
1756 gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp);
1764 u32 temp;
1773 temp = max_t(u32, dev_t->t_ces, dev_t->t_avds);
1774 gpmc_t->clk_activation = gpmc_round_ps_to_ticks(temp);
1795 u32 temp;
1801 temp = dev_t->t_avdasu;
1803 temp = max_t(u32, temp,
1805 gpmc_t->adv_on = gpmc_round_ps_to_ticks(temp);