Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions Kconfig.sof
Original file line number Diff line number Diff line change
Expand Up @@ -176,22 +176,6 @@ config DEBUG_MEMORY_USAGE_SCAN
This feature does not affect standard memory operations,
especially allocation and deallocation.

config DEBUG_LOCKS
bool "Spinlock debug"
default n
help
It adds additional information to the spinlocks about
the current user of the lock. Also executes panic
on deadlock.

config DEBUG_LOCKS_VERBOSE
bool "Spinlock verbose debug"
depends on DEBUG_LOCKS
default n
help
In addition to DEBUG_LOCKS it also adds spinlock traces
every time the lock is acquired.

config DEBUG_IPC_COUNTERS
bool "IPC counters"
depends on CAVS
Expand Down
144 changes: 12 additions & 132 deletions posix/include/rtos/spinlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,151 +13,31 @@
#ifndef __POSIX_RTOS_SPINLOCK_H__
#define __POSIX_RTOS_SPINLOCK_H__

#include <arch/spinlock.h>
typedef uint32_t k_spinlock_key_t;
#include <sof/lib/memory.h>
#include <ipc/trace.h>

#include <stdint.h>

/*
* Lock debugging provides a simple interface to debug deadlocks. The rmbox
* trace output will show an output :-
*
* 0xd70 [41.306406] delta [0.359638] lock eal
* 0xd80 [41.306409] delta [0.000002] value 0x00000000000001b7
* 0xd90 [41.306411] delta [0.000002] value 0x0000000000000001
* 0xda0 [41.306413] delta [0.000002] value 0x0000000001000348
*
* "eal" indicates we are holding a lock with interrupts OFF. The next value
* is the line number of where the lock was acquired. The second number is the
* number of other locks held whilst this lock is held and the subsequent
* numbers list each lock and the line number of it's holder. e.g. to find
* the locks :-
*
* grep -rn lock --include *.c | grep 840 (search for lock at line 0x348)
* src/drivers/dw-dma.c:840: spinlock_init(&dma->lock);
*
* grep -rn lock --include *.c | grep 439
* src/lib/alloc.c:439: k_spin_lock_irq(&memmap.lock, flags);
*
* Every lock entry and exit shows LcE and LcX in trace alongside the lock
* line numbers in hex. e.g.
*
* 0xfd60 [11032.730567] delta [0.000004] lock LcE
* 0xfd70 [11032.730569] delta [0.000002] value 0x00000000000000ae
*
* Deadlock can be confirmed in rmbox :-
*
* Debug log:
* debug: 0x0 (00) = 0xdead0007 (-559087609) |....|
* ....
* Error log:
* using 19.20MHz timestamp clock
* 0xc30 [26.247240] delta [26.245851] lock DED
* 0xc40 [26.247242] delta [0.000002] value 0x00000000000002b4
* 0xc50 [26.247244] delta [0.000002] value 0x0000000000000109
*
* DED means deadlock has been detected and the DSP is now halted. The first
* value after DEA is the line number where deadlock occurs and the second
* number is the line number where the lock is allocated. These can be grepped
* like above.
*/

#if CONFIG_DEBUG_LOCKS

#include <rtos/panic.h>
#include <sof/trace/trace.h>
#include <ipc/trace.h>
#include <user/trace.h>
struct k_spinlock {
};

#define DBG_LOCK_USERS 8
#define DBG_LOCK_TRIES 10000

extern uint32_t lock_dbg_atomic;
extern uint32_t lock_dbg_user[DBG_LOCK_USERS];

extern struct tr_ctx sl_tr;

/* panic on deadlock */
#define spin_try_lock_dbg(lock, line) \
do { \
int __tries; \
for (__tries = DBG_LOCK_TRIES; __tries > 0; __tries--) { \
if (arch_try_lock(lock)) \
break; /* lock acquired */ \
} \
if (__tries == 0) { \
tr_err_atomic(&sl_tr, "DED"); \
tr_err_atomic(&sl_tr, "line: %d", line); \
tr_err_atomic(&sl_tr, "user: %d", (lock)->user); \
panic(SOF_IPC_PANIC_DEADLOCK); /* lock not acquired */ \
} \
} while (0)

#if CONFIG_DEBUG_LOCKS_VERBOSE
#define spin_lock_log(lock, line) \
do { \
if (lock_dbg_atomic) { \
int __i = 0; \
int __count = lock_dbg_atomic >= DBG_LOCK_USERS \
? DBG_LOCK_USERS : lock_dbg_atomic; \
tr_err_atomic(&sl_tr, "eal"); \
tr_err_atomic(&sl_tr, "line: %d", line); \
tr_err_atomic(&sl_tr, "dbg_atomic: %d", lock_dbg_atomic); \
for (__i = 0; __i < __count; __i++) { \
tr_err_atomic(&sl_tr, "value: %d", \
(lock_dbg_atomic << 24) | \
lock_dbg_user[__i]); \
} \
} \
} while (0)

#define spin_lock_dbg(line) \
do { \
tr_info(&sl_tr, "LcE"); \
tr_info(&sl_tr, "line: %d", line); \
} while (0)

#define spin_unlock_dbg(line) \
do { \
tr_info(&sl_tr, "LcX"); \
tr_info(&sl_tr, "line: %d", line); \
} while (0)

#else /* CONFIG_DEBUG_LOCKS_VERBOSE */
#define spin_lock_log(lock, line) do {} while (0)
#define spin_lock_dbg(line) do {} while (0)
#define spin_unlock_dbg(line) do {} while (0)
#endif /* CONFIG_DEBUG_LOCKS_VERBOSE */

#else /* CONFIG_DEBUG_LOCKS */
typedef uint32_t k_spinlock_key_t;

#define trace_lock(__e) do {} while (0)
#define tracev_lock(__e) do {} while (0)

#define spin_lock_dbg(line) do {} while (0)
#define spin_unlock_dbg(line) do {} while (0)

#endif /* CONFIG_DEBUG_LOCKS */
#define k_spinlock_init(lock) do {} while (0)

/* all SMP spinlocks need init, nothing todo on UP */
static inline void _spinlock_init(struct k_spinlock *lock, int line)
static inline k_spinlock_key_t k_spin_lock(struct k_spinlock *l)
{
arch_spinlock_init(lock);
#if CONFIG_DEBUG_LOCKS
lock->user = line;
#endif
return 0;
}

#define k_spinlock_init(lock) _spinlock_init(lock, __LINE__)

/* disables all IRQ sources and takes lock - enter atomic context */
k_spinlock_key_t _k_spin_lock_irq(struct k_spinlock *lock);
#define k_spin_lock(lock) _k_spin_lock_irq(lock)

/* re-enables current IRQ sources and releases lock - leave atomic context */
void _k_spin_unlock_irq(struct k_spinlock *lock, k_spinlock_key_t key, int line);
#define k_spin_unlock(lock, key) _k_spin_unlock_irq(lock, key, __LINE__)
static inline void k_spin_unlock(struct k_spinlock *l,
k_spinlock_key_t key)
{
(void)l;
(void)key;
}

#endif /* __POSIX_RTOS_SPINLOCK_H__ */
4 changes: 0 additions & 4 deletions posix/include/rtos/wait.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ static inline void wait_for_interrupt(int level)
LOG_MODULE_DECLARE(wait, CONFIG_SOF_LOG_LEVEL);

tr_dbg(&wait_tr, "WFE");
#if CONFIG_DEBUG_LOCKS
if (lock_dbg_atomic)
tr_err_atomic(&wait_tr, "atm");
#endif
platform_wait_for_interrupt(level);
tr_dbg(&wait_tr, "WFX");
}
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_subdirectory(module)
if(CONFIG_SAMPLES)
add_subdirectory(samples)
endif()
add_local_sources(sof spinlock.c)

add_subdirectory(drivers)

if (CONFIG_TRACE)
Expand Down
27 changes: 0 additions & 27 deletions src/arch/host/include/arch/spinlock.h

This file was deleted.

4 changes: 0 additions & 4 deletions src/include/sof/debug/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
#define DEBUG_SET_FW_READY_FLAGS \
( \
SOF_IPC_INFO_BUILD | \
(IS_ENABLED(CONFIG_DEBUG_LOCKS) ? SOF_IPC_INFO_LOCKS : 0) | \
(IS_ENABLED(CONFIG_DEBUG_LOCKS_VERBOSE) ? SOF_IPC_INFO_LOCKSV : 0) | \
(IS_ENABLED(CONFIG_GDB_DEBUG) ? SOF_IPC_INFO_GDB : 0) \
)

Expand Down Expand Up @@ -124,8 +122,6 @@

#define DEBUG_SET_FW_READY_FLAGS \
( \
(IS_ENABLED(CONFIG_DEBUG_LOCKS) ? SOF_IPC_INFO_LOCKS : 0) | \
(IS_ENABLED(CONFIG_DEBUG_LOCKS_VERBOSE) ? SOF_IPC_INFO_LOCKSV : 0) | \
(IS_ENABLED(CONFIG_GDB_DEBUG) ? SOF_IPC_INFO_GDB : 0) \
)

Expand Down
46 changes: 0 additions & 46 deletions src/spinlock.c

This file was deleted.

14 changes: 0 additions & 14 deletions test/cmocka/src/common_mocks.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,20 +146,6 @@ volatile void * WEAK task_context_get(void)
return NULL;
}

uint32_t WEAK _k_spin_lock_irq(struct k_spinlock *lock)
{
(void)lock;

return 0;
}

void WEAK _k_spin_unlock_irq(struct k_spinlock *lock, uint32_t flags, int line)
{
(void)lock;
(void)flags;
(void)line;
}

uint64_t WEAK platform_timer_get(struct timer *timer)
{
(void)timer;
Expand Down
2 changes: 0 additions & 2 deletions test/cmocka/src/lib/alloc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ if(BUILD_UNIT_TESTS_HOST)
alloc.c
${PROJECT_SOURCE_DIR}/src/lib/alloc.c
${PROJECT_SOURCE_DIR}/src/platform/library/lib/memory.c
${PROJECT_SOURCE_DIR}/src/spinlock.c
)
else()
if(CONFIG_CAVS)
Expand All @@ -15,7 +14,6 @@ else()
alloc.c
${PROJECT_SOURCE_DIR}/src/lib/alloc.c
${PROJECT_SOURCE_DIR}/src/debug/panic.c
${PROJECT_SOURCE_DIR}/src/spinlock.c
${MEMORY_FILE}
)
endif()
Expand Down
1 change: 0 additions & 1 deletion test/cmocka/src/lib/fast-get/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ cmocka_test(fast-get-tests
${PROJECT_SOURCE_DIR}/zephyr/lib/fast-get.c
${PROJECT_SOURCE_DIR}/src/lib/alloc.c
${PROJECT_SOURCE_DIR}/src/platform/library/lib/memory.c
${PROJECT_SOURCE_DIR}/src/spinlock.c
)

target_link_libraries(fast-get-tests PRIVATE "-Wl,--wrap=rzalloc,--wrap=rmalloc,--wrap=rfree")
Loading