linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c
@ 2010-12-09  9:38 Guan Xuetao
  2010-12-09  9:38 ` Guan Xuetao
  2010-12-09 18:33 ` Miguel Ojeda
  0 siblings, 2 replies; 4+ messages in thread
From: Guan Xuetao @ 2010-12-09  9:38 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: linux-arch, linux-kernel

From: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>

	decompress_kernel call wrapper in c function

Signed-off-by: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>
---
 arch/unicore32/boot/compressed/misc.c |  143
+++++++++++++++++++++++++++++++++
 1 files changed, 143 insertions(+), 0 deletions(-)

diff --git a/arch/unicore32/boot/compressed/misc.c
b/arch/unicore32/boot/compressed/misc.c
new file mode 100644
index 0000000..28dda37
--- /dev/null
+++ b/arch/unicore32/boot/compressed/misc.c
@@ -0,0 +1,143 @@
+/*
+ * linux/arch/unicore32/boot/compressed/misc.c
+ *
+ * Code specific to PKUnity SoC and UniCore ISA
+ *
+ * Copyright (C) 2001-2010 GUAN Xue-tao
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <asm/unaligned.h>
+#include <asm/mach/uncompress.h>
+
+/*
+ * gzip delarations
+ */
+unsigned char *output_data;
+unsigned long output_ptr;
+
+unsigned int free_mem_ptr;
+unsigned int free_mem_end_ptr;
+
+#define STATIC static
+#define STATIC_RW_DATA	/* non-static please */
+
+/*
+ * arch-dependent implementations
+ */
+#ifndef ARCH_HAVE_DECOMP_ERROR
+#define arch_decomp_error(x)
+#endif
+
+#ifndef ARCH_HAVE_DECOMP_SETUP
+#define	arch_decomp_setup()
+#endif
+
+#ifndef ARCH_HAVE_DECOMP_PUTS
+#define arch_decomp_puts(p)
+#endif
+
+/* Diagnostic functions */
+#ifdef DEBUG
+#  define Assert(cond, msg)	{ if (!(cond)) error(msg); }
+#  define Trace(x)		fprintf x
+#  define Tracev(x)		{ if (verbose)			fprintf x; }
+#  define Tracevv(x)		{ if (verbose > 1)		fprintf x; }
+#  define Tracec(c, x)		{ if (verbose && (c))		fprintf x; }
+#  define Tracecv(c, x)		{ if ((verbose > 1) && (c))
fprintf x; }
+#else
+#  define Assert(cond, msg)
+#  define Trace(x)
+#  define Tracev(x)
+#  define Tracevv(x)
+#  define Tracec(c, x)
+#  define Tracecv(c, x)
+#endif
+
+void *memcpy(void *__dest, __const void *__src, size_t __n)
+{
+	int i = 0;
+	unsigned char *d = (unsigned char *)__dest, *s = (unsigned char
*)__src;
+
+	for (i = __n >> 3; i > 0; i--) {
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1 << 2) {
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1 << 1) {
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1)
+		*d++ = *s++;
+
+	return __dest;
+}
+
+void error(char *x)
+{
+
+	arch_decomp_puts("\n\n");
+	arch_decomp_puts(x);
+	arch_decomp_puts("\n\n -- System halted");
+
+	arch_decomp_error(x);
+
+	do { } while (1); /* Halt */
+}
+
+/* Heap size should be adjusted for different decompress method */
+#ifdef CONFIG_KERNEL_GZIP
+#include "../../../../lib/decompress_inflate.c"
+#endif
+
+#ifdef CONFIG_KERNEL_BZIP2
+#include "../../../../lib/decompress_bunzip2.c"
+#endif
+
+#ifdef CONFIG_KERNEL_LZO
+#include "../../../../lib/decompress_unlzo.c"
+#endif
+
+#ifdef CONFIG_KERNEL_LZMA
+#include "../../../../lib/decompress_unlzma.c"
+#endif
+
+unsigned long
+decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
+		unsigned long free_mem_ptr_end_p)
+{
+	unsigned char *tmp;
+
+	output_data		= (unsigned char *)output_start;
+	free_mem_ptr		= free_mem_ptr_p;
+	free_mem_end_ptr	= free_mem_ptr_end_p;
+
+	arch_decomp_setup();
+
+	tmp = (unsigned char *) (((unsigned long)input_data_end) - 4);
+	output_ptr = get_unaligned_le32(tmp);
+
+	arch_decomp_puts("Uncompressing Linux...");
+	decompress(input_data, input_data_end - input_data, NULL, NULL,
+			output_data, NULL, error);
+	arch_decomp_puts(" done, booting the kernel.\n");
+	return output_ptr;
+}

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c
  2010-12-09  9:38 [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c Guan Xuetao
@ 2010-12-09  9:38 ` Guan Xuetao
  2010-12-09 18:33 ` Miguel Ojeda
  1 sibling, 0 replies; 4+ messages in thread
From: Guan Xuetao @ 2010-12-09  9:38 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: linux-arch, linux-kernel

From: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>

	decompress_kernel call wrapper in c function

Signed-off-by: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>
---
 arch/unicore32/boot/compressed/misc.c |  143
+++++++++++++++++++++++++++++++++
 1 files changed, 143 insertions(+), 0 deletions(-)

diff --git a/arch/unicore32/boot/compressed/misc.c
b/arch/unicore32/boot/compressed/misc.c
new file mode 100644
index 0000000..28dda37
--- /dev/null
+++ b/arch/unicore32/boot/compressed/misc.c
@@ -0,0 +1,143 @@
+/*
+ * linux/arch/unicore32/boot/compressed/misc.c
+ *
+ * Code specific to PKUnity SoC and UniCore ISA
+ *
+ * Copyright (C) 2001-2010 GUAN Xue-tao
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <asm/unaligned.h>
+#include <asm/mach/uncompress.h>
+
+/*
+ * gzip delarations
+ */
+unsigned char *output_data;
+unsigned long output_ptr;
+
+unsigned int free_mem_ptr;
+unsigned int free_mem_end_ptr;
+
+#define STATIC static
+#define STATIC_RW_DATA	/* non-static please */
+
+/*
+ * arch-dependent implementations
+ */
+#ifndef ARCH_HAVE_DECOMP_ERROR
+#define arch_decomp_error(x)
+#endif
+
+#ifndef ARCH_HAVE_DECOMP_SETUP
+#define	arch_decomp_setup()
+#endif
+
+#ifndef ARCH_HAVE_DECOMP_PUTS
+#define arch_decomp_puts(p)
+#endif
+
+/* Diagnostic functions */
+#ifdef DEBUG
+#  define Assert(cond, msg)	{ if (!(cond)) error(msg); }
+#  define Trace(x)		fprintf x
+#  define Tracev(x)		{ if (verbose)			fprintf x; }
+#  define Tracevv(x)		{ if (verbose > 1)		fprintf x; }
+#  define Tracec(c, x)		{ if (verbose && (c))		fprintf x; }
+#  define Tracecv(c, x)		{ if ((verbose > 1) && (c))
fprintf x; }
+#else
+#  define Assert(cond, msg)
+#  define Trace(x)
+#  define Tracev(x)
+#  define Tracevv(x)
+#  define Tracec(c, x)
+#  define Tracecv(c, x)
+#endif
+
+void *memcpy(void *__dest, __const void *__src, size_t __n)
+{
+	int i = 0;
+	unsigned char *d = (unsigned char *)__dest, *s = (unsigned char
*)__src;
+
+	for (i = __n >> 3; i > 0; i--) {
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1 << 2) {
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1 << 1) {
+		*d++ = *s++;
+		*d++ = *s++;
+	}
+
+	if (__n & 1)
+		*d++ = *s++;
+
+	return __dest;
+}
+
+void error(char *x)
+{
+
+	arch_decomp_puts("\n\n");
+	arch_decomp_puts(x);
+	arch_decomp_puts("\n\n -- System halted");
+
+	arch_decomp_error(x);
+
+	do { } while (1); /* Halt */
+}
+
+/* Heap size should be adjusted for different decompress method */
+#ifdef CONFIG_KERNEL_GZIP
+#include "../../../../lib/decompress_inflate.c"
+#endif
+
+#ifdef CONFIG_KERNEL_BZIP2
+#include "../../../../lib/decompress_bunzip2.c"
+#endif
+
+#ifdef CONFIG_KERNEL_LZO
+#include "../../../../lib/decompress_unlzo.c"
+#endif
+
+#ifdef CONFIG_KERNEL_LZMA
+#include "../../../../lib/decompress_unlzma.c"
+#endif
+
+unsigned long
+decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
+		unsigned long free_mem_ptr_end_p)
+{
+	unsigned char *tmp;
+
+	output_data		= (unsigned char *)output_start;
+	free_mem_ptr		= free_mem_ptr_p;
+	free_mem_end_ptr	= free_mem_ptr_end_p;
+
+	arch_decomp_setup();
+
+	tmp = (unsigned char *) (((unsigned long)input_data_end) - 4);
+	output_ptr = get_unaligned_le32(tmp);
+
+	arch_decomp_puts("Uncompressing Linux...");
+	decompress(input_data, input_data_end - input_data, NULL, NULL,
+			output_data, NULL, error);
+	arch_decomp_puts(" done, booting the kernel.\n");
+	return output_ptr;
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c
  2010-12-09  9:38 [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c Guan Xuetao
  2010-12-09  9:38 ` Guan Xuetao
@ 2010-12-09 18:33 ` Miguel Ojeda
       [not found]   ` <028901cb9933$4a2bfe10$de83fa30$@mprc.pku.edu.cn>
  1 sibling, 1 reply; 4+ messages in thread
From: Miguel Ojeda @ 2010-12-09 18:33 UTC (permalink / raw)
  To: Guan Xuetao; +Cc: Arnd Bergmann, linux-arch, linux-kernel

Hi, some trivial tips...

On Thu, Dec 9, 2010 at 10:38 AM, Guan Xuetao <guanxuetao@mprc.pku.edu.cn> wrote:
> From: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>
>
>        decompress_kernel call wrapper in c function
>
> Signed-off-by: Guan Xuetao <guanxuetao@mprc.pku.edu.cn>
> ---
>  arch/unicore32/boot/compressed/misc.c |  143
> +++++++++++++++++++++++++++++++++
>  1 files changed, 143 insertions(+), 0 deletions(-)
>
> diff --git a/arch/unicore32/boot/compressed/misc.c
> b/arch/unicore32/boot/compressed/misc.c
> new file mode 100644
> index 0000000..28dda37
> --- /dev/null
> +++ b/arch/unicore32/boot/compressed/misc.c
> @@ -0,0 +1,143 @@
> +/*
> + * linux/arch/unicore32/boot/compressed/misc.c
> + *
> + * Code specific to PKUnity SoC and UniCore ISA
> + *
> + * Copyright (C) 2001-2010 GUAN Xue-tao
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <asm/unaligned.h>
> +#include <asm/mach/uncompress.h>
> +
> +/*
> + * gzip delarations
> + */
> +unsigned char *output_data;
> +unsigned long output_ptr;
> +
> +unsigned int free_mem_ptr;
> +unsigned int free_mem_end_ptr;
> +
> +#define STATIC static
> +#define STATIC_RW_DATA /* non-static please */
> +
> +/*
> + * arch-dependent implementations
> + */
> +#ifndef ARCH_HAVE_DECOMP_ERROR
> +#define arch_decomp_error(x)
> +#endif
> +
> +#ifndef ARCH_HAVE_DECOMP_SETUP
> +#define        arch_decomp_setup()

Whitespace

> +#endif
> +
> +#ifndef ARCH_HAVE_DECOMP_PUTS
> +#define arch_decomp_puts(p)
> +#endif
> +
> +/* Diagnostic functions */
> +#ifdef DEBUG
> +#  define Assert(cond, msg)    { if (!(cond)) error(msg); }
> +#  define Trace(x)             fprintf x
> +#  define Tracev(x)            { if (verbose)                  fprintf x; }
> +#  define Tracevv(x)           { if (verbose > 1)              fprintf x; }
> +#  define Tracec(c, x)         { if (verbose && (c))           fprintf x; }
> +#  define Tracecv(c, x)                { if ((verbose > 1) && (c))
> fprintf x; }

Maybe uppercase? Maybe do { ... } while(0)?

> +#else
> +#  define Assert(cond, msg)
> +#  define Trace(x)
> +#  define Tracev(x)
> +#  define Tracevv(x)
> +#  define Tracec(c, x)
> +#  define Tracecv(c, x)
> +#endif
> +
> +void *memcpy(void *__dest, __const void *__src, size_t __n)

Why are they underscored?

> +{
> +       int i = 0;
> +       unsigned char *d = (unsigned char *)__dest, *s = (unsigned char
> *)__src;
> +
> +       for (i = __n >> 3; i > 0; i--) {
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +       }
> +
> +       if (__n & 1 << 2) {
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +               *d++ = *s++;
> +       }
> +
> +       if (__n & 1 << 1) {
> +               *d++ = *s++;
> +               *d++ = *s++;
> +       }
> +
> +       if (__n & 1)
> +               *d++ = *s++;
> +
> +       return __dest;
> +}
> +
> +void error(char *x)
> +{
> +

Newline

> +       arch_decomp_puts("\n\n");
> +       arch_decomp_puts(x);
> +       arch_decomp_puts("\n\n -- System halted");
> +
> +       arch_decomp_error(x);
> +
> +       do { } while (1); /* Halt */

for (;;);?

> +}
> +
> +/* Heap size should be adjusted for different decompress method */
> +#ifdef CONFIG_KERNEL_GZIP
> +#include "../../../../lib/decompress_inflate.c"
> +#endif
> +
> +#ifdef CONFIG_KERNEL_BZIP2
> +#include "../../../../lib/decompress_bunzip2.c"
> +#endif
> +
> +#ifdef CONFIG_KERNEL_LZO
> +#include "../../../../lib/decompress_unlzo.c"
> +#endif
> +
> +#ifdef CONFIG_KERNEL_LZMA
> +#include "../../../../lib/decompress_unlzma.c"
> +#endif
> +
> +unsigned long

I think that, for new code, no newlines should be written after the return type.

> +decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
> +               unsigned long free_mem_ptr_end_p)
> +{
> +       unsigned char *tmp;
> +
> +       output_data             = (unsigned char *)output_start;
> +       free_mem_ptr            = free_mem_ptr_p;
> +       free_mem_end_ptr        = free_mem_ptr_end_p;
> +
> +       arch_decomp_setup();
> +
> +       tmp = (unsigned char *) (((unsigned long)input_data_end) - 4);
> +       output_ptr = get_unaligned_le32(tmp);
> +
> +       arch_decomp_puts("Uncompressing Linux...");
> +       decompress(input_data, input_data_end - input_data, NULL, NULL,
> +                       output_data, NULL, error);
> +       arch_decomp_puts(" done, booting the kernel.\n");
> +       return output_ptr;
> +}
>
> --
> 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] 4+ messages in thread

* RE: [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c
       [not found]     ` <201012111456.07925.arnd@arndb.de>
@ 2010-12-13  6:50       ` Guan Xuetao
  0 siblings, 0 replies; 4+ messages in thread
From: Guan Xuetao @ 2010-12-13  6:50 UTC (permalink / raw)
  To: 'Arnd Bergmann'; +Cc: 'Miguel Ojeda', linux-arch, linux-kernel


> > > > +/* Diagnostic functions */
> > > > +#ifdef DEBUG
> > > > +#  define Assert(cond, msg)    { if (!(cond)) error(msg); }
> > > > +#  define Trace(x)             fprintf x
> > > > +#  define Tracev(x)            { if (verbose)                  fprintf x; }
> > > > +#  define Tracevv(x)           { if (verbose > 1)              fprintf x; }
> > > > +#  define Tracec(c, x)         { if (verbose && (c))           fprintf x; }
> > > > +#  define Tracecv(c, x)                { if ((verbose > 1) && (c))
> > > > fprintf x; }
> > >
> > > Maybe uppercase? Maybe do { ... } while(0)?
> >
> > Uppercase  for what? Tracexx to tracexx?
> 
> We normally don't have mixed-case identifiers, normally it would be
> trace() for functions vs. TRACE() for macros, though we also have a
> lot of lower-case macros as well.
> 
> For the debugging macros, I would generally recommend not having
> any, but simply using the standard pr_debug and dev_dbg macros
> that everyone knows and understands.
> 
> If you really need to do macros, make them so that they work like
> functions, e.g.
> 
> #define foo_tracev(...) do { if (verbose) fprintf(__va_args__); } while (0)

When reviewing misc.c, I find that Tracevv and Tracecv are not used in lib/decompress_inflate.c
So these macros could be removed directly.
The same for other architectures, I think.

Guan Xuetao

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-12-13  6:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-09  9:38 [PATCHv1 008/211] unicore32: new file arch/unicore32/boot/compressed/misc.c Guan Xuetao
2010-12-09  9:38 ` Guan Xuetao
2010-12-09 18:33 ` Miguel Ojeda
     [not found]   ` <028901cb9933$4a2bfe10$de83fa30$@mprc.pku.edu.cn>
     [not found]     ` <201012111456.07925.arnd@arndb.de>
2010-12-13  6:50       ` Guan Xuetao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).