~ubuntu-branches/ubuntu/trusty/qemu/trusty

« back to all changes in this revision

Viewing changes to hw/pci-host/dec.c

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2013-10-22 22:47:07 UTC
  • mfrom: (1.8.3) (10.1.42 sid)
  • Revision ID: package-import@ubuntu.com-20131022224707-1lya34fw3k3f24tv
Tags: 1.6.0+dfsg-2ubuntu1
* Merge 1.6.0~rc0+dfsg-2exp from debian experimental.  Remaining changes:
  - debian/control
    * update maintainer
    * remove libiscsi, usb-redir, vde, vnc-jpeg, and libssh2-1-dev
      from build-deps
    * enable rbd
    * add qemu-system and qemu-common B/R to qemu-keymaps
    * add D:udev, R:qemu, R:qemu-common and B:qemu-common to
      qemu-system-common
    * qemu-system-arm, qemu-system-ppc, qemu-system-sparc:
      - add qemu-kvm to Provides
      - add qemu-common, qemu-kvm, kvm to B/R
      - remove openbios-sparc from qemu-system-sparc D
      - drop openbios-ppc and openhackware Depends to Suggests (for now)
    * qemu-system-x86:
      - add qemu-common to Breaks/Replaces.
      - add cpu-checker to Recommends.
    * qemu-user: add B/R:qemu-kvm
    * qemu-kvm:
      - add armhf armel powerpc sparc to Architecture
      - C/R/P: qemu-kvm-spice
    * add qemu-common package
    * drop qemu-slof which is not packaged in ubuntu
  - add qemu-system-common.links for tap ifup/down scripts and OVMF link.
  - qemu-system-x86.links:
    * remove pxe rom links which are in kvm-ipxe
    * add symlink for kvm.1 manpage
  - debian/rules
    * add kvm-spice symlink to qemu-kvm
    * call dh_installmodules for qemu-system-x86
    * update dh_installinit to install upstart script
    * run dh_installman (Closes: #709241) (cherrypicked from 1.5.0+dfsg-2)
  - Add qemu-utils.links for kvm-* symlinks.
  - Add qemu-system-x86.qemu-kvm.upstart and .default
  - Add qemu-system-x86.modprobe to set nesting=1
  - Add qemu-system-common.preinst to add kvm group
  - qemu-system-common.postinst: remove bad group acl if there, then have
    udev relabel /dev/kvm.
  - New linaro patches from qemu-linaro rebasing branch
  - Dropped patches:
    * xen-simplify-xen_enabled.patch
    * sparc-linux-user-fix-missing-symbols-in-.rel-.rela.plt-sections.patch
    * main_loop-do-not-set-nonblocking-if-xen_enabled.patch
    * xen_machine_pv-do-not-create-a-dummy-CPU-in-machine-.patch
    * virtio-rng-fix-crash
  - Kept patches:
    * expose_vms_qemu64cpu.patch - updated
    * linaro arm patches from qemu-linaro rebasing branch
  - New patches:
    * fix-pci-add: change CONFIG variable in ifdef to make sure that
      pci_add is defined.
* Add linaro patches
* Add experimental mach-virt patches for arm virtualization.
* qemu-system-common.install: add debian/tmp/usr/lib to install the
  qemu-bridge-helper

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * QEMU DEC 21154 PCI bridge
3
 
 *
4
 
 * Copyright (c) 2006-2007 Fabrice Bellard
5
 
 * Copyright (c) 2007 Jocelyn Mayer
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
9
 
 * in the Software without restriction, including without limitation the rights
10
 
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
 
 * copies of the Software, and to permit persons to whom the Software is
12
 
 * furnished to do so, subject to the following conditions:
13
 
 *
14
 
 * The above copyright notice and this permission notice shall be included in
15
 
 * all copies or substantial portions of the Software.
16
 
 *
17
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20
 
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
 
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
 
 * THE SOFTWARE.
24
 
 */
25
 
 
26
 
#include "dec.h"
27
 
#include "hw/sysbus.h"
28
 
#include "hw/pci/pci.h"
29
 
#include "hw/pci/pci_host.h"
30
 
#include "hw/pci/pci_bridge.h"
31
 
#include "hw/pci/pci_bus.h"
32
 
 
33
 
/* debug DEC */
34
 
//#define DEBUG_DEC
35
 
 
36
 
#ifdef DEBUG_DEC
37
 
#define DEC_DPRINTF(fmt, ...)                               \
38
 
    do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0)
39
 
#else
40
 
#define DEC_DPRINTF(fmt, ...)
41
 
#endif
42
 
 
43
 
#define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154)
44
 
 
45
 
typedef struct DECState {
46
 
    PCIHostState parent_obj;
47
 
} DECState;
48
 
 
49
 
static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
50
 
{
51
 
    return irq_num;
52
 
}
53
 
 
54
 
static int dec_pci_bridge_initfn(PCIDevice *pci_dev)
55
 
{
56
 
    return pci_bridge_initfn(pci_dev, TYPE_PCI_BUS);
57
 
}
58
 
 
59
 
static void dec_21154_pci_bridge_class_init(ObjectClass *klass, void *data)
60
 
{
61
 
    DeviceClass *dc = DEVICE_CLASS(klass);
62
 
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
63
 
 
64
 
    k->init = dec_pci_bridge_initfn;
65
 
    k->exit = pci_bridge_exitfn;
66
 
    k->vendor_id = PCI_VENDOR_ID_DEC;
67
 
    k->device_id = PCI_DEVICE_ID_DEC_21154;
68
 
    k->config_write = pci_bridge_write_config;
69
 
    k->is_bridge = 1;
70
 
    dc->desc = "DEC 21154 PCI-PCI bridge";
71
 
    dc->reset = pci_bridge_reset;
72
 
    dc->vmsd = &vmstate_pci_device;
73
 
}
74
 
 
75
 
static const TypeInfo dec_21154_pci_bridge_info = {
76
 
    .name          = "dec-21154-p2p-bridge",
77
 
    .parent        = TYPE_PCI_DEVICE,
78
 
    .instance_size = sizeof(PCIBridge),
79
 
    .class_init    = dec_21154_pci_bridge_class_init,
80
 
};
81
 
 
82
 
PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
83
 
{
84
 
    PCIDevice *dev;
85
 
    PCIBridge *br;
86
 
 
87
 
    dev = pci_create_multifunction(parent_bus, devfn, false,
88
 
                                   "dec-21154-p2p-bridge");
89
 
    br = DO_UPCAST(PCIBridge, dev, dev);
90
 
    pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq);
91
 
    qdev_init_nofail(&dev->qdev);
92
 
    return pci_bridge_get_sec_bus(br);
93
 
}
94
 
 
95
 
static int pci_dec_21154_device_init(SysBusDevice *dev)
96
 
{
97
 
    PCIHostState *phb;
98
 
 
99
 
    phb = PCI_HOST_BRIDGE(dev);
100
 
 
101
 
    memory_region_init_io(&phb->conf_mem, &pci_host_conf_le_ops,
102
 
                          dev, "pci-conf-idx", 0x1000);
103
 
    memory_region_init_io(&phb->data_mem, &pci_host_data_le_ops,
104
 
                          dev, "pci-data-idx", 0x1000);
105
 
    sysbus_init_mmio(dev, &phb->conf_mem);
106
 
    sysbus_init_mmio(dev, &phb->data_mem);
107
 
    return 0;
108
 
}
109
 
 
110
 
static int dec_21154_pci_host_init(PCIDevice *d)
111
 
{
112
 
    /* PCI2PCI bridge same values as PearPC - check this */
113
 
    return 0;
114
 
}
115
 
 
116
 
static void dec_21154_pci_host_class_init(ObjectClass *klass, void *data)
117
 
{
118
 
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
119
 
 
120
 
    k->init = dec_21154_pci_host_init;
121
 
    k->vendor_id = PCI_VENDOR_ID_DEC;
122
 
    k->device_id = PCI_DEVICE_ID_DEC_21154;
123
 
    k->revision = 0x02;
124
 
    k->class_id = PCI_CLASS_BRIDGE_PCI;
125
 
    k->is_bridge = 1;
126
 
}
127
 
 
128
 
static const TypeInfo dec_21154_pci_host_info = {
129
 
    .name          = "dec-21154",
130
 
    .parent        = TYPE_PCI_DEVICE,
131
 
    .instance_size = sizeof(PCIDevice),
132
 
    .class_init    = dec_21154_pci_host_class_init,
133
 
};
134
 
 
135
 
static void pci_dec_21154_device_class_init(ObjectClass *klass, void *data)
136
 
{
137
 
    SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
138
 
 
139
 
    sdc->init = pci_dec_21154_device_init;
140
 
}
141
 
 
142
 
static const TypeInfo pci_dec_21154_device_info = {
143
 
    .name          = TYPE_DEC_21154,
144
 
    .parent        = TYPE_PCI_HOST_BRIDGE,
145
 
    .instance_size = sizeof(DECState),
146
 
    .class_init    = pci_dec_21154_device_class_init,
147
 
};
148
 
 
149
 
static void dec_register_types(void)
150
 
{
151
 
    type_register_static(&pci_dec_21154_device_info);
152
 
    type_register_static(&dec_21154_pci_host_info);
153
 
    type_register_static(&dec_21154_pci_bridge_info);
154
 
}
155
 
 
156
 
type_init(dec_register_types)