Deleted Added
full compact
pci_hostbridge.c (256755) pci_hostbridge.c (284900)
1/*-
2 * Copyright (c) 2011 NetApp, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2011 NetApp, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/10/usr.sbin/bhyve/pci_hostbridge.c 256755 2013-10-18 22:05:17Z grehan $
26 * $FreeBSD: stable/10/usr.sbin/bhyve/pci_hostbridge.c 284900 2015-06-28 03:22:26Z neel $
27 */
28
29#include <sys/cdefs.h>
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/10/usr.sbin/bhyve/pci_hostbridge.c 256755 2013-10-18 22:05:17Z grehan $");
30__FBSDID("$FreeBSD: stable/10/usr.sbin/bhyve/pci_hostbridge.c 284900 2015-06-28 03:22:26Z neel $");
31
32#include "pci_emul.h"
33
34static int
35pci_hostbridge_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts)
36{
37
38 /* config space */
39 pci_set_cfgdata16(pi, PCIR_VENDOR, 0x1275); /* NetApp */
40 pci_set_cfgdata16(pi, PCIR_DEVICE, 0x1275); /* NetApp */
31
32#include "pci_emul.h"
33
34static int
35pci_hostbridge_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts)
36{
37
38 /* config space */
39 pci_set_cfgdata16(pi, PCIR_VENDOR, 0x1275); /* NetApp */
40 pci_set_cfgdata16(pi, PCIR_DEVICE, 0x1275); /* NetApp */
41 pci_set_cfgdata8(pi, PCIR_HDRTYPE, PCIM_HDRTYPE_BRIDGE);
41 pci_set_cfgdata8(pi, PCIR_HDRTYPE, PCIM_HDRTYPE_NORMAL);
42 pci_set_cfgdata8(pi, PCIR_CLASS, PCIC_BRIDGE);
43 pci_set_cfgdata8(pi, PCIR_SUBCLASS, PCIS_BRIDGE_HOST);
44
45 pci_emul_add_pciecap(pi, PCIEM_TYPE_ROOT_PORT);
46
47 return (0);
48}
49

--- 21 unchanged lines hidden ---
42 pci_set_cfgdata8(pi, PCIR_CLASS, PCIC_BRIDGE);
43 pci_set_cfgdata8(pi, PCIR_SUBCLASS, PCIS_BRIDGE_HOST);
44
45 pci_emul_add_pciecap(pi, PCIEM_TYPE_ROOT_PORT);
46
47 return (0);
48}
49

--- 21 unchanged lines hidden ---