raven.c (deabea6e88f7c4c3c12a36ee30051c6209561165) raven.c (e844f0c5d0bd2c4d8d3c1622eb2a88586c9c4677)
1/*
2 * QEMU PREP PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2011-2013 Andreas Färber
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 46 unchanged lines hidden (view full) ---

55
56typedef struct PRePPCIState PREPPCIState;
57DECLARE_INSTANCE_CHECKER(PREPPCIState, RAVEN_PCI_HOST_BRIDGE,
58 TYPE_RAVEN_PCI_HOST_BRIDGE)
59
60struct PRePPCIState {
61 PCIHostState parent_obj;
62
1/*
2 * QEMU PREP PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2011-2013 Andreas Färber
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal

--- 46 unchanged lines hidden (view full) ---

55
56typedef struct PRePPCIState PREPPCIState;
57DECLARE_INSTANCE_CHECKER(PREPPCIState, RAVEN_PCI_HOST_BRIDGE,
58 TYPE_RAVEN_PCI_HOST_BRIDGE)
59
60struct PRePPCIState {
61 PCIHostState parent_obj;
62
63 qemu_or_irq *or_irq;
63 OrIRQState *or_irq;
64 qemu_irq pci_irqs[PCI_NUM_PINS];
65 PCIBus pci_bus;
66 AddressSpace pci_io_as;
67 MemoryRegion pci_io;
68 MemoryRegion pci_io_non_contiguous;
69 MemoryRegion pci_memory;
70 MemoryRegion pci_intack;
71 MemoryRegion bm;

--- 374 unchanged lines hidden ---
64 qemu_irq pci_irqs[PCI_NUM_PINS];
65 PCIBus pci_bus;
66 AddressSpace pci_io_as;
67 MemoryRegion pci_io;
68 MemoryRegion pci_io_non_contiguous;
69 MemoryRegion pci_memory;
70 MemoryRegion pci_intack;
71 MemoryRegion bm;

--- 374 unchanged lines hidden ---