From patchwork Tue Feb 12 16:28:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 219888 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id A927E2C0089 for ; Wed, 13 Feb 2013 03:29:46 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933360Ab3BLQ3d (ORCPT ); Tue, 12 Feb 2013 11:29:33 -0500 Received: from mail.free-electrons.com ([94.23.35.102]:45840 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933362Ab3BLQ3b (ORCPT ); Tue, 12 Feb 2013 11:29:31 -0500 Received: by mail.free-electrons.com (Postfix, from userid 106) id DB331861; Tue, 12 Feb 2013 17:29:30 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.free-electrons.com X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,SHORTCIRCUIT shortcircuit=ham autolearn=disabled version=3.3.2 Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 665A8825; Tue, 12 Feb 2013 17:29:30 +0100 (CET) From: Thomas Petazzoni To: Bjorn Helgaas , linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Lior Amsalem , Andrew Lunn , Russell King - ARM Linux , Jason Cooper , Arnd Bergmann , Stephen Warren , Thierry Reding , Eran Ben-Avi , Nadav Haklai , Maen Suleiman , Shadi Ammouri , Gregory Clement , Jason Gunthorpe , Tawfik Bayouk Subject: [PATCH 12/32] plat-orion: introduce ORION_ADDR_MAP_NO_REMAP Date: Tue, 12 Feb 2013 17:28:46 +0100 Message-Id: <1360686546-24277-13-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1360686546-24277-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1360686546-24277-1-git-send-email-thomas.petazzoni@free-electrons.com> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org Currently, the addr_map_info structure uses an "int remap" to allow SoC-specific code to specify whether a given address decoding window should be remapped, and if so, the remapping address. To do so, it tests if the int is less than zero (no remap) or greater than zero. Unfortunately, this prevents any remapping address that is higher than 2 GB. As a first step to fix this, we introduce ORION_ADDR_MAP_NO_REMAP define, that will be the "remap" value that SoC-specific code should pass to not have a remapping. Signed-off-by: Thomas Petazzoni --- arch/arm/plat-orion/include/plat/addr-map.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/plat-orion/include/plat/addr-map.h b/arch/arm/plat-orion/include/plat/addr-map.h index b76c065..0861b8c 100644 --- a/arch/arm/plat-orion/include/plat/addr-map.h +++ b/arch/arm/plat-orion/include/plat/addr-map.h @@ -41,6 +41,8 @@ struct orion_addr_map_info { const int remap; }; +#define ORION_ADDR_MAP_NO_REMAP (-1) + void __init orion_config_wins(struct orion_addr_map_cfg *cfg, const struct orion_addr_map_info *info);