diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 11:13:18 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 11:13:18 +0000 |
commit | 90e189ece147115c66c9864fd832524543a50530 (patch) | |
tree | bb2438cdd8e04f430e5f6d491dad03e3c8f8290f /hw | |
parent | 636aa20056f2b242c296c0c0f55bbd4d21332966 (diff) |
Replace local ADDRX/PADDRX macros with TARGET_FMT_lx/plx
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ppc.c | 28 | ||||
-rw-r--r-- | hw/ppc405_boards.c | 12 | ||||
-rw-r--r-- | hw/ppc405_uc.c | 70 | ||||
-rw-r--r-- | hw/ppc4xx_devs.c | 11 | ||||
-rw-r--r-- | hw/ppc_prep.c | 36 |
5 files changed, 91 insertions, 66 deletions
@@ -795,9 +795,9 @@ static void cpu_4xx_fit_cb (void *opaque) env->spr[SPR_40x_TSR] |= 1 << 26; if ((env->spr[SPR_40x_TCR] >> 23) & 0x1) ppc_set_irq(env, PPC_INTERRUPT_FIT, 1); - LOG_TB("%s: ir %d TCR " ADDRX " TSR " ADDRX "\n", __func__, - (int)((env->spr[SPR_40x_TCR] >> 23) & 0x1), - env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); + LOG_TB("%s: ir %d TCR " TARGET_FMT_lx " TSR " TARGET_FMT_lx "\n", __func__, + (int)((env->spr[SPR_40x_TCR] >> 23) & 0x1), + env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); } /* Programmable interval timer */ @@ -841,12 +841,12 @@ static void cpu_4xx_pit_cb (void *opaque) if ((env->spr[SPR_40x_TCR] >> 26) & 0x1) ppc_set_irq(env, PPC_INTERRUPT_PIT, 1); start_stop_pit(env, tb_env, 1); - LOG_TB("%s: ar %d ir %d TCR " ADDRX " TSR " ADDRX " " - "%016" PRIx64 "\n", __func__, - (int)((env->spr[SPR_40x_TCR] >> 22) & 0x1), - (int)((env->spr[SPR_40x_TCR] >> 26) & 0x1), - env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR], - ppcemb_timer->pit_reload); + LOG_TB("%s: ar %d ir %d TCR " TARGET_FMT_lx " TSR " TARGET_FMT_lx " " + "%016" PRIx64 "\n", __func__, + (int)((env->spr[SPR_40x_TCR] >> 22) & 0x1), + (int)((env->spr[SPR_40x_TCR] >> 26) & 0x1), + env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR], + ppcemb_timer->pit_reload); } /* Watchdog timer */ @@ -881,8 +881,8 @@ static void cpu_4xx_wdt_cb (void *opaque) next = now + muldiv64(next, ticks_per_sec, tb_env->decr_freq); if (next == now) next++; - LOG_TB("%s: TCR " ADDRX " TSR " ADDRX "\n", __func__, - env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); + LOG_TB("%s: TCR " TARGET_FMT_lx " TSR " TARGET_FMT_lx "\n", __func__, + env->spr[SPR_40x_TCR], env->spr[SPR_40x_TSR]); switch ((env->spr[SPR_40x_TSR] >> 30) & 0x3) { case 0x0: case 0x1: @@ -924,7 +924,7 @@ void store_40x_pit (CPUState *env, target_ulong val) tb_env = env->tb_env; ppcemb_timer = tb_env->opaque; - LOG_TB("%s val" ADDRX "\n", __func__, val); + LOG_TB("%s val" TARGET_FMT_lx "\n", __func__, val); ppcemb_timer->pit_reload = val; start_stop_pit(env, tb_env, 0); } @@ -936,7 +936,7 @@ target_ulong load_40x_pit (CPUState *env) void store_booke_tsr (CPUState *env, target_ulong val) { - LOG_TB("%s: val " ADDRX "\n", __func__, val); + LOG_TB("%s: val " TARGET_FMT_lx "\n", __func__, val); env->spr[SPR_40x_TSR] &= ~(val & 0xFC000000); if (val & 0x80000000) ppc_set_irq(env, PPC_INTERRUPT_PIT, 0); @@ -947,7 +947,7 @@ void store_booke_tcr (CPUState *env, target_ulong val) ppc_tb_t *tb_env; tb_env = env->tb_env; - LOG_TB("%s: val " ADDRX "\n", __func__, val); + LOG_TB("%s: val " TARGET_FMT_lx "\n", __func__, val); env->spr[SPR_40x_TCR] = val & 0xFFC00000; start_stop_pit(env, tb_env, 1); cpu_4xx_wdt_cb(env); diff --git a/hw/ppc405_boards.c b/hw/ppc405_boards.c index f2b4a84191..0377d1c6c5 100644 --- a/hw/ppc405_boards.c +++ b/hw/ppc405_boards.c @@ -221,8 +221,8 @@ static void ref405ep_init (ram_addr_t ram_size, bios_offset = qemu_ram_alloc(bios_size); fl_sectors = (bios_size + 65535) >> 16; #ifdef DEBUG_BOARD_INIT - printf("Register parallel flash %d size " ADDRX " at offset %08lx " - " addr " ADDRX " '%s' %d\n", + printf("Register parallel flash %d size " TARGET_FMT_lx + " at offset %08lx addr " TARGET_FMT_lx " '%s' %d\n", fl_idx, bios_size, bios_offset, -bios_size, bdrv_get_device_name(dinfo->bdrv), fl_sectors); #endif @@ -536,8 +536,8 @@ static void taihu_405ep_init(ram_addr_t ram_size, fl_sectors = (bios_size + 65535) >> 16; bios_offset = qemu_ram_alloc(bios_size); #ifdef DEBUG_BOARD_INIT - printf("Register parallel flash %d size " ADDRX " at offset %08lx " - " addr " ADDRX " '%s' %d\n", + printf("Register parallel flash %d size " TARGET_FMT_lx + " at offset %08lx addr " TARGET_FMT_lx " '%s' %d\n", fl_idx, bios_size, bios_offset, -bios_size, bdrv_get_device_name(dinfo->bdrv), fl_sectors); #endif @@ -577,8 +577,8 @@ static void taihu_405ep_init(ram_addr_t ram_size, bios_size = 32 * 1024 * 1024; fl_sectors = (bios_size + 65535) >> 16; #ifdef DEBUG_BOARD_INIT - printf("Register parallel flash %d size " ADDRX " at offset %08lx " - " addr " ADDRX " '%s'\n", + printf("Register parallel flash %d size " TARGET_FMT_lx + " at offset %08lx addr " TARGET_FMT_lx " '%s'\n", fl_idx, bios_size, bios_offset, (target_ulong)0xfc000000, bdrv_get_device_name(dinfo->bdrv)); #endif diff --git a/hw/ppc405_uc.c b/hw/ppc405_uc.c index e050b75e45..aa2f0db032 100644 --- a/hw/ppc405_uc.c +++ b/hw/ppc405_uc.c @@ -267,7 +267,7 @@ static uint32_t opba_readb (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif opba = opaque; switch (addr) { @@ -291,7 +291,8 @@ static void opba_writeb (void *opaque, ppc4xx_opba_t *opba; #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif opba = opaque; switch (addr) { @@ -311,7 +312,7 @@ static uint32_t opba_readw (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif ret = opba_readb(opaque, addr) << 8; ret |= opba_readb(opaque, addr + 1); @@ -323,7 +324,8 @@ static void opba_writew (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif opba_writeb(opaque, addr, value >> 8); opba_writeb(opaque, addr + 1, value); @@ -334,7 +336,7 @@ static uint32_t opba_readl (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif ret = opba_readb(opaque, addr) << 24; ret |= opba_readb(opaque, addr + 1) << 16; @@ -346,7 +348,8 @@ static void opba_writel (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_OPBA - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif opba_writeb(opaque, addr, value >> 24); opba_writeb(opaque, addr + 1, value >> 16); @@ -380,7 +383,7 @@ static void ppc4xx_opba_init(target_phys_addr_t base) opba = qemu_mallocz(sizeof(ppc4xx_opba_t)); #ifdef DEBUG_OPBA - printf("%s: offset " PADDRX "\n", __func__, base); + printf("%s: offset " TARGET_FMT_plx "\n", __func__, base); #endif io = cpu_register_io_memory(opba_read, opba_write, opba); cpu_register_physical_memory(base, 0x002, io); @@ -744,7 +747,7 @@ static uint32_t ppc405_gpio_readb (void *opaque, target_phys_addr_t addr) gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif return 0; @@ -757,7 +760,8 @@ static void ppc405_gpio_writeb (void *opaque, gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif } @@ -767,7 +771,7 @@ static uint32_t ppc405_gpio_readw (void *opaque, target_phys_addr_t addr) gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif return 0; @@ -780,7 +784,8 @@ static void ppc405_gpio_writew (void *opaque, gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif } @@ -790,7 +795,7 @@ static uint32_t ppc405_gpio_readl (void *opaque, target_phys_addr_t addr) gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif return 0; @@ -803,7 +808,8 @@ static void ppc405_gpio_writel (void *opaque, gpio = opaque; #ifdef DEBUG_GPIO - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif } @@ -833,7 +839,7 @@ static void ppc405_gpio_init(target_phys_addr_t base) gpio = qemu_mallocz(sizeof(ppc405_gpio_t)); #ifdef DEBUG_GPIO - printf("%s: offset " PADDRX "\n", __func__, base); + printf("%s: offset " TARGET_FMT_plx "\n", __func__, base); #endif io = cpu_register_io_memory(ppc405_gpio_read, ppc405_gpio_write, gpio); cpu_register_physical_memory(base, 0x038, io); @@ -1035,7 +1041,7 @@ static uint32_t ppc4xx_i2c_readb (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_I2C - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif i2c = opaque; switch (addr) { @@ -1090,7 +1096,7 @@ static uint32_t ppc4xx_i2c_readb (void *opaque, target_phys_addr_t addr) break; } #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " %02" PRIx32 "\n", __func__, addr, ret); + printf("%s: addr " TARGET_FMT_plx " %02" PRIx32 "\n", __func__, addr, ret); #endif return ret; @@ -1102,7 +1108,8 @@ static void ppc4xx_i2c_writeb (void *opaque, ppc4xx_i2c_t *i2c; #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif i2c = opaque; switch (addr) { @@ -1160,7 +1167,7 @@ static uint32_t ppc4xx_i2c_readw (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_I2C - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif ret = ppc4xx_i2c_readb(opaque, addr) << 8; ret |= ppc4xx_i2c_readb(opaque, addr + 1); @@ -1172,7 +1179,8 @@ static void ppc4xx_i2c_writew (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif ppc4xx_i2c_writeb(opaque, addr, value >> 8); ppc4xx_i2c_writeb(opaque, addr + 1, value); @@ -1183,7 +1191,7 @@ static uint32_t ppc4xx_i2c_readl (void *opaque, target_phys_addr_t addr) uint32_t ret; #ifdef DEBUG_I2C - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif ret = ppc4xx_i2c_readb(opaque, addr) << 24; ret |= ppc4xx_i2c_readb(opaque, addr + 1) << 16; @@ -1197,7 +1205,8 @@ static void ppc4xx_i2c_writel (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif ppc4xx_i2c_writeb(opaque, addr, value >> 24); ppc4xx_i2c_writeb(opaque, addr + 1, value >> 16); @@ -1241,7 +1250,7 @@ static void ppc405_i2c_init(target_phys_addr_t base, qemu_irq irq) i2c = qemu_mallocz(sizeof(ppc4xx_i2c_t)); i2c->irq = irq; #ifdef DEBUG_I2C - printf("%s: offset " PADDRX "\n", __func__, base); + printf("%s: offset " TARGET_FMT_plx "\n", __func__, base); #endif io = cpu_register_io_memory(i2c_read, i2c_write, i2c); cpu_register_physical_memory(base, 0x011, io); @@ -1269,7 +1278,7 @@ struct ppc4xx_gpt_t { static uint32_t ppc4xx_gpt_readb (void *opaque, target_phys_addr_t addr) { #ifdef DEBUG_GPT - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif /* XXX: generate a bus fault */ return -1; @@ -1279,7 +1288,8 @@ static void ppc4xx_gpt_writeb (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif /* XXX: generate a bus fault */ } @@ -1287,7 +1297,7 @@ static void ppc4xx_gpt_writeb (void *opaque, static uint32_t ppc4xx_gpt_readw (void *opaque, target_phys_addr_t addr) { #ifdef DEBUG_GPT - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif /* XXX: generate a bus fault */ return -1; @@ -1297,7 +1307,8 @@ static void ppc4xx_gpt_writew (void *opaque, target_phys_addr_t addr, uint32_t value) { #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif /* XXX: generate a bus fault */ } @@ -1361,7 +1372,7 @@ static uint32_t ppc4xx_gpt_readl (void *opaque, target_phys_addr_t addr) int idx; #ifdef DEBUG_GPT - printf("%s: addr " PADDRX "\n", __func__, addr); + printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); #endif gpt = opaque; switch (addr) { @@ -1416,7 +1427,8 @@ static void ppc4xx_gpt_writel (void *opaque, int idx; #ifdef DEBUG_I2C - printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value); + printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n", __func__, addr, + value); #endif gpt = opaque; switch (addr) { @@ -1522,7 +1534,7 @@ static void ppc4xx_gpt_init(target_phys_addr_t base, qemu_irq irqs[5]) } gpt->timer = qemu_new_timer(vm_clock, &ppc4xx_gpt_cb, gpt); #ifdef DEBUG_GPT - printf("%s: offset " PADDRX "\n", __func__, base); + printf("%s: offset " TARGET_FMT_plx "\n", __func__, base); #endif io = cpu_register_io_memory(gpt_read, gpt_write, gpt); cpu_register_physical_memory(base, 0x0d4, io); diff --git a/hw/ppc4xx_devs.c b/hw/ppc4xx_devs.c index 9c1f7d8cff..0b1c93b802 100644 --- a/hw/ppc4xx_devs.c +++ b/hw/ppc4xx_devs.c @@ -235,7 +235,7 @@ static void dcr_write_uic (void *opaque, int dcrn, target_ulong val) uic = opaque; dcrn -= uic->dcr_base; - LOG_UIC("%s: dcr %d val " ADDRX "\n", __func__, dcrn, val); + LOG_UIC("%s: dcr %d val " TARGET_FMT_lx "\n", __func__, dcrn, val); switch (dcrn) { case DCR_UICSR: uic->uicsr &= ~val; @@ -368,7 +368,8 @@ static uint32_t sdram_bcr (target_phys_addr_t ram_base, bcr = 0x000C0000; break; default: - printf("%s: invalid RAM size " PADDRX "\n", __func__, ram_size); + printf("%s: invalid RAM size " TARGET_FMT_plx "\n", __func__, + ram_size); return 0x00000000; } bcr |= ram_base & 0xFF800000; @@ -401,7 +402,7 @@ static void sdram_set_bcr (uint32_t *bcrp, uint32_t bcr, int enabled) if (*bcrp & 0x00000001) { /* Unmap RAM */ #ifdef DEBUG_SDRAM - printf("%s: unmap RAM area " PADDRX " " ADDRX "\n", + printf("%s: unmap RAM area " TARGET_FMT_plx " " TARGET_FMT_lx "\n", __func__, sdram_base(*bcrp), sdram_size(*bcrp)); #endif cpu_register_physical_memory(sdram_base(*bcrp), sdram_size(*bcrp), @@ -410,7 +411,7 @@ static void sdram_set_bcr (uint32_t *bcrp, uint32_t bcr, int enabled) *bcrp = bcr & 0xFFDEE001; if (enabled && (bcr & 0x00000001)) { #ifdef DEBUG_SDRAM - printf("%s: Map RAM area " PADDRX " " ADDRX "\n", + printf("%s: Map RAM area " TARGET_FMT_plx " " TARGET_FMT_lx "\n", __func__, sdram_base(bcr), sdram_size(bcr)); #endif cpu_register_physical_memory(sdram_base(bcr), sdram_size(bcr), @@ -439,7 +440,7 @@ static void sdram_unmap_bcr (ppc4xx_sdram_t *sdram) for (i = 0; i < sdram->nbanks; i++) { #ifdef DEBUG_SDRAM - printf("%s: Unmap RAM area " PADDRX " " ADDRX "\n", + printf("%s: Unmap RAM area " TARGET_FMT_plx " " TARGET_FMT_lx "\n", __func__, sdram_base(sdram->bcr[i]), sdram_size(sdram->bcr[i])); #endif cpu_register_physical_memory(sdram_base(sdram->bcr[i]), diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index 3dae4588dd..adfa44d0a0 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -112,7 +112,10 @@ static uint32_t speaker_ioport_read (void *opaque, uint32_t addr) static void _PPC_intack_write (void *opaque, target_phys_addr_t addr, uint32_t value) { -// printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); +#if 0 + printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, + value); +#endif } static inline uint32_t _PPC_intack_read(target_phys_addr_t addr) @@ -121,7 +124,10 @@ static inline uint32_t _PPC_intack_read(target_phys_addr_t addr) if ((addr & 0xf) == 0) retval = pic_intack_read(isa_pic); -// printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); +#if 0 + printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, + retval); +#endif return retval; } @@ -191,7 +197,8 @@ static struct { static void PPC_XCSR_writeb (void *opaque, target_phys_addr_t addr, uint32_t value) { - printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); + printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, + value); } static void PPC_XCSR_writew (void *opaque, @@ -200,7 +207,8 @@ static void PPC_XCSR_writew (void *opaque, #ifdef TARGET_WORDS_BIGENDIAN value = bswap16(value); #endif - printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); + printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, + value); } static void PPC_XCSR_writel (void *opaque, @@ -209,14 +217,16 @@ static void PPC_XCSR_writel (void *opaque, #ifdef TARGET_WORDS_BIGENDIAN value = bswap32(value); #endif - printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value); + printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr, + value); } static uint32_t PPC_XCSR_readb (void *opaque, target_phys_addr_t addr) { uint32_t retval = 0; - printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); + printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, + retval); return retval; } @@ -225,7 +235,8 @@ static uint32_t PPC_XCSR_readw (void *opaque, target_phys_addr_t addr) { uint32_t retval = 0; - printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); + printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, + retval); #ifdef TARGET_WORDS_BIGENDIAN retval = bswap16(retval); #endif @@ -237,7 +248,8 @@ static uint32_t PPC_XCSR_readl (void *opaque, target_phys_addr_t addr) { uint32_t retval = 0; - printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval); + printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr, + retval); #ifdef TARGET_WORDS_BIGENDIAN retval = bswap32(retval); #endif @@ -469,7 +481,7 @@ static void PPC_prep_io_writew (void *opaque, target_phys_addr_t addr, #ifdef TARGET_WORDS_BIGENDIAN value = bswap16(value); #endif - PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value); + PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value); cpu_outw(NULL, addr, value); } @@ -483,7 +495,7 @@ static uint32_t PPC_prep_io_readw (void *opaque, target_phys_addr_t addr) #ifdef TARGET_WORDS_BIGENDIAN ret = bswap16(ret); #endif - PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret); + PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret); return ret; } @@ -497,7 +509,7 @@ static void PPC_prep_io_writel (void *opaque, target_phys_addr_t addr, #ifdef TARGET_WORDS_BIGENDIAN value = bswap32(value); #endif - PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value); + PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value); cpu_outl(NULL, addr, value); } @@ -511,7 +523,7 @@ static uint32_t PPC_prep_io_readl (void *opaque, target_phys_addr_t addr) #ifdef TARGET_WORDS_BIGENDIAN ret = bswap32(ret); #endif - PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret); + PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret); return ret; } |