mac_{old|new}world: Set tbfreq at declaration
The tbfreq variable is only set once in an if-else which can be done at the variable declaration saving some lines of code and making it simpler. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <15668da8eb8bad4561428a5f25b02f91e16d9c1b.1666957578.git.balaton@eik.bme.hu> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
This commit is contained in:
parent
94c92e1a86
commit
6b924abe99
@ -130,7 +130,7 @@ static void ppc_core99_init(MachineState *machine)
|
|||||||
DeviceState *dev, *pic_dev;
|
DeviceState *dev, *pic_dev;
|
||||||
DeviceState *uninorth_internal_dev = NULL, *uninorth_agp_dev = NULL;
|
DeviceState *uninorth_internal_dev = NULL, *uninorth_agp_dev = NULL;
|
||||||
hwaddr nvram_addr = 0xFFF04000;
|
hwaddr nvram_addr = 0xFFF04000;
|
||||||
uint64_t tbfreq;
|
uint64_t tbfreq = kvm_enabled() ? kvmppc_get_tbfreq() : TBFREQ;
|
||||||
|
|
||||||
/* init CPUs */
|
/* init CPUs */
|
||||||
for (i = 0; i < machine->smp.cpus; i++) {
|
for (i = 0; i < machine->smp.cpus; i++) {
|
||||||
@ -343,13 +343,6 @@ static void ppc_core99_init(MachineState *machine)
|
|||||||
has_adb = (core99_machine->via_config == CORE99_VIA_CONFIG_CUDA ||
|
has_adb = (core99_machine->via_config == CORE99_VIA_CONFIG_CUDA ||
|
||||||
core99_machine->via_config == CORE99_VIA_CONFIG_PMU_ADB);
|
core99_machine->via_config == CORE99_VIA_CONFIG_PMU_ADB);
|
||||||
|
|
||||||
/* Timebase Frequency */
|
|
||||||
if (kvm_enabled()) {
|
|
||||||
tbfreq = kvmppc_get_tbfreq();
|
|
||||||
} else {
|
|
||||||
tbfreq = TBFREQ;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* init basic PC hardware */
|
/* init basic PC hardware */
|
||||||
pci_bus = PCI_HOST_BRIDGE(uninorth_pci)->bus;
|
pci_bus = PCI_HOST_BRIDGE(uninorth_pci)->bus;
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ static void ppc_heathrow_init(MachineState *machine)
|
|||||||
uint16_t ppc_boot_device;
|
uint16_t ppc_boot_device;
|
||||||
DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
|
DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
|
||||||
void *fw_cfg;
|
void *fw_cfg;
|
||||||
uint64_t tbfreq;
|
uint64_t tbfreq = kvm_enabled() ? kvmppc_get_tbfreq() : TBFREQ;
|
||||||
|
|
||||||
/* init CPUs */
|
/* init CPUs */
|
||||||
for (i = 0; i < machine->smp.cpus; i++) {
|
for (i = 0; i < machine->smp.cpus; i++) {
|
||||||
@ -223,13 +223,6 @@ static void ppc_heathrow_init(MachineState *machine)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Timebase Frequency */
|
|
||||||
if (kvm_enabled()) {
|
|
||||||
tbfreq = kvmppc_get_tbfreq();
|
|
||||||
} else {
|
|
||||||
tbfreq = TBFREQ;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Grackle PCI host bridge */
|
/* Grackle PCI host bridge */
|
||||||
grackle_dev = qdev_new(TYPE_GRACKLE_PCI_HOST_BRIDGE);
|
grackle_dev = qdev_new(TYPE_GRACKLE_PCI_HOST_BRIDGE);
|
||||||
qdev_prop_set_uint32(grackle_dev, "ofw-addr", 0x80000000);
|
qdev_prop_set_uint32(grackle_dev, "ofw-addr", 0x80000000);
|
||||||
|
Loading…
Reference in New Issue
Block a user