qemu-ppc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-ppc] Patch:add 7477a_v1.5


From: Mark Cave-Ayland
Subject: Re: [Qemu-ppc] Patch:add 7477a_v1.5
Date: Sun, 21 Jan 2018 09:25:01 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2

On 20/01/18 14:06, James Lyons wrote:

Hope this is ok, not sure the  way to submit a patch for review:

This patch needs a corresponding patch to openbios, that I will submit to the openbios list soon.


diff --git a/target/ppc/cpu-models.c b/target/ppc/cpu-models.c
index 6c9bfde..a77469d 100644
--- a/target/ppc/cpu-models.c
+++ b/target/ppc/cpu-models.c
@@ -739,6 +739,8 @@
                  "PowerPC 7447A v1.2 (G4)")
      POWERPC_DEF("7457a_v1.2", CPU_POWERPC_74x7A_v12,              7455,
                  "PowerPC 7457A v1.2 (G4)")
+    POWERPC_DEF("7457a_v1.5", CPU_POWERPC_74x7A_v15,              7455,
+                "PowerPC 7457A v1.5 (G4)")
     /* 64 bits PowerPC                                                       */
  #if defined (TARGET_PPC64)
      POWERPC_DEF("power5+_v2.1", CPU_POWERPC_POWER5P_v21, POWER5P,
diff --git a/target/ppc/cpu-models.h b/target/ppc/cpu-models.h
index efdb2fa..d4b2275 100644
--- a/target/ppc/cpu-models.h
+++ b/target/ppc/cpu-models.h
@@ -348,7 +348,8 @@ enum {
      CPU_POWERPC_74x7A_v10          = 0x80030100, /* aka A: 1.0 */
      CPU_POWERPC_74x7A_v11          = 0x80030101, /* aka B: 1.1 */
      CPU_POWERPC_74x7A_v12          = 0x80030102, /* aka C: 1.2 */
-    /* 64 bits PowerPC */
+    CPU_POWERPC_74x7A_v15          = 0x80030105, /* aka D: 1.5 */
+    /* 64 bits PowerPC */
  #if defined(TARGET_PPC64)
      CPU_POWERPC_620                = 0x00140000,
      CPU_POWERPC_630                = 0x00400000,

Hi James,

You can find more information about submitting patches on the wiki at https://wiki.qemu.org/Contribute/SubmitAPatch.

The main things I can see are missing are:

- A suitable commit message with a "target/ppc: " subject prefix
- A Signed-off-by tag at the end of your commit message
- CC to qemu-devel mailing list
- CC to the current PPC maintainer (David Gibson)

The best way to submit the patch is to use "git format-patch" and "git send-email" which makes sure that the resulting diff is escaped correctly and won't accidentally introduced whitespace errors as can occur with a lot of email clients.


ATB,

Mark.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]