ppc/ppc405: Drop flag parameter in ppc405_set_bootinfo()

It was introduced in commit b8d3f5d126 ("Add flags to support
PowerPC 405 bootinfos variations.") but since its value has always
been set to '1'.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20211206103712.1866296-6-clg@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
Cédric Le Goater 2021-12-17 17:57:17 +01:00
parent 09960a5be3
commit af9e361512
3 changed files with 5 additions and 8 deletions

View File

@ -56,8 +56,7 @@ struct ppc4xx_bd_info_t {
}; };
/* PowerPC 405 core */ /* PowerPC 405 core */
ram_addr_t ppc405_set_bootinfo (CPUPPCState *env, ppc4xx_bd_info_t *bd, ram_addr_t ppc405_set_bootinfo(CPUPPCState *env, ppc4xx_bd_info_t *bd);
uint32_t flags);
void ppc4xx_plb_init(CPUPPCState *env); void ppc4xx_plb_init(CPUPPCState *env);
void ppc405_ebc_init(CPUPPCState *env); void ppc405_ebc_init(CPUPPCState *env);

View File

@ -261,7 +261,7 @@ static void ref405ep_init(MachineState *machine)
bd.bi_plb_busfreq = 33333333; bd.bi_plb_busfreq = 33333333;
bd.bi_pci_busfreq = 33333333; bd.bi_pci_busfreq = 33333333;
bd.bi_opbfreq = 33333333; bd.bi_opbfreq = 33333333;
bdloc = ppc405_set_bootinfo(env, &bd, 0x00000001); bdloc = ppc405_set_bootinfo(env, &bd);
env->gpr[3] = bdloc; env->gpr[3] = bdloc;
kernel_base = KERNEL_LOAD_ADDR; kernel_base = KERNEL_LOAD_ADDR;
/* now we can load the kernel */ /* now we can load the kernel */

View File

@ -41,8 +41,7 @@
#include "qapi/error.h" #include "qapi/error.h"
#include "trace.h" #include "trace.h"
ram_addr_t ppc405_set_bootinfo (CPUPPCState *env, ppc4xx_bd_info_t *bd, ram_addr_t ppc405_set_bootinfo(CPUPPCState *env, ppc4xx_bd_info_t *bd)
uint32_t flags)
{ {
CPUState *cs = env_cpu(env); CPUState *cs = env_cpu(env);
ram_addr_t bdloc; ram_addr_t bdloc;
@ -81,9 +80,8 @@ ram_addr_t ppc405_set_bootinfo (CPUPPCState *env, ppc4xx_bd_info_t *bd,
stb_phys(cs->as, bdloc + 0x64 + i, bd->bi_pci_enetaddr[i]); stb_phys(cs->as, bdloc + 0x64 + i, bd->bi_pci_enetaddr[i]);
} }
n = 0x6A; n = 0x6A;
if (flags & 0x00000001) { for (i = 0; i < 6; i++) {
for (i = 0; i < 6; i++) stb_phys(cs->as, bdloc + n++, bd->bi_pci_enetaddr2[i]);
stb_phys(cs->as, bdloc + n++, bd->bi_pci_enetaddr2[i]);
} }
stl_be_phys(cs->as, bdloc + n, bd->bi_opbfreq); stl_be_phys(cs->as, bdloc + n, bd->bi_opbfreq);
n += 4; n += 4;