lasi_i82596.c (d328fef93ae757a0dd65ed786a4086e27952eef3) | lasi_i82596.c (960036440942f32644f6070d9a0fffcef7196aca) |
---|---|
1/* 2 * QEMU LASI NIC i82596 emulation 3 * 4 * Copyright (c) 2019 Helge Deller <deller@gmx.de> 5 * This work is licensed under the GNU GPL license version 2 or later. 6 * 7 * 8 * On PA-RISC, this is the Network part of LASI chip. 9 * See: 10 * https://parisc.wiki.kernel.org/images-parisc/7/79/Lasi_ers.pdf 11 */ 12 13#include "qemu/osdep.h" 14#include "qapi/error.h" 15#include "qemu/timer.h" 16#include "hw/sysbus.h" | 1/* 2 * QEMU LASI NIC i82596 emulation 3 * 4 * Copyright (c) 2019 Helge Deller <deller@gmx.de> 5 * This work is licensed under the GNU GPL license version 2 or later. 6 * 7 * 8 * On PA-RISC, this is the Network part of LASI chip. 9 * See: 10 * https://parisc.wiki.kernel.org/images-parisc/7/79/Lasi_ers.pdf 11 */ 12 13#include "qemu/osdep.h" 14#include "qapi/error.h" 15#include "qemu/timer.h" 16#include "hw/sysbus.h" |
17#include "sysemu/sysemu.h" |
|
17#include "net/eth.h" 18#include "hw/net/lasi_82596.h" 19#include "hw/net/i82596.h" 20#include "trace.h" 21#include "hw/qdev-properties.h" 22#include "migration/vmstate.h" 23 24#define PA_I82596_RESET 0 /* Offsets relative to LASI-LAN-Addr.*/ --- 165 unchanged lines hidden --- | 18#include "net/eth.h" 19#include "hw/net/lasi_82596.h" 20#include "hw/net/i82596.h" 21#include "trace.h" 22#include "hw/qdev-properties.h" 23#include "migration/vmstate.h" 24 25#define PA_I82596_RESET 0 /* Offsets relative to LASI-LAN-Addr.*/ --- 165 unchanged lines hidden --- |