diff options
author | BALATON Zoltan <balaton@eik.bme.hu> | 2022-10-19 18:02:52 +0200 |
---|---|---|
committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2022-10-28 13:15:22 -0300 |
commit | 2a48dd7cbd456ac2e27b3cf66cfb7e2e1886dbf4 (patch) | |
tree | 0d5c07759f9f2eb3b5229b529e2c571bde43adb6 /hw/ppc/meson.build | |
parent | 9c713713dac70fe7eaa9b403234a71024a729eb4 (diff) | |
download | qemu-2a48dd7cbd456ac2e27b3cf66cfb7e2e1886dbf4.zip qemu-2a48dd7cbd456ac2e27b3cf66cfb7e2e1886dbf4.tar.gz qemu-2a48dd7cbd456ac2e27b3cf66cfb7e2e1886dbf4.tar.bz2 |
ppc440_uc.c: Move DDR2 SDRAM controller model to ppc4xx_sdram.c
In order to move PPC4xx SDRAM controller models together move out the
DDR2 controller model from ppc440_uc.c into a new ppc4xx_sdram.c file.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <2f2900f93e997480e54b7bf9c32bb482a0fb1022.1666194485.git.balaton@eik.bme.hu>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'hw/ppc/meson.build')
-rw-r--r-- | hw/ppc/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/ppc/meson.build b/hw/ppc/meson.build index 32babc9..c927337 100644 --- a/hw/ppc/meson.build +++ b/hw/ppc/meson.build @@ -59,8 +59,9 @@ ppc_ss.add(when: 'CONFIG_PPC440', if_true: files( 'ppc440_bamboo.c', 'ppc440_pcix.c', 'ppc440_uc.c')) ppc_ss.add(when: 'CONFIG_PPC4XX', if_true: files( + 'ppc4xx_devs.c', 'ppc4xx_pci.c', - 'ppc4xx_devs.c')) + 'ppc4xx_sdram.c')) ppc_ss.add(when: 'CONFIG_SAM460EX', if_true: files('sam460ex.c')) # PReP ppc_ss.add(when: 'CONFIG_PREP', if_true: files('prep.c')) |