aboutsummaryrefslogtreecommitdiff
path: root/arch/openrisc/cpu
AgeCommit message (Collapse)AuthorFilesLines
2017-04-05OpenRISC: RemoveTom Rini7-901/+0
The OpenRISC architecture is currently unmaintained, remove. Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
2015-11-12openrisc: updating build tools naming conventionGuillaume REMBERT1-1/+1
Dear u-boot community, I just made a small change on the openrisc-generic platform configuration to take in account the new naming convention (or1k instead of or32, so the build process gets fine). Could you take care to review and approve the following patch, please? Kind regards,
2014-06-05openrisc: fix relocation codeFranck Jullien1-14/+41
The relocation code can now relocate from anywhere to the RAM. The old code assumed that the binary was copied to the RAM by some PBL and then it just relocated the .text section from the loaded address to the linked address. Now, it first checks if vectors are somewhere else than the linked address. If yes, there are copied to address 0 (or to the exception vector base address if register EVBAR is present). Then, the .text section is relocated from its current location to the RAM. Signed-off-by: Franck Jullien <franck.jullien@gmail.com>
2013-10-31openrisc: convert makefiles to Kbuild styleMasahiro Yamada1-24/+2
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
2013-10-14Coding Style cleanup: replace leading SPACEs by TABsWolfgang Denk1-2/+2
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Drop changes for PEP 4 following python tools] Signed-off-by: Tom Rini <trini@ti.com>
2013-07-24Add GPL-2.0+ SPDX-License-Identifier to source filesWolfgang Denk6-90/+6
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
2013-05-10openrisc: move board linker script(s) to a common in cpu/Stefan Kristiansson1-0/+77
Unifies the openrisc boards linker scripts into a common one. Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
2012-08-09openrisc: Work around potential relocation issuesJulius Baxter2-6/+13
When reset code is in flash, the jump instructions emitted by the compiler are relative instead of absolute jumps. A fix to the reset code to make correct jumps to the beginning of code relocated to RAM have also been added. Signed-off-by: Julius Baxter <juliusbaxter@gmail.com>
2012-01-13openrisc: Add cpu filesStefan Kristiansson6-0/+896
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>