From: Mike Frysinger <vapier@gentoo.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [[Patch V2] mips: 01/16] add mips64 standalone support
Date: Fri, 17 Aug 2012 15:31:26 -0400 [thread overview]
Message-ID: <201208171531.27518.vapier@gentoo.org> (raw)
In-Reply-To: <1345217476-32034-2-git-send-email-etou.zh@gmail.com>
On Friday 17 August 2012 11:30:44 Zhizhou Zhang wrote:
> --- a/arch/mips/config.mk
> +++ b/arch/mips/config.mk
>
> +ifeq "$(CPU)" "mips64"
> +CONFIG_STANDALONE_LOAD_ADDR ?= 0xFfffFfff80200000 -T mips64.lds
> +else
> CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T mips.lds
> +endif
the cpu config.mk is sourced after this one. you could change this to:
CONFIG_STANDALONE_LOAD_ADDR ?= $(DEFAULT_MIPS_STANDALONE_LOAD_ADDR)
DEFAULT_MIPS_STANDALONE_LOAD_ADDR = 0x80200000 -T mips.lds
then in the mips64/config.mk:
DEFAULT_MIPS_STANDALONE_LOAD_ADDR = 0xFfffFfff80200000 -T mips64.lds
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120817/6c1a1ad4/attachment.pgp>
next prev parent reply other threads:[~2012-08-17 19:31 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-17 15:30 [U-Boot] [[Patch V2] mips: 00/16] add mips64 support to U-Boot Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 01/16] add mips64 standalone support Zhizhou Zhang
2012-08-17 19:31 ` Mike Frysinger [this message]
2012-08-18 12:22 ` Zhi-zhou Zhang
2012-08-18 15:38 ` Mike Frysinger
2012-08-19 2:25 ` Zhi-zhou Zhang
2012-08-23 3:12 ` Mike Frysinger
2012-08-19 6:17 ` Zhi-zhou Zhang
2012-09-01 12:29 ` Wolfgang Denk
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 02/16] add cpu/mips64/Makefile Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 03/16] add cpu/mips64/config.mk Zhizhou Zhang
2012-08-17 19:32 ` Mike Frysinger
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 04/16] add cpu/mips64/cpu.c Zhizhou Zhang
2012-08-17 19:34 ` Mike Frysinger
2012-08-18 3:17 ` Zhi-zhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 05/16] add cpu/mips64/interrupts.c Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 06/16] add cpu/mips64/start.S Zhizhou Zhang
2012-08-17 19:38 ` Mike Frysinger
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 07/16] add cpu/mips64/time.c Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 08/16] Let UNCACHED_SDRAM be available to mips64 Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 09/16] add cache description struct Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 10/16] modify io operation for mips64 Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 11/16] Make size_t equaled to unsigned long Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 12/16] modify u-boot.lds for mips64 Zhizhou Zhang
2012-08-17 17:09 ` Andrew Dyer
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 13/16] add board define in boards.cfg Zhizhou Zhang
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 14/16] add mips64 standalone link script Zhizhou Zhang
2012-08-17 17:08 ` Andrew Dyer
2012-08-18 3:04 ` Zhi-zhou Zhang
2012-08-19 13:31 ` Daniel Schwierzeck
2012-08-19 13:25 ` Daniel Schwierzeck
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 15/16] add configs/qemu-mips64.h Zhizhou Zhang
2012-08-19 13:41 ` Daniel Schwierzeck
2012-08-17 15:30 ` [U-Boot] [[Patch V2] mips: 16/16] modify qemu-mips/config.mk Zhizhou Zhang
2012-08-19 13:38 ` Daniel Schwierzeck
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 00/16] add mips64 support to U-Boot Zhizhou Zhang
2012-08-19 13:00 ` Daniel Schwierzeck
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 01/16] add mips64 standalone support Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 02/16] add cpu/mips64/Makefile Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 03/16] add cpu/mips64/config.mk Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 04/16] add cpu/mips64/cpu.c Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 05/16] add cpu/mips64/interrupts.c Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 06/16] add cpu/mips64/start.S Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 07/16] add cpu/mips64/time.c Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 08/16] Let UNCACHED_SDRAM be available to mips64 Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 09/16] add cache description struct Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 10/16] modify io operation for mips64 Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 11/16] Make size_t equaled to unsigned long Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 12/16] modify u-boot.lds for mips64 Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 13/16] add board define in boards.cfg Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 14/16] add mips64 standalone link script Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 15/16] add configs/qemu-mips64.h Zhizhou Zhang
2012-08-17 15:31 ` [U-Boot] [[Patch V2] mips: 16/16] modify qemu-mips/config.mk Zhizhou Zhang
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=201208171531.27518.vapier@gentoo.org \
--to=vapier@gentoo.org \
--cc=u-boot@lists.denx.de \
/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