Statistics
| Branch: | Revision:

root / hw / dec_pci.c @ 783753fd

History | View | Annotate | Download (3.2 kB)

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_pci.h"
27
#include "sysbus.h"
28
#include "pci.h"
29
#include "pci_host.h"
30
#include "pci_bridge.h"
31

    
32
/* debug DEC */
33
//#define DEBUG_DEC
34

    
35
#ifdef DEBUG_DEC
36
#define DEC_DPRINTF(fmt, ...)                               \
37
    do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0)
38
#else
39
#define DEC_DPRINTF(fmt, ...)
40
#endif
41

    
42
typedef struct DECState {
43
    SysBusDevice busdev;
44
    PCIHostState host_state;
45
} DECState;
46

    
47
static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
48
{
49
    return irq_num;
50
}
51

    
52
PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
53
{
54
    DeviceState *dev;
55
    PCIBus *ret;
56

    
57
    dev = qdev_create(NULL, "dec-21154");
58
    qdev_init_nofail(dev);
59
    ret = pci_bridge_init(parent_bus, devfn, false,
60
                          PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21154,
61
                          dec_map_irq, "DEC 21154 PCI-PCI bridge");
62

    
63
    return ret;
64
}
65

    
66
static int pci_dec_21154_init_device(SysBusDevice *dev)
67
{
68
    DECState *s;
69
    int pci_mem_config, pci_mem_data;
70

    
71
    s = FROM_SYSBUS(DECState, dev);
72

    
73
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state, 1);
74
    pci_mem_data = pci_host_data_register_mmio(&s->host_state, 1);
75
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
76
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
77
    return 0;
78
}
79

    
80
static int dec_21154_pci_host_init(PCIDevice *d)
81
{
82
    /* PCI2PCI bridge same values as PearPC - check this */
83
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_DEC);
84
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_DEC_21154);
85
    pci_set_byte(d->config + PCI_REVISION_ID, 0x02);
86
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_PCI);
87
    return 0;
88
}
89

    
90
static PCIDeviceInfo dec_21154_pci_host_info = {
91
    .qdev.name = "dec-21154",
92
    .qdev.size = sizeof(PCIDevice),
93
    .init      = dec_21154_pci_host_init,
94
    .is_bridge  = 1,
95
};
96

    
97
static void dec_register_devices(void)
98
{
99
    sysbus_register_dev("dec-21154", sizeof(DECState),
100
                        pci_dec_21154_init_device);
101
    pci_qdev_register(&dec_21154_pci_host_info);
102
}
103

    
104
device_init(dec_register_devices)