-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'xtensa-20230523' of https://github.com/jcmvbkbc/linux-xtensa
Pull Xtensa fixes from Max Filippov: - fix signal delivery to FDPIC process - add __bswap{si,di}2 helpers * tag 'xtensa-20230523' of https://github.com/jcmvbkbc/linux-xtensa: xtensa: add __bswap{si,di}2 helpers xtensa: fix signal delivery to FDPIC process
- Loading branch information
Showing
5 changed files
with
69 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */ | ||
#include <linux/linkage.h> | ||
#include <asm/asmmacro.h> | ||
#include <asm/core.h> | ||
|
||
ENTRY(__bswapdi2) | ||
|
||
abi_entry_default | ||
ssai 8 | ||
srli a4, a2, 16 | ||
src a4, a4, a2 | ||
src a4, a4, a4 | ||
src a4, a2, a4 | ||
srli a2, a3, 16 | ||
src a2, a2, a3 | ||
src a2, a2, a2 | ||
src a2, a3, a2 | ||
mov a3, a4 | ||
abi_ret_default | ||
|
||
ENDPROC(__bswapdi2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */ | ||
#include <linux/linkage.h> | ||
#include <asm/asmmacro.h> | ||
#include <asm/core.h> | ||
|
||
ENTRY(__bswapsi2) | ||
|
||
abi_entry_default | ||
ssai 8 | ||
srli a3, a2, 16 | ||
src a3, a3, a2 | ||
src a3, a3, a3 | ||
src a2, a2, a3 | ||
abi_ret_default | ||
|
||
ENDPROC(__bswapsi2) |