[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PATCH 18/21] openpic: add basic support for MPIC v4.2
From: |
Alexander Graf |
Subject: |
Re: [Qemu-ppc] [PATCH 18/21] openpic: add basic support for MPIC v4.2 |
Date: |
Fri, 25 Jan 2013 20:33:00 +0100 |
On 25.01.2013, at 20:28, Scott Wood wrote:
> On 01/25/2013 01:23:52 PM, Blue Swirl wrote:
>> On Fri, Jan 25, 2013 at 12:53 PM, Alexander Graf <address@hidden> wrote:
>> > +
>> > +static int inttgt_to_output(int inttgt)
>> > +{
>> > + int i;
>> > +
>> > + for (i = 0; i < ARRAY_SIZE(inttgt_output); i++) {
>> > + if (inttgt_output[i][0] == inttgt) {
>> > + return inttgt_output[i][1];
>> > + }
>> > + }
>> > +
>> > + fprintf(stderr, "%s: unsupported inttgt %d\n", __func__, inttgt);
>> No objection, but how about converting this to qemu_log(LOG_UNIMP,...) later?
>
> OK, didn't know that existed.
And there I thought qemu_log as only meant for -d (TCG - aka CPU emulation) :).
Alex
- [Qemu-ppc] [PATCH 10/21] adb: QOM'ify Apple Desktop Bus, (continued)
- [Qemu-ppc] [PATCH 10/21] adb: QOM'ify Apple Desktop Bus, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 12/21] cuda: Move ADB bus into CUDA state, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 04/21] macio: Split MacIO in two, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 14/21] pseries: Improve handling of multiple PCI host bridges, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 09/21] cuda: QOM'ify CUDA, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 21/21] PPC: Move ppc specific hw emulation to hw/ppc, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 20/21] PPC: e500: Select MPIC v4.2 on ppce500 platform, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 18/21] openpic: add basic support for MPIC v4.2, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 19/21] PPC: e500: fix mpic_iack address, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 16/21] openpic: fix remaining issues from idr-to-destmask conversion, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 17/21] openpic: fix timer address decoding, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 11/21] adb: QOM'ify ADB devices, Alexander Graf, 2013/01/25
- [Qemu-ppc] [PATCH 02/21] macio: QOM'ify some more, Alexander Graf, 2013/01/25