mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
340dc03c79
After previous changes we can now remove the legacy init function and move the device creation to board code. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <29aafeea9f1c871c739600a7b093c5456e8a1dc8.1688586835.git.balaton@eik.bme.hu> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
22 lines
507 B
C
22 lines
507 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/ppc.h"
|
|
|
|
void ppc4xx_l2sram_init(CPUPPCState *env);
|
|
void ppc4xx_cpr_init(CPUPPCState *env);
|
|
void ppc4xx_sdr_init(CPUPPCState *env);
|
|
void ppc4xx_ahb_init(CPUPPCState *env);
|
|
void ppc4xx_dma_init(CPUPPCState *env, int dcr_base);
|
|
|
|
#endif /* PPC440_H */
|