03f7041bfd
Remove the do_init parameter of ppc440_sdram_init and enable SDRAM controller from the board. Firmware does this so it may only be needed when booting with -kernel without firmware but we enable SDRAM unconditionally to preserve previous behaviour. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com> Message-Id: <c2eda8f83c82f655aa7821a5a8c9310484bd6a1d.1664021647.git.balaton@eik.bme.hu> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
26 lines
658 B
C
26 lines
658 B
C
/*
|
|
* QEMU PowerPC 440 shared definitions
|
|
*
|
|
* Copyright (c) 2012 François Revol
|
|
* Copyright (c) 2016-2018 BALATON Zoltan
|
|
*
|
|
* This work is licensed under the GNU GPL license version 2 or later.
|
|
*
|
|
*/
|
|
|
|
#ifndef PPC440_H
|
|
#define PPC440_H
|
|
|
|
#include "hw/ppc/ppc4xx.h"
|
|
|
|
void ppc4xx_l2sram_init(CPUPPCState *env);
|
|
void ppc4xx_cpr_init(CPUPPCState *env);
|
|
void ppc4xx_sdr_init(CPUPPCState *env);
|
|
void ppc440_sdram_init(CPUPPCState *env, int nbanks,
|
|
Ppc4xxSdramBank *ram_banks);
|
|
void ppc4xx_ahb_init(CPUPPCState *env);
|
|
void ppc4xx_dma_init(CPUPPCState *env, int dcr_base);
|
|
void ppc460ex_pcie_init(CPUPPCState *env);
|
|
|
|
#endif /* PPC440_H */
|