HomeSort by relevance Sort by last modified time
    Searched defs:TIMER_LOAD_VAL (Results 1 - 17 of 17) sorted by null

  /external/u-boot/arch/arm/mach-at91/arm926ejs/
timer.c 32 #define TIMER_LOAD_VAL 0xfffff
44 writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
  /external/u-boot/arch/arm/mach-at91/armv7/
timer.c 35 #define TIMER_LOAD_VAL 0xfffff
48 writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
  /external/u-boot/arch/arm/mach-mvebu/
timer.c 13 #define TIMER_LOAD_VAL 0xffffffff
28 writel(TIMER_LOAD_VAL, MVEBU_TIMER_BASE + 0x10);
29 writel(TIMER_LOAD_VAL, MVEBU_TIMER_BASE + 0x14);
  /external/u-boot/arch/arm/mach-socfpga/
timer.c 10 #define TIMER_LOAD_VAL 0xFFFFFFFF
19 writel(TIMER_LOAD_VAL, &timer_base->load_val);
20 writel(TIMER_LOAD_VAL, &timer_base->curr_val);
  /external/u-boot/include/configs/
socfpga_arria10_socdk.h 40 #define TIMER_LOAD_VAL 0xFFFFFFFF
adp-ae3xx.h 55 #define TIMER_LOAD_VAL 0xffffffff
adp-ag101p.h 57 #define TIMER_LOAD_VAL 0xffffffff
  /external/u-boot/arch/arm/cpu/armv7/vf610/
timer.c 16 #define TIMER_LOAD_VAL 0xffffffff
38 __raw_writel(TIMER_LOAD_VAL, &cur_pit->ldval1);
50 ulong now = TIMER_LOAD_VAL - __raw_readl(&cur_pit->cval1);
  /external/u-boot/arch/arm/mach-at91/arm920t/
timer.c 26 #define TIMER_LOAD_VAL (CONFIG_SYS_HZ_CLOCK/CONFIG_SYS_HZ)
44 writel(TIMER_LOAD_VAL, &tc->tc[0].rc);
78 gd->arch.tbl += now + TIMER_LOAD_VAL - gd->arch.lastinc;
87 return get_timer_raw()/TIMER_LOAD_VAL;
  /external/u-boot/arch/arm/mach-davinci/
timer.c 33 #define TIMER_LOAD_VAL 0xffffffff
44 writel(TIMER_LOAD_VAL, &timer->prd34);
  /external/u-boot/arch/arm/mach-omap2/
timer.c 33 #define TIMER_LOAD_VAL 0
38 writel(TIMER_LOAD_VAL, &timer_base->tldr);
  /external/u-boot/arch/arm/cpu/arm926ejs/mxs/
timer.c 19 #define TIMER_LOAD_VAL 0xffff
21 #define TIMER_LOAD_VAL 0xffffffff
72 writel(TIMER_LOAD_VAL - 1, &timrot_regs->hw_timrot_timcount0);
74 writel(TIMER_LOAD_VAL, &timrot_regs->hw_timrot_fixed_count0);
105 timestamp += (TIMER_LOAD_VAL - now) + lastdec;
  /external/u-boot/arch/arm/mach-zynq/
timer.c 54 #define TIMER_LOAD_VAL 0xFFFFFFFF
  /external/u-boot/board/armltd/integrator/
timer.c 24 #define TIMER_LOAD_VAL 0xFFFFFFFFL
27 #define TIMER_LOAD_VAL 0x0000FFFFL
56 *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0) = TIMER_LOAD_VAL;
127 total_count += lastdec + TIMER_LOAD_VAL + 1 - now;
  /external/u-boot/arch/arm/cpu/armv7/sunxi/
timer.c 26 #define TIMER_LOAD_VAL 0xffffffff
50 writel(TIMER_LOAD_VAL, &timer->inter);
72 gd->arch.tbl += (TICKS_TO_HZ(TIMER_LOAD_VAL)
91 tmo -= TIMER_LOAD_VAL - last + now;
  /external/u-boot/arch/arm/cpu/arm926ejs/armada100/
timer.c 43 #define TIMER_LOAD_VAL 0xffffffff
73 gd->arch.tbu += now + TIMER_LOAD_VAL - gd->arch.tbl;
113 writel(TIMER_LOAD_VAL, &armd1timers->match[MATCH_CMP(0)]);
  /external/u-boot/arch/arm/mach-orion5x/
timer.c 68 #define TIMER_LOAD_VAL 0xffffffff
91 (TIMER_LOAD_VAL / (CONFIG_SYS_TCLK / 1000)) - now;
120 while ((TIMER_LOAD_VAL - delayticks) < uboot_cntr_val())
136 writel(TIMER_LOAD_VAL, CNTMR_RELOAD_REG(UBOOT_CNTR));
137 writel(TIMER_LOAD_VAL, CNTMR_VAL_REG(UBOOT_CNTR));

Completed in 275 milliseconds