ich.c (5e3bc7144edd6e4fa2824944e5eb16c28197dd5a) | ich.c (a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33) |
---|---|
1/* 2 * QEMU ICH Emulation 3 * 4 * Copyright (c) 2010 Sebastian Herbszt <herbszt@gmx.de> 5 * Copyright (c) 2010 Alexander Graf <agraf@suse.de> 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 47 unchanged lines hidden (view full) --- 56 * c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57 * d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 58 * e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 59 * f0: 00 00 00 00 00 00 00 00 86 0f 02 00 00 00 00 00 60 * 61 */ 62 63#include <hw/hw.h> | 1/* 2 * QEMU ICH Emulation 3 * 4 * Copyright (c) 2010 Sebastian Herbszt <herbszt@gmx.de> 5 * Copyright (c) 2010 Alexander Graf <agraf@suse.de> 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 47 unchanged lines hidden (view full) --- 56 * c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57 * d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 58 * e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 59 * f0: 00 00 00 00 00 00 00 00 86 0f 02 00 00 00 00 00 60 * 61 */ 62 63#include <hw/hw.h> |
64#include <hw/msi.h> | 64#include <hw/pci/msi.h> |
65#include <hw/pc.h> | 65#include <hw/pc.h> |
66#include <hw/pci.h> | 66#include <hw/pci/pci.h> |
67#include <hw/isa.h> 68#include "block.h" 69#include "dma.h" 70 71#include <hw/ide/pci.h> 72#include <hw/ide/ahci.h> 73 74#define ICH9_SATA_CAP_OFFSET 0xA8 --- 97 unchanged lines hidden --- | 67#include <hw/isa.h> 68#include "block.h" 69#include "dma.h" 70 71#include <hw/ide/pci.h> 72#include <hw/ide/ahci.h> 73 74#define ICH9_SATA_CAP_OFFSET 0xA8 --- 97 unchanged lines hidden --- |