mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 02:48:37 +08:00
Compare commits
6 commits
409c024f15
...
04a4a014aa
Author | SHA1 | Date | |
---|---|---|---|
|
04a4a014aa | ||
|
a2d4d74af7 | ||
|
2149d89336 | ||
|
71a4e86718 | ||
|
63c8de5f03 | ||
|
9f7bd849a7 |
21 changed files with 13117 additions and 11036 deletions
|
@ -727,6 +727,7 @@ else()
|
||||||
OUTPUT nuttx.rel
|
OUTPUT nuttx.rel
|
||||||
COMMAND
|
COMMAND
|
||||||
${CMAKE_C_COMPILER} ARGS -r $<$<BOOL:${CONFIG_SIM_M32}>:-m32>
|
${CMAKE_C_COMPILER} ARGS -r $<$<BOOL:${CONFIG_SIM_M32}>:-m32>
|
||||||
|
$<$<BOOL:${CONFIG_HOST_LINUX}>:-Wl,-z,noexecstack>
|
||||||
$<TARGET_OBJECTS:sim_head> $<$<NOT:$<BOOL:${APPLE}>>:-Wl,--start-group>
|
$<TARGET_OBJECTS:sim_head> $<$<NOT:$<BOOL:${APPLE}>>:-Wl,--start-group>
|
||||||
${nuttx_libs_paths} $<$<NOT:$<BOOL:${APPLE}>>:-Wl,--end-group> -o
|
${nuttx_libs_paths} $<$<NOT:$<BOOL:${APPLE}>>:-Wl,--end-group> -o
|
||||||
nuttx.rel
|
nuttx.rel
|
||||||
|
|
|
@ -1103,7 +1103,7 @@ static void imx9_lpi2c_setclock(struct imx9_lpi2c_priv_s *priv,
|
||||||
&src_freq);
|
&src_freq);
|
||||||
|
|
||||||
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
||||||
* (CLKLO + 1 + CLKHI + 1 + ROUNDDOWN((2 + FILTSCL) / 2^prescale)
|
* (CLKLO + 1 + CLKHI + 1 + ALIGN_DOWN((2 + FILTSCL)/2^prescale)
|
||||||
*
|
*
|
||||||
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1161,7 +1161,7 @@ static void imxrt_lpi2c_setclock(struct imxrt_lpi2c_priv_s *priv,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
||||||
* (CLKLO + 1 + CLKHI + 1 + ROUNDDOWN((2 + FILTSCL) / 2^prescale)
|
* (CLKLO + 1 + CLKHI + 1 + ALIGN_DOWN((2 + FILTSCL)/2^prescale)
|
||||||
*
|
*
|
||||||
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1010,7 +1010,7 @@ static void s32k1xx_lpi2c_setclock(struct s32k1xx_lpi2c_priv_s *priv,
|
||||||
DEBUGASSERT(src_freq != 0);
|
DEBUGASSERT(src_freq != 0);
|
||||||
|
|
||||||
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
||||||
* (CLKLO + 1 + CLKHI + 1 + ROUNDDOWN((2 + FILTSCL) / 2^prescale)
|
* (CLKLO + 1 + CLKHI + 1 + ALIGN_DOWN((2 + FILTSCL)/2^prescale)
|
||||||
*
|
*
|
||||||
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -990,7 +990,7 @@ static void s32k3xx_lpi2c_setclock(struct s32k3xx_lpi2c_priv_s *priv,
|
||||||
DEBUGASSERT(src_freq != 0);
|
DEBUGASSERT(src_freq != 0);
|
||||||
|
|
||||||
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
||||||
* (CLKLO + 1 + CLKHI + 1 + ROUNDDOWN((2 + FILTSCL) / 2^prescale)
|
* (CLKLO + 1 + CLKHI + 1 + ALIGN_DOWN((2 + FILTSCL)/2^prescale)
|
||||||
*
|
*
|
||||||
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1122,7 +1122,7 @@ static void imx9_lpi2c_setclock(struct imx9_lpi2c_priv_s *priv,
|
||||||
imx9_get_rootclock(priv->config->clk_root, &src_freq);
|
imx9_get_rootclock(priv->config->clk_root, &src_freq);
|
||||||
|
|
||||||
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
/* LPI2C output frequency = (Source Clock (Hz)/ 2^prescale) /
|
||||||
* (CLKLO + 1 + CLKHI + 1 + ROUNDDOWN((2 + FILTSCL) / 2^prescale)
|
* (CLKLO + 1 + CLKHI + 1 + ALIGN_DOWN((2 + FILTSCL)/2^prescale)
|
||||||
*
|
*
|
||||||
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
* Assume CLKLO = 2 * CLKHI, SETHOLD = CLKHI, DATAVD = CLKHI / 2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -433,7 +433,12 @@ LDMODULEFLAGS = -r -T $(call CONVERT_PATH,$(TOPDIR)/libs/libc/modlib/gnu-elf.ld)
|
||||||
CELFFLAGS = $(CFLAGS) -fvisibility=hidden
|
CELFFLAGS = $(CFLAGS) -fvisibility=hidden
|
||||||
CXXELFFLAGS = $(CXXFLAGS) -fvisibility=hidden
|
CXXELFFLAGS = $(CXXFLAGS) -fvisibility=hidden
|
||||||
|
|
||||||
LDELFFLAGS = -r -e main
|
LDELFFLAGS = -e main
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_BINFMT_ELF_RELOCATABLE),y)
|
||||||
|
LDELFFLAGS += -r
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_RV32),y)
|
ifeq ($(CONFIG_ARCH_RV32),y)
|
||||||
LDELFFLAGS += --oformat elf32-littleriscv
|
LDELFFLAGS += --oformat elf32-littleriscv
|
||||||
else
|
else
|
||||||
|
|
|
@ -200,3 +200,7 @@ else()
|
||||||
add_link_options(-Wl,--gc-sections)
|
add_link_options(-Wl,--gc-sections)
|
||||||
add_link_options(-Wl,-Ttext-segment=0x40000000)
|
add_link_options(-Wl,-Ttext-segment=0x40000000)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(CONFIG_HOST_LINUX)
|
||||||
|
add_link_options(-Wl,-z,noexecstack)
|
||||||
|
endif()
|
||||||
|
|
|
@ -31,18 +31,13 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include <nuttx/kmalloc.h>
|
#include <nuttx/kmalloc.h>
|
||||||
|
#include <nuttx/nuttx.h>
|
||||||
#include <nuttx/binfmt/binfmt.h>
|
#include <nuttx/binfmt/binfmt.h>
|
||||||
|
|
||||||
#include "binfmt.h"
|
#include "binfmt.h"
|
||||||
|
|
||||||
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL) && !defined(CONFIG_BINFMT_DISABLE)
|
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL) && !defined(CONFIG_BINFMT_DISABLE)
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Pre-processor Definitions
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#define ROUNDUP(x, y) (((x) + (y) - 1) / (y) * (y))
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -98,7 +93,7 @@ int binfmt_copyactions(FAR const posix_spawn_file_actions_t **copy,
|
||||||
|
|
||||||
case SPAWN_FILE_ACTION_OPEN:
|
case SPAWN_FILE_ACTION_OPEN:
|
||||||
open = (FAR struct spawn_open_file_action_s *)entry;
|
open = (FAR struct spawn_open_file_action_s *)entry;
|
||||||
size += ROUNDUP(SIZEOF_OPEN_FILE_ACTION_S(strlen(open->path)),
|
size += ALIGN_UP(SIZEOF_OPEN_FILE_ACTION_S(strlen(open->path)),
|
||||||
sizeof(FAR void *));
|
sizeof(FAR void *));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -155,7 +150,7 @@ int binfmt_copyactions(FAR const posix_spawn_file_actions_t **copy,
|
||||||
strcpy(open->path, tmp->path);
|
strcpy(open->path, tmp->path);
|
||||||
|
|
||||||
buffer = (FAR char *)buffer +
|
buffer = (FAR char *)buffer +
|
||||||
ROUNDUP(SIZEOF_OPEN_FILE_ACTION_S(strlen(tmp->path)),
|
ALIGN_UP(SIZEOF_OPEN_FILE_ACTION_S(strlen(tmp->path)),
|
||||||
sizeof(FAR void *));
|
sizeof(FAR void *));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
#include <nuttx/init.h>
|
#include <nuttx/init.h>
|
||||||
#include <nuttx/kmalloc.h>
|
#include <nuttx/kmalloc.h>
|
||||||
#include <nuttx/fs/fs.h>
|
#include <nuttx/fs/fs.h>
|
||||||
|
#include <nuttx/nuttx.h>
|
||||||
#include <nuttx/spinlock.h>
|
#include <nuttx/spinlock.h>
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -112,11 +113,6 @@
|
||||||
|
|
||||||
#define MAXARCS (1 << 20)
|
#define MAXARCS (1 << 20)
|
||||||
|
|
||||||
/* General rounding functions. */
|
|
||||||
|
|
||||||
#define ROUNDDOWN(x, y) (((x) / (y)) * (y))
|
|
||||||
#define ROUNDUP(x, y) ((((x) + (y) - 1) / (y)) * (y))
|
|
||||||
|
|
||||||
/* See profil(2) where this is described (incorrectly) */
|
/* See profil(2) where this is described (incorrectly) */
|
||||||
|
|
||||||
#define SCALE_1_TO_1 0x10000
|
#define SCALE_1_TO_1 0x10000
|
||||||
|
@ -288,12 +284,12 @@ void moncontrol(int mode)
|
||||||
|
|
||||||
if (mode)
|
if (mode)
|
||||||
{
|
{
|
||||||
uintptr_t lowpc = ROUNDDOWN((uintptr_t)&_stext,
|
uintptr_t lowpc = ALIGN_DOWN((uintptr_t)&_stext,
|
||||||
HISTFRACTION * sizeof(HISTCOUNTER));
|
HISTFRACTION * sizeof(HISTCOUNTER));
|
||||||
uintptr_t highpc = ROUNDUP((uintptr_t)&_etext,
|
uintptr_t highpc = ALIGN_UP((uintptr_t)&_etext,
|
||||||
HISTFRACTION * sizeof(HISTCOUNTER));
|
HISTFRACTION * sizeof(HISTCOUNTER));
|
||||||
size_t textsize = highpc - lowpc;
|
size_t textsize = highpc - lowpc;
|
||||||
size_t kcountsize = ROUNDUP(textsize / HISTFRACTION,
|
size_t kcountsize = ALIGN_UP(textsize / HISTFRACTION,
|
||||||
sizeof(*p->kcount));
|
sizeof(*p->kcount));
|
||||||
int scale = kcountsize >= textsize ? SCALE_1_TO_1 :
|
int scale = kcountsize >= textsize ? SCALE_1_TO_1 :
|
||||||
(float)kcountsize / textsize * SCALE_1_TO_1;
|
(float)kcountsize / textsize * SCALE_1_TO_1;
|
||||||
|
@ -370,10 +366,10 @@ void monstartup(unsigned long lowpc, unsigned long highpc)
|
||||||
* so the rest of the scaling (here and in gprof) stays in ints.
|
* so the rest of the scaling (here and in gprof) stays in ints.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
lowpc = ROUNDDOWN(lowpc, HISTFRACTION * sizeof(HISTCOUNTER));
|
lowpc = ALIGN_DOWN(lowpc, HISTFRACTION * sizeof(HISTCOUNTER));
|
||||||
highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER));
|
highpc = ALIGN_UP(highpc, HISTFRACTION * sizeof(HISTCOUNTER));
|
||||||
textsize = highpc - lowpc;
|
textsize = highpc - lowpc;
|
||||||
fromssize = ROUNDUP(textsize / HASHFRACTION, sizeof(*p->froms));
|
fromssize = ALIGN_UP(textsize / HASHFRACTION, sizeof(*p->froms));
|
||||||
tolimit = textsize * ARCDENSITY / 100;
|
tolimit = textsize * ARCDENSITY / 100;
|
||||||
|
|
||||||
if (tolimit < MINARCS)
|
if (tolimit < MINARCS)
|
||||||
|
|
|
@ -41,8 +41,6 @@
|
||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#define ROUNDUP(x, y) (((x) + (y) - 1) / (y) * (y))
|
|
||||||
|
|
||||||
#if defined(CONFIG_DEBUG_FEATURES) && defined(CONFIG_IOB_DEBUG)
|
#if defined(CONFIG_DEBUG_FEATURES) && defined(CONFIG_IOB_DEBUG)
|
||||||
# define ioberr _err
|
# define ioberr _err
|
||||||
# define iobwarn _warn
|
# define iobwarn _warn
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
#ifdef CONFIG_IOB_ALLOC
|
#ifdef CONFIG_IOB_ALLOC
|
||||||
# include <nuttx/kmalloc.h>
|
# include <nuttx/kmalloc.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <nuttx/nuttx.h>
|
||||||
#include <nuttx/mm/iob.h>
|
#include <nuttx/mm/iob.h>
|
||||||
|
|
||||||
#include "iob.h"
|
#include "iob.h"
|
||||||
|
@ -333,7 +334,7 @@ FAR struct iob_s *iob_alloc_dynamic(uint16_t size)
|
||||||
FAR struct iob_s *iob;
|
FAR struct iob_s *iob;
|
||||||
size_t alignsize;
|
size_t alignsize;
|
||||||
|
|
||||||
alignsize = ROUNDUP(sizeof(struct iob_s), CONFIG_IOB_ALIGNMENT) + size;
|
alignsize = ALIGN_UP(sizeof(struct iob_s), CONFIG_IOB_ALIGNMENT) + size;
|
||||||
|
|
||||||
iob = kmm_memalign(CONFIG_IOB_ALIGNMENT, alignsize);
|
iob = kmm_memalign(CONFIG_IOB_ALIGNMENT, alignsize);
|
||||||
if (iob)
|
if (iob)
|
||||||
|
@ -344,7 +345,7 @@ FAR struct iob_s *iob_alloc_dynamic(uint16_t size)
|
||||||
iob->io_bufsize = size; /* Total length of the iob buffer */
|
iob->io_bufsize = size; /* Total length of the iob buffer */
|
||||||
iob->io_pktlen = 0; /* Total length of the packet */
|
iob->io_pktlen = 0; /* Total length of the packet */
|
||||||
iob->io_free = iob_free_dynamic; /* Customer free callback */
|
iob->io_free = iob_free_dynamic; /* Customer free callback */
|
||||||
iob->io_data = (FAR uint8_t *)ROUNDUP((uintptr_t)(iob + 1),
|
iob->io_data = (FAR uint8_t *)ALIGN_UP((uintptr_t)(iob + 1),
|
||||||
CONFIG_IOB_ALIGNMENT);
|
CONFIG_IOB_ALIGNMENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include <nuttx/nuttx.h>
|
||||||
#include <nuttx/mm/iob.h>
|
#include <nuttx/mm/iob.h>
|
||||||
|
|
||||||
#include "iob.h"
|
#include "iob.h"
|
||||||
|
@ -39,10 +40,10 @@
|
||||||
/* Fix the I/O Buffer size with specified alignment size */
|
/* Fix the I/O Buffer size with specified alignment size */
|
||||||
|
|
||||||
#ifdef CONFIG_IOB_ALLOC
|
#ifdef CONFIG_IOB_ALLOC
|
||||||
# define IOB_ALIGN_SIZE ROUNDUP(sizeof(struct iob_s) + CONFIG_IOB_BUFSIZE, \
|
# define IOB_ALIGN_SIZE ALIGN_UP(sizeof(struct iob_s) + CONFIG_IOB_BUFSIZE, \
|
||||||
CONFIG_IOB_ALIGNMENT)
|
CONFIG_IOB_ALIGNMENT)
|
||||||
#else
|
#else
|
||||||
# define IOB_ALIGN_SIZE ROUNDUP(sizeof(struct iob_s), CONFIG_IOB_ALIGNMENT)
|
# define IOB_ALIGN_SIZE ALIGN_UP(sizeof(struct iob_s), CONFIG_IOB_ALIGNMENT)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define IOB_BUFFER_SIZE (IOB_ALIGN_SIZE * CONFIG_IOB_NBUFFERS + \
|
#define IOB_BUFFER_SIZE (IOB_ALIGN_SIZE * CONFIG_IOB_NBUFFERS + \
|
||||||
|
@ -137,7 +138,7 @@ void iob_initialize(void)
|
||||||
* aligned to the CONFIG_IOB_ALIGNMENT memory boundary
|
* aligned to the CONFIG_IOB_ALIGNMENT memory boundary
|
||||||
*/
|
*/
|
||||||
|
|
||||||
buf = ROUNDUP((uintptr_t)g_iob_buffer + offsetof(struct iob_s, io_data),
|
buf = ALIGN_UP((uintptr_t)g_iob_buffer + offsetof(struct iob_s, io_data),
|
||||||
CONFIG_IOB_ALIGNMENT) - offsetof(struct iob_s, io_data);
|
CONFIG_IOB_ALIGNMENT) - offsetof(struct iob_s, io_data);
|
||||||
|
|
||||||
/* Get I/O buffer instance from the start address and add each I/O buffer
|
/* Get I/O buffer instance from the start address and add each I/O buffer
|
||||||
|
|
|
@ -53,6 +53,7 @@ static struct timespec g_clock_wall_time;
|
||||||
static uint64_t g_clock_last_counter;
|
static uint64_t g_clock_last_counter;
|
||||||
static uint64_t g_clock_mask;
|
static uint64_t g_clock_mask;
|
||||||
static long g_clock_adjust;
|
static long g_clock_adjust;
|
||||||
|
static spinlock_t g_clock_lock = SP_UNLOCKED;
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Functions
|
* Private Functions
|
||||||
|
@ -72,7 +73,7 @@ static int clock_get_current_time(FAR struct timespec *ts,
|
||||||
time_t sec;
|
time_t sec;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
flags = enter_critical_section();
|
flags = spin_lock_irqsave(&g_clock_lock);
|
||||||
|
|
||||||
ret = up_timer_gettick(&counter);
|
ret = up_timer_gettick(&counter);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
@ -96,7 +97,7 @@ static int clock_get_current_time(FAR struct timespec *ts,
|
||||||
ts->tv_sec = base->tv_sec + sec;
|
ts->tv_sec = base->tv_sec + sec;
|
||||||
|
|
||||||
errout_in_critical_section:
|
errout_in_critical_section:
|
||||||
leave_critical_section(flags);
|
spin_unlock_irqrestore(&g_clock_lock, flags);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +124,7 @@ int clock_timekeeping_set_wall_time(FAR const struct timespec *ts)
|
||||||
uint64_t counter;
|
uint64_t counter;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
flags = enter_critical_section();
|
flags = spin_lock_irqsave(&g_clock_lock);
|
||||||
|
|
||||||
ret = up_timer_gettick(&counter);
|
ret = up_timer_gettick(&counter);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
@ -137,7 +138,7 @@ int clock_timekeeping_set_wall_time(FAR const struct timespec *ts)
|
||||||
g_clock_last_counter = counter;
|
g_clock_last_counter = counter;
|
||||||
|
|
||||||
errout_in_critical_section:
|
errout_in_critical_section:
|
||||||
leave_critical_section(flags);
|
spin_unlock_irqrestore(&g_clock_lock, flags);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -188,7 +189,7 @@ int adjtime(FAR const struct timeval *delta, FAR struct timeval *olddelta)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
flags = enter_critical_section();
|
flags = spin_lock_irqsave(&g_clock_lock);
|
||||||
|
|
||||||
adjust_usec = delta->tv_sec * USEC_PER_SEC + delta->tv_usec;
|
adjust_usec = delta->tv_sec * USEC_PER_SEC + delta->tv_usec;
|
||||||
|
|
||||||
|
@ -199,7 +200,7 @@ int adjtime(FAR const struct timeval *delta, FAR struct timeval *olddelta)
|
||||||
|
|
||||||
g_clock_adjust = adjust_usec;
|
g_clock_adjust = adjust_usec;
|
||||||
|
|
||||||
leave_critical_section(flags);
|
spin_unlock_irqrestore(&g_clock_lock, flags);
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
@ -217,7 +218,7 @@ void clock_update_wall_time(void)
|
||||||
time_t sec;
|
time_t sec;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
flags = enter_critical_section();
|
flags = spin_lock_irqsave(&g_clock_lock);
|
||||||
|
|
||||||
ret = up_timer_gettick(&counter);
|
ret = up_timer_gettick(&counter);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
@ -271,7 +272,7 @@ void clock_update_wall_time(void)
|
||||||
g_clock_last_counter = counter;
|
g_clock_last_counter = counter;
|
||||||
|
|
||||||
errout_in_critical_section:
|
errout_in_critical_section:
|
||||||
leave_critical_section(flags);
|
spin_unlock_irqrestore(&g_clock_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -280,6 +281,9 @@ errout_in_critical_section:
|
||||||
|
|
||||||
void clock_inittimekeeping(FAR const struct timespec *tp)
|
void clock_inittimekeeping(FAR const struct timespec *tp)
|
||||||
{
|
{
|
||||||
|
irqstate_t flags;
|
||||||
|
|
||||||
|
flags = spin_lock_irqsave(&g_clock_lock);
|
||||||
up_timer_getmask(&g_clock_mask);
|
up_timer_getmask(&g_clock_mask);
|
||||||
|
|
||||||
if (tp)
|
if (tp)
|
||||||
|
@ -292,6 +296,7 @@ void clock_inittimekeeping(FAR const struct timespec *tp)
|
||||||
}
|
}
|
||||||
|
|
||||||
up_timer_gettick(&g_clock_last_counter);
|
up_timer_gettick(&g_clock_last_counter);
|
||||||
|
spin_unlock_irqrestore(&g_clock_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_CLOCK_TIMEKEEPING */
|
#endif /* CONFIG_CLOCK_TIMEKEEPING */
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
#include <nuttx/coredump.h>
|
#include <nuttx/coredump.h>
|
||||||
#include <nuttx/elf.h>
|
#include <nuttx/elf.h>
|
||||||
|
#include <nuttx/nuttx.h>
|
||||||
#include <nuttx/sched.h>
|
#include <nuttx/sched.h>
|
||||||
|
|
||||||
#include "sched/sched.h"
|
#include "sched/sched.h"
|
||||||
|
@ -54,9 +55,6 @@
|
||||||
|
|
||||||
#define PROGRAM_ALIGNMENT 64
|
#define PROGRAM_ALIGNMENT 64
|
||||||
|
|
||||||
#define ROUNDUP(x, y) ((x + (y - 1)) / (y)) * (y)
|
|
||||||
#define ROUNDDOWN(x ,y) (((x) / (y)) * (y))
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Types
|
* Private Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -166,7 +164,7 @@ static int elf_emit(FAR struct elf_dumpinfo_s *cinfo,
|
||||||
|
|
||||||
static int elf_emit_align(FAR struct elf_dumpinfo_s *cinfo)
|
static int elf_emit_align(FAR struct elf_dumpinfo_s *cinfo)
|
||||||
{
|
{
|
||||||
off_t align = ROUNDUP(cinfo->stream->nput,
|
off_t align = ALIGN_UP(cinfo->stream->nput,
|
||||||
ELF_PAGESIZE) - cinfo->stream->nput;
|
ELF_PAGESIZE) - cinfo->stream->nput;
|
||||||
unsigned char null[256];
|
unsigned char null[256];
|
||||||
off_t total = align;
|
off_t total = align;
|
||||||
|
@ -258,9 +256,9 @@ static int elf_get_note_size(int stksegs)
|
||||||
{
|
{
|
||||||
int total;
|
int total;
|
||||||
|
|
||||||
total = stksegs * (sizeof(Elf_Nhdr) + ROUNDUP(CONFIG_TASK_NAME_SIZE, 8) +
|
total = stksegs * (sizeof(Elf_Nhdr) + ALIGN_UP(CONFIG_TASK_NAME_SIZE, 8) +
|
||||||
sizeof(elf_prstatus_t));
|
sizeof(elf_prstatus_t));
|
||||||
total += stksegs * (sizeof(Elf_Nhdr) + ROUNDUP(CONFIG_TASK_NAME_SIZE, 8) +
|
total += stksegs * (sizeof(Elf_Nhdr) + ALIGN_UP(CONFIG_TASK_NAME_SIZE, 8) +
|
||||||
sizeof(elf_prpsinfo_t));
|
sizeof(elf_prpsinfo_t));
|
||||||
return total;
|
return total;
|
||||||
}
|
}
|
||||||
|
@ -276,7 +274,7 @@ static int elf_get_note_size(int stksegs)
|
||||||
static void elf_emit_tcb_note(FAR struct elf_dumpinfo_s *cinfo,
|
static void elf_emit_tcb_note(FAR struct elf_dumpinfo_s *cinfo,
|
||||||
FAR struct tcb_s *tcb)
|
FAR struct tcb_s *tcb)
|
||||||
{
|
{
|
||||||
char name[ROUNDUP(CONFIG_TASK_NAME_SIZE, 8)];
|
char name[ALIGN_UP(CONFIG_TASK_NAME_SIZE, 8)];
|
||||||
elf_prstatus_t status;
|
elf_prstatus_t status;
|
||||||
elf_prpsinfo_t info;
|
elf_prpsinfo_t info;
|
||||||
FAR uintptr_t *regs;
|
FAR uintptr_t *regs;
|
||||||
|
@ -414,8 +412,8 @@ static void elf_emit_tcb_stack(FAR struct elf_dumpinfo_s *cinfo,
|
||||||
(tcb->stack_base_ptr - tcb->stack_alloc_ptr);
|
(tcb->stack_base_ptr - tcb->stack_alloc_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
sp = ROUNDDOWN(buf, PROGRAM_ALIGNMENT);
|
sp = ALIGN_DOWN(buf, PROGRAM_ALIGNMENT);
|
||||||
len = ROUNDUP(len + (buf - sp), PROGRAM_ALIGNMENT);
|
len = ALIGN_UP(len + (buf - sp), PROGRAM_ALIGNMENT);
|
||||||
buf = sp;
|
buf = sp;
|
||||||
|
|
||||||
elf_emit(cinfo, (FAR void *)buf, len);
|
elf_emit(cinfo, (FAR void *)buf, len);
|
||||||
|
@ -546,17 +544,17 @@ static void elf_emit_tcb_phdr(FAR struct elf_dumpinfo_s *cinfo,
|
||||||
(tcb->stack_base_ptr - tcb->stack_alloc_ptr);
|
(tcb->stack_base_ptr - tcb->stack_alloc_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
sp = ROUNDDOWN(phdr->p_vaddr, PROGRAM_ALIGNMENT);
|
sp = ALIGN_DOWN(phdr->p_vaddr, PROGRAM_ALIGNMENT);
|
||||||
phdr->p_filesz = ROUNDUP(phdr->p_filesz +
|
phdr->p_filesz = ALIGN_UP(phdr->p_filesz +
|
||||||
(phdr->p_vaddr - sp), PROGRAM_ALIGNMENT);
|
(phdr->p_vaddr - sp), PROGRAM_ALIGNMENT);
|
||||||
phdr->p_vaddr = sp;
|
phdr->p_vaddr = sp;
|
||||||
|
|
||||||
phdr->p_type = PT_LOAD;
|
phdr->p_type = PT_LOAD;
|
||||||
phdr->p_offset = ROUNDUP(*offset, ELF_PAGESIZE);
|
phdr->p_offset = ALIGN_UP(*offset, ELF_PAGESIZE);
|
||||||
phdr->p_paddr = phdr->p_vaddr;
|
phdr->p_paddr = phdr->p_vaddr;
|
||||||
phdr->p_memsz = phdr->p_filesz;
|
phdr->p_memsz = phdr->p_filesz;
|
||||||
phdr->p_flags = PF_X | PF_W | PF_R;
|
phdr->p_flags = PF_X | PF_W | PF_R;
|
||||||
*offset += ROUNDUP(phdr->p_memsz, ELF_PAGESIZE);
|
*offset += ALIGN_UP(phdr->p_memsz, ELF_PAGESIZE);
|
||||||
|
|
||||||
elf_emit(cinfo, phdr, sizeof(*phdr));
|
elf_emit(cinfo, phdr, sizeof(*phdr));
|
||||||
}
|
}
|
||||||
|
@ -608,13 +606,13 @@ static void elf_emit_phdr(FAR struct elf_dumpinfo_s *cinfo,
|
||||||
for (i = 0; i < memsegs; i++)
|
for (i = 0; i < memsegs; i++)
|
||||||
{
|
{
|
||||||
phdr.p_type = PT_LOAD;
|
phdr.p_type = PT_LOAD;
|
||||||
phdr.p_offset = ROUNDUP(offset, ELF_PAGESIZE);
|
phdr.p_offset = ALIGN_UP(offset, ELF_PAGESIZE);
|
||||||
phdr.p_vaddr = cinfo->regions[i].start;
|
phdr.p_vaddr = cinfo->regions[i].start;
|
||||||
phdr.p_paddr = phdr.p_vaddr;
|
phdr.p_paddr = phdr.p_vaddr;
|
||||||
phdr.p_filesz = cinfo->regions[i].end - cinfo->regions[i].start;
|
phdr.p_filesz = cinfo->regions[i].end - cinfo->regions[i].start;
|
||||||
phdr.p_memsz = phdr.p_filesz;
|
phdr.p_memsz = phdr.p_filesz;
|
||||||
phdr.p_flags = cinfo->regions[i].flags;
|
phdr.p_flags = cinfo->regions[i].flags;
|
||||||
offset += ROUNDUP(phdr.p_memsz, ELF_PAGESIZE);
|
offset += ALIGN_UP(phdr.p_memsz, ELF_PAGESIZE);
|
||||||
elf_emit(cinfo, &phdr, sizeof(phdr));
|
elf_emit(cinfo, &phdr, sizeof(phdr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,7 @@ def test_popen(p):
|
||||||
assert ret == 0
|
assert ret == 0
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_usrsocktest(p):
|
def test_usrsocktest(p):
|
||||||
ret = p.sendCommand("usrsocktest", "FAILED:0", timeout=60)
|
ret = p.sendCommand("usrsocktest", "FAILED:0", timeout=60)
|
||||||
assert ret == 0
|
assert ret == 0
|
||||||
|
|
|
@ -26,7 +26,7 @@ import os
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
pytestmark = [pytest.mark.common, pytest.mark.rv_virt]
|
pytestmark = [pytest.mark.common, pytest.mark.rv_virt, pytest.mark.goldfish_armeabi_v7a_ap]
|
||||||
|
|
||||||
cmocka_list_start = "cmocka_list_start"
|
cmocka_list_start = "cmocka_list_start"
|
||||||
cmocka_list_end = "cmocka_list_end"
|
cmocka_list_end = "cmocka_list_end"
|
||||||
|
@ -49,7 +49,7 @@ def test_cmocka(p):
|
||||||
p.sendCommand(f"echo {cmocka_test_start}")
|
p.sendCommand(f"echo {cmocka_test_start}")
|
||||||
ret = p.sendCommand(
|
ret = p.sendCommand(
|
||||||
"cmocka --skip test_case_posix_timer|test_case_oneshot|write_default|read_default|burst_test|gpiotest01|"
|
"cmocka --skip test_case_posix_timer|test_case_oneshot|write_default|read_default|burst_test|gpiotest01|"
|
||||||
"test_playback.*|test_interaction.*|test_stress.*|test_capture.*",
|
"test_playback.*|test_interaction.*|test_stress.*|test_capture.*|test_case_touchpanel",
|
||||||
"Cmocka Test Completed",
|
"Cmocka Test Completed",
|
||||||
timeout=1200,
|
timeout=1200,
|
||||||
)
|
)
|
||||||
|
|
|
@ -26,7 +26,7 @@ import pytest
|
||||||
|
|
||||||
|
|
||||||
class TestLibuv:
|
class TestLibuv:
|
||||||
pytestmark = [pytest.mark.sim]
|
pytestmark = [pytest.mark.sim, pytest.mark.goldfish_armeabi_v7a_ap]
|
||||||
|
|
||||||
def test_test_macros(self, p):
|
def test_test_macros(self, p):
|
||||||
ret = p.sendCommand(
|
ret = p.sendCommand(
|
||||||
|
@ -254,13 +254,13 @@ class TestLibuv:
|
||||||
ret = p.sendCommand("uv_run_tests active", ["not ok 1 -", "ok 1 -"], timeout=10)
|
ret = p.sendCommand("uv_run_tests active", ["not ok 1 -", "ok 1 -"], timeout=10)
|
||||||
assert ret == 1
|
assert ret == 1
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_embed(self, p):
|
def test_embed(self, p):
|
||||||
if p.board in ["sim"]:
|
if p.board in ["sim"]:
|
||||||
pytest.skip("unsupported at %s" % p.board)
|
pytest.skip("unsupported at %s" % p.board)
|
||||||
ret = p.sendCommand("uv_run_tests embed", ["not ok 1 -", "ok 1 -"], timeout=10)
|
ret = p.sendCommand("uv_run_tests embed", ["not ok 1 -", "ok 1 -"], timeout=10)
|
||||||
assert ret == 1
|
assert ret == 1
|
||||||
|
|
||||||
@pytest.mark.skip(reason="VELAPLATFO-6346")
|
|
||||||
def test_async(self, p):
|
def test_async(self, p):
|
||||||
if p.ci:
|
if p.ci:
|
||||||
pytest.skip("unsupported at %s" % p.board)
|
pytest.skip("unsupported at %s" % p.board)
|
||||||
|
@ -299,13 +299,13 @@ class TestLibuv:
|
||||||
)
|
)
|
||||||
assert ret == 1
|
assert ret == 1
|
||||||
|
|
||||||
def test_poll_oob(self, p):
|
# def test_poll_oob(self, p):
|
||||||
if p.board in ["sim"]:
|
# if p.board in ["sim"]:
|
||||||
pytest.skip("unsupported at %s" % p.board)
|
# pytest.skip("unsupported at %s" % p.board)
|
||||||
ret = p.sendCommand(
|
# ret = p.sendCommand(
|
||||||
"uv_run_tests poll_oob", ["not ok 1 -", "ok 1 -"], timeout=10
|
# "uv_run_tests poll_oob", ["not ok 1 -", "ok 1 -"], timeout=10
|
||||||
)
|
# )
|
||||||
assert ret == 1
|
# assert ret == 1
|
||||||
|
|
||||||
def test_threadpool_queue_work_simple(self, p):
|
def test_threadpool_queue_work_simple(self, p):
|
||||||
ret = p.sendCommand(
|
ret = p.sendCommand(
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -52,6 +52,7 @@ def test_cxxtest(p):
|
||||||
assert ret == 0
|
assert ret == 0
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_scanftest(p):
|
def test_scanftest(p):
|
||||||
if p.board in do_not_support:
|
if p.board in do_not_support:
|
||||||
pytest.skip("unsupported at {}".format(p.board))
|
pytest.skip("unsupported at {}".format(p.board))
|
||||||
|
@ -66,6 +67,7 @@ def test_getprime(p):
|
||||||
assert ret == 0
|
assert ret == 0
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.skip
|
||||||
def test_stdio(p):
|
def test_stdio(p):
|
||||||
if p.board in do_not_support:
|
if p.board in do_not_support:
|
||||||
pytest.skip("unsupported at {}".format(p.board))
|
pytest.skip("unsupported at {}".format(p.board))
|
||||||
|
|
|
@ -386,7 +386,44 @@ class start:
|
||||||
% (riscv, options, self.log),
|
% (riscv, options, self.log),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
elif flag1 == "goldfish":
|
||||||
|
if board == "qemu-miwear":
|
||||||
|
self.create_process_after_get_lock(board)
|
||||||
|
elif board in ["qemu-smartspeaker-knsh", "qemu-smartspeaker"]:
|
||||||
|
self.log_fd = open(self.log, "wb")
|
||||||
|
self.process = pexpect.spawn(
|
||||||
|
"bash",
|
||||||
|
[
|
||||||
|
"-c",
|
||||||
|
"./emulator.sh smartspeaker -no-window",
|
||||||
|
],
|
||||||
|
logfile=self.log_fd,
|
||||||
|
maxread=200000,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.log_fd = open(self.log, "wb")
|
||||||
|
self.process = pexpect.spawn(
|
||||||
|
"bash",
|
||||||
|
[
|
||||||
|
"-c",
|
||||||
|
"./emulator.sh vela -no-window",
|
||||||
|
],
|
||||||
|
logfile=self.log_fd,
|
||||||
|
maxread=200000,
|
||||||
|
)
|
||||||
|
self.process.delayafterread = None
|
||||||
|
self.clean_buffer()
|
||||||
|
self.process.sendline('\n')
|
||||||
|
self.process.sendline('ps\n\n')
|
||||||
|
self.process.sendline('\n')
|
||||||
|
try:
|
||||||
self.process.expect(self.PROMPT)
|
self.process.expect(self.PROMPT)
|
||||||
|
finally:
|
||||||
|
print("********************* DEBUG START ********************")
|
||||||
|
print("cmd: ps")
|
||||||
|
print("before: {}".format(self.process.before.decode(errors="ignore")))
|
||||||
|
print("buffer: {}".format(self.process.buffer.decode(errors="ignore")))
|
||||||
|
print("********************** DEBUG END **********************")
|
||||||
|
|
||||||
|
|
||||||
def runCmd(cmd):
|
def runCmd(cmd):
|
||||||
|
|
Loading…
Reference in a new issue