Patrick Bruenn
daebb796ff
arm: imx: cx9020: move dram init into common place
...
Move dram_init(), dram_init_banksize() and get_effective_memsize() to
arch/arm/mach-imx/mx5/mx53_dram.c, where it can be reused by m53evk and
mx53loco.
Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com >
2018-02-04 12:00:58 +01:00
Patrick Bruenn
a75a3ef305
arm: imx: cx9020: remove usage of mx53_dram_size
...
Static variables are not available during board_init_f().
'static uint32_t mx53_dram_size[2];' was used in board specific
dram_init(), dram_init_banksize() and get_effective_memsize() to avoid
multiple calls to get_ram_size().
However multiple calls are better than undefined behavior...
This fixes:
https://lists.denx.de/pipermail/u-boot/2017-November/313214.html
https://lists.denx.de/pipermail/u-boot/2017-December/314480.html
Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com >
2018-02-04 12:00:58 +01:00
Diego Dorta
7594c51ae6
imx: Include <input.h> header file
...
When building with W=1 errors like the one below is seen:
board/freescale/mx6sabresd/mx6sabresd.c:546:5: warning:
no previous prototype for ‘overwrite_console’
[-Wmissing-prototypes] int overwrite_console(void)
Fix the build warnings by including <input.h>.
Signed-off-by: Diego Dorta <diego.dorta@nxp.com >
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com >
2017-10-12 17:31:16 +02:00
Stefano Babic
552a848e4f
imx: reorganize IMX code as other SOCs
...
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 >
2017-07-12 10:17:44 +02:00
Simon Glass
9d922450aa
dm: Use dm.h header when driver mode is used
...
This header includes things that are needed to make driver build. Adjust
existing users to include that always, even if other dm/ includes are
present
Signed-off-by: Simon Glass <sjg@chromium.org >
2017-06-01 06:57:52 -06:00
Simon Glass
76b00aca4f
board_f: Drop setup_dram_config() wrapper
...
By making dram_init_banksize() return an error code we can drop the
wrapper. Adjust this and clean up all implementations.
Signed-off-by: Simon Glass <sjg@chromium.org >
Reviewed-by: Stefan Roese <sr@denx.de >
2017-04-05 16:36:51 -04:00
Patrick Bruenn
98d62e618b
arm: imx: add i.MX53 Beckhoff CX9020 Embedded PC
...
Add CX9020 board based on mx53loco.
Add simplified imx53 base device tree from kernel v4.8-rc8, to reuse
serial_mxc with DTE and prepare for device tree migration of other
functions and imx53 devices.
The CX9020 differs from i.MX53 Quick Start Board by:
- use uart2 instead of uart1
- DVI-D connector instead of VGA
- no audio
- CCAT FPGA connected to emi
- enable rtc
Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com >
2016-12-16 12:57:12 +01:00