Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 25 of 43) sorted by relevance

12

/u-boot/arch/powerpc/lib/
A Dinterrupts.c70 static volatile ulong timestamp = 0; variable
80 timestamp++; in timer_interrupt()
83 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) in timer_interrupt()
88 status_led_tick(timestamp); in timer_interrupt()
94 return (timestamp - base); in get_timer()
/u-boot/lib/efi_loader/
A Defi_variable.c58 struct efi_time timestamp; in efi_variable_authenticate() local
84 memcpy(&timestamp, &auth->time_stamp, sizeof(timestamp)); in efi_variable_authenticate()
85 if (timestamp.pad1 || timestamp.nanosecond || timestamp.timezone || in efi_variable_authenticate()
86 timestamp.daylight || timestamp.pad2) in efi_variable_authenticate()
94 tm.tm_year = timestamp.year; in efi_variable_authenticate()
95 tm.tm_mon = timestamp.month; in efi_variable_authenticate()
96 tm.tm_mday = timestamp.day; in efi_variable_authenticate()
97 tm.tm_hour = timestamp.hour; in efi_variable_authenticate()
98 tm.tm_min = timestamp.minute; in efi_variable_authenticate()
99 tm.tm_sec = timestamp.second; in efi_variable_authenticate()
[all …]
/u-boot/arch/nds32/cpu/n1213/ag101/
A Dtimer.c20 static ulong timestamp; variable
81 timestamp = 0; /* start "advancing" time stamp from 0 */ in reset_timer_masked()
114 timestamp += lastdec - now; in get_timer_masked()
125 timestamp += lastdec + TIMER_LOAD_VAL - now; in get_timer_masked()
130 debug("%s() returns %lx\n", __func__, timestamp); in get_timer_masked()
132 return timestamp; in get_timer_masked()
147 timestamp = t; in set_timer()
/u-boot/arch/m68k/lib/
A Dtime.c22 static volatile ulong timestamp = 0; variable
71 timestamp++; in dtimer_interrupt()
74 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) { in dtimer_interrupt()
86 timestamp = 0; in timer_init()
111 return (timestamp - base); in get_timer()
/u-boot/arch/microblaze/cpu/
A Dtimer.c20 volatile int timestamp = 0; variable
26 return timestamp - base; in get_timer()
27 return timestamp++ - base; in get_timer()
44 timestamp++; in timer_isr()
92 timestamp = 0; in timer_init()
/u-boot/arch/arm/cpu/armv7/stv0991/
A Dtimer.c25 #define timestamp gd->arch.tbl macro
53 timestamp = 0; in timer_init()
88 timestamp += now - lastdec; in get_timer_masked()
91 timestamp += now + GPT_FREE_RUNNING - lastdec; in get_timer_masked()
95 return timestamp; in get_timer_masked()
/u-boot/arch/arm/cpu/arm926ejs/spear/
A Dtimer.c31 #define timestamp gd->arch.tbl macro
63 timestamp = 0; in timer_init()
98 timestamp += now - lastdec; in get_timer_masked()
101 timestamp += now + GPT_FREE_RUNNING - lastdec; in get_timer_masked()
105 return timestamp; in get_timer_masked()
/u-boot/board/armltd/integrator/
A Dtimer.c45 static ulong timestamp; /* U-Boot ticks since startup */ variable
86 timestamp = 0L; in timer_init()
117 timestamp = now; in get_timer_masked()
119 return timestamp; in get_timer_masked()
/u-boot/arch/m68k/cpu/mcf547x_8x/
A Dslicetimer.c19 static ulong timestamp; variable
59 timestamp++; in dtimer_interrupt()
68 timestamp = 0; in timer_init()
92 return (timestamp - base); in get_timer()
/u-boot/arch/arm/mach-orion5x/
A Dtimer.c82 #define timestamp gd->arch.tbl macro
91 timestamp += lastdec - now; in get_timer_masked()
94 timestamp += lastdec + in get_timer_masked()
99 return timestamp; in get_timer_masked()
155 timestamp = 0; in timer_init_r()
/u-boot/arch/arm/cpu/arm720t/
A Dinterrupts.c15 static ulong timestamp; variable
22 timestamp = 0; in timer_init()
/u-boot/arch/arm/cpu/arm926ejs/mxs/
A Dtimer.c30 #define timestamp (gd->arch.tbl) macro
106 timestamp += (lastdec - now); in get_ticks()
109 timestamp += (TIMER_LOAD_VAL - now) + lastdec; in get_ticks()
114 return timestamp; in get_ticks()
/u-boot/arch/arm/cpu/arm926ejs/mx27/
A Dtimer.c36 #define timestamp (gd->arch.tbl) macro
125 timestamp += (now - lastinc); in get_ticks()
128 timestamp += (0xFFFFFFFF - lastinc) + now; in get_ticks()
131 return timestamp; in get_ticks()
/u-boot/arch/arm/mach-nexell/
A Dtimer.c26 static unsigned long timestamp __attribute__ ((section(".data"))); variable
176 timestamp = (unsigned long)t; in set_timer()
188 timestamp = 0; in reset_timer_masked()
200 timestamp += now - lastdec; in get_timer_masked()
209 timestamp += now + TIMER_COUNT - lastdec; in get_timer_masked()
214 debug("now=%lu, last=%lu, timestamp=%lu\n", now, lastdec, timestamp); in get_timer_masked()
215 return (unsigned long)timestamp; in get_timer_masked()
/u-boot/drivers/timer/
A Dmpc83xx_timer.c34 ulong timestamp; member
171 priv->timestamp++; in timer_interrupt()
174 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) in timer_interrupt()
179 status_led_tick(priv->timestamp); in timer_interrupt()
/u-boot/drivers/misc/
A Daltera_sysid.c17 u32 timestamp; /* Timestamp */ member
67 sysid[1] = readl(&regs->timestamp); in altera_sysid_read()
A Dstatus_led.c85 void status_led_tick(ulong timestamp) in status_led_tick() argument
/u-boot/cmd/
A Diotrace.c45 cur_record->timestamp, in do_print_trace()
50 cur_record->timestamp, in do_print_trace()
/u-boot/arch/x86/cpu/coreboot/
A DMakefile24 obj-y += timestamp.o
/u-boot/arch/x86/include/asm/arch-slimbootloader/
A Dslimbootloader.h112 u64 timestamp[0]; member
/u-boot/include/
A Dstatus_led.h39 void status_led_tick(unsigned long timestamp);
A Diotrace.h34 u64 timestamp; member
/u-boot/common/
A Dimage-fit.c230 time_t timestamp; in fit_image_print_data() local
233 if (fit_get_timestamp(fit, noffset, &timestamp)) in fit_image_print_data()
236 genimg_print_time(timestamp); in fit_image_print_data()
376 time_t timestamp; in fit_print_contents() local
390 ret = fit_get_timestamp(fit, 0, &timestamp); in fit_print_contents()
395 genimg_print_time(timestamp); in fit_print_contents()
489 time_t timestamp; in fit_image_print() local
491 ret = fit_get_timestamp(fit, 0, &timestamp); in fit_image_print()
496 genimg_print_time(timestamp); in fit_image_print()
634 *timestamp = uimage_to_cpu(*((uint32_t *)data)); in fit_get_timestamp()
[all …]
/u-boot/test/py/
A Dmultiplexed_log.py172 self.logfile.timestamp()
412 self.timestamp()
532 def timestamp(self): member in Logfile
A Dmultiplexed_log.css64 .timestamp {

Completed in 25 milliseconds

12