Received: from mail.onstor.com ([66.201.51.107]) by onstor-exch02.onstor.net with Microsoft SMTPSVC(6.0.3790.3959);
	 Sun, 31 Aug 2008 09:10:34 -0700
Received: from chiesmta2-1.messageone.com ([216.203.30.55]) by mail.onstor.com with Microsoft SMTPSVC(6.0.3790.3959);
	 Sun, 31 Aug 2008 09:10:33 -0700
Received: from ftp.linux-mips.org (ftp.linux-mips.org [213.58.128.207])
	by chiesmta2-1.messageone.com (8.13.8/8.13.8) with ESMTP id m7VGAWEW022490
	for <andy.sharp@onstor.com>; Sun, 31 Aug 2008 11:10:32 -0500
Received: from localhost.localdomain ([127.0.0.1]:19118 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP
	id S20033325AbYHaQKS (ORCPT <rfc822;andy.sharp@onstor.com>);
	Sun, 31 Aug 2008 17:10:18 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Sun, 31 Aug 2008 17:10:01 +0100 (BST)
Received: from elvis.franken.de ([193.175.24.41]:7603 "EHLO elvis.franken.de")
	by ftp.linux-mips.org with ESMTP id S20033258AbYHaQJ7 (ORCPT
	<rfc822;linux-mips@linux-mips.org>); Sun, 31 Aug 2008 17:09:59 +0100
Received: from uucp (helo=solo.franken.de)
	by elvis.franken.de with local-bsmtp (Exim 3.36 #1)
	id 1KZpUz-000467-00; Sun, 31 Aug 2008 18:09:57 +0200
Received: by solo.franken.de (Postfix, from userid 1000)
	id 183A2DE3B2; Sun, 31 Aug 2008 18:09:54 +0200 (CEST)
From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Subject: [PATCH] IP22: Fix handling of memory for I2 with more than 256MB
To: linux-mips@linux-mips.org
cc: ralf@linux-mips.org
Message-Id: <20080831160954.183A2DE3B2@solo.franken.de>
Date: 	Sun, 31 Aug 2008 18:09:54 +0200 (CEST)
X-archive-position: 20390
X-ecartis-version: Ecartis v1.0.0
Sender: linux-mips-bounce@linux-mips.org
Errors-to: linux-mips-bounce@linux-mips.org
X-original-sender: tsbogend@alpha.franken.de
Precedence: bulk
X-list: 	linux-mips
X-MessageOne-Virus-Version: vendor=fsecure engine=4.65.7161:2.4.4,1.2.40,4.0.164 definitions=2008-08-30_01:2008-08-28,2008-08-29,2008-08-30 signatures=0
X-MessageOne-Virus-Scanned: Clean
X-MessageOne-Envelope-Sender: linux-mips-bounce@linux-mips.org
X-MessageOne-Spam-Details: rule=m773emszm_notspam policy=m773emszm score=3 spamscore=3 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=3.1.0-0805090000 definitions=main-0808310050
X-MessageOne-Spam-Score: 3
X-MessageOne-Spam-Bar: *
Return-Path: linux-mips-bounce@linux-mips.org
X-OriginalArrivalTime: 31 Aug 2008 16:10:34.0005 (UTC) FILETIME=[1903FC50:01C90B84]

Indigo2 machines support up to 384MB of memory, but the memory layout
for IP22 didn't support that and caused a lockup during kernel
startup. IP22 uses now the default 64bit space setup like most of
the other machines.

Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
---

 include/asm-mips/mach-ip22/spaces.h |   27 ---------------------------
 2 files changed, 0 insertions(+), 45 deletions(-)

diff --git a/include/asm-mips/mach-ip22/spaces.h b/include/asm-mips/mach-ip22/spaces.h
deleted file mode 100644
index 7f9fa6f..0000000
--- a/include/asm-mips/mach-ip22/spaces.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * This file is subject to the terms and conditions of the GNU General Public
- * License.  See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle
- * Copyright (C) 2000, 2002  Maciej W. Rozycki
- * Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc.
- */
-#ifndef _ASM_MACH_IP22_SPACES_H
-#define _ASM_MACH_IP22_SPACES_H
-
-
-#ifdef CONFIG_64BIT
-
-#define PAGE_OFFSET		0xffffffff80000000UL
-
-#define CAC_BASE		0xffffffff80000000
-#define IO_BASE			0xffffffffa0000000
-#define UNCAC_BASE		0xffffffffa0000000
-#define MAP_BASE		0xc000000000000000
-
-#endif /* CONFIG_64BIT */
-
-#include <asm/mach-generic/spaces.h>
-
-#endif /* __ASM_MACH_IP22_SPACES_H */

