mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b72
.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
99a0949b72
commit
c227f0995e
316 changed files with 3332 additions and 3325 deletions
|
@ -52,15 +52,15 @@
|
|||
* - NVRAM (0xF0000000)
|
||||
* - FPGA (0xF0300000)
|
||||
*/
|
||||
typedef struct ref405ep_fpga a_ref405ep_fpga;
|
||||
struct ref405ep_fpga {
|
||||
typedef struct ref405ep_fpga_t ref405ep_fpga_t;
|
||||
struct ref405ep_fpga_t {
|
||||
uint8_t reg0;
|
||||
uint8_t reg1;
|
||||
};
|
||||
|
||||
static uint32_t ref405ep_fpga_readb (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t ref405ep_fpga_readb (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
a_ref405ep_fpga *fpga;
|
||||
ref405ep_fpga_t *fpga;
|
||||
uint32_t ret;
|
||||
|
||||
fpga = opaque;
|
||||
|
@ -80,9 +80,9 @@ static uint32_t ref405ep_fpga_readb (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void ref405ep_fpga_writeb (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
a_ref405ep_fpga *fpga;
|
||||
ref405ep_fpga_t *fpga;
|
||||
|
||||
fpga = opaque;
|
||||
switch (addr) {
|
||||
|
@ -97,7 +97,7 @@ static void ref405ep_fpga_writeb (void *opaque,
|
|||
}
|
||||
}
|
||||
|
||||
static uint32_t ref405ep_fpga_readw (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t ref405ep_fpga_readw (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
uint32_t ret;
|
||||
|
||||
|
@ -108,13 +108,13 @@ static uint32_t ref405ep_fpga_readw (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void ref405ep_fpga_writew (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
ref405ep_fpga_writeb(opaque, addr, (value >> 8) & 0xFF);
|
||||
ref405ep_fpga_writeb(opaque, addr + 1, value & 0xFF);
|
||||
}
|
||||
|
||||
static uint32_t ref405ep_fpga_readl (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t ref405ep_fpga_readl (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
uint32_t ret;
|
||||
|
||||
|
@ -127,7 +127,7 @@ static uint32_t ref405ep_fpga_readl (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void ref405ep_fpga_writel (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
ref405ep_fpga_writeb(opaque, addr, (value >> 24) & 0xFF);
|
||||
ref405ep_fpga_writeb(opaque, addr + 1, (value >> 16) & 0xFF);
|
||||
|
@ -149,7 +149,7 @@ static CPUWriteMemoryFunc * const ref405ep_fpga_write[] = {
|
|||
|
||||
static void ref405ep_fpga_reset (void *opaque)
|
||||
{
|
||||
a_ref405ep_fpga *fpga;
|
||||
ref405ep_fpga_t *fpga;
|
||||
|
||||
fpga = opaque;
|
||||
fpga->reg0 = 0x00;
|
||||
|
@ -158,10 +158,10 @@ static void ref405ep_fpga_reset (void *opaque)
|
|||
|
||||
static void ref405ep_fpga_init (uint32_t base)
|
||||
{
|
||||
a_ref405ep_fpga *fpga;
|
||||
ref405ep_fpga_t *fpga;
|
||||
int fpga_memory;
|
||||
|
||||
fpga = qemu_mallocz(sizeof(a_ref405ep_fpga));
|
||||
fpga = qemu_mallocz(sizeof(ref405ep_fpga_t));
|
||||
fpga_memory = cpu_register_io_memory(ref405ep_fpga_read,
|
||||
ref405ep_fpga_write, fpga);
|
||||
cpu_register_physical_memory(base, 0x00000100, fpga_memory);
|
||||
|
@ -169,7 +169,7 @@ static void ref405ep_fpga_init (uint32_t base)
|
|||
qemu_register_reset(&ref405ep_fpga_reset, fpga);
|
||||
}
|
||||
|
||||
static void ref405ep_init (a_ram_addr ram_size,
|
||||
static void ref405ep_init (ram_addr_t ram_size,
|
||||
const char *boot_device,
|
||||
const char *kernel_filename,
|
||||
const char *kernel_cmdline,
|
||||
|
@ -177,11 +177,11 @@ static void ref405ep_init (a_ram_addr ram_size,
|
|||
const char *cpu_model)
|
||||
{
|
||||
char *filename;
|
||||
a_ppc4xx_bd_info bd;
|
||||
ppc4xx_bd_info_t bd;
|
||||
CPUPPCState *env;
|
||||
qemu_irq *pic;
|
||||
a_ram_addr sram_offset, bios_offset, bdloc;
|
||||
a_target_phys_addr ram_bases[2], ram_sizes[2];
|
||||
ram_addr_t sram_offset, bios_offset, bdloc;
|
||||
target_phys_addr_t ram_bases[2], ram_sizes[2];
|
||||
target_ulong sram_size, bios_size;
|
||||
//int phy_addr = 0;
|
||||
//static int phy_addr = 1;
|
||||
|
@ -382,7 +382,7 @@ struct taihu_cpld_t {
|
|||
uint8_t reg1;
|
||||
};
|
||||
|
||||
static uint32_t taihu_cpld_readb (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t taihu_cpld_readb (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
taihu_cpld_t *cpld;
|
||||
uint32_t ret;
|
||||
|
@ -404,7 +404,7 @@ static uint32_t taihu_cpld_readb (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void taihu_cpld_writeb (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
taihu_cpld_t *cpld;
|
||||
|
||||
|
@ -421,7 +421,7 @@ static void taihu_cpld_writeb (void *opaque,
|
|||
}
|
||||
}
|
||||
|
||||
static uint32_t taihu_cpld_readw (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t taihu_cpld_readw (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
uint32_t ret;
|
||||
|
||||
|
@ -432,13 +432,13 @@ static uint32_t taihu_cpld_readw (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void taihu_cpld_writew (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
taihu_cpld_writeb(opaque, addr, (value >> 8) & 0xFF);
|
||||
taihu_cpld_writeb(opaque, addr + 1, value & 0xFF);
|
||||
}
|
||||
|
||||
static uint32_t taihu_cpld_readl (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t taihu_cpld_readl (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
uint32_t ret;
|
||||
|
||||
|
@ -451,7 +451,7 @@ static uint32_t taihu_cpld_readl (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void taihu_cpld_writel (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
taihu_cpld_writel(opaque, addr, (value >> 24) & 0xFF);
|
||||
taihu_cpld_writel(opaque, addr + 1, (value >> 16) & 0xFF);
|
||||
|
@ -493,7 +493,7 @@ static void taihu_cpld_init (uint32_t base)
|
|||
qemu_register_reset(&taihu_cpld_reset, cpld);
|
||||
}
|
||||
|
||||
static void taihu_405ep_init(a_ram_addr ram_size,
|
||||
static void taihu_405ep_init(ram_addr_t ram_size,
|
||||
const char *boot_device,
|
||||
const char *kernel_filename,
|
||||
const char *kernel_cmdline,
|
||||
|
@ -503,8 +503,8 @@ static void taihu_405ep_init(a_ram_addr ram_size,
|
|||
char *filename;
|
||||
CPUPPCState *env;
|
||||
qemu_irq *pic;
|
||||
a_ram_addr bios_offset;
|
||||
a_target_phys_addr ram_bases[2], ram_sizes[2];
|
||||
ram_addr_t bios_offset;
|
||||
target_phys_addr_t ram_bases[2], ram_sizes[2];
|
||||
target_ulong bios_size;
|
||||
target_ulong kernel_base, kernel_size, initrd_base, initrd_size;
|
||||
int linux_boot;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue