* [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision"
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
@ 2015-07-06 20:26 ` Pali Rohár
2015-12-24 19:02 ` Pali Rohár
2015-07-06 20:26 ` [PATCH 2/5] arm: boot: convert ATAG_REVISION to DT "/revision" entry Pali Rohár
` (4 subsequent siblings)
5 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-07-06 20:26 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-omap, linux-kernel, linux-arm-kernel, Pali Rohár
With this patch "/revision" DT entry is used to set global system_rev
variable. DT "/revision" is expected to be u32 numeric value.
TODO: add documentation
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
arch/arm/kernel/devtree.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c
index 11c54de..7d82749 100644
--- a/arch/arm/kernel/devtree.c
+++ b/arch/arm/kernel/devtree.c
@@ -19,6 +19,7 @@
#include <linux/of_irq.h>
#include <linux/of_platform.h>
#include <linux/smp.h>
+#include <linux/libfdt_env.h>
#include <asm/cputype.h>
#include <asm/setup.h>
@@ -26,6 +27,7 @@
#include <asm/smp_plat.h>
#include <asm/mach/arch.h>
#include <asm/mach-types.h>
+#include <asm/system_info.h>
#ifdef CONFIG_SMP
@@ -204,6 +206,8 @@ static const void * __init arch_get_next_mach(const char *const **match)
const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
{
const struct machine_desc *mdesc, *mdesc_best = NULL;
+ unsigned long dt_root;
+ const u32 *rev;
#ifdef CONFIG_ARCH_MULTIPLATFORM
DT_MACHINE_START(GENERIC_DT, "Generic DT based system")
@@ -215,17 +219,16 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
if (!dt_phys || !early_init_dt_verify(phys_to_virt(dt_phys)))
return NULL;
+ dt_root = of_get_flat_dt_root();
mdesc = of_flat_dt_match_machine(mdesc_best, arch_get_next_mach);
if (!mdesc) {
const char *prop;
int size;
- unsigned long dt_root;
early_print("\nError: unrecognized/unsupported "
"device tree compatible list:\n[ ");
- dt_root = of_get_flat_dt_root();
prop = of_get_flat_dt_prop(dt_root, "compatible", &size);
while (size > 0) {
early_print("'%s' ", prop);
@@ -246,5 +249,10 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
/* Change machine number to match the mdesc we're using */
__machine_arch_type = mdesc->nr;
+ /* Set system revision from DT */
+ rev = of_get_flat_dt_prop(dt_root, "revision", NULL);
+ if (rev)
+ system_rev = fdt32_to_cpu(*rev);
+
return mdesc;
}
--
1.7.9.5
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 68+ messages in thread
* Re: [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision"
2015-07-06 20:26 ` [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision" Pali Rohár
@ 2015-12-24 19:02 ` Pali Rohár
2015-12-28 21:01 ` Frank Rowand
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-12-24 19:02 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-omap, linux-kernel, linux-arm-kernel
On Monday 06 July 2015 22:26:09 Pali Rohár wrote:
> With this patch "/revision" DT entry is used to set global system_rev
> variable. DT "/revision" is expected to be u32 numeric value.
>
> TODO: add documentation
>
> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> ---
> arch/arm/kernel/devtree.c | 12 ++++++++++--
> 1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c
> index 11c54de..7d82749 100644
> --- a/arch/arm/kernel/devtree.c
> +++ b/arch/arm/kernel/devtree.c
> @@ -19,6 +19,7 @@
> #include <linux/of_irq.h>
> #include <linux/of_platform.h>
> #include <linux/smp.h>
> +#include <linux/libfdt_env.h>
>
> #include <asm/cputype.h>
> #include <asm/setup.h>
> @@ -26,6 +27,7 @@
> #include <asm/smp_plat.h>
> #include <asm/mach/arch.h>
> #include <asm/mach-types.h>
> +#include <asm/system_info.h>
>
>
> #ifdef CONFIG_SMP
> @@ -204,6 +206,8 @@ static const void * __init arch_get_next_mach(const char *const **match)
> const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> {
> const struct machine_desc *mdesc, *mdesc_best = NULL;
> + unsigned long dt_root;
> + const u32 *rev;
>
> #ifdef CONFIG_ARCH_MULTIPLATFORM
> DT_MACHINE_START(GENERIC_DT, "Generic DT based system")
> @@ -215,17 +219,16 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> if (!dt_phys || !early_init_dt_verify(phys_to_virt(dt_phys)))
> return NULL;
>
> + dt_root = of_get_flat_dt_root();
> mdesc = of_flat_dt_match_machine(mdesc_best, arch_get_next_mach);
>
> if (!mdesc) {
> const char *prop;
> int size;
> - unsigned long dt_root;
>
> early_print("\nError: unrecognized/unsupported "
> "device tree compatible list:\n[ ");
>
> - dt_root = of_get_flat_dt_root();
> prop = of_get_flat_dt_prop(dt_root, "compatible", &size);
> while (size > 0) {
> early_print("'%s' ", prop);
> @@ -246,5 +249,10 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> /* Change machine number to match the mdesc we're using */
> __machine_arch_type = mdesc->nr;
>
> + /* Set system revision from DT */
> + rev = of_get_flat_dt_prop(dt_root, "revision", NULL);
> + if (rev)
> + system_rev = fdt32_to_cpu(*rev);
> +
> return mdesc;
> }
This patch and second one (with subject "[PATCH 2/5] arm: boot: convert
ATAG_REVISION to DT "/revision" entry") are still needed.
Are there any objections for them? If not, I will add missing DT
documentation and will resend them.
--
Pali Rohár
pali.rohar@gmail.com
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision"
2015-12-24 19:02 ` Pali Rohár
@ 2015-12-28 21:01 ` Frank Rowand
[not found] ` <5681A322.2090204-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 68+ messages in thread
From: Frank Rowand @ 2015-12-28 21:01 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber,
linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
Devicetree Spec List
Adding devicetree-spec, and commenting below.
On 12/24/2015 11:02 AM, Pali Rohár wrote:
> On Monday 06 July 2015 22:26:09 Pali Rohár wrote:
>> With this patch "/revision" DT entry is used to set global system_rev
>> variable. DT "/revision" is expected to be u32 numeric value.
>>
>> TODO: add documentation
>>
>> Signed-off-by: Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> ---
>> arch/arm/kernel/devtree.c | 12 ++++++++++--
>> 1 file changed, 10 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c
>> index 11c54de..7d82749 100644
>> --- a/arch/arm/kernel/devtree.c
>> +++ b/arch/arm/kernel/devtree.c
>> @@ -19,6 +19,7 @@
>> #include <linux/of_irq.h>
>> #include <linux/of_platform.h>
>> #include <linux/smp.h>
>> +#include <linux/libfdt_env.h>
>>
>> #include <asm/cputype.h>
>> #include <asm/setup.h>
>> @@ -26,6 +27,7 @@
>> #include <asm/smp_plat.h>
>> #include <asm/mach/arch.h>
>> #include <asm/mach-types.h>
>> +#include <asm/system_info.h>
>>
>>
>> #ifdef CONFIG_SMP
>> @@ -204,6 +206,8 @@ static const void * __init arch_get_next_mach(const char *const **match)
>> const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
>> {
>> const struct machine_desc *mdesc, *mdesc_best = NULL;
>> + unsigned long dt_root;
>> + const u32 *rev;
>>
>> #ifdef CONFIG_ARCH_MULTIPLATFORM
>> DT_MACHINE_START(GENERIC_DT, "Generic DT based system")
>> @@ -215,17 +219,16 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
>> if (!dt_phys || !early_init_dt_verify(phys_to_virt(dt_phys)))
>> return NULL;
>>
>> + dt_root = of_get_flat_dt_root();
>> mdesc = of_flat_dt_match_machine(mdesc_best, arch_get_next_mach);
>>
>> if (!mdesc) {
>> const char *prop;
>> int size;
>> - unsigned long dt_root;
>>
>> early_print("\nError: unrecognized/unsupported "
>> "device tree compatible list:\n[ ");
>>
>> - dt_root = of_get_flat_dt_root();
>> prop = of_get_flat_dt_prop(dt_root, "compatible", &size);
>> while (size > 0) {
>> early_print("'%s' ", prop);
>> @@ -246,5 +249,10 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
>> /* Change machine number to match the mdesc we're using */
>> __machine_arch_type = mdesc->nr;
>>
>> + /* Set system revision from DT */
>> + rev = of_get_flat_dt_prop(dt_root, "revision", NULL);
>> + if (rev)
>> + system_rev = fdt32_to_cpu(*rev);
>> +
>> return mdesc;
>> }
>
> This patch and second one (with subject "[PATCH 2/5] arm: boot: convert
> ATAG_REVISION to DT "/revision" entry") are still needed.
>
> Are there any objections for them? If not, I will add missing DT
> documentation and will resend them.
Patch 2/5 copies the value from ATAG_REVISION into the fdt "/revision"
property.
If the use of /revision is limited to being a location to hold an ATAG
value to pass to the global variable system_rev, then it would make
sense to just copy directly from the ATAG value into system_rev in the
same board file where you are copying the ATAGs.
-Frank
^ permalink raw reply [flat|nested] 68+ messages in thread
* [PATCH 2/5] arm: boot: convert ATAG_REVISION to DT "/revision" entry
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
2015-07-06 20:26 ` [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision" Pali Rohár
@ 2015-07-06 20:26 ` Pali Rohár
2015-07-06 20:26 ` [PATCH 3/5] arm: atags: Fix declaration of function save_atags Pali Rohár
` (3 subsequent siblings)
5 siblings, 0 replies; 68+ messages in thread
From: Pali Rohár @ 2015-07-06 20:26 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-omap, linux-kernel, linux-arm-kernel, Pali Rohár
When uncompressing kernel image this patch convert ATAG_REVISION structure
into DT "/revision" entry. For legacy bootloaders which do not support DT
booting there is no other option how to pass ATAG_REVISION into kernel.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
arch/arm/boot/compressed/atags_to_fdt.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/boot/compressed/atags_to_fdt.c b/arch/arm/boot/compressed/atags_to_fdt.c
index 9448aa0..e7e1cc9 100644
--- a/arch/arm/boot/compressed/atags_to_fdt.c
+++ b/arch/arm/boot/compressed/atags_to_fdt.c
@@ -171,6 +171,8 @@ int atags_to_fdt(void *atag_list, void *fdt, int total_space)
cpu_to_fdt32(atag->u.mem.size);
}
+ } else if (atag->hdr.tag == ATAG_REVISION) {
+ setprop_cell(fdt, "/", "revision", atag->u.revision.rev);
} else if (atag->hdr.tag == ATAG_INITRD2) {
uint32_t initrd_start, initrd_size;
initrd_start = atag->u.initrd.start;
--
1.7.9.5
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 68+ messages in thread
* [PATCH 3/5] arm: atags: Fix declaration of function save_atags
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
2015-07-06 20:26 ` [PATCH 1/5] arm: devtree: Set system_rev from DT "/revision" Pali Rohár
2015-07-06 20:26 ` [PATCH 2/5] arm: boot: convert ATAG_REVISION to DT "/revision" entry Pali Rohár
@ 2015-07-06 20:26 ` Pali Rohár
2015-07-06 20:26 ` [PATCH 4/5] arm: devtree: Read ATAGs structure from DT "/chosen/linux,atags" entry Pali Rohár
` (2 subsequent siblings)
5 siblings, 0 replies; 68+ messages in thread
From: Pali Rohár @ 2015-07-06 20:26 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-arm-kernel, linux-kernel, linux-omap, Pali Rohár
In file atags_proc.c function save_atags() expect const argument, but in
atags.h file is declarated as non const. Fix declaration in atags.h file to
match what is expected.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
arch/arm/kernel/atags.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/kernel/atags.h b/arch/arm/kernel/atags.h
index ec4164d..2dfc30f 100644
--- a/arch/arm/kernel/atags.h
+++ b/arch/arm/kernel/atags.h
@@ -1,7 +1,7 @@
#ifdef CONFIG_ATAGS_PROC
-extern void save_atags(struct tag *tags);
+extern void save_atags(const struct tag *tags);
#else
-static inline void save_atags(struct tag *tags) { }
+static inline void save_atags(const struct tag *tags) { }
#endif
void convert_to_tag_list(struct tag *tags);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 68+ messages in thread
* [PATCH 4/5] arm: devtree: Read ATAGs structure from DT "/chosen/linux,atags" entry
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
` (2 preceding siblings ...)
2015-07-06 20:26 ` [PATCH 3/5] arm: atags: Fix declaration of function save_atags Pali Rohár
@ 2015-07-06 20:26 ` Pali Rohár
2015-07-06 20:26 ` [PATCH 5/5] arm: boot: store ATAGs structure into " Pali Rohár
2015-11-28 4:06 ` [PATCH 0/5] ATAGs to DT patches Frank Rowand
5 siblings, 0 replies; 68+ messages in thread
From: Pali Rohár @ 2015-07-06 20:26 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-arm-kernel, linux-kernel, linux-omap, Pali Rohár
With this patch when linux kernel is compiled with ARM_ATAG_DTB_COMPAT it
reads ATAGs structure from "/chosen/linux,atags" entry and store it into
/proc/atags file. ATAGs structure is not parsed or evaluated, just kernel
exports it to userspace via procfs. It is needed for legacy userspace
application which expect some data from bootloader in /proc/atags file.
This patch keeps them running also on DT kernel if DT "/chosen/linux,atags"
entry exists.
TODO: add documentation
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
arch/arm/kernel/devtree.c | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c
index 7d82749..69ff048 100644
--- a/arch/arm/kernel/devtree.c
+++ b/arch/arm/kernel/devtree.c
@@ -20,6 +20,7 @@
#include <linux/of_platform.h>
#include <linux/smp.h>
#include <linux/libfdt_env.h>
+#include <linux/libfdt.h>
#include <asm/cputype.h>
#include <asm/setup.h>
@@ -29,6 +30,7 @@
#include <asm/mach-types.h>
#include <asm/system_info.h>
+#include "atags.h"
#ifdef CONFIG_SMP
extern struct of_cpu_method __cpu_method_of_table[];
@@ -208,6 +210,11 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
const struct machine_desc *mdesc, *mdesc_best = NULL;
unsigned long dt_root;
const u32 *rev;
+ void *dt_virt;
+#ifdef CONFIG_ARM_ATAG_DTB_COMPAT
+ const void *atags;
+ unsigned long dt_chosen;
+#endif
#ifdef CONFIG_ARCH_MULTIPLATFORM
DT_MACHINE_START(GENERIC_DT, "Generic DT based system")
@@ -216,7 +223,12 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
mdesc_best = &__mach_desc_GENERIC_DT;
#endif
- if (!dt_phys || !early_init_dt_verify(phys_to_virt(dt_phys)))
+ if (!dt_phys)
+ return NULL;
+
+ dt_virt = phys_to_virt(dt_phys);
+
+ if (!early_init_dt_verify(dt_virt))
return NULL;
dt_root = of_get_flat_dt_root();
@@ -254,5 +266,15 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
if (rev)
system_rev = fdt32_to_cpu(*rev);
+#ifdef CONFIG_ARM_ATAG_DTB_COMPAT
+ /* Store DT /chosen/linux,atags into /proc/atags */
+ dt_chosen = fdt_path_offset(dt_virt, "/chosen");
+ if (dt_chosen >= 0) {
+ atags = of_get_flat_dt_prop(dt_chosen, "linux,atags", NULL);
+ if (atags)
+ save_atags(atags);
+ }
+#endif
+
return mdesc;
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 68+ messages in thread
* [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
` (3 preceding siblings ...)
2015-07-06 20:26 ` [PATCH 4/5] arm: devtree: Read ATAGs structure from DT "/chosen/linux,atags" entry Pali Rohár
@ 2015-07-06 20:26 ` Pali Rohár
2015-07-07 11:32 ` Russell King - ARM Linux
2015-11-28 4:06 ` [PATCH 0/5] ATAGs to DT patches Frank Rowand
5 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-07-06 20:26 UTC (permalink / raw)
To: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber
Cc: linux-arm-kernel, linux-kernel, linux-omap, Pali Rohár
Legacy bootloaders can pass additional information for kernel or legacy
userspace applications. When booting DT kernel then ATAGs structure is not
more visible after running kernel uncompress code. This patch stores full
ATAGs structure into DT "/chosen/linux,atags" entry, so kernel can later
reuse it and export via /proc/atags to userspace.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
arch/arm/boot/compressed/atags_to_fdt.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/compressed/atags_to_fdt.c b/arch/arm/boot/compressed/atags_to_fdt.c
index e7e1cc9..ae93973 100644
--- a/arch/arm/boot/compressed/atags_to_fdt.c
+++ b/arch/arm/boot/compressed/atags_to_fdt.c
@@ -112,7 +112,7 @@ int atags_to_fdt(void *atag_list, void *fdt, int total_space)
* address and size for each bank */
uint32_t mem_reg_property[2 * 2 * NR_BANKS];
int memcount = 0;
- int ret, memsize;
+ int ret, memsize, atag_size;
/* make sure we've got an aligned pointer */
if ((u32)atag_list & 0x3)
@@ -189,5 +189,9 @@ int atags_to_fdt(void *atag_list, void *fdt, int total_space)
4 * memcount * memsize);
}
+ /* include the terminating ATAG_NONE */
+ atag_size = (char *)atag - (char *)atag_list + sizeof(struct tag_header);
+ setprop(fdt, "/chosen", "linux,atags", atag_list, atag_size);
+
return fdt_pack(fdt);
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-07-06 20:26 ` [PATCH 5/5] arm: boot: store ATAGs structure into " Pali Rohár
@ 2015-07-07 11:32 ` Russell King - ARM Linux
2015-07-07 11:58 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Russell King - ARM Linux @ 2015-07-07 11:32 UTC (permalink / raw)
To: Pali Rohár
Cc: Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek, Tony Lindgren,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Mon, Jul 06, 2015 at 10:26:13PM +0200, Pali Rohár wrote:
> Legacy bootloaders can pass additional information for kernel or legacy
> userspace applications. When booting DT kernel then ATAGs structure is not
> more visible after running kernel uncompress code. This patch stores full
> ATAGs structure into DT "/chosen/linux,atags" entry, so kernel can later
> reuse it and export via /proc/atags to userspace.
I think you need to go through your commit messages and improve them,
especially the ones with "TODO" in them. As long as there's still things
to be done, they're obviously not ready for merging.
Moreover, exporting the ATAGS is questionable, even _if_ there are non-
kexec programs making use of this. The ATAGs have _never_ been exported
to userspace when kexec disabled is the kernel - it was introduced for
kexec, and has always had this:
config ATAGS_PROC
bool "Export atags in procfs"
depends on ATAGS && KEXEC
default y
Now, the fact that someone decided to start using it is pretty sad,
because it means that if you disable KEXEC, userspace breaks. That's
not a kernel regression in any shape or form, because /proc/atags has
never been there without KEXEC enabled. That's a userspace bug, plain
and simple.
Given that, I'm in two minds about whether to accept the last two
patches which make this more than just "for KEXEC use to enable a KEXEC
kernel to be booted."
Had it been provided without the KEXEC conditional, then I don't have
a problem with these two patches.
It also sets a precedent: by adding this into DT, it is creating a new
DT ABI as well, and we'll end up seeing dts files with an ATAG block
patched into them.
Are the ATAGs at a fixed address on the N900? Can that be handled in
some kind of legacy file for the N900 which calls save_atags() on it, so
we don't end up introducing yet more stuff that we have to maintain into
the distant future? If not, what about copying a known working atag
structure into a legacy file for the N900?
--
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-07-07 11:32 ` Russell King - ARM Linux
@ 2015-07-07 11:58 ` Pali Rohár
2015-07-13 13:19 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-07-07 11:58 UTC (permalink / raw)
To: Russell King - ARM Linux
Cc: Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek, Tony Lindgren,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Tuesday 07 July 2015 12:32:13 Russell King - ARM Linux wrote:
> On Mon, Jul 06, 2015 at 10:26:13PM +0200, Pali Rohár wrote:
> > Legacy bootloaders can pass additional information for kernel or legacy
> > userspace applications. When booting DT kernel then ATAGs structure is not
> > more visible after running kernel uncompress code. This patch stores full
> > ATAGs structure into DT "/chosen/linux,atags" entry, so kernel can later
> > reuse it and export via /proc/atags to userspace.
>
> I think you need to go through your commit messages and improve them,
> especially the ones with "TODO" in them. As long as there's still things
> to be done, they're obviously not ready for merging.
>
I know, in cover letter email I wrote that documentation is not ready...
I send patches for review and comments (like yours). I think it is still
better to send something and mark it as incomplete. It could prevent to
work on something which will be again rewritten...
> Moreover, exporting the ATAGS is questionable, even _if_ there are non-
> kexec programs making use of this. The ATAGs have _never_ been exported
> to userspace when kexec disabled is the kernel - it was introduced for
> kexec, and has always had this:
>
> config ATAGS_PROC
> bool "Export atags in procfs"
> depends on ATAGS && KEXEC
> default y
>
> Now, the fact that someone decided to start using it is pretty sad,
> because it means that if you disable KEXEC, userspace breaks. That's
> not a kernel regression in any shape or form, because /proc/atags has
> never been there without KEXEC enabled. That's a userspace bug, plain
> and simple.
>
> Given that, I'm in two minds about whether to accept the last two
> patches which make this more than just "for KEXEC use to enable a KEXEC
> kernel to be booted."
>
> Had it been provided without the KEXEC conditional, then I don't have
> a problem with these two patches.
>
I understand it. Nokia originally invented their own entries in /proc/
which export needed ATAGs from kernel in human-readable form, but all
those entries were non-standard and specific for Nokia's kernels.
Do you have some other idea how to provide ATAGs information created
dynamically by legacy closed proprietary bootloader to userspace from DT
booted kernel?
Anyway, for supporting kexec (with passing ATAGs) it is needed to have
working /proc/atags file, right?
> It also sets a precedent: by adding this into DT, it is creating a new
> DT ABI as well, and we'll end up seeing dts files with an ATAG block
> patched into them.
>
> Are the ATAGs at a fixed address on the N900?
Yes, in board-rx51.c is:
.atag_offset = 0x100
and Nokia Bootloader (proprietary) store them to that address.
> Can that be handled in
> some kind of legacy file for the N900 which calls save_atags() on it, so
> we don't end up introducing yet more stuff that we have to maintain into
> the distant future? If not, what about copying a known working atag
> structure into a legacy file for the N900?
>
I already asked question if it is possible to read ATAGs from DT booted
kernel. And somebody (do not remember who) wrote to ML, that it is not
possible and it can be done in that uncompress code.
--
Pali Rohár
pali.rohar@gmail.com
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-07-07 11:58 ` Pali Rohár
@ 2015-07-13 13:19 ` Tony Lindgren
2015-10-12 20:16 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Tony Lindgren @ 2015-07-13 13:19 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
* Pali Rohár <pali.rohar@gmail.com> [150707 05:00]:
> On Tuesday 07 July 2015 12:32:13 Russell King - ARM Linux wrote:
> > On Mon, Jul 06, 2015 at 10:26:13PM +0200, Pali Rohár wrote:
> > > Legacy bootloaders can pass additional information for kernel or legacy
> > > userspace applications. When booting DT kernel then ATAGs structure is not
> > > more visible after running kernel uncompress code. This patch stores full
> > > ATAGs structure into DT "/chosen/linux,atags" entry, so kernel can later
> > > reuse it and export via /proc/atags to userspace.
> >
> > I think you need to go through your commit messages and improve them,
> > especially the ones with "TODO" in them. As long as there's still things
> > to be done, they're obviously not ready for merging.
> >
>
> I know, in cover letter email I wrote that documentation is not ready...
> I send patches for review and comments (like yours). I think it is still
> better to send something and mark it as incomplete. It could prevent to
> work on something which will be again rewritten...
>
> > Moreover, exporting the ATAGS is questionable, even _if_ there are non-
> > kexec programs making use of this. The ATAGs have _never_ been exported
> > to userspace when kexec disabled is the kernel - it was introduced for
> > kexec, and has always had this:
> >
> > config ATAGS_PROC
> > bool "Export atags in procfs"
> > depends on ATAGS && KEXEC
> > default y
> >
> > Now, the fact that someone decided to start using it is pretty sad,
> > because it means that if you disable KEXEC, userspace breaks. That's
> > not a kernel regression in any shape or form, because /proc/atags has
> > never been there without KEXEC enabled. That's a userspace bug, plain
> > and simple.
> >
> > Given that, I'm in two minds about whether to accept the last two
> > patches which make this more than just "for KEXEC use to enable a KEXEC
> > kernel to be booted."
> >
> > Had it been provided without the KEXEC conditional, then I don't have
> > a problem with these two patches.
> >
>
> I understand it. Nokia originally invented their own entries in /proc/
> which export needed ATAGs from kernel in human-readable form, but all
> those entries were non-standard and specific for Nokia's kernels.
>
> Do you have some other idea how to provide ATAGs information created
> dynamically by legacy closed proprietary bootloader to userspace from DT
> booted kernel?
>
> Anyway, for supporting kexec (with passing ATAGs) it is needed to have
> working /proc/atags file, right?
Yeah I think that since we already have it in /proc, we should just
support it. And keep it behind CONFIG_KEXEC and CONFIG_ARM_APPENDED_DTB
and hope we don't find other users for it.. Then reconsider the Kconfig
dependencies if we do find other users.
> > It also sets a precedent: by adding this into DT, it is creating a new
> > DT ABI as well, and we'll end up seeing dts files with an ATAG block
> > patched into them.
> >
> > Are the ATAGs at a fixed address on the N900?
>
> Yes, in board-rx51.c is:
>
> .atag_offset = 0x100
>
> and Nokia Bootloader (proprietary) store them to that address.
>
> > Can that be handled in
> > some kind of legacy file for the N900 which calls save_atags() on it, so
> > we don't end up introducing yet more stuff that we have to maintain into
> > the distant future? If not, what about copying a known working atag
> > structure into a legacy file for the N900?
>
> I already asked question if it is possible to read ATAGs from DT booted
> kernel. And somebody (do not remember who) wrote to ML, that it is not
> possible and it can be done in that uncompress code.
I guess the other option would be to keep the raw ATAG area reserved,
and only initialize /proc/atags from a board specific initcall.
But I think that would complicate the already fragile uncompress
relocation code even further?
Regards,
Tony
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-07-13 13:19 ` Tony Lindgren
@ 2015-10-12 20:16 ` Tony Lindgren
2015-10-12 20:25 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Tony Lindgren @ 2015-10-12 20:16 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
* Tony Lindgren <tony@atomide.com> [150713 06:21]:
> * Pali Rohár <pali.rohar@gmail.com> [150707 05:00]:
> > On Tuesday 07 July 2015 12:32:13 Russell King - ARM Linux wrote:
> > > On Mon, Jul 06, 2015 at 10:26:13PM +0200, Pali Rohár wrote:
> > > > Legacy bootloaders can pass additional information for kernel or legacy
> > > > userspace applications. When booting DT kernel then ATAGs structure is not
> > > > more visible after running kernel uncompress code. This patch stores full
> > > > ATAGs structure into DT "/chosen/linux,atags" entry, so kernel can later
> > > > reuse it and export via /proc/atags to userspace.
> > >
> > > I think you need to go through your commit messages and improve them,
> > > especially the ones with "TODO" in them. As long as there's still things
> > > to be done, they're obviously not ready for merging.
> > >
> >
> > I know, in cover letter email I wrote that documentation is not ready...
> > I send patches for review and comments (like yours). I think it is still
> > better to send something and mark it as incomplete. It could prevent to
> > work on something which will be again rewritten...
> >
> > > Moreover, exporting the ATAGS is questionable, even _if_ there are non-
> > > kexec programs making use of this. The ATAGs have _never_ been exported
> > > to userspace when kexec disabled is the kernel - it was introduced for
> > > kexec, and has always had this:
> > >
> > > config ATAGS_PROC
> > > bool "Export atags in procfs"
> > > depends on ATAGS && KEXEC
> > > default y
> > >
> > > Now, the fact that someone decided to start using it is pretty sad,
> > > because it means that if you disable KEXEC, userspace breaks. That's
> > > not a kernel regression in any shape or form, because /proc/atags has
> > > never been there without KEXEC enabled. That's a userspace bug, plain
> > > and simple.
> > >
> > > Given that, I'm in two minds about whether to accept the last two
> > > patches which make this more than just "for KEXEC use to enable a KEXEC
> > > kernel to be booted."
> > >
> > > Had it been provided without the KEXEC conditional, then I don't have
> > > a problem with these two patches.
> > >
> >
> > I understand it. Nokia originally invented their own entries in /proc/
> > which export needed ATAGs from kernel in human-readable form, but all
> > those entries were non-standard and specific for Nokia's kernels.
> >
> > Do you have some other idea how to provide ATAGs information created
> > dynamically by legacy closed proprietary bootloader to userspace from DT
> > booted kernel?
> >
> > Anyway, for supporting kexec (with passing ATAGs) it is needed to have
> > working /proc/atags file, right?
>
> Yeah I think that since we already have it in /proc, we should just
> support it. And keep it behind CONFIG_KEXEC and CONFIG_ARM_APPENDED_DTB
> and hope we don't find other users for it.. Then reconsider the Kconfig
> dependencies if we do find other users.
>
> > > It also sets a precedent: by adding this into DT, it is creating a new
> > > DT ABI as well, and we'll end up seeing dts files with an ATAG block
> > > patched into them.
> > >
> > > Are the ATAGs at a fixed address on the N900?
> >
> > Yes, in board-rx51.c is:
> >
> > .atag_offset = 0x100
> >
> > and Nokia Bootloader (proprietary) store them to that address.
> >
> > > Can that be handled in
> > > some kind of legacy file for the N900 which calls save_atags() on it, so
> > > we don't end up introducing yet more stuff that we have to maintain into
> > > the distant future? If not, what about copying a known working atag
> > > structure into a legacy file for the N900?
> >
> > I already asked question if it is possible to read ATAGs from DT booted
> > kernel. And somebody (do not remember who) wrote to ML, that it is not
> > possible and it can be done in that uncompress code.
>
> I guess the other option would be to keep the raw ATAG area reserved,
> and only initialize /proc/atags from a board specific initcall.
> But I think that would complicate the already fragile uncompress
> relocation code even further?
Pali, any news on posting an updated series with the comments addressed
in this thread? It seems that we all pretty much agree what needs to
be done.
Regards,
Tony
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-10-12 20:16 ` Tony Lindgren
@ 2015-10-12 20:25 ` Pali Rohár
2015-10-12 20:45 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-10-12 20:25 UTC (permalink / raw)
To: Tony Lindgren
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
[-- Attachment #1: Type: Text/Plain, Size: 4826 bytes --]
On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> * Tony Lindgren <tony@atomide.com> [150713 06:21]:
> > * Pali Rohár <pali.rohar@gmail.com> [150707 05:00]:
> > > On Tuesday 07 July 2015 12:32:13 Russell King - ARM Linux wrote:
> > > > On Mon, Jul 06, 2015 at 10:26:13PM +0200, Pali Rohár wrote:
> > > > > Legacy bootloaders can pass additional information for kernel
> > > > > or legacy userspace applications. When booting DT kernel
> > > > > then ATAGs structure is not more visible after running
> > > > > kernel uncompress code. This patch stores full ATAGs
> > > > > structure into DT "/chosen/linux,atags" entry, so kernel can
> > > > > later reuse it and export via /proc/atags to userspace.
> > > >
> > > > I think you need to go through your commit messages and improve
> > > > them, especially the ones with "TODO" in them. As long as
> > > > there's still things to be done, they're obviously not ready
> > > > for merging.
> > >
> > > I know, in cover letter email I wrote that documentation is not
> > > ready... I send patches for review and comments (like yours). I
> > > think it is still better to send something and mark it as
> > > incomplete. It could prevent to work on something which will be
> > > again rewritten...
> > >
> > > > Moreover, exporting the ATAGS is questionable, even _if_ there
> > > > are non- kexec programs making use of this. The ATAGs have
> > > > _never_ been exported to userspace when kexec disabled is the
> > > > kernel - it was introduced for kexec, and has always had this:
> > > >
> > > > config ATAGS_PROC
> > > >
> > > > bool "Export atags in procfs"
> > > > depends on ATAGS && KEXEC
> > > > default y
> > > >
> > > > Now, the fact that someone decided to start using it is pretty
> > > > sad, because it means that if you disable KEXEC, userspace
> > > > breaks. That's not a kernel regression in any shape or form,
> > > > because /proc/atags has never been there without KEXEC
> > > > enabled. That's a userspace bug, plain and simple.
> > > >
> > > > Given that, I'm in two minds about whether to accept the last
> > > > two patches which make this more than just "for KEXEC use to
> > > > enable a KEXEC kernel to be booted."
> > > >
> > > > Had it been provided without the KEXEC conditional, then I
> > > > don't have a problem with these two patches.
> > >
> > > I understand it. Nokia originally invented their own entries in
> > > /proc/ which export needed ATAGs from kernel in human-readable
> > > form, but all those entries were non-standard and specific for
> > > Nokia's kernels.
> > >
> > > Do you have some other idea how to provide ATAGs information
> > > created dynamically by legacy closed proprietary bootloader to
> > > userspace from DT booted kernel?
> > >
> > > Anyway, for supporting kexec (with passing ATAGs) it is needed to
> > > have working /proc/atags file, right?
> >
> > Yeah I think that since we already have it in /proc, we should just
> > support it. And keep it behind CONFIG_KEXEC and
> > CONFIG_ARM_APPENDED_DTB and hope we don't find other users for
> > it.. Then reconsider the Kconfig dependencies if we do find other
> > users.
> >
> > > > It also sets a precedent: by adding this into DT, it is
> > > > creating a new DT ABI as well, and we'll end up seeing dts
> > > > files with an ATAG block patched into them.
> > > >
> > > > Are the ATAGs at a fixed address on the N900?
> > >
> > > Yes, in board-rx51.c is:
> > >
> > > .atag_offset = 0x100
> > >
> > > and Nokia Bootloader (proprietary) store them to that address.
> > >
> > > > Can that be handled in
> > > > some kind of legacy file for the N900 which calls save_atags()
> > > > on it, so we don't end up introducing yet more stuff that we
> > > > have to maintain into the distant future? If not, what about
> > > > copying a known working atag structure into a legacy file for
> > > > the N900?
> > >
> > > I already asked question if it is possible to read ATAGs from DT
> > > booted kernel. And somebody (do not remember who) wrote to ML,
> > > that it is not possible and it can be done in that uncompress
> > > code.
> >
> > I guess the other option would be to keep the raw ATAG area
> > reserved, and only initialize /proc/atags from a board specific
> > initcall. But I think that would complicate the already fragile
> > uncompress relocation code even further?
>
> Pali, any news on posting an updated series with the comments
> addressed in this thread? It seems that we all pretty much agree
> what needs to be done.
>
> Regards,
>
> Tony
Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
CONFIG_KEXEC? Or something more?
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-10-12 20:25 ` Pali Rohár
@ 2015-10-12 20:45 ` Tony Lindgren
2015-10-13 14:37 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Tony Lindgren @ 2015-10-12 20:45 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
* Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> >
> > Pali, any news on posting an updated series with the comments
> > addressed in this thread? It seems that we all pretty much agree
> > what needs to be done.
>
> Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
> CONFIG_KEXEC? Or something more?
Well for most part your patches are fine, I think there were some
minor comments on the series.
For the CONFIG_KEXEC dependency, we should just keep the existing
behavior and keep /proc/atags behind CONFIG_KEXEC. That's all
I believe :)
Regards,
Tony
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-10-12 20:45 ` Tony Lindgren
@ 2015-10-13 14:37 ` Pali Rohár
2015-11-05 11:40 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-10-13 14:37 UTC (permalink / raw)
To: Tony Lindgren
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> > On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > >
> > > Pali, any news on posting an updated series with the comments
> > > addressed in this thread? It seems that we all pretty much agree
> > > what needs to be done.
> >
> > Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
> > CONFIG_KEXEC? Or something more?
>
> Well for most part your patches are fine, I think there were some
> minor comments on the series.
>
> For the CONFIG_KEXEC dependency, we should just keep the existing
> behavior and keep /proc/atags behind CONFIG_KEXEC. That's all
> I believe :)
>
> Regards,
>
> Tony
>
>
Ok. I will add CONFIG_KEXEC into atag patches.
And there is missing documentation for these two new DT properties
(marked as TODO in commit messages). Where to put them?
--
Pali Rohár
pali.rohar@gmail.com
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-10-13 14:37 ` Pali Rohár
@ 2015-11-05 11:40 ` Pali Rohár
2015-11-05 16:17 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-11-05 11:40 UTC (permalink / raw)
To: Tony Lindgren
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> > > On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > > >
> > > > Pali, any news on posting an updated series with the comments
> > > > addressed in this thread? It seems that we all pretty much agree
> > > > what needs to be done.
> > >
> > > Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
> > > CONFIG_KEXEC? Or something more?
> >
> > Well for most part your patches are fine, I think there were some
> > minor comments on the series.
> >
> > For the CONFIG_KEXEC dependency, we should just keep the existing
> > behavior and keep /proc/atags behind CONFIG_KEXEC. That's all
> > I believe :)
> >
> > Regards,
> >
> > Tony
> >
> >
>
> Ok. I will add CONFIG_KEXEC into atag patches.
>
> And there is missing documentation for these two new DT properties
> (marked as TODO in commit messages). Where to put them?
>
Tony (or somebody else) ^^^
--
Pali Rohár
pali.rohar@gmail.com
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-05 11:40 ` Pali Rohár
@ 2015-11-05 16:17 ` Tony Lindgren
2015-11-12 1:10 ` Frank Rowand
0 siblings, 1 reply; 68+ messages in thread
From: Tony Lindgren @ 2015-11-05 16:17 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
* Pali Rohár <pali.rohar@gmail.com> [151105 03:41]:
> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> > On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > > * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> > > > On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > > > >
> > > > > Pali, any news on posting an updated series with the comments
> > > > > addressed in this thread? It seems that we all pretty much agree
> > > > > what needs to be done.
> > > >
> > > > Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
> > > > CONFIG_KEXEC? Or something more?
> > >
> > > Well for most part your patches are fine, I think there were some
> > > minor comments on the series.
> > >
> > > For the CONFIG_KEXEC dependency, we should just keep the existing
> > > behavior and keep /proc/atags behind CONFIG_KEXEC. That's all
> > > I believe :)
> > >
> > > Regards,
> > >
> > > Tony
> > >
> > >
> >
> > Ok. I will add CONFIG_KEXEC into atag patches.
> >
> > And there is missing documentation for these two new DT properties
> > (marked as TODO in commit messages). Where to put them?
> >
>
> Tony (or somebody else) ^^^
How about Documentation/devicetree/bindings/arm/atags.txt?
Regards,
Tony
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-05 16:17 ` Tony Lindgren
@ 2015-11-12 1:10 ` Frank Rowand
2015-11-22 6:51 ` Pavel Machek
0 siblings, 1 reply; 68+ messages in thread
From: Frank Rowand @ 2015-11-12 1:10 UTC (permalink / raw)
To: Tony Lindgren, devicetree@vger.kernel.org
Cc: Pali Rohár, Russell King - ARM Linux, Laura Abbott,
Grant Likely, Rob Herring, Will Deacon, Ivaylo Dimitrov,
Sebastian Reichel, Pavel Machek, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
Adding devicetree list.
Thread starts at
http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> * Pali Rohár <pali.rohar@gmail.com> [151105 03:41]:
>> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
>>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
>>>> * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
>>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
>>>>>>
>>>>>> Pali, any news on posting an updated series with the comments
>>>>>> addressed in this thread? It seems that we all pretty much agree
>>>>>> what needs to be done.
I'm not real happy with the concept of patches 4 and 5 in this series.
My concern is that those two patches are using the FDT as a transport
mechanism for a binary blob (the atags object).
Patches 1 and 2 do follow the spirit of atags_to_fdt() since an
atags kernel already may set system_rev from an atag.
-Frank
>>>>>
>>>>> Tony, I'm not really sure what to do. Just wrap 4 and 5 patches into
>>>>> CONFIG_KEXEC? Or something more?
>>>>
>>>> Well for most part your patches are fine, I think there were some
>>>> minor comments on the series.
>>>>
>>>> For the CONFIG_KEXEC dependency, we should just keep the existing
>>>> behavior and keep /proc/atags behind CONFIG_KEXEC. That's all
>>>> I believe :)
>>>>
>>>> Regards,
>>>>
>>>> Tony
>>>>
>>>>
>>>
>>> Ok. I will add CONFIG_KEXEC into atag patches.
>>>
>>> And there is missing documentation for these two new DT properties
>>> (marked as TODO in commit messages). Where to put them?
>>>
>>
>> Tony (or somebody else) ^^^
>
> How about Documentation/devicetree/bindings/arm/atags.txt?
>
> Regards,
>
> Tony
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-12 1:10 ` Frank Rowand
@ 2015-11-22 6:51 ` Pavel Machek
2015-11-23 14:45 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Pavel Machek @ 2015-11-22 6:51 UTC (permalink / raw)
To: Frank Rowand
Cc: Tony Lindgren, devicetree@vger.kernel.org, Pali Rohár,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
> Adding devicetree list.
>
> Thread starts at
> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
>
> On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> > * Pali Rohár <pali.rohar@gmail.com> [151105 03:41]:
> >> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> >>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> >>>> * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> >>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> >>>>>>
> >>>>>> Pali, any news on posting an updated series with the comments
> >>>>>> addressed in this thread? It seems that we all pretty much agree
> >>>>>> what needs to be done.
>
> I'm not real happy with the concept of patches 4 and 5 in this series.
> My concern is that those two patches are using the FDT as a transport
> mechanism for a binary blob (the atags object).
Umm. Ok. Do you have alternative proposal that works for everyone?
I mean. This discussion was going for quite a long time, and it would
be nice to have some solution... patch proposal... something.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-22 6:51 ` Pavel Machek
@ 2015-11-23 14:45 ` Pali Rohár
2015-11-25 18:16 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-11-23 14:45 UTC (permalink / raw)
To: Pavel Machek
Cc: Frank Rowand, Tony Lindgren,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-omap-u79uwXL29TY76Z2rM5mHXA
On Sunday 22 November 2015 07:51:46 Pavel Machek wrote:
> On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
> > Adding devicetree list.
> >
> > Thread starts at
> > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
> >
> > On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> > > * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151105 03:41]:
> > >> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> > >>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > >>>> * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151012 13:29]:
> > >>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > >>>>>>
> > >>>>>> Pali, any news on posting an updated series with the comments
> > >>>>>> addressed in this thread? It seems that we all pretty much agree
> > >>>>>> what needs to be done.
> >
> > I'm not real happy with the concept of patches 4 and 5 in this series.
> > My concern is that those two patches are using the FDT as a transport
> > mechanism for a binary blob (the atags object).
>
> Umm. Ok. Do you have alternative proposal that works for everyone?
>
> I mean. This discussion was going for quite a long time, and it would
> be nice to have some solution... patch proposal... something.
> Pavel
Yes, discussion is going for a long time! So should I spend time for
adding documentation to my solution (this is last one thing which is
missing)? Or my solution is wrong and somebody else will propose new?
I do not want to spend time on something which will be rejected and
discarded.
--
Pali Rohár
pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-23 14:45 ` Pali Rohár
@ 2015-11-25 18:16 ` Tony Lindgren
2015-11-25 19:48 ` Arnd Bergmann
0 siblings, 1 reply; 68+ messages in thread
From: Tony Lindgren @ 2015-11-25 18:16 UTC (permalink / raw)
To: Pali Rohár
Cc: Pavel Machek, Frank Rowand,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-omap-u79uwXL29TY76Z2rM5mHXA
* Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151123 06:46]:
> On Sunday 22 November 2015 07:51:46 Pavel Machek wrote:
> > On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
> > > Adding devicetree list.
> > >
> > > Thread starts at
> > > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
> > >
> > > On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> > > > * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151105 03:41]:
> > > >> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> > > >>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > > >>>> * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151012 13:29]:
> > > >>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > > >>>>>>
> > > >>>>>> Pali, any news on posting an updated series with the comments
> > > >>>>>> addressed in this thread? It seems that we all pretty much agree
> > > >>>>>> what needs to be done.
> > >
> > > I'm not real happy with the concept of patches 4 and 5 in this series.
> > > My concern is that those two patches are using the FDT as a transport
> > > mechanism for a binary blob (the atags object).
> >
> > Umm. Ok. Do you have alternative proposal that works for everyone?
> >
> > I mean. This discussion was going for quite a long time, and it would
> > be nice to have some solution... patch proposal... something.
> > Pavel
>
> Yes, discussion is going for a long time! So should I spend time for
> adding documentation to my solution (this is last one thing which is
> missing)? Or my solution is wrong and somebody else will propose new?
> I do not want to spend time on something which will be rejected and
> discarded.
At least I don't have better solutions in mind.
Regards,
Tony
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 18:16 ` Tony Lindgren
@ 2015-11-25 19:48 ` Arnd Bergmann
2015-11-25 21:03 ` Tony Lindgren
0 siblings, 1 reply; 68+ messages in thread
From: Arnd Bergmann @ 2015-11-25 19:48 UTC (permalink / raw)
To: Tony Lindgren
Cc: Pali Rohár, Pavel Machek, Frank Rowand,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote:
> * Pali Rohár <pali.rohar@gmail.com> [151123 06:46]:
> > On Sunday 22 November 2015 07:51:46 Pavel Machek wrote:
> > > On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
> > > > Adding devicetree list.
> > > >
> > > > Thread starts at
> > > > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
> > > >
> > > > On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> > > > > * Pali Rohár <pali.rohar@gmail.com> [151105 03:41]:
> > > > >> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> > > > >>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > > > >>>> * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
> > > > >>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > > > >>>>>>
> > > > >>>>>> Pali, any news on posting an updated series with the comments
> > > > >>>>>> addressed in this thread? It seems that we all pretty much agree
> > > > >>>>>> what needs to be done.
> > > >
> > > > I'm not real happy with the concept of patches 4 and 5 in this series.
> > > > My concern is that those two patches are using the FDT as a transport
> > > > mechanism for a binary blob (the atags object).
> > >
> > > Umm. Ok. Do you have alternative proposal that works for everyone?
> > >
> > > I mean. This discussion was going for quite a long time, and it would
> > > be nice to have some solution... patch proposal... something.
> > > Pavel
> >
> > Yes, discussion is going for a long time! So should I spend time for
> > adding documentation to my solution (this is last one thing which is
> > missing)? Or my solution is wrong and somebody else will propose new?
> > I do not want to spend time on something which will be rejected and
> > discarded.
>
> At least I don't have better solutions in mind.
I would be happier if we could restrict this as much as possible to the
boards that need it, as an opt-in. That way it doesn't become an ABI
for people that don't already rely in this information. How about
adding a check the code adds the linux,atags property to do it
only for a whitelist of board numbers?
Arnd
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 19:48 ` Arnd Bergmann
@ 2015-11-25 21:03 ` Tony Lindgren
2015-11-25 21:29 ` Arnd Bergmann
2015-11-26 4:19 ` Frank Rowand
0 siblings, 2 replies; 68+ messages in thread
From: Tony Lindgren @ 2015-11-25 21:03 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Pali Rohár, Pavel Machek, Frank Rowand,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-omap-u79uwXL29TY76Z2rM5mHXA
* Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> [151125 11:50]:
> On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote:
> > * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151123 06:46]:
> > > On Sunday 22 November 2015 07:51:46 Pavel Machek wrote:
> > > > On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
> > > > > Adding devicetree list.
> > > > >
> > > > > Thread starts at
> > > > > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
> > > > >
> > > > > On 11/5/2015 8:17 AM, Tony Lindgren wrote:
> > > > > > * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151105 03:41]:
> > > > > >> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
> > > > > >>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
> > > > > >>>> * Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151012 13:29]:
> > > > > >>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
> > > > > >>>>>>
> > > > > >>>>>> Pali, any news on posting an updated series with the comments
> > > > > >>>>>> addressed in this thread? It seems that we all pretty much agree
> > > > > >>>>>> what needs to be done.
> > > > >
> > > > > I'm not real happy with the concept of patches 4 and 5 in this series.
> > > > > My concern is that those two patches are using the FDT as a transport
> > > > > mechanism for a binary blob (the atags object).
> > > >
> > > > Umm. Ok. Do you have alternative proposal that works for everyone?
> > > >
> > > > I mean. This discussion was going for quite a long time, and it would
> > > > be nice to have some solution... patch proposal... something.
> > > > Pavel
> > >
> > > Yes, discussion is going for a long time! So should I spend time for
> > > adding documentation to my solution (this is last one thing which is
> > > missing)? Or my solution is wrong and somebody else will propose new?
> > > I do not want to spend time on something which will be rejected and
> > > discarded.
> >
> > At least I don't have better solutions in mind.
>
> I would be happier if we could restrict this as much as possible to the
> boards that need it, as an opt-in. That way it doesn't become an ABI
> for people that don't already rely in this information. How about
> adding a check the code adds the linux,atags property to do it
> only for a whitelist of board numbers?
Or populate /proc/atags only for the ones that need it from machine
specific init_early?
Regards,
Tony
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 21:03 ` Tony Lindgren
@ 2015-11-25 21:29 ` Arnd Bergmann
2015-11-25 21:44 ` Pali Rohár
2015-11-26 4:19 ` Frank Rowand
1 sibling, 1 reply; 68+ messages in thread
From: Arnd Bergmann @ 2015-11-25 21:29 UTC (permalink / raw)
To: Tony Lindgren
Cc: Pali Rohár, Pavel Machek, Frank Rowand,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On Wednesday 25 November 2015 13:03:10 Tony Lindgren wrote:
> * Arnd Bergmann <arnd@arndb.de> [151125 11:50]:
> > On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote:
> > > At least I don't have better solutions in mind.
> >
> > I would be happier if we could restrict this as much as possible to the
> > boards that need it, as an opt-in. That way it doesn't become an ABI
> > for people that don't already rely in this information. How about
> > adding a check the code adds the linux,atags property to do it
> > only for a whitelist of board numbers?
>
> Or populate /proc/atags only for the ones that need it from machine
> specific init_early?
That would also address my main concern about /proc/atags, but still
leave the atags in /proc/device-tree/chosen/linux,atags, and it would
be bad if someone who currently uses /proc/atags changes their code
to use the other file instead of finding a proper solution.
Arnd
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 21:29 ` Arnd Bergmann
@ 2015-11-25 21:44 ` Pali Rohár
2015-11-25 21:51 ` Arnd Bergmann
0 siblings, 1 reply; 68+ messages in thread
From: Pali Rohár @ 2015-11-25 21:44 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Tony Lindgren, Pavel Machek, Frank Rowand,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-omap-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: Text/Plain, Size: 1451 bytes --]
On Wednesday 25 November 2015 22:29:53 Arnd Bergmann wrote:
> On Wednesday 25 November 2015 13:03:10 Tony Lindgren wrote:
> > * Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org> [151125 11:50]:
> > > On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote:
> > > > At least I don't have better solutions in mind.
> > >
> > > I would be happier if we could restrict this as much as possible
> > > to the boards that need it, as an opt-in. That way it doesn't
> > > become an ABI for people that don't already rely in this
> > > information. How about adding a check the code adds the
> > > linux,atags property to do it only for a whitelist of board
> > > numbers?
> >
> > Or populate /proc/atags only for the ones that need it from machine
> > specific init_early?
>
> That would also address my main concern about /proc/atags, but still
> leave the atags in /proc/device-tree/chosen/linux,atags, and it would
> be bad if someone who currently uses /proc/atags changes their code
> to use the other file instead of finding a proper solution.
>
> Arnd
Arnd, my question about proper solution reminds... Proprietary
bootloader which cannot be replaced (e.g. it is signed or do unknown
magic) provides information to booted kernel via custom specific ATAGs
fields. How userspace could properly read those custom information from
bootloader?
--
Pali Rohár
pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 21:44 ` Pali Rohár
@ 2015-11-25 21:51 ` Arnd Bergmann
2015-11-25 22:00 ` Pali Rohár
0 siblings, 1 reply; 68+ messages in thread
From: Arnd Bergmann @ 2015-11-25 21:51 UTC (permalink / raw)
To: Pali Rohár
Cc: Tony Lindgren, Pavel Machek, Frank Rowand,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On Wednesday 25 November 2015 22:44:28 Pali Rohár wrote:
>
> Arnd, my question about proper solution reminds... Proprietary
> bootloader which cannot be replaced (e.g. it is signed or do unknown
> magic) provides information to booted kernel via custom specific ATAGs
> fields. How userspace could properly read those custom information from
> bootloader?
The typical solution for nonstandard bootloaders is to have a boot wrapper
like the one from https://github.com/zonque/pxa-impedance-matcher that
translates whatever information we have at the bootloader level into
DT properties.
As I understand, the reason we are not doing that here is that we also
have proprietary user space that we can't fix to look in a different
place, i.e. the interface is between the bootloader and some user
binary, not bootloader to kernel.
Arnd
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 21:51 ` Arnd Bergmann
@ 2015-11-25 22:00 ` Pali Rohár
0 siblings, 0 replies; 68+ messages in thread
From: Pali Rohár @ 2015-11-25 22:00 UTC (permalink / raw)
To: Arnd Bergmann
Cc: Tony Lindgren, Pavel Machek, Frank Rowand,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
[-- Attachment #1: Type: Text/Plain, Size: 1541 bytes --]
On Wednesday 25 November 2015 22:51:00 Arnd Bergmann wrote:
> On Wednesday 25 November 2015 22:44:28 Pali Rohár wrote:
> > Arnd, my question about proper solution reminds... Proprietary
> > bootloader which cannot be replaced (e.g. it is signed or do
> > unknown magic) provides information to booted kernel via custom
> > specific ATAGs fields. How userspace could properly read those
> > custom information from bootloader?
>
> The typical solution for nonstandard bootloaders is to have a boot
> wrapper like the one from
> https://github.com/zonque/pxa-impedance-matcher that translates
> whatever information we have at the bootloader level into DT
> properties.
>
Ok. So there is no better solution. With some hacks we can use U-Boot as
3rd stage bootloader. But this is not useful for debugging or
developing...
Ideal "wrapper" solution would be to compile wrapper and linux zImage
and then glue them together to one binary. Something like internal linux
uncompress code which translate atags to dt.
> As I understand, the reason we are not doing that here is that we
> also have proprietary user space that we can't fix to look in a
> different place, i.e. the interface is between the bootloader and
> some user binary, not bootloader to kernel.
>
Yes, proprietary/closed applications are problems which we cannot fix
(without rewriting them).
New applications could use new "proper" interface. But without that
interface we cannot do that.
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-25 21:03 ` Tony Lindgren
2015-11-25 21:29 ` Arnd Bergmann
@ 2015-11-26 4:19 ` Frank Rowand
2015-11-26 9:07 ` Pali Rohár
1 sibling, 1 reply; 68+ messages in thread
From: Frank Rowand @ 2015-11-26 4:19 UTC (permalink / raw)
To: Tony Lindgren
Cc: Arnd Bergmann, Pali Rohár, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On 11/25/2015 1:03 PM, Tony Lindgren wrote:
> * Arnd Bergmann <arnd@arndb.de> [151125 11:50]:
>> On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote:
>>> * Pali Rohár <pali.rohar@gmail.com> [151123 06:46]:
>>>> On Sunday 22 November 2015 07:51:46 Pavel Machek wrote:
>>>>> On Wed 2015-11-11 17:10:46, Frank Rowand wrote:
>>>>>> Adding devicetree list.
>>>>>>
>>>>>> Thread starts at
>>>>>> http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/354459.html
>>>>>>
>>>>>> On 11/5/2015 8:17 AM, Tony Lindgren wrote:
>>>>>>> * Pali Rohár <pali.rohar@gmail.com> [151105 03:41]:
>>>>>>>> On Tuesday 13 October 2015 16:37:46 Pali Rohár wrote:
>>>>>>>>> On Monday 12 October 2015 13:45:09 Tony Lindgren wrote:
>>>>>>>>>> * Pali Rohár <pali.rohar@gmail.com> [151012 13:29]:
>>>>>>>>>>> On Monday 12 October 2015 22:16:40 Tony Lindgren wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> Pali, any news on posting an updated series with the comments
>>>>>>>>>>>> addressed in this thread? It seems that we all pretty much agree
>>>>>>>>>>>> what needs to be done.
>>>>>>
>>>>>> I'm not real happy with the concept of patches 4 and 5 in this series.
>>>>>> My concern is that those two patches are using the FDT as a transport
>>>>>> mechanism for a binary blob (the atags object).
>>>>>
>>>>> Umm. Ok. Do you have alternative proposal that works for everyone?
>>>>>
>>>>> I mean. This discussion was going for quite a long time, and it would
>>>>> be nice to have some solution... patch proposal... something.
>>>>> Pavel
>>>>
>>>> Yes, discussion is going for a long time! So should I spend time for
>>>> adding documentation to my solution (this is last one thing which is
>>>> missing)? Or my solution is wrong and somebody else will propose new?
>>>> I do not want to spend time on something which will be rejected and
>>>> discarded.
>>>
>>> At least I don't have better solutions in mind.
>>
>> I would be happier if we could restrict this as much as possible to the
>> boards that need it, as an opt-in. That way it doesn't become an ABI
The feature (in whatever form it takes) should be definitely be highly
restricted and marked as deprecated.
>> for people that don't already rely in this information. How about
>> adding a check the code adds the linux,atags property to do it
>> only for a whitelist of board numbers?
>
> Or populate /proc/atags only for the ones that need it from machine
> specific init_early?
This is circling back to the first comment from Russell King where
he suggested a legacy file for the N900 which calls save_atags():
Are the ATAGs at a fixed address on the N900? Can that be handled in
some kind of legacy file for the N900 which calls save_atags() on it, so
we don't end up introducing yet more stuff that we have to maintain into
the distant future? If not, what about copying a known working atag
structure into a legacy file for the N900?
It seems to me that patches 1, 2, 4, and 5 could be replaced by this
approach.
Regards,
Frank
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-26 4:19 ` Frank Rowand
@ 2015-11-26 9:07 ` Pali Rohár
2015-11-26 20:39 ` Tony Lindgren
2015-11-27 13:27 ` Russell King - ARM Linux
0 siblings, 2 replies; 68+ messages in thread
From: Pali Rohár @ 2015-11-26 9:07 UTC (permalink / raw)
To: Frank Rowand
Cc: Tony Lindgren, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On Wednesday 25 November 2015 20:19:21 Frank Rowand wrote:
> > Or populate /proc/atags only for the ones that need it from machine
> > specific init_early?
>
> This is circling back to the first comment from Russell King where
> he suggested a legacy file for the N900 which calls save_atags():
>
> Are the ATAGs at a fixed address on the N900? Can that be handled in
> some kind of legacy file for the N900 which calls save_atags() on it, so
> we don't end up introducing yet more stuff that we have to maintain into
> the distant future? If not, what about copying a known working atag
> structure into a legacy file for the N900?
>
> It seems to me that patches 1, 2, 4, and 5 could be replaced by this
> approach.
Hi Frank, in this case I will ask my question again: It is possible to
read atags from that legacy file. And if yes how? I was not thinking
about this approach because somebody in past wrote that this is not
possible...
--
Pali Rohár
pali.rohar@gmail.com
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-26 9:07 ` Pali Rohár
@ 2015-11-26 20:39 ` Tony Lindgren
2015-11-26 21:12 ` Ivaylo Dimitrov
2015-11-27 8:38 ` Pali Rohár
2015-11-27 13:27 ` Russell King - ARM Linux
1 sibling, 2 replies; 68+ messages in thread
From: Tony Lindgren @ 2015-11-26 20:39 UTC (permalink / raw)
To: Pali Rohár
Cc: Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-omap-u79uwXL29TY76Z2rM5mHXA
* Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> [151126 01:08]:
> On Wednesday 25 November 2015 20:19:21 Frank Rowand wrote:
> > > Or populate /proc/atags only for the ones that need it from machine
> > > specific init_early?
> >
> > This is circling back to the first comment from Russell King where
> > he suggested a legacy file for the N900 which calls save_atags():
> >
> > Are the ATAGs at a fixed address on the N900? Can that be handled in
> > some kind of legacy file for the N900 which calls save_atags() on it, so
> > we don't end up introducing yet more stuff that we have to maintain into
> > the distant future? If not, what about copying a known working atag
> > structure into a legacy file for the N900?
> >
> > It seems to me that patches 1, 2, 4, and 5 could be replaced by this
> > approach.
>
> Hi Frank, in this case I will ask my question again: It is possible to
> read atags from that legacy file. And if yes how? I was not thinking
> about this approach because somebody in past wrote that this is not
> possible...
Just to explore options.. How about make a minimal device driver that
just loads the atags blob from /lib/firmware and then shows it in
/proc/atags? Of course some checking on the atags should be done by
the driver..
That would work as long as the kernel no longer needs it.
Regards,
Tony
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-26 20:39 ` Tony Lindgren
@ 2015-11-26 21:12 ` Ivaylo Dimitrov
2015-11-27 8:38 ` Pali Rohár
1 sibling, 0 replies; 68+ messages in thread
From: Ivaylo Dimitrov @ 2015-11-26 21:12 UTC (permalink / raw)
To: Tony Lindgren, Pali Rohár
Cc: Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Sebastian Reichel, Andreas Färber, linux-arm-kernel,
linux-kernel, linux-omap
On 26.11.2015 22:39, Tony Lindgren wrote:
> Just to explore options.. How about make a minimal device driver that
> just loads the atags blob from /lib/firmware and then shows it in
> /proc/atags? Of course some checking on the atags should be done by
> the driver..
>
What is the chance for such a driver to be accepted upstream? As IIRC
the current situation is because similar driver was rejected. Might be
wrong as well, it was about 2-3 years ago.
Regards,
Ivo
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-26 20:39 ` Tony Lindgren
2015-11-26 21:12 ` Ivaylo Dimitrov
@ 2015-11-27 8:38 ` Pali Rohár
2015-11-27 8:44 ` Michael Trimarchi
2015-11-27 14:51 ` Tony Lindgren
1 sibling, 2 replies; 68+ messages in thread
From: Pali Rohár @ 2015-11-27 8:38 UTC (permalink / raw)
To: Tony Lindgren
Cc: Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
On Thursday 26 November 2015 12:39:30 Tony Lindgren wrote:
> Just to explore options.. How about make a minimal device driver that
> just loads the atags blob from /lib/firmware and then shows it in
> /proc/atags? Of course some checking on the atags should be done by
> the driver..
And who can dynamically create that blob file in /lib/firmware? If
kernel does not export those atags (somehow) from bootloader, then
userspace is not able to create that blob... cyclic problem.
So no, problem is that bootloader provides via custom atags dynamic
information like: boot reason (how was device started, by rtc alarm? by
reboot? by usb charger? by power button?), boot mode (should be enter
into firmware update mode?, is this normal boot mode?), ... and those
information are needed for some proprietary software (e.g. firmware
upgrade/flash) but also by any other open source applications (based on
usb charger we enter different runlevel -- for just only charging
device).
--
Pali Rohár
pali.rohar@gmail.com
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-27 8:38 ` Pali Rohár
@ 2015-11-27 8:44 ` Michael Trimarchi
2015-11-27 8:52 ` Michael Trimarchi
2015-11-27 14:51 ` Tony Lindgren
1 sibling, 1 reply; 68+ messages in thread
From: Michael Trimarchi @ 2015-11-27 8:44 UTC (permalink / raw)
To: Pali Rohár
Cc: Tony Lindgren, Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Russell King - ARM Linux, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber, linux-arm-kernel, LKML,
Linux OMAP Mailing List
Hi
On Fri, Nov 27, 2015 at 9:38 AM, Pali Rohár <pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On Thursday 26 November 2015 12:39:30 Tony Lindgren wrote:
>> Just to explore options.. How about make a minimal device driver that
>> just loads the atags blob from /lib/firmware and then shows it in
>> /proc/atags? Of course some checking on the atags should be done by
>> the driver..
>
> And who can dynamically create that blob file in /lib/firmware? If
> kernel does not export those atags (somehow) from bootloader, then
> userspace is not able to create that blob... cyclic problem.
>
Are those atags from bootloader fix or they change device by device. If they
are fixed they can be included in some firmware and get from the disk.
Michael
> So no, problem is that bootloader provides via custom atags dynamic
> information like: boot reason (how was device started, by rtc alarm? by
> reboot? by usb charger? by power button?), boot mode (should be enter
> into firmware update mode?, is this normal boot mode?), ... and those
> information are needed for some proprietary software (e.g. firmware
> upgrade/flash) but also by any other open source applications (based on
> usb charger we enter different runlevel -- for just only charging
> device).
>
> --
> Pali Rohár
> pali.rohar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-27 8:44 ` Michael Trimarchi
@ 2015-11-27 8:52 ` Michael Trimarchi
0 siblings, 0 replies; 68+ messages in thread
From: Michael Trimarchi @ 2015-11-27 8:52 UTC (permalink / raw)
To: Pali Rohár
Cc: Tony Lindgren, Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, LKML, Linux OMAP Mailing List
Hi
On Fri, Nov 27, 2015 at 9:44 AM, Michael Trimarchi
<michael@amarulasolutions.com> wrote:
> Hi
>
> On Fri, Nov 27, 2015 at 9:38 AM, Pali Rohár <pali.rohar@gmail.com> wrote:
>> On Thursday 26 November 2015 12:39:30 Tony Lindgren wrote:
>>> Just to explore options.. How about make a minimal device driver that
>>> just loads the atags blob from /lib/firmware and then shows it in
>>> /proc/atags? Of course some checking on the atags should be done by
>>> the driver..
>>
>> And who can dynamically create that blob file in /lib/firmware? If
>> kernel does not export those atags (somehow) from bootloader, then
>> userspace is not able to create that blob... cyclic problem.
>>
>
> Are those atags from bootloader fix or they change device by device. If they
> are fixed they can be included in some firmware and get from the disk.
>
Sorry, miss the second part of email ;)
Michael
> Michael
>
>> So no, problem is that bootloader provides via custom atags dynamic
>> information like: boot reason (how was device started, by rtc alarm? by
>> reboot? by usb charger? by power button?), boot mode (should be enter
>> into firmware update mode?, is this normal boot mode?), ... and those
>> information are needed for some proprietary software (e.g. firmware
>> upgrade/flash) but also by any other open source applications (based on
>> usb charger we enter different runlevel -- for just only charging
>> device).
>>
>> --
>> Pali Rohár
>> pali.rohar@gmail.com
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
| Michael Nazzareno Trimarchi Amarula Solutions BV |
| COO - Founder Cruquiuskade 47 |
| +31(0)851119172 Amsterdam 1018 AM NL |
| [`as] http://www.amarulasolutions.com |
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-27 8:38 ` Pali Rohár
2015-11-27 8:44 ` Michael Trimarchi
@ 2015-11-27 14:51 ` Tony Lindgren
1 sibling, 0 replies; 68+ messages in thread
From: Tony Lindgren @ 2015-11-27 14:51 UTC (permalink / raw)
To: Pali Rohár
Cc: Frank Rowand, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Russell King - ARM Linux,
Laura Abbott, Grant Likely, Rob Herring, Will Deacon,
Ivaylo Dimitrov, Sebastian Reichel, Andreas Färber,
linux-arm-kernel, linux-kernel, linux-omap
* Pali Rohár <pali.rohar@gmail.com> [151127 00:39]:
> On Thursday 26 November 2015 12:39:30 Tony Lindgren wrote:
> > Just to explore options.. How about make a minimal device driver that
> > just loads the atags blob from /lib/firmware and then shows it in
> > /proc/atags? Of course some checking on the atags should be done by
> > the driver..
>
> And who can dynamically create that blob file in /lib/firmware? If
> kernel does not export those atags (somehow) from bootloader, then
> userspace is not able to create that blob... cyclic problem.
>
> So no, problem is that bootloader provides via custom atags dynamic
> information like: boot reason (how was device started, by rtc alarm? by
> reboot? by usb charger? by power button?), boot mode (should be enter
> into firmware update mode?, is this normal boot mode?), ... and those
> information are needed for some proprietary software (e.g. firmware
> upgrade/flash) but also by any other open source applications (based on
> usb charger we enter different runlevel -- for just only charging
> device).
OK if the ATAGs are not static then naturally we can't create the blobs
then.
Regards,
Tony
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry
2015-11-26 9:07 ` Pali Rohár
2015-11-26 20:39 ` Tony Lindgren
@ 2015-11-27 13:27 ` Russell King - ARM Linux
[not found] ` <20151127132722.GA30871-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
1 sibling, 1 reply; 68+ messages in thread
From: Russell King - ARM Linux @ 2015-11-27 13:27 UTC (permalink / raw)
To: Pali Rohár
Cc: Frank Rowand, Tony Lindgren, Arnd Bergmann, Pavel Machek,
devicetree@vger.kernel.org, Laura Abbott, Grant Likely,
Rob Herring, Will Deacon, Ivaylo Dimitrov, Sebastian Reichel,
Andreas Färber, linux-arm-kernel, linux-kernel, linux-omap
On Thu, Nov 26, 2015 at 10:07:39AM +0100, Pali Rohár wrote:
> On Wednesday 25 November 2015 20:19:21 Frank Rowand wrote:
> > > Or populate /proc/atags only for the ones that need it from machine
> > > specific init_early?
> >
> > This is circling back to the first comment from Russell King where
> > he suggested a legacy file for the N900 which calls save_atags():
> >
> > Are the ATAGs at a fixed address on the N900? Can that be handled in
> > some kind of legacy file for the N900 which calls save_atags() on it, so
> > we don't end up introducing yet more stuff that we have to maintain into
> > the distant future? If not, what about copying a known working atag
> > structure into a legacy file for the N900?
> >
> > It seems to me that patches 1, 2, 4, and 5 could be replaced by this
> > approach.
>
> Hi Frank, in this case I will ask my question again: It is possible to
> read atags from that legacy file. And if yes how? I was not thinking
> about this approach because somebody in past wrote that this is not
> possible...
It is possible to redirect any program to open any other file. You can
do it via a LD preload, and intercepting the open(), and possibly the
read() calls if you want to do something more fancy. The down-side is
that you have to arrange for the preloaded object to be used by the
linker, and the additional overhead it places on the intercepted
functions.
Eg,
openatags.c:
#define open libc_open
#include <fcntl.h>
#undef open
#include <string.h>
int open(const char *pathname, int flags, mode_t mode)
{
static int (*old_open)(const char *pathname, int flags, mode_t mode);
if (strcmp(pathname, "/proc/atags") == 0)
pathname = "/tmp/my-atags";
if (!old_open)
old_open = dlsym(RTLD_NEXT, "open");
return old_open(pathname, flags, mode);
}
Build the above (untested) with:
gcc -O2 -o openatags.o -c openatags.c
gcc -shared -o openatags.so openatags.o -ldl
Now, when running one of these programs, you can test it with:
LD_PRELOAD=openatags.so /name/of/program
You could also list the full pathname to openatags.so in /etc/ld.so.preload,
but test it first, because it will always be used by the linker in that
case, and you wouldn't want normal commands to misbehave.
Note that putting it in /etc/ld.so.preload will also have the effect that
cat /proc/atags will also get redirected to /tmp/my-atags too.
--
FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up
according to speedtest.net.
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 0/5] ATAGs to DT patches
2015-07-06 20:26 [PATCH 0/5] ATAGs to DT patches Pali Rohár
` (4 preceding siblings ...)
2015-07-06 20:26 ` [PATCH 5/5] arm: boot: store ATAGs structure into " Pali Rohár
@ 2015-11-28 4:06 ` Frank Rowand
2015-11-28 5:55 ` Frank Rowand
5 siblings, 1 reply; 68+ messages in thread
From: Frank Rowand @ 2015-11-28 4:06 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber, linux-omap, linux-kernel,
linux-arm-kernel
On 7/6/2015 1:26 PM, Pali Rohár wrote:
> This patch series converts some legacy ATAGs into DT and provide them to
> userspace. It is needed for userspace applications which needs some
> informations from legacy bootloaders which are not DT compatible.
>
> Patch series is for now without DT documentation files. It was tested in
> QEMU for Nokia N900. File /proc/cpuinfo contains correct "Revision" line
> from ATAG_REVISION and /proc/atags contains full ATAGs structure.
Pali,
Is this needed just for the N900, or are there other devices that need it?
If so, which devices?
Thanks,
Frank
^ permalink raw reply [flat|nested] 68+ messages in thread
* Re: [PATCH 0/5] ATAGs to DT patches
2015-11-28 4:06 ` [PATCH 0/5] ATAGs to DT patches Frank Rowand
@ 2015-11-28 5:55 ` Frank Rowand
0 siblings, 0 replies; 68+ messages in thread
From: Frank Rowand @ 2015-11-28 5:55 UTC (permalink / raw)
To: Pali Rohár
Cc: Russell King, Laura Abbott, Grant Likely, Rob Herring,
Will Deacon, Ivaylo Dimitrov, Sebastian Reichel, Pavel Machek,
Tony Lindgren, Andreas Färber, linux-omap, linux-kernel,
linux-arm-kernel
On 11/27/2015 8:06 PM, Frank Rowand wrote:
> On 7/6/2015 1:26 PM, Pali Rohár wrote:
>> This patch series converts some legacy ATAGs into DT and provide them to
>> userspace. It is needed for userspace applications which needs some
>> informations from legacy bootloaders which are not DT compatible.
>>
>> Patch series is for now without DT documentation files. It was tested in
>> QEMU for Nokia N900. File /proc/cpuinfo contains correct "Revision" line
>> from ATAG_REVISION and /proc/atags contains full ATAGs structure.
>
> Pali,
>
> Is this needed just for the N900, or are there other devices that need it?
> If so, which devices?
Nevermind... I've re-read the earlier threads.
-Frank
^ permalink raw reply [flat|nested] 68+ messages in thread