From: Sascha Hauer <s.hauer@pengutronix.de>
To: Renaud Barbier <renaud.barbier@ge.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 3/4] ppc: bootm: relocate fdt to valid boot memory
Date: Mon, 9 Sep 2013 17:08:58 +0200 [thread overview]
Message-ID: <20130909150858.GW30088@pengutronix.de> (raw)
In-Reply-To: <1378464792-22035-1-git-send-email-renaud.barbier@ge.com>
On Fri, Sep 06, 2013 at 11:53:12AM +0100, Renaud Barbier wrote:
> For the MPC85xx family of SOCs Linux expects any boot firmware
> information to be passed in the first 64MiB of memory. This adds support
> to ensure that the device tree is relocated to a valid location if it is
> outside that address range.
>
> For the other SOC family currently present in the ppc architecture, the
> default is not to relocate as at Linux startup the virtual address
> equals the physical address.
>
> Signed-off-by: Renaud Barbier <renaud.barbier@ge.com>
Applied, thanks
Sascha
> ---
> arch/ppc/include/asm/processor.h | 3 +++
> arch/ppc/lib/ppclinux.c | 49 +++++++++++++++++++++++++++++++++++++++-
> 2 files changed, 51 insertions(+), 1 deletion(-)
>
> diff --git a/arch/ppc/include/asm/processor.h b/arch/ppc/include/asm/processor.h
> index 04cfb60..9145257 100644
> --- a/arch/ppc/include/asm/processor.h
> +++ b/arch/ppc/include/asm/processor.h
> @@ -966,8 +966,11 @@ struct cpu_type {
> struct cpu_type *identify_cpu(u32 ver);
>
> #if defined(CONFIG_MPC85xx)
> +#define LINUX_TLB1_MAX_ADDR ((void *)(64 << 20))
> #define CPU_TYPE_ENTRY(n, v, nc) \
> { .name = #n, .soc_ver = SVR_##v, .num_cores = (nc), }
> +#else
> +#define LINUX_TLB1_MAX_ADDR ((void *)0xffffffff)
> #endif
> #ifndef CONFIG_MACH_SPECIFIC
> extern int _machine;
> diff --git a/arch/ppc/lib/ppclinux.c b/arch/ppc/lib/ppclinux.c
> index ef69ead..7c30ac3 100644
> --- a/arch/ppc/lib/ppclinux.c
> +++ b/arch/ppc/lib/ppclinux.c
> @@ -4,12 +4,45 @@
> #include <command.h>
> #include <image.h>
> #include <init.h>
> +#include <malloc.h>
> #include <environment.h>
> #include <asm/bitops.h>
> +#include <asm/processor.h>
> #include <boot.h>
> #include <errno.h>
> #include <fs.h>
>
> +static int bootm_relocate_fdt(void *addr, struct image_data *data)
> +{
> + if (addr < LINUX_TLB1_MAX_ADDR) {
> + /* The kernel is within the boot TLB mapping.
> + * Put the DTB above if there is no space
> + * below.
> + */
> + if (addr < (void *)data->oftree->totalsize) {
> + addr = (void *)PAGE_ALIGN((phys_addr_t)addr +
> + data->os->header.ih_size);
> + addr += data->oftree->totalsize;
> + if (addr < LINUX_TLB1_MAX_ADDR)
> + addr = LINUX_TLB1_MAX_ADDR;
> + }
> + }
> +
> + if (addr > LINUX_TLB1_MAX_ADDR) {
> + pr_crit("Unable to relocate DTB to Linux TLB\n");
> + return 1;
> + }
> +
> + addr = (void *)PAGE_ALIGN_DOWN((phys_addr_t)addr -
> + data->oftree->totalsize);
> + memcpy(addr, data->oftree, data->oftree->totalsize);
> + free(data->oftree);
> + data->oftree = addr;
> +
> + pr_info("Relocating device tree to 0x%p\n", addr);
> + return 0;
> +}
> +
> static int do_bootm_linux(struct image_data *data)
> {
> void (*kernel)(void *, void *, unsigned long,
> @@ -24,6 +57,20 @@ static int do_bootm_linux(struct image_data *data)
> return -EINVAL;
> }
>
> + /* Relocate the device tree if outside the initial
> + * Linux mapped TLB.
> + */
> + if (IS_ENABLED(CONFIG_MPC85xx)) {
> + void *addr = data->oftree;
> +
> + if ((addr + data->oftree->totalsize) > LINUX_TLB1_MAX_ADDR) {
> + addr = (void *)data->os_address;
> +
> + if (bootm_relocate_fdt(addr, data))
> + goto error;
> + }
> + }
> +
> fdt_add_reserve_map(data->oftree);
>
> kernel = (void *)(data->os_address + data->os_entry);
> @@ -40,7 +87,7 @@ static int do_bootm_linux(struct image_data *data)
>
> reset_cpu(0);
>
> - /* not reached */
> +error:
> return -1;
> }
>
> --
> 1.8.3.4
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-09-09 15:09 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-03 14:54 [PATCH v2 0/4] Update P2020RDB board support to allow NFS booting Renaud Barbier
2013-09-03 14:54 ` [PATCH 1/4] of: base: import of_find_node_by_type Renaud Barbier
2013-09-03 14:54 ` [PATCH 2/4] ppc: add and update device tree fixup functions Renaud Barbier
2013-09-03 14:54 ` [PATCH 3/4] ppc: bootm: relocate fdt to valid boot memory Renaud Barbier
2013-09-05 12:21 ` Sascha Hauer
2013-09-06 10:53 ` Renaud Barbier
2013-09-09 15:08 ` Sascha Hauer [this message]
2013-09-03 14:54 ` [PATCH 4/4] ppc: P2020RDB configuration update Renaud Barbier
2013-09-04 6:46 ` [PATCH v2 0/4] Update P2020RDB board support to allow NFS booting Sascha Hauer
-- strict thread matches above, loose matches on Subject: below --
2013-08-30 13:34 [PATCH " Renaud Barbier
2013-08-30 13:34 ` [PATCH 3/4] ppc: bootm: relocate fdt to valid boot memory Renaud Barbier
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=20130909150858.GW30088@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=renaud.barbier@ge.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