/u-boot/arch/powerpc/lib/ |
A D | interrupts.c | 70 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 D | efi_variable.c | 58 struct efi_time timestamp; in efi_variable_authenticate() local 84 memcpy(×tamp, &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 D | timer.c | 20 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 D | time.c | 22 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 D | timer.c | 20 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 D | timer.c | 25 #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 D | timer.c | 31 #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 D | timer.c | 45 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 D | slicetimer.c | 19 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 D | timer.c | 82 #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 D | interrupts.c | 15 static ulong timestamp; variable 22 timestamp = 0; in timer_init()
|
/u-boot/arch/arm/cpu/arm926ejs/mxs/ |
A D | timer.c | 30 #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 D | timer.c | 36 #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 D | timer.c | 26 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 D | mpc83xx_timer.c | 34 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 D | altera_sysid.c | 17 u32 timestamp; /* Timestamp */ member 67 sysid[1] = readl(®s->timestamp); in altera_sysid_read()
|
A D | status_led.c | 85 void status_led_tick(ulong timestamp) in status_led_tick() argument
|
/u-boot/cmd/ |
A D | iotrace.c | 45 cur_record->timestamp, in do_print_trace() 50 cur_record->timestamp, in do_print_trace()
|
/u-boot/arch/x86/cpu/coreboot/ |
A D | Makefile | 24 obj-y += timestamp.o
|
/u-boot/arch/x86/include/asm/arch-slimbootloader/ |
A D | slimbootloader.h | 112 u64 timestamp[0]; member
|
/u-boot/include/ |
A D | status_led.h | 39 void status_led_tick(unsigned long timestamp);
|
A D | iotrace.h | 34 u64 timestamp; member
|
/u-boot/common/ |
A D | image-fit.c | 230 time_t timestamp; in fit_image_print_data() local 233 if (fit_get_timestamp(fit, noffset, ×tamp)) 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, ×tamp); 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, ×tamp); 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 D | multiplexed_log.py | 172 self.logfile.timestamp() 412 self.timestamp() 532 def timestamp(self): member in Logfile
|
A D | multiplexed_log.css | 64 .timestamp {
|