mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Change is consistent with other SOCs and it is in preparation for adding SOMs. SOC's related files are moved from cpu/ to mach-imx/<SOC>. This change is also coherent with the structure in kernel. Signed-off-by: Stefano Babic <sbabic@denx.de> CC: Fabio Estevam <fabio.estevam@nxp.com> CC: Akshay Bhat <akshaybhat@timesys.com> CC: Ken Lin <Ken.Lin@advantech.com.tw> CC: Marek Vasut <marek.vasut@gmail.com> CC: Heiko Schocher <hs@denx.de> CC: "Sébastien Szymanski" <sebastien.szymanski@armadeus.com> CC: Christian Gmeiner <christian.gmeiner@gmail.com> CC: Stefan Roese <sr@denx.de> CC: Patrick Bruenn <p.bruenn@beckhoff.com> CC: Troy Kisky <troy.kisky@boundarydevices.com> CC: Nikita Kiryanov <nikita@compulab.co.il> CC: Otavio Salvador <otavio@ossystems.com.br> CC: "Eric Bénard" <eric@eukrea.com> CC: Jagan Teki <jagan@amarulasolutions.com> CC: Ye Li <ye.li@nxp.com> CC: Peng Fan <peng.fan@nxp.com> CC: Adrian Alonso <adrian.alonso@nxp.com> CC: Alison Wang <b18965@freescale.com> CC: Tim Harvey <tharvey@gateworks.com> CC: Martin Donnelly <martin.donnelly@ge.com> CC: Marcin Niestroj <m.niestroj@grinn-global.com> CC: Lukasz Majewski <lukma@denx.de> CC: Adam Ford <aford173@gmail.com> CC: "Albert ARIBAUD (3ADEV)" <albert.aribaud@3adev.fr> CC: Boris Brezillon <boris.brezillon@free-electrons.com> CC: Soeren Moch <smoch@web.de> CC: Richard Hu <richard.hu@technexion.com> CC: Wig Cheng <wig.cheng@technexion.com> CC: Vanessa Maegima <vanessa.maegima@nxp.com> CC: Max Krummenacher <max.krummenacher@toradex.com> CC: Stefan Agner <stefan.agner@toradex.com> CC: Markus Niebel <Markus.Niebel@tq-group.com> CC: Breno Lima <breno.lima@nxp.com> CC: Francesco Montefoschi <francesco.montefoschi@udoo.org> CC: Jaehoon Chung <jh80.chung@samsung.com> CC: Scott Wood <oss@buserror.net> CC: Joe Hershberger <joe.hershberger@ni.com> CC: Anatolij Gustschin <agust@denx.de> CC: Simon Glass <sjg@chromium.org> CC: "Andrew F. Davis" <afd@ti.com> CC: "Łukasz Majewski" <l.majewski@samsung.com> CC: Patrice Chotard <patrice.chotard@st.com> CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> CC: Hans de Goede <hdegoede@redhat.com> CC: Masahiro Yamada <yamada.masahiro@socionext.com> CC: Stephen Warren <swarren@nvidia.com> CC: Andre Przywara <andre.przywara@arm.com> CC: "Álvaro Fernández Rojas" <noltari@gmail.com> CC: York Sun <york.sun@nxp.com> CC: Xiaoliang Yang <xiaoliang.yang@nxp.com> CC: Chen-Yu Tsai <wens@csie.org> CC: George McCollister <george.mccollister@gmail.com> CC: Sven Ebenfeld <sven.ebenfeld@gmail.com> CC: Filip Brozovic <fbrozovic@gmail.com> CC: Petr Kulhavy <brain@jikos.cz> CC: Eric Nelson <eric@nelint.com> CC: Bai Ping <ping.bai@nxp.com> CC: Anson Huang <Anson.Huang@nxp.com> CC: Sanchayan Maity <maitysanchayan@gmail.com> CC: Lokesh Vutla <lokeshvutla@ti.com> CC: Patrick Delaunay <patrick.delaunay@st.com> CC: Gary Bisson <gary.bisson@boundarydevices.com> CC: Alexander Graf <agraf@suse.de> CC: u-boot@lists.denx.de Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
		
			
				
	
	
		
			128 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright 2015 Freescale Semiconductor, Inc.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#include <asm/io.h>
 | 
						|
#include <asm/arch/imx-regs.h>
 | 
						|
#include <asm/arch/clock.h>
 | 
						|
#include <asm/arch/sys_proto.h>
 | 
						|
#include <asm/mach-imx/boot_mode.h>
 | 
						|
#include <asm/arch/crm_regs.h>
 | 
						|
 | 
						|
void init_aips(void)
 | 
						|
{
 | 
						|
	struct aipstz_regs *aips1, *aips2, *aips3;
 | 
						|
 | 
						|
	aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
 | 
						|
	aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
 | 
						|
	aips3 = (struct aipstz_regs *)AIPS3_BASE_ADDR;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * Set all MPROTx to be non-bufferable, trusted for R/W,
 | 
						|
	 * not forced to user-mode.
 | 
						|
	 */
 | 
						|
	writel(0x77777777, &aips1->mprot0);
 | 
						|
	writel(0x77777777, &aips1->mprot1);
 | 
						|
	writel(0x77777777, &aips2->mprot0);
 | 
						|
	writel(0x77777777, &aips2->mprot1);
 | 
						|
 | 
						|
	/*
 | 
						|
	 * Set all OPACRx to be non-bufferable, not require
 | 
						|
	 * supervisor privilege level for access,allow for
 | 
						|
	 * write access and untrusted master access.
 | 
						|
	 */
 | 
						|
	writel(0x00000000, &aips1->opacr0);
 | 
						|
	writel(0x00000000, &aips1->opacr1);
 | 
						|
	writel(0x00000000, &aips1->opacr2);
 | 
						|
	writel(0x00000000, &aips1->opacr3);
 | 
						|
	writel(0x00000000, &aips1->opacr4);
 | 
						|
	writel(0x00000000, &aips2->opacr0);
 | 
						|
	writel(0x00000000, &aips2->opacr1);
 | 
						|
	writel(0x00000000, &aips2->opacr2);
 | 
						|
	writel(0x00000000, &aips2->opacr3);
 | 
						|
	writel(0x00000000, &aips2->opacr4);
 | 
						|
 | 
						|
	if (is_mx6ull() || is_mx6sx() || is_mx7()) {
 | 
						|
		/*
 | 
						|
		 * Set all MPROTx to be non-bufferable, trusted for R/W,
 | 
						|
		 * not forced to user-mode.
 | 
						|
		 */
 | 
						|
		writel(0x77777777, &aips3->mprot0);
 | 
						|
		writel(0x77777777, &aips3->mprot1);
 | 
						|
 | 
						|
		/*
 | 
						|
		 * Set all OPACRx to be non-bufferable, not require
 | 
						|
		 * supervisor privilege level for access,allow for
 | 
						|
		 * write access and untrusted master access.
 | 
						|
		 */
 | 
						|
		writel(0x00000000, &aips3->opacr0);
 | 
						|
		writel(0x00000000, &aips3->opacr1);
 | 
						|
		writel(0x00000000, &aips3->opacr2);
 | 
						|
		writel(0x00000000, &aips3->opacr3);
 | 
						|
		writel(0x00000000, &aips3->opacr4);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void imx_set_wdog_powerdown(bool enable)
 | 
						|
{
 | 
						|
	struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
 | 
						|
	struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
 | 
						|
	struct wdog_regs *wdog3 = (struct wdog_regs *)WDOG3_BASE_ADDR;
 | 
						|
#ifdef CONFIG_MX7D
 | 
						|
	struct wdog_regs *wdog4 = (struct wdog_regs *)WDOG4_BASE_ADDR;
 | 
						|
#endif
 | 
						|
 | 
						|
	/* Write to the PDE (Power Down Enable) bit */
 | 
						|
	writew(enable, &wdog1->wmcr);
 | 
						|
	writew(enable, &wdog2->wmcr);
 | 
						|
 | 
						|
	if (is_mx6sx() || is_mx6ul() || is_mx7())
 | 
						|
		writew(enable, &wdog3->wmcr);
 | 
						|
#ifdef CONFIG_MX7D
 | 
						|
	writew(enable, &wdog4->wmcr);
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
#define SRC_SCR_WARM_RESET_ENABLE	0
 | 
						|
 | 
						|
void init_src(void)
 | 
						|
{
 | 
						|
	struct src *src_regs = (struct src *)SRC_BASE_ADDR;
 | 
						|
	u32 val;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * force warm reset sources to generate cold reset
 | 
						|
	 * for a more reliable restart
 | 
						|
	 */
 | 
						|
	val = readl(&src_regs->scr);
 | 
						|
	val &= ~(1 << SRC_SCR_WARM_RESET_ENABLE);
 | 
						|
	writel(val, &src_regs->scr);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_CMD_BMODE
 | 
						|
void boot_mode_apply(unsigned cfg_val)
 | 
						|
{
 | 
						|
	unsigned reg;
 | 
						|
	struct src *psrc = (struct src *)SRC_BASE_ADDR;
 | 
						|
	writel(cfg_val, &psrc->gpr9);
 | 
						|
	reg = readl(&psrc->gpr10);
 | 
						|
	if (cfg_val)
 | 
						|
		reg |= 1 << 28;
 | 
						|
	else
 | 
						|
		reg &= ~(1 << 28);
 | 
						|
	writel(reg, &psrc->gpr10);
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(CONFIG_MX6)
 | 
						|
u32 imx6_src_get_boot_mode(void)
 | 
						|
{
 | 
						|
	if (imx6_is_bmode_from_gpr9())
 | 
						|
		return readl(&src_base->gpr9);
 | 
						|
	else
 | 
						|
		return readl(&src_base->sbmr1);
 | 
						|
}
 | 
						|
#endif
 |