-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the new platform ACP_7_0 #9351
Changes from all commits
884ca38
48e2ab1
d51c99b
620380b
93ad1cc
b5e0ccc
44b4649
e64f20a
07f19d8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
CONFIG_ACP_7_0=y | ||
CONFIG_RIMAGE_SIGNING_SCHEMA="acp_7_0" | ||
CONFIG_TRACE_CHANNEL=7 | ||
CONFIG_WRAP_ACTUAL_POSITION=y | ||
CONFIG_AMD_BT=n | ||
CONFIG_AMD_SP=n | ||
CONFIG_CORE_COUNT=1 | ||
CONFIG_LP_MEMORY_BANKS=20 | ||
CONFIG_HP_MEMORY_BANKS=10 | ||
CONFIG_FORMAT_CONVERT_HIFI3=n | ||
CONFIG_LP_SRAM=n | ||
CONFIG_HAVE_AGENT=n | ||
CONFIG_COMP_VOLUME=n | ||
CONFIG_COMP_SRC=n | ||
CONFIG_COMP_FIR=n | ||
CONFIG_COMP_IIR=n | ||
CONFIG_COMP_DCBLOCK=n | ||
CONFIG_COMP_CROSSOVER=n | ||
CONFIG_COMP_DRC=n | ||
CONFIG_COMP_MULTIBAND_DRC=n | ||
CONFIG_COMP_TONE=n | ||
CONFIG_COMP_SWITCH=n | ||
CONFIG_COMP_KPB=n | ||
CONFIG_MAXIM_DSM=n | ||
CONFIG_COMP_ASRC=n | ||
CONFIG_COMP_IGO_NR=n | ||
CONFIG_COMP_COPIER=n | ||
CONFIG_COMP_RTNR=n | ||
CONFIG_COMP_ARIA=n | ||
CONFIG_COMP_BASEFW_IPC4=n | ||
CONFIG_COMP_UP_DOWN_MIXER=n | ||
CONFIG_COMP_TDFB=n | ||
#CONFIG_COMP_MUX=n | ||
CONFIG_COMP_SEL=n | ||
CONFIG_COMP_MIXER=n |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,10 +118,7 @@ static inline void arch_spin_unlock(struct k_spinlock *lock) | |
*/ | ||
static inline void arch_spin_unlock(struct k_spinlock *lock) | ||
{ | ||
uint32_t result; | ||
|
||
lock->lock = 0; | ||
result = 1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code change looks good but the commit message does not:
Which error? Which gcc? This has been successfully compiled by gcc since forever. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
facing this error when building with GCC, not sure why this is not raised previously. Could that be due to GCC version? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Before getting into what you don't know, simply start by adding to the commit message what you know already: just the error message and the gcc version that prints it. That could be enough. |
||
} | ||
|
||
#endif /* XCHAL_HAVE_EXCLUSIVE || XCHAL_HAVE_S32C1I */ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
add_subdirectory(lib) | ||
|
||
add_local_sources(sof platform.c) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
proper git summary prefix please
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@saisurya-ch Can you update the git commit message to have proper prefix on the first line?