All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] loader cleanup for i386-ieee1275
@ 2008-01-23 13:23 Robert Millan
  2008-01-23 14:05 ` Marco Gerards
  0 siblings, 1 reply; 8+ messages in thread
From: Robert Millan @ 2008-01-23 13:23 UTC (permalink / raw)
  To: grub-devel

[-- Attachment #1: Type: text/plain, Size: 179 bytes --]


Some cleanup for i386-ieee1275.

-- 
Robert Millan

<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call… if you are unable to speak?
(as seen on /.)

[-- Attachment #2: mb2_ieee1275_cleanup.diff --]
[-- Type: text/x-diff, Size: 3088 bytes --]


	* include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
	`<grub/symbol.h>' and `<grub/multiboot.h>'.
	(grub_multiboot2_real_boot): New function prototype.

	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
	(grub_lower_mem, grub_upper_mem): Disable for IEEE1275.

	* kern/i386/ieee1275/init.c (grub_os_area_addr)
	(grub_os_area_size, grub_lower_mem, grub_upper_mem): Remove variables.

diff -x CVS -x '*~' -x '*.mk' -urp ../grub2/include/grub/i386/ieee1275/loader.h ./include/grub/i386/ieee1275/loader.h
--- ../grub2/include/grub/i386/ieee1275/loader.h	2008-01-23 10:57:25.000000000 +0100
+++ ./include/grub/i386/ieee1275/loader.h	2008-01-23 13:42:12.000000000 +0100
@@ -1 +1,30 @@
-#include <grub/cpu/loader.h>
+/*
+ *  GRUB  --  GRand Unified Bootloader
+ *  Copyright (C) 2002,2003,2004,2007,2008  Free Software Foundation, Inc.
+ *
+ *  GRUB is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  GRUB is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GRUB_LOADER_MACHINE_HEADER
+#define GRUB_LOADER_MACHINE_HEADER	1
+
+#include <grub/types.h>
+#include <grub/symbol.h>
+#include <grub/multiboot.h>
+
+void EXPORT_FUNC(grub_multiboot2_real_boot) (grub_addr_t entry,
+                                             struct grub_multiboot_info *mbi)
+     __attribute__ ((noreturn));
+
+#endif /* ! GRUB_LOADER_MACHINE_HEADER */
diff -x CVS -x '*~' -x '*.mk' -urp ../grub2/include/grub/i386/pc/memory.h ./include/grub/i386/pc/memory.h
--- ../grub2/include/grub/i386/pc/memory.h	2008-01-21 16:49:59.000000000 +0100
+++ ./include/grub/i386/pc/memory.h	2008-01-23 13:45:44.000000000 +0100
@@ -21,6 +21,7 @@
 #define GRUB_MEMORY_MACHINE_HEADER	1
 
 #include <grub/symbol.h>
+#include <grub/machine/machine.h>
 #ifndef ASM_FILE
 #include <grub/types.h>
 #endif
@@ -75,9 +76,11 @@
 /* The data segment of the pseudo real mode.  */
 #define GRUB_MEMORY_MACHINE_PSEUDO_REAL_DSEG	0x20
 
+#ifndef GRUB_MACHINE_IEEE1275
 #ifndef ASM_FILE
 extern grub_size_t EXPORT_VAR(grub_lower_mem);
 extern grub_size_t EXPORT_VAR(grub_upper_mem);
 #endif
+#endif
 
 #endif /* ! GRUB_MEMORY_MACHINE_HEADER */
diff -x CVS -x '*~' -x '*.mk' -urp ../grub2/kern/i386/ieee1275/init.c ./kern/i386/ieee1275/init.c
--- ../grub2/kern/i386/ieee1275/init.c	2008-01-23 10:59:37.000000000 +0100
+++ ./kern/i386/ieee1275/init.c	2008-01-23 13:38:58.000000000 +0100
@@ -19,10 +19,6 @@
 
 #include <grub/types.h>
 
-grub_addr_t grub_os_area_addr;
-grub_size_t grub_os_area_size;
-grub_size_t grub_lower_mem, grub_upper_mem;
-
 void
 grub_stop_floppy (void)
 {

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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-23 13:23 [PATCH] loader cleanup for i386-ieee1275 Robert Millan
@ 2008-01-23 14:05 ` Marco Gerards
  2008-01-23 14:53   ` Robert Millan
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Gerards @ 2008-01-23 14:05 UTC (permalink / raw)
  To: The development of GRUB 2

Robert Millan <rmh@aybabtu.com> writes:

> Some cleanup for i386-ieee1275.

Can you please give a bit more information?

> 	* include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
> 	`<grub/symbol.h>' and `<grub/multiboot.h>'.
> 	(grub_multiboot2_real_boot): New function prototype.
>
> 	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
> 	(grub_lower_mem, grub_upper_mem): Disable for IEEE1275.

You can make this conditional in the ChangeLog entry.

> 	* kern/i386/ieee1275/init.c (grub_os_area_addr)
> 	(grub_os_area_size, grub_lower_mem, grub_upper_mem): Remove variables.

--
Marco




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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-23 14:05 ` Marco Gerards
@ 2008-01-23 14:53   ` Robert Millan
  2008-01-23 18:48     ` Marco Gerards
  2008-01-24  8:46     ` Yoshinori K. Okuji
  0 siblings, 2 replies; 8+ messages in thread
From: Robert Millan @ 2008-01-23 14:53 UTC (permalink / raw)
  To: The development of GRUB 2

On Wed, Jan 23, 2008 at 03:05:31PM +0100, Marco Gerards wrote:
> Robert Millan <rmh@aybabtu.com> writes:
> 
> > Some cleanup for i386-ieee1275.
> 
> Can you please give a bit more information?

The multiboot module on i386-ieee1275 was using variables that only have a
meaning on i386-pc (and i386-linuxbios):  grub_os_area_addr,
grub_os_area_size, grub_lower_mem and grub_upper_mem.  A bunch of
unnecessary cruft from i386-pc port was being included, because at the
beginning I thought I would base the multiboot loader on i386-pc (like I
did for i386-linuxbios), but this turned out to be a wrong approach.

> > 	* include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
> > 	`<grub/symbol.h>' and `<grub/multiboot.h>'.
> > 	(grub_multiboot2_real_boot): New function prototype.
> >
> > 	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
> > 	(grub_lower_mem, grub_upper_mem): Disable for IEEE1275.
> 
> You can make this conditional in the ChangeLog entry.

What do you mean?

-- 
Robert Millan

<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call… if you are unable to speak?
(as seen on /.)



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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-23 14:53   ` Robert Millan
@ 2008-01-23 18:48     ` Marco Gerards
  2008-01-23 19:20       ` Robert Millan
  2008-01-24  8:46     ` Yoshinori K. Okuji
  1 sibling, 1 reply; 8+ messages in thread
From: Marco Gerards @ 2008-01-23 18:48 UTC (permalink / raw)
  To: The development of GRUB 2

Robert Millan <rmh@aybabtu.com> writes:

> On Wed, Jan 23, 2008 at 03:05:31PM +0100, Marco Gerards wrote:
>> Robert Millan <rmh@aybabtu.com> writes:
>> 
>> > Some cleanup for i386-ieee1275.
>> 
>> Can you please give a bit more information?
>
> The multiboot module on i386-ieee1275 was using variables that only have a
> meaning on i386-pc (and i386-linuxbios):  grub_os_area_addr,
> grub_os_area_size, grub_lower_mem and grub_upper_mem.  A bunch of
> unnecessary cruft from i386-pc port was being included, because at the
> beginning I thought I would base the multiboot loader on i386-pc (like I
> did for i386-linuxbios), but this turned out to be a wrong approach.

I see.

>> > 	* include/grub/i386/ieee1275/loader.h: Include `<grub/types.h>',
>> > 	`<grub/symbol.h>' and `<grub/multiboot.h>'.
>> > 	(grub_multiboot2_real_boot): New function prototype.
>> >
>> > 	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
>> > 	(grub_lower_mem, grub_upper_mem): Disable for IEEE1275.
>> 
>> You can make this conditional in the ChangeLog entry.
>
> What do you mean?

	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
        [!GRUB_IEEE1275] (grub_lower_mem, grub_upper_mem): Disabled.

I didn't check if this is the name of the macro, so please do not
blindly copy this.  But this is the right approach.

--
Marco





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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-23 18:48     ` Marco Gerards
@ 2008-01-23 19:20       ` Robert Millan
  0 siblings, 0 replies; 8+ messages in thread
From: Robert Millan @ 2008-01-23 19:20 UTC (permalink / raw)
  To: The development of GRUB 2

On Wed, Jan 23, 2008 at 07:48:04PM +0100, Marco Gerards wrote:
> >> You can make this conditional in the ChangeLog entry.
> >
> > What do you mean?
> 
> 	* include/grub/i386/pc/memory.h: Include `<grub/machine/machine.h>'.
>         [!GRUB_IEEE1275] (grub_lower_mem, grub_upper_mem): Disabled.
> 
> I didn't check if this is the name of the macro, so please do not
> blindly copy this.  But this is the right approach.

Ok, done.

-- 
Robert Millan

<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call… if you are unable to speak?
(as seen on /.)



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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-23 14:53   ` Robert Millan
  2008-01-23 18:48     ` Marco Gerards
@ 2008-01-24  8:46     ` Yoshinori K. Okuji
  2008-01-24 12:40       ` Robert Millan
  1 sibling, 1 reply; 8+ messages in thread
From: Yoshinori K. Okuji @ 2008-01-24  8:46 UTC (permalink / raw)
  To: The development of GRUB 2

On Wednesday 23 January 2008 15:53, Robert Millan wrote:
> On Wed, Jan 23, 2008 at 03:05:31PM +0100, Marco Gerards wrote:
> > Robert Millan <rmh@aybabtu.com> writes:
> > > Some cleanup for i386-ieee1275.
> >
> > Can you please give a bit more information?
>
> The multiboot module on i386-ieee1275 was using variables that only have a
> meaning on i386-pc (and i386-linuxbios):  grub_os_area_addr,
> grub_os_area_size, grub_lower_mem and grub_upper_mem.  A bunch of
> unnecessary cruft from i386-pc port was being included, because at the
> beginning I thought I would base the multiboot loader on i386-pc (like I
> did for i386-linuxbios), but this turned out to be a wrong approach.

If you have time, please consider refactoring the memory management on 
i386-pc. It is in my task list for so long...

Okuji



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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-24  8:46     ` Yoshinori K. Okuji
@ 2008-01-24 12:40       ` Robert Millan
  2008-01-24 21:27         ` Yoshinori K. Okuji
  0 siblings, 1 reply; 8+ messages in thread
From: Robert Millan @ 2008-01-24 12:40 UTC (permalink / raw)
  To: The development of GRUB 2

On Thu, Jan 24, 2008 at 09:46:09AM +0100, Yoshinori K. Okuji wrote:
> >
> > The multiboot module on i386-ieee1275 was using variables that only have a
> > meaning on i386-pc (and i386-linuxbios):  grub_os_area_addr,
> > grub_os_area_size, grub_lower_mem and grub_upper_mem.  A bunch of
> > unnecessary cruft from i386-pc port was being included, because at the
> > beginning I thought I would base the multiboot loader on i386-pc (like I
> > did for i386-linuxbios), but this turned out to be a wrong approach.
> 
> If you have time, please consider refactoring the memory management on 
> i386-pc. It is in my task list for so long...

Is there a savannah task for this?

-- 
Robert Millan

<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call… if you are unable to speak?
(as seen on /.)



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

* Re: [PATCH] loader cleanup for i386-ieee1275
  2008-01-24 12:40       ` Robert Millan
@ 2008-01-24 21:27         ` Yoshinori K. Okuji
  0 siblings, 0 replies; 8+ messages in thread
From: Yoshinori K. Okuji @ 2008-01-24 21:27 UTC (permalink / raw)
  To: The development of GRUB 2

On Thursday 24 January 2008 13:40, Robert Millan wrote:
> On Thu, Jan 24, 2008 at 09:46:09AM +0100, Yoshinori K. Okuji wrote:
> > > The multiboot module on i386-ieee1275 was using variables that only
> > > have a meaning on i386-pc (and i386-linuxbios):  grub_os_area_addr,
> > > grub_os_area_size, grub_lower_mem and grub_upper_mem.  A bunch of
> > > unnecessary cruft from i386-pc port was being included, because at the
> > > beginning I thought I would base the multiboot loader on i386-pc (like
> > > I did for i386-linuxbios), but this turned out to be a wrong approach.
> >
> > If you have time, please consider refactoring the memory management on
> > i386-pc. It is in my task list for so long...
>
> Is there a savannah task for this?

Yes. My description was very terse, though.

Okuji



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

end of thread, other threads:[~2008-01-24 21:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-23 13:23 [PATCH] loader cleanup for i386-ieee1275 Robert Millan
2008-01-23 14:05 ` Marco Gerards
2008-01-23 14:53   ` Robert Millan
2008-01-23 18:48     ` Marco Gerards
2008-01-23 19:20       ` Robert Millan
2008-01-24  8:46     ` Yoshinori K. Okuji
2008-01-24 12:40       ` Robert Millan
2008-01-24 21:27         ` Yoshinori K. Okuji

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.