* [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h
@ 2012-08-16 0:53 York Sun
2012-08-17 17:54 ` Kumar Gala
0 siblings, 1 reply; 5+ messages in thread
From: York Sun @ 2012-08-16 0:53 UTC (permalink / raw)
To: u-boot
Before proper environment is setup, we extract hwconfig and put it into a
buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to
accommodate longer string. Since this macro is used in multiple files, we
move it into hwconfig.h.
Signed-off-by: York Sun <yorksun@freescale.com>
---
arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 --
arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 2 --
arch/powerpc/cpu/mpc8xxx/ddr/options.c | 1 -
include/hwconfig.h | 2 ++
4 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c
index c13c45f..2397547 100644
--- a/arch/powerpc/cpu/mpc85xx/cpu_init.c
+++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c
@@ -56,8 +56,6 @@
#include "../../../../drivers/block/fsl_sata.h"
-#define HWCONFIG_BUFFER_SIZE 128
-
DECLARE_GLOBAL_DATA_PTR;
#ifdef CONFIG_SECURE_BOOT
diff --git a/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c b/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
index 9300e7f..69399aa 100644
--- a/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
+++ b/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
@@ -46,8 +46,6 @@
static u32 serdes_prtcl_map;
-#define HWCONFIG_BUFFER_SIZE 128
-
#ifdef DEBUG
static const char *serdes_prtcl_str[] = {
[NONE] = "NA",
diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/options.c b/arch/powerpc/cpu/mpc8xxx/ddr/options.c
index 00ec57b..24c8a51 100644
--- a/arch/powerpc/cpu/mpc8xxx/ddr/options.c
+++ b/arch/powerpc/cpu/mpc8xxx/ddr/options.c
@@ -19,7 +19,6 @@
* This is pretty fragile on both the use of stack and if the buffer is big
* enough. However we will get a warning from getenv_f for the later.
*/
-#define HWCONFIG_BUFFER_SIZE 128
/* Board-specific functions defined in each board's ddr.c */
extern void fsl_ddr_board_options(memctl_options_t *popts,
diff --git a/include/hwconfig.h b/include/hwconfig.h
index a037ed8..64861c4 100644
--- a/include/hwconfig.h
+++ b/include/hwconfig.h
@@ -18,6 +18,8 @@
#include <linux/types.h>
#include <asm/errno.h>
+#define HWCONFIG_BUFFER_SIZE 256
+
#ifdef CONFIG_HWCONFIG
extern int hwconfig_f(const char *opt, char *buf);
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h
2012-08-16 0:53 [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h York Sun
@ 2012-08-17 17:54 ` Kumar Gala
2012-08-17 18:00 ` York Sun
0 siblings, 1 reply; 5+ messages in thread
From: Kumar Gala @ 2012-08-17 17:54 UTC (permalink / raw)
To: u-boot
On Aug 15, 2012, at 7:53 PM, York Sun wrote:
> Before proper environment is setup, we extract hwconfig and put it into a
> buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to
> accommodate longer string. Since this macro is used in multiple files, we
> move it into hwconfig.h.
>
> Signed-off-by: York Sun <yorksun@freescale.com>
> ---
>
> arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 --
> arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 2 --
> arch/powerpc/cpu/mpc8xxx/ddr/options.c | 1 -
> include/hwconfig.h | 2 ++
> 4 files changed, 2 insertions(+), 5 deletions(-)
1. I don't think HWCONFIG_BUFFER_SIZE should be getting set in include/hwconfig.h, this is unique to FSL 8xxx usage not to hwconfig
2. if you are doing to something like this it should be:
#ifndef CONFIG_HWCONFIG_BUFFER_SIZE
#define CONFIG_HWCONFIG_BUFFER_SIZE 128
#endif
This allowing a board port to set it as needed.
- k
>
> diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c
> index c13c45f..2397547 100644
> --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c
> +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c
> @@ -56,8 +56,6 @@
>
> #include "../../../../drivers/block/fsl_sata.h"
>
> -#define HWCONFIG_BUFFER_SIZE 128
> -
> DECLARE_GLOBAL_DATA_PTR;
>
> #ifdef CONFIG_SECURE_BOOT
> diff --git a/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c b/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
> index 9300e7f..69399aa 100644
> --- a/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
> +++ b/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
> @@ -46,8 +46,6 @@
>
> static u32 serdes_prtcl_map;
>
> -#define HWCONFIG_BUFFER_SIZE 128
> -
> #ifdef DEBUG
> static const char *serdes_prtcl_str[] = {
> [NONE] = "NA",
> diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/options.c b/arch/powerpc/cpu/mpc8xxx/ddr/options.c
> index 00ec57b..24c8a51 100644
> --- a/arch/powerpc/cpu/mpc8xxx/ddr/options.c
> +++ b/arch/powerpc/cpu/mpc8xxx/ddr/options.c
> @@ -19,7 +19,6 @@
> * This is pretty fragile on both the use of stack and if the buffer is big
> * enough. However we will get a warning from getenv_f for the later.
> */
> -#define HWCONFIG_BUFFER_SIZE 128
>
> /* Board-specific functions defined in each board's ddr.c */
> extern void fsl_ddr_board_options(memctl_options_t *popts,
> diff --git a/include/hwconfig.h b/include/hwconfig.h
> index a037ed8..64861c4 100644
> --- a/include/hwconfig.h
> +++ b/include/hwconfig.h
> @@ -18,6 +18,8 @@
> #include <linux/types.h>
> #include <asm/errno.h>
>
> +#define HWCONFIG_BUFFER_SIZE 256
> +
> #ifdef CONFIG_HWCONFIG
>
> extern int hwconfig_f(const char *opt, char *buf);
> --
> 1.7.0.4
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h
2012-08-17 17:54 ` Kumar Gala
@ 2012-08-17 18:00 ` York Sun
2012-09-02 12:43 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: York Sun @ 2012-08-17 18:00 UTC (permalink / raw)
To: u-boot
On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote:
> On Aug 15, 2012, at 7:53 PM, York Sun wrote:
>
> > Before proper environment is setup, we extract hwconfig and put it into a
> > buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to
> > accommodate longer string. Since this macro is used in multiple files, we
> > move it into hwconfig.h.
> >
> > Signed-off-by: York Sun <yorksun@freescale.com>
> > ---
> >
> > arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 --
> > arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 2 --
> > arch/powerpc/cpu/mpc8xxx/ddr/options.c | 1 -
> > include/hwconfig.h | 2 ++
> > 4 files changed, 2 insertions(+), 5 deletions(-)
>
> 1. I don't think HWCONFIG_BUFFER_SIZE should be getting set in include/hwconfig.h, this is unique to FSL 8xxx usage not to hwconfig
If no one else uses this feature, I can move it to
arch/powerpc/include/asm/config.h. How about that?
> 2. if you are doing to something like this it should be:
>
> #ifndef CONFIG_HWCONFIG_BUFFER_SIZE
> #define CONFIG_HWCONFIG_BUFFER_SIZE 128
> #endif
>
> This allowing a board port to set it as needed.
>
This is a good idea. Will do.
York
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h
2012-08-17 18:00 ` York Sun
@ 2012-09-02 12:43 ` Wolfgang Denk
2012-09-04 16:16 ` York Sun
0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2012-09-02 12:43 UTC (permalink / raw)
To: u-boot
Dear York Sun,
In message <1345226412.6510.38.camel@oslab-l1> you wrote:
> On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote:
> > On Aug 15, 2012, at 7:53 PM, York Sun wrote:
> >
> > > Before proper environment is setup, we extract hwconfig and put it into a
> > > buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to
> > > accommodate longer string. Since this macro is used in multiple files, we
> > > move it into hwconfig.h.
> > >
> > > Signed-off-by: York Sun <yorksun@freescale.com>
> > > ---
> > >
> > > arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 --
> > > arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 2 --
> > > arch/powerpc/cpu/mpc8xxx/ddr/options.c | 1 -
> > > include/hwconfig.h | 2 ++
> > > 4 files changed, 2 insertions(+), 5 deletions(-)
> >
> > 1. I don't think HWCONFIG_BUFFER_SIZE should be getting set in include/hwconfig.h, this is unique to FSL 8xxx usage not to hwconfig
>
> If no one else uses this feature, I can move it to
> arch/powerpc/include/asm/config.h. How about that?
I cannot see in which way arch/powerpc/include/asm/config.h would be
more FSL 8xxx specific ?
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The average woman would rather have beauty than brains, because the
average man can see better than he can think.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h
2012-09-02 12:43 ` Wolfgang Denk
@ 2012-09-04 16:16 ` York Sun
0 siblings, 0 replies; 5+ messages in thread
From: York Sun @ 2012-09-04 16:16 UTC (permalink / raw)
To: u-boot
On 09/02/2012 05:43 AM, Wolfgang Denk wrote:
> Dear York Sun,
>
> In message <1345226412.6510.38.camel@oslab-l1> you wrote:
>> On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote:
>>> On Aug 15, 2012, at 7:53 PM, York Sun wrote:
>>>
>>>> Before proper environment is setup, we extract hwconfig and put it into a
>>>> buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to
>>>> accommodate longer string. Since this macro is used in multiple files, we
>>>> move it into hwconfig.h.
>>>>
>>>> Signed-off-by: York Sun <yorksun@freescale.com>
>>>> ---
>>>>
>>>> arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 --
>>>> arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 2 --
>>>> arch/powerpc/cpu/mpc8xxx/ddr/options.c | 1 -
>>>> include/hwconfig.h | 2 ++
>>>> 4 files changed, 2 insertions(+), 5 deletions(-)
>>>
>>> 1. I don't think HWCONFIG_BUFFER_SIZE should be getting set in include/hwconfig.h, this is unique to FSL 8xxx usage not to hwconfig
>>
>> If no one else uses this feature, I can move it to
>> arch/powerpc/include/asm/config.h. How about that?
>
> I cannot see in which way arch/powerpc/include/asm/config.h would be
> more FSL 8xxx specific ?
>
I can put it within
#if defined(CONFIG_MPC85xx) || \
defined(CONFIG_MPC83xx) || \
defined(CONFIG_MPC86xx)
#ednif
How about that?
York
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-09-04 16:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-16 0:53 [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h York Sun
2012-08-17 17:54 ` Kumar Gala
2012-08-17 18:00 ` York Sun
2012-09-02 12:43 ` Wolfgang Denk
2012-09-04 16:16 ` York Sun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox