From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-lb0-x22b.google.com ([2a00:1450:4010:c04::22b]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZwQsz-0007bL-44 for barebox@lists.infradead.org; Wed, 11 Nov 2015 08:36:09 +0000 Received: by lbblt2 with SMTP id lt2so12886492lbb.3 for ; Wed, 11 Nov 2015 00:35:47 -0800 (PST) From: Antony Pavlov Date: Wed, 11 Nov 2015 11:35:40 +0300 Message-Id: <1447230942-24098-2-git-send-email-antonynpavlov@gmail.com> In-Reply-To: <1447230942-24098-1-git-send-email-antonynpavlov@gmail.com> References: <1447230942-24098-1-git-send-email-antonynpavlov@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH v2 1/3] MIPS: pbl: add pbl_blt macro To: barebox@lists.infradead.org Cc: Oleksij Rempel From: Oleksij Rempel Barebox' PBL is able to initialize SoC's memory controller, but it can be used only if PBL runs from ROM or on-chip SRAM. MIPS architecture standard boot vector is 0xbfc00000 so on most MIPS SoCs all addresses higher than 0xbfc00000 belong to boot ROM or on-chip SRAM. Thus there's a simple criterion to check if PBL runs from ROM: just check if current PC is higher than 0xbfc00000. Some MIPS boards have ROM start address lower than 0xbfc00000 so it's reasonable to make ROM start address checking board-dependant. The pbl_blt macro checks if current pc is lower than the first argument (ROM start address). If so then next instruction executed is defined by the second argument of the macro. Signed-off-by: Oleksij Rempel Signed-off-by: Antony Pavlov Tested-by: Yegor Yefremov --- arch/mips/include/asm/pbl_macros.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arch/mips/include/asm/pbl_macros.h b/arch/mips/include/asm/pbl_macros.h index c4ae6a2..dbe3410 100644 --- a/arch/mips/include/asm/pbl_macros.h +++ b/arch/mips/include/asm/pbl_macros.h @@ -60,6 +60,18 @@ .set pop .endm + .macro pbl_blt addr label tmp + .set push + .set noreorder + move \tmp, ra # preserve ra beforehand + bal 253f + nop +253: + bltu ra, \addr, \label + move ra, \tmp # restore ra + .set pop + .endm + .macro pbl_sleep reg count .set push .set noreorder -- 2.6.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox