Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-05-06 Thread Heiko Schocher
Hello Lukas, Am 06.05.2019 um 13:25 schrieb Auer, Lukas: Hello Heiko, On Mon, 2019-04-29 at 16:11 +, Auer, Lukas wrote: Hello Heiko, On Mon, 2019-04-29 at 11:40 +0200, Heiko Schocher wrote: Hello Simon, Am 22.04.2019 um 04:38 schrieb s...@google.com: On Wed, Apr 10, 2019 at 8:46 PM

Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-05-06 Thread Auer, Lukas
Hello Heiko, On Mon, 2019-04-29 at 16:11 +, Auer, Lukas wrote: > Hello Heiko, > > On Mon, 2019-04-29 at 11:40 +0200, Heiko Schocher wrote: > > Hello Simon, > > > > Am 22.04.2019 um 04:38 schrieb s...@google.com: > > > On Wed, Apr 10, 2019 at 8:46 PM Lukas Auer > > > wrote: > > > > Boards

Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-04-29 Thread Auer, Lukas
Hello Heiko, On Mon, 2019-04-29 at 11:40 +0200, Heiko Schocher wrote: > Hello Simon, > > Am 22.04.2019 um 04:38 schrieb s...@google.com: > > On Wed, Apr 10, 2019 at 8:46 PM Lukas Auer > > wrote: > > > Boards such as qemu-riscv, which receive their device tree at runtime, > > > for example from

Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-04-29 Thread Heiko Schocher
Hello Simon, Am 22.04.2019 um 04:38 schrieb s...@google.com: On Wed, Apr 10, 2019 at 8:46 PM Lukas Auer wrote: Boards such as qemu-riscv, which receive their device tree at runtime, for example from QEMU or firmware, are unable to add the appropriate device tree properties to make devices

Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-04-21 Thread sjg
On Wed, Apr 10, 2019 at 8:46 PM Lukas Auer wrote: > > Boards such as qemu-riscv, which receive their device tree at runtime, > for example from QEMU or firmware, are unable to add the appropriate > device tree properties to make devices available pre relocation. > Instead, they must rely on the

Re: [U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-04-10 Thread Bin Meng
On Wed, Apr 10, 2019 at 8:46 PM Lukas Auer wrote: > > Boards such as qemu-riscv, which receive their device tree at runtime, > for example from QEMU or firmware, are unable to add the appropriate > device tree properties to make devices available pre relocation. > Instead, they must rely on the

[U-Boot] [PATCH] simple-bus: add DM_FLAG_PRE_RELOC flag to simple-bus driver

2019-04-10 Thread Lukas Auer
Boards such as qemu-riscv, which receive their device tree at runtime, for example from QEMU or firmware, are unable to add the appropriate device tree properties to make devices available pre relocation. Instead, they must rely on the DM_FLAG_PRE_RELOC flag to be set for the required drivers.