* [PATCH] openrisc: define arch-specific version of nop()
@ 2026-01-20 17:07 Brian Masney
2026-01-20 19:23 ` Stafford Horne
0 siblings, 1 reply; 2+ messages in thread
From: Brian Masney @ 2026-01-20 17:07 UTC (permalink / raw)
To: Jonas Bonn, Stefan Kristiansson, Stafford Horne
Cc: linux-openrisc, linux-kernel, kernel test robot, Brian Masney
When compiling a driver written for MIPS on OpenRISC that uses the nop()
function, it fails due to the following error:
drivers/watchdog/pic32-wdt.c: Assembler messages:
drivers/watchdog/pic32-wdt.c:125: Error: unrecognized instruction `nop'
The driver currently uses the generic version of nop() from
include/asm-generic/barrier.h:
#ifndef nop
#define nop() asm volatile ("nop")
#endif
Let's fix this on OpenRISC by defining an architecture-specific version
of nop().
This was tested by performing an allmodconfig openrisc cross compile on
an aarch64 host.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202601180236.BVy480We-lkp@intel.com/
Signed-off-by: Brian Masney <bmasney@redhat.com>
---
arch/openrisc/include/asm/barrier.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/openrisc/include/asm/barrier.h b/arch/openrisc/include/asm/barrier.h
index 7538294721bed7bc8da3d08f3db89a408091f3f8..8e592c99090235423a9f4c9149da9822918afb13 100644
--- a/arch/openrisc/include/asm/barrier.h
+++ b/arch/openrisc/include/asm/barrier.h
@@ -4,6 +4,8 @@
#define mb() asm volatile ("l.msync" ::: "memory")
+#define nop() asm volatile ("l.nop")
+
#include <asm-generic/barrier.h>
#endif /* __ASM_BARRIER_H */
---
base-commit: d08c85ac8894995d4b0d8fb48d2f6a3e53cd79ab
change-id: 20260120-openrisc-nop-82b7f95dad7f
Best regards,
--
Brian Masney <bmasney@redhat.com>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] openrisc: define arch-specific version of nop()
2026-01-20 17:07 [PATCH] openrisc: define arch-specific version of nop() Brian Masney
@ 2026-01-20 19:23 ` Stafford Horne
0 siblings, 0 replies; 2+ messages in thread
From: Stafford Horne @ 2026-01-20 19:23 UTC (permalink / raw)
To: Brian Masney
Cc: Jonas Bonn, Stefan Kristiansson, linux-openrisc, linux-kernel,
kernel test robot
On Tue, Jan 20, 2026 at 12:07:23PM -0500, Brian Masney wrote:
> When compiling a driver written for MIPS on OpenRISC that uses the nop()
> function, it fails due to the following error:
>
> drivers/watchdog/pic32-wdt.c: Assembler messages:
> drivers/watchdog/pic32-wdt.c:125: Error: unrecognized instruction `nop'
>
> The driver currently uses the generic version of nop() from
> include/asm-generic/barrier.h:
>
> #ifndef nop
> #define nop() asm volatile ("nop")
> #endif
>
> Let's fix this on OpenRISC by defining an architecture-specific version
> of nop().
>
> This was tested by performing an allmodconfig openrisc cross compile on
> an aarch64 host.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202601180236.BVy480We-lkp@intel.com/
> Signed-off-by: Brian Masney <bmasney@redhat.com>
This looks OK to me. Queueing.
-Stafford
> ---
> arch/openrisc/include/asm/barrier.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/openrisc/include/asm/barrier.h b/arch/openrisc/include/asm/barrier.h
> index 7538294721bed7bc8da3d08f3db89a408091f3f8..8e592c99090235423a9f4c9149da9822918afb13 100644
> --- a/arch/openrisc/include/asm/barrier.h
> +++ b/arch/openrisc/include/asm/barrier.h
> @@ -4,6 +4,8 @@
>
> #define mb() asm volatile ("l.msync" ::: "memory")
>
> +#define nop() asm volatile ("l.nop")
> +
> #include <asm-generic/barrier.h>
>
> #endif /* __ASM_BARRIER_H */
>
> ---
> base-commit: d08c85ac8894995d4b0d8fb48d2f6a3e53cd79ab
> change-id: 20260120-openrisc-nop-82b7f95dad7f
>
> Best regards,
> --
> Brian Masney <bmasney@redhat.com>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-20 19:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-20 17:07 [PATCH] openrisc: define arch-specific version of nop() Brian Masney
2026-01-20 19:23 ` Stafford Horne
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox