| /u-boot/arch/powerpc/lib/ |
| A D | interrupts.c | 70 static volatile ulong timestamp = 0; variable 80 timestamp++; in timer_interrupt() 83 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_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/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/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/lib/ |
| A D | time.c | 22 static volatile ulong timestamp = 0; variable 71 timestamp++; in dtimer_interrupt() 74 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) { in dtimer_interrupt() 86 timestamp = 0; in timer_init() 111 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/boot/ |
| A D | image-host.c | 24 void genimg_print_time(time_t timestamp) in genimg_print_time() argument 26 printf("%s", ctime(×tamp)); in genimg_print_time()
|
| A D | image-fit.c | 235 time_t timestamp; in fit_image_print_data() local 238 if (fit_get_timestamp(fit, noffset, ×tamp)) in fit_image_print_data() 241 genimg_print_time(timestamp); in fit_image_print_data() 381 time_t timestamp; in fit_print_contents() local 398 ret = fit_get_timestamp(fit, 0, ×tamp); in fit_print_contents() 403 genimg_print_time(timestamp); in fit_print_contents() 500 time_t timestamp; in fit_image_print() local 502 ret = fit_get_timestamp(fit, 0, ×tamp); in fit_image_print() 507 genimg_print_time(timestamp); in fit_image_print() 641 *timestamp = uimage_to_cpu(*((uint32_t *)data)); in fit_get_timestamp() [all …]
|
| /u-boot/test/py/tests/ |
| A D | test_trace.py | 129 for timestamp in vals.values(): 131 max_delta = max(max_delta, timestamp - base) 133 base = timestamp 190 timestamp, indent, func, brace = m.groups() 213 timestamp, indent, func, brace = m.groups() 215 start_timestamp = timestamp 217 end_timestamp = timestamp
|
| /u-boot/arch/arm/mach-nexell/ |
| A D | timer.c | 26 static unsigned long timestamp __section(".data"); 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 | 38 ulong timestamp; member 175 priv->timestamp++; in timer_interrupt() 178 if (CFG_SYS_WATCHDOG_FREQ && (priv->timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) in timer_interrupt() 183 status_led_tick(priv->timestamp); in timer_interrupt()
|
| /u-boot/tools/ |
| A D | proftool.c | 161 ulong timestamp; member 1337 ulong timestamp; in write_pages() local 1376 if (start_page(tw, timestamp)) in write_pages() 1379 last_timestamp = timestamp; in write_pages() 1389 delta = timestamp - last_timestamp; in write_pages() 1415 upto, delta, timestamp); in write_pages() 1420 timestamp, call->flags, upto); in write_pages() 1465 last_timestamp = timestamp; in write_pages() 1657 state->stack[stack_ptr].timestamp = timestamp; in process_call() 1661 timestamp); in process_call() [all …]
|
| /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 | 23 obj-y += timestamp.o
|
| /u-boot/arch/x86/include/asm/arch-slimbootloader/ |
| A D | slimbootloader.h | 112 u64 timestamp[0]; member
|
| /u-boot/drivers/usb/isp1760/ |
| A D | isp1760-hcd.h | 17 unsigned long timestamp; 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/doc/build/ |
| A D | reproducible.rst | 13 To build the sandbox with 2023-01-01T00:00:00Z as timestamp we can use:
|
| /u-boot/test/py/ |
| A D | u_boot_console_base.py | 195 self.log.timestamp() 281 self.log.timestamp() 431 self.log.timestamp()
|
| A D | multiplexed_log.py | 177 self.logfile.timestamp() 417 self.timestamp() 537 def timestamp(self): member in Logfile
|