[fsbl] add fsbl for cv181x/cv180x

Change-Id: I6809bc5016d4bc148f62be2ed3f8e928ec111f19
This commit is contained in:
sam.xiang
2023-02-23 00:14:25 +08:00
parent 5c7dd7acc3
commit 4bc998a131
1392 changed files with 335829 additions and 0 deletions

View File

@ -0,0 +1,26 @@
/*
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef __DELAY_TIMER_H__
#define __DELAY_TIMER_H__
#include <stdint.h>
#include <utils_def.h>
void mdelay(uint32_t msec);
void udelay(uint32_t usec);
void timer_init(void);
uint32_t get_timer(uint32_t base);
uint32_t get_random_from_timer(uint32_t base);
uint32_t read_count_tick(void);
void trig_simulation_timer(uint32_t usec);
static inline uint32_t read_time_ms(void)
{
return DIV_ROUND_UP(read_count_tick(), 1000);
}
#endif /* __DELAY_TIMER_H__ */