From owner-p4-projects@FreeBSD.ORG Thu Sep 6 12:54:32 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0DD6116A421; Thu, 6 Sep 2007 12:54:32 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE03D16A41B for ; Thu, 6 Sep 2007 12:54:31 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD06013C483 for ; Thu, 6 Sep 2007 12:54:31 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l86CsVLk036106 for ; Thu, 6 Sep 2007 12:54:31 GMT (envelope-from gonzo@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l86CsV64036103 for perforce@freebsd.org; Thu, 6 Sep 2007 12:54:31 GMT (envelope-from gonzo@FreeBSD.org) Date: Thu, 6 Sep 2007 12:54:31 GMT Message-Id: <200709061254.l86CsV64036103@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to gonzo@FreeBSD.org using -f From: Oleksandr Tymoshenko To: Perforce Change Reviews Cc: Subject: PERFORCE change 126125 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2007 12:54:32 -0000 http://perforce.freebsd.org/chv.cgi?CH=126125 Change 126125 by gonzo@gonzo_jeeves on 2007/09/06 12:53:30 o Mem/IO window size should be shifted by 2. Affected files ... .. //depot/projects/mips2/src/sys/mips/mips32/idt/idtreg.h#3 edit Differences ... ==== //depot/projects/mips2/src/sys/mips/mips32/idt/idtreg.h#3 (text+ko) ==== @@ -66,15 +66,15 @@ #define IDT_PCI_LBA0 0x14 #define IDT_PCI_LBA0_CNTL 0x18 #define IDT_PCI_LBA_MSI 0x01 -#define IDT_PCI_LBA_SIZE_1MB 0x14 -#define IDT_PCI_LBA_SIZE_2MB 0x15 -#define IDT_PCI_LBA_SIZE_4MB 0x16 -#define IDT_PCI_LBA_SIZE_8MB 0x17 -#define IDT_PCI_LBA_SIZE_16MB 0x18 -#define IDT_PCI_LBA_SIZE_32MB 0x19 -#define IDT_PCI_LBA_SIZE_64MB 0x1A -#define IDT_PCI_LBA_SIZE_128MB 0x1B -#define IDT_PCI_LBA_SIZE_256MB 0x1C +#define IDT_PCI_LBA_SIZE_1MB (0x14 << 2) +#define IDT_PCI_LBA_SIZE_2MB (0x15 << 2) +#define IDT_PCI_LBA_SIZE_4MB (0x16 << 2) +#define IDT_PCI_LBA_SIZE_8MB (0x17 << 2) +#define IDT_PCI_LBA_SIZE_16MB (0x18 << 2) +#define IDT_PCI_LBA_SIZE_32MB (0x19 << 2) +#define IDT_PCI_LBA_SIZE_64MB (0x1A << 2) +#define IDT_PCI_LBA_SIZE_128MB (0x1B << 2) +#define IDT_PCI_LBA_SIZE_256MB (0x1C << 2) #define IDT_PCI_LBA_FE 0x80 #define IDT_PCI_LBA_RT 0x100 #define IDT_PCI_LBA0_MAP 0x1C