qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
@ 2008-02-26 17:11 Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-02-26 17:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jean-Christophe PLAGNIOL-VILLARD

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c
index 63bd158..fca5651 100644
--- a/hw/mips_r4k.c
+++ b/hw/mips_r4k.c
@@ -14,6 +14,7 @@
 #include "net.h"
 #include "sysemu.h"
 #include "boards.h"
+#include "flash.h"
 
 #ifdef TARGET_WORDS_BIGENDIAN
 #define BIOS_FILENAME "mips_bios.bin"
@@ -144,6 +145,7 @@ static void main_cpu_reset(void *opaque)
         load_kernel (env);
 }
 
+static const int sector_len = 32 * 1024;
 static
 void mips_r4k_init (int ram_size, int vga_ram_size,
                     const char *boot_device, DisplayState *ds,
@@ -197,7 +199,17 @@ void mips_r4k_init (int ram_size, int vga_ram_size,
     if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
 	cpu_register_physical_memory(0x1fc00000,
 				     BIOS_SIZE, bios_offset | IO_MEM_ROM);
-    } else {
+    } else if ((index = drive_get_index(IF_PFLASH, 0, 0)) > -1) {
+        uint32_t mips_rom = 0x00400000;
+        cpu_register_physical_memory(0x1fc00000, mips_rom,
+	                     qemu_ram_alloc(mips_rom) | IO_MEM_ROM);
+        if (!pflash_cfi01_register(0x1fc00000, qemu_ram_alloc(mips_rom),
+            drives_table[index].bdrv, sector_len, mips_rom / sector_len,
+            4, 0, 0, 0, 0)) {
+            fprintf(stderr, "qemu: Error registering flash memory.\n");
+	}
+    }
+    else {
 	/* not fatal */
         fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
 		buf);
-- 
1.5.4

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

* [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
@ 2008-04-01  5:57 Jean-Christophe PLAGNIOL-VILLARD
  2008-04-07 21:01 ` Aurelien Jarno
  0 siblings, 1 reply; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-04-01  5:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jean-Christophe PLAGNIOL-VILLARD

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c
index 63bd158..fca5651 100644
--- a/hw/mips_r4k.c
+++ b/hw/mips_r4k.c
@@ -14,6 +14,7 @@
 #include "net.h"
 #include "sysemu.h"
 #include "boards.h"
+#include "flash.h"
 
 #ifdef TARGET_WORDS_BIGENDIAN
 #define BIOS_FILENAME "mips_bios.bin"
@@ -144,6 +145,7 @@ static void main_cpu_reset(void *opaque)
         load_kernel (env);
 }
 
+static const int sector_len = 32 * 1024;
 static
 void mips_r4k_init (int ram_size, int vga_ram_size,
                     const char *boot_device, DisplayState *ds,
@@ -197,7 +199,17 @@ void mips_r4k_init (int ram_size, int vga_ram_size,
     if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
 	cpu_register_physical_memory(0x1fc00000,
 				     BIOS_SIZE, bios_offset | IO_MEM_ROM);
-    } else {
+    } else if ((index = drive_get_index(IF_PFLASH, 0, 0)) > -1) {
+        uint32_t mips_rom = 0x00400000;
+        cpu_register_physical_memory(0x1fc00000, mips_rom,
+	                     qemu_ram_alloc(mips_rom) | IO_MEM_ROM);
+        if (!pflash_cfi01_register(0x1fc00000, qemu_ram_alloc(mips_rom),
+            drives_table[index].bdrv, sector_len, mips_rom / sector_len,
+            4, 0, 0, 0, 0)) {
+            fprintf(stderr, "qemu: Error registering flash memory.\n");
+	}
+    }
+    else {
 	/* not fatal */
         fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
 		buf);
-- 
1.5.4.1

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

* Re: [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
  2008-04-01  5:57 [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it Jean-Christophe PLAGNIOL-VILLARD
@ 2008-04-07 21:01 ` Aurelien Jarno
  2008-04-10  8:21   ` Jean-Christophe PLAGNIOL-VILLARD
  2008-04-20  4:21   ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 2 replies; 6+ messages in thread
From: Aurelien Jarno @ 2008-04-07 21:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jean-Christophe PLAGNIOL-VILLARD

On Tue, Apr 01, 2008 at 07:57:11AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> 
> diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c
> index 63bd158..fca5651 100644
> --- a/hw/mips_r4k.c
> +++ b/hw/mips_r4k.c
> @@ -14,6 +14,7 @@
>  #include "net.h"
>  #include "sysemu.h"
>  #include "boards.h"
> +#include "flash.h"
>  
>  #ifdef TARGET_WORDS_BIGENDIAN
>  #define BIOS_FILENAME "mips_bios.bin"
> @@ -144,6 +145,7 @@ static void main_cpu_reset(void *opaque)
>          load_kernel (env);
>  }
>  
> +static const int sector_len = 32 * 1024;
>  static
>  void mips_r4k_init (int ram_size, int vga_ram_size,
>                      const char *boot_device, DisplayState *ds,
> @@ -197,7 +199,17 @@ void mips_r4k_init (int ram_size, int vga_ram_size,
>      if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
>  	cpu_register_physical_memory(0x1fc00000,
>  				     BIOS_SIZE, bios_offset | IO_MEM_ROM);
> -    } else {
> +    } else if ((index = drive_get_index(IF_PFLASH, 0, 0)) > -1) {
> +        uint32_t mips_rom = 0x00400000;
> +        cpu_register_physical_memory(0x1fc00000, mips_rom,
> +	                     qemu_ram_alloc(mips_rom) | IO_MEM_ROM);
> +        if (!pflash_cfi01_register(0x1fc00000, qemu_ram_alloc(mips_rom),
> +            drives_table[index].bdrv, sector_len, mips_rom / sector_len,
> +            4, 0, 0, 0, 0)) {
> +            fprintf(stderr, "qemu: Error registering flash memory.\n");
> +	}
> +    }
> +    else {
>  	/* not fatal */
>          fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
>  		buf);

Applied, but please note that the MIPS Qemu support has been removed
from the kernel in version 2.6.25, so the same probably will probably
happen sooner or later to the mips_r4k machine. It is probably not safe
to base developments on that.


-- 
  .''`.  Aurelien Jarno	            | GPG: 1024D/F1BCDB73
 : :' :  Debian developer           | Electrical Engineer
 `. `'   aurel32@debian.org         | aurelien@aurel32.net
   `-    people.debian.org/~aurel32 | www.aurel32.net

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

* Re: [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
  2008-04-07 21:01 ` Aurelien Jarno
@ 2008-04-10  8:21   ` Jean-Christophe PLAGNIOL-VILLARD
  2008-04-20  4:21   ` Jean-Christophe PLAGNIOL-VILLARD
  1 sibling, 0 replies; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-04-10  8:21 UTC (permalink / raw)
  To: Aurelien Jarno; +Cc: qemu-devel

On 23:01 Mon 07 Apr     , Aurelien Jarno wrote:
> On Tue, Apr 01, 2008 at 07:57:11AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > 
> Applied, but please note that the MIPS Qemu support has been removed
> from the kernel in version 2.6.25, so the same probably will probably
> happen sooner or later to the mips_r4k machine. It is probably not safe
> to base developments on that.
Thanks,
I've dicuss about it with Robin Randhawa by mail.
Actualy we do not have the Malta board present in U-Boot. We will also
remove the MIPS Qemu support from U-Boot when the Malta board will be
present. If you could wait to remove the mips_r4k machine until it. It
will be helpfull for us.

Best Regards,
J.
U-Boot Maintainer

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

* Re: [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
  2008-04-07 21:01 ` Aurelien Jarno
  2008-04-10  8:21   ` Jean-Christophe PLAGNIOL-VILLARD
@ 2008-04-20  4:21   ` Jean-Christophe PLAGNIOL-VILLARD
  2008-04-20  6:29     ` Thiemo Seufer
  1 sibling, 1 reply; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-04-20  4:21 UTC (permalink / raw)
  To: Aurelien Jarno; +Cc: qemu-devel

On 23:01 Mon 07 Apr     , Aurelien Jarno wrote:
> On Tue, Apr 01, 2008 at 07:57:11AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > +        if (!pflash_cfi01_register(0x1fc00000, qemu_ram_alloc(mips_rom),
> > +            drives_table[index].bdrv, sector_len, mips_rom / sector_len,
> > +            4, 0, 0, 0, 0)) {
> > +            fprintf(stderr, "qemu: Error registering flash memory.\n");
> > +	}
> > +    }
> > +    else {
> >  	/* not fatal */
> >          fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
> >  		buf);
> 
> Applied, but please note that the MIPS Qemu support has been removed
> from the kernel in version 2.6.25, so the same probably will probably
> happen sooner or later to the mips_r4k machine. It is probably not safe
> to base developments on that.
Hi,
	I've download the last svn trunk, but I do not found this patch.
	Could you keep me in touch about it?

Best Regards,
J.
> 
> 
> -- 
>   .''`.  Aurelien Jarno	            | GPG: 1024D/F1BCDB73
>  : :' :  Debian developer           | Electrical Engineer
>  `. `'   aurel32@debian.org         | aurelien@aurel32.net
>    `-    people.debian.org/~aurel32 | www.aurel32.net

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

* Re: [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it
  2008-04-20  4:21   ` Jean-Christophe PLAGNIOL-VILLARD
@ 2008-04-20  6:29     ` Thiemo Seufer
  0 siblings, 0 replies; 6+ messages in thread
From: Thiemo Seufer @ 2008-04-20  6:29 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: qemu-devel, Aurelien Jarno

Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 23:01 Mon 07 Apr     , Aurelien Jarno wrote:
> > On Tue, Apr 01, 2008 at 07:57:11AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > > +        if (!pflash_cfi01_register(0x1fc00000, qemu_ram_alloc(mips_rom),
> > > +            drives_table[index].bdrv, sector_len, mips_rom / sector_len,
> > > +            4, 0, 0, 0, 0)) {
> > > +            fprintf(stderr, "qemu: Error registering flash memory.\n");
> > > +	}
> > > +    }
> > > +    else {
> > >  	/* not fatal */
> > >          fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
> > >  		buf);
> > 
> > Applied, but please note that the MIPS Qemu support has been removed
> > from the kernel in version 2.6.25, so the same probably will probably
> > happen sooner or later to the mips_r4k machine. It is probably not safe
> > to base developments on that.
> Hi,
> 	I've download the last svn trunk, but I do not found this patch.
> 	Could you keep me in touch about it?

I commited the patch.


Thiemo

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

end of thread, other threads:[~2008-04-20  6:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-01  5:57 [Qemu-devel] [PATCH] MIPS_R4K: add optionnal 4MB cfi flash and allow to boot from it Jean-Christophe PLAGNIOL-VILLARD
2008-04-07 21:01 ` Aurelien Jarno
2008-04-10  8:21   ` Jean-Christophe PLAGNIOL-VILLARD
2008-04-20  4:21   ` Jean-Christophe PLAGNIOL-VILLARD
2008-04-20  6:29     ` Thiemo Seufer
  -- strict thread matches above, loose matches on Subject: below --
2008-02-26 17:11 Jean-Christophe PLAGNIOL-VILLARD

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).