diff options
| author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-28 23:42:18 +0000 |
|---|---|---|
| committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-28 23:42:18 +0000 |
| commit | 3cbee15b9a6be17645e908bf7706d582c3e17156 (patch) | |
| tree | b89a5f1cfea3fdb8e95325108afc229a3ec3fa9e /hw/cuda.c | |
| parent | 897b4c6c4e63afebdd41de0f1a19e17ab1f4c2b8 (diff) | |
| download | focaccia-qemu-3cbee15b9a6be17645e908bf7706d582c3e17156.tar.gz focaccia-qemu-3cbee15b9a6be17645e908bf7706d582c3e17156.zip | |
* sort the PowerPC target object files
* make PowerPC NVRAM accessors generic to be able to use a MacIO NVRAM instead of the M48T59 one * split PowerMac targets code: - move all PowerMac related definitions and prototypes into hw/ppc_mac.h - add hw/mac_dbdma.c, hw/mac_nvram.c and macio.c which implements shared PowerMac devices - define the g3bw machine in a new hw/ppc_oldworld.c file * Fix the g3bw target: - fix the Grackle host PCI device - connect the Heathrow PIC to the PowerPC 6xx bus pins git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3475 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/cuda.c')
| -rw-r--r-- | hw/cuda.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/cuda.c b/hw/cuda.c index 9a05aebb5f..42e357e3cc 100644 --- a/hw/cuda.c +++ b/hw/cuda.c @@ -1,7 +1,8 @@ /* - * QEMU CUDA support + * QEMU PowerMac CUDA device support * - * Copyright (c) 2004 Fabrice Bellard + * Copyright (c) 2004-2007 Fabrice Bellard + * Copyright (c) 2007 Jocelyn Mayer * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -22,6 +23,7 @@ * THE SOFTWARE. */ #include "vl.h" +#include "ppc_mac.h" /* XXX: implement all timer modes */ @@ -634,10 +636,9 @@ static CPUReadMemoryFunc *cuda_read[] = { &cuda_readl, }; -int cuda_init(qemu_irq irq) +void cuda_init (int *cuda_mem_index, qemu_irq irq) { CUDAState *s = &cuda_state; - int cuda_mem_index; s->irq = irq; @@ -653,6 +654,5 @@ int cuda_init(qemu_irq irq) set_counter(s, &s->timers[1], 0xffff); s->adb_poll_timer = qemu_new_timer(vm_clock, cuda_adb_poll, s); - cuda_mem_index = cpu_register_io_memory(0, cuda_read, cuda_write, s); - return cuda_mem_index; + *cuda_mem_index = cpu_register_io_memory(0, cuda_read, cuda_write, s); } |