Skip to content

Commit d5b35cf

Browse files
apoppleozbenh
authored andcommitted
ppc476: Enable a linker work around for IBM errata #46
This patch adds an option to enable a work around for an icache bug on 476 that can cause execution of stale instructions when falling through pages (IBM errata #46). It requires a recent version of binutils which supports the --ppc476-workaround option. The work around enables the appropriate linker options and ensures that all module output sections are aligned to 4K page boundaries. The work around is only required when building modules. Signed-off-by: Alistair Popple <[email protected]> Signed-off-by: Benjamin Herrenschmidt <[email protected]>
1 parent e2c37d9 commit d5b35cf

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

arch/powerpc/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,11 @@ CHECKFLAGS += -m$(CONFIG_WORD_SIZE) -D__powerpc__ -D__powerpc$(CONFIG_WORD_SIZE)
159159

160160
KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o
161161

162+
ifeq ($(CONFIG_476FPE_ERR46),y)
163+
KBUILD_LDFLAGS_MODULE += --ppc476-workaround \
164+
-T $(srctree)/arch/powerpc/platforms/44x/ppc476_modules.lds
165+
endif
166+
162167
# No AltiVec or VSX instructions when building kernel
163168
KBUILD_CFLAGS += $(call cc-option,-mno-altivec)
164169
KBUILD_CFLAGS += $(call cc-option,-mno-vsx)

arch/powerpc/platforms/44x/Kconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,20 @@ config APM821xx
351351
select IBM_EMAC_EMAC4
352352
select IBM_EMAC_TAH
353353

354+
config 476FPE_ERR46
355+
depends on 476FPE
356+
bool "Enable linker work around for PPC476FPE errata #46"
357+
help
358+
This option enables a work around for an icache bug on 476
359+
that can cause execution of stale instructions when falling
360+
through pages (IBM errata #46). It requires a recent version
361+
of binutils which supports the --ppc476-workaround option.
362+
363+
The work around enables the appropriate linker options and
364+
ensures that all module output sections are aligned to 4K
365+
page boundaries. The work around is only required when
366+
building modules.
367+
354368
# 44x errata/workaround config symbols, selected by the CPU models above
355369
config IBM440EP_ERR42
356370
bool
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
SECTIONS
2+
{
3+
.text : ALIGN(4096)
4+
{
5+
*(.text .text.* .fixup)
6+
}
7+
.init.text : ALIGN(4096)
8+
{
9+
*(.init.text .init.text.*)
10+
}
11+
.exit.text : ALIGN(4096)
12+
{
13+
*(.exit.text .exit.text.*)
14+
}
15+
}

0 commit comments

Comments
 (0)