From: ChenMiao <chenmiao.ku@gmail.com>
To: Stafford Horne <shorne@gmail.com>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
Linux OpenRISC <linux-openrisc@vger.kernel.org>,
chenmiao <chenmiao.ku@gmail.com>
Subject: [PATCH v5 2/4] openrisc: Add R_OR1K_32_PCREL relocation type module support
Date: Fri, 5 Sep 2025 18:12:56 +0000 [thread overview]
Message-ID: <20250905181258.9430-3-chenmiao.ku@gmail.com> (raw)
In-Reply-To: <20250905181258.9430-1-chenmiao.ku@gmail.com>
From: chenmiao <chenmiao.ku@gmail.com>
To ensure the proper functioning of the jump_label test module, this patch
adds support for the R_OR1K_32_PCREL relocation type for any modules. The
implementation calculates the PC-relative offset by subtracting the
instruction location from the target value and stores the result at the
specified location.
Signed-off-by: chenmiao <chenmiao.ku@gmail.com>
---
arch/openrisc/kernel/module.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/openrisc/kernel/module.c b/arch/openrisc/kernel/module.c
index c9ff4c4a0b29..4ac4fbaa827c 100644
--- a/arch/openrisc/kernel/module.c
+++ b/arch/openrisc/kernel/module.c
@@ -55,6 +55,10 @@ int apply_relocate_add(Elf32_Shdr *sechdrs,
value |= *location & 0xfc000000;
*location = value;
break;
+ case R_OR1K_32_PCREL:
+ value -= (uint32_t)location;
+ *location = value;
+ break;
case R_OR1K_AHI16:
/* Adjust the operand to match with a signed LO16. */
value += 0x8000;
--
2.45.2
next prev parent reply other threads:[~2025-09-05 18:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-05 18:12 [PATCH v5 0/4] openrisc: Support basic trace mechanism ChenMiao
2025-09-05 18:12 ` [PATCH v5 1/4] openrisc: Add text patching API support ChenMiao
2025-09-05 18:12 ` ChenMiao [this message]
2025-09-05 18:12 ` [PATCH v5 3/4] openrisc: Regenerate defconfigs ChenMiao
2025-09-05 18:12 ` [PATCH v5 4/4] openrisc: Add jump label support ChenMiao
2025-09-12 6:10 ` [PATCH v5 0/4] openrisc: Support basic trace mechanism Stafford Horne
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250905181258.9430-3-chenmiao.ku@gmail.com \
--to=chenmiao.ku@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-openrisc@vger.kernel.org \
--cc=shorne@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®