diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-10 00:02:10 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-10 00:02:10 +0000 |
commit | e94bbefe59c0463f5187c6adf9d6d08562112dad (patch) | |
tree | d350dbea4679c4ca3f777667bb88d60554f10f02 /hw | |
parent | 3adda04ca24b1b8dee5bcddd972865bb38b3bca8 (diff) |
Change the e1000 mmio addr space according to spec.
According to the Intel 82540EM manual, the mmio space is
128k size.
Copied from Xen list and noted by tina..yang@oracle.com
Signed-off-by: Dor Laor <dor.laor@qumranet.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4032 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/e1000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/e1000.c b/hw/e1000.c index 943f25f285..1c77afc369 100644 --- a/hw/e1000.c +++ b/hw/e1000.c @@ -50,7 +50,7 @@ static int debugflags = DBGBIT(TXERR) | DBGBIT(GENERAL); #endif #define IOPORT_SIZE 0x40 -#define PNPMMIO_SIZE 0x60000 +#define PNPMMIO_SIZE 0x20000 /* * HW models: |