<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/arch/arm, branch v2018.01</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/arch/arm?h=v2018.01</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/arch/arm?h=v2018.01'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2018-01-08T16:33:06Z</updated>
<entry>
<title>imx: initialize and use generic timer on i.MX 6UL/ULL</title>
<updated>2018-01-08T16:33:06Z</updated>
<author>
<name>Stefan Agner</name>
<email>stefan.agner@toradex.com</email>
</author>
<published>2018-01-05T14:08:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=46718353b2fc784fa8f658fd5112272ed921ce9a'/>
<id>urn:sha1:46718353b2fc784fa8f658fd5112272ed921ce9a</id>
<content type='text'>
The i.MX 6UL/ULL feature a Cortex-A7 CPU which suppor the ARM
generic timer. This change makes use of the ARM generic timer in
U-Boot.

This is crucial to make the ARM generic timers usable in Linux since
timer_init() initalizes the system counter module, which is necessary
to use the generic timers CP15 registers.

Signed-off-by: Stefan Agner &lt;stefan.agner@toradex.com&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>imx: introduce CONFIG_GPT_TIMER</title>
<updated>2018-01-08T16:33:06Z</updated>
<author>
<name>Stefan Agner</name>
<email>stefan.agner@toradex.com</email>
</author>
<published>2018-01-05T14:08:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=23b6a131fdae9fdd995e10cf43eec82536d434a7'/>
<id>urn:sha1:23b6a131fdae9fdd995e10cf43eec82536d434a7</id>
<content type='text'>
Introduce a new config symbol to select the i.MX
General Purpose Timer (GPT).

Signed-off-by: Stefan Agner &lt;stefan.agner@toradex.com&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>imx: move CONFIG_SYSCOUNTER_TIMER to Kconfig</title>
<updated>2018-01-08T16:33:06Z</updated>
<author>
<name>Stefan Agner</name>
<email>stefan.agner@toradex.com</email>
</author>
<published>2018-01-05T14:08:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=616aa55d178788e134cc58439a7215b03c7090e4'/>
<id>urn:sha1:616aa55d178788e134cc58439a7215b03c7090e4</id>
<content type='text'>
Signed-off-by: Stefan Agner &lt;stefan.agner@toradex.com&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>mx6ull: Handle the CONFIG_MX6ULL cases correctly</title>
<updated>2018-01-04T15:29:04Z</updated>
<author>
<name>Fabio Estevam</name>
<email>fabio.estevam@nxp.com</email>
</author>
<published>2018-01-03T14:33:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=290e7cfdbfa288d26598c073186ab45e3fa711b3'/>
<id>urn:sha1:290e7cfdbfa288d26598c073186ab45e3fa711b3</id>
<content type='text'>
Since commit 051ba9e082f7 ("Kconfig: mx6ull: Deselect MX6UL from
CONFIG_MX6ULL") CONFIG_MX6ULL does not select CONFIG_MX6UL anymore, so
take this into consideration in all the checks for CONFIG_MX6UL.

This fixes a boot regression.

Reported-by: Stefan Agner &lt;stefan@agner.ch&gt;
Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
Reviewed-by: Stefan Agner &lt;stefan@agner.ch&gt;
Tested-by: Breno Lima &lt;breno.lima@nxp.com&gt;
Tested-by: Peng Fan &lt;peng.fan@nxp.com&gt;
Reviewed-by: Stefano Babic &lt;sbabic@denx.de&gt;
Tested-by: Jörg Krause &lt;joerg.krause@embedded.rocks&gt;
</content>
</entry>
<entry>
<title>imx: spl: Fix NAND bootmode detection</title>
<updated>2018-01-03T13:01:38Z</updated>
<author>
<name>Eran Matityahu</name>
<email>eran.m@variscite.com</email>
</author>
<published>2017-12-14T18:20:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=af104ae5b87c8efb107ac282d09927d8346dc94f'/>
<id>urn:sha1:af104ae5b87c8efb107ac282d09927d8346dc94f</id>
<content type='text'>
commit 20f14714169 ("imx: spl: Update NAND bootmode detection bit")
broke the NAND bootmode detection by checking if
BOOT_CFG1[7:4] == 0x8 for NAND boot mode.
This commit essentially reverts it, while using the IMX6_BMODE_*
macros that were introduced since.

Tables 8-7 &amp; 8-10 from IMX6DQRM say the NAND boot mode selection
is done when BOOT_CFG1[7] is 1, but BOOT_CFG1[6:4] is not
necessarily 0x0 in this case.
Actually, NAND boot mode is when 0x8 &lt;= BOOT_CFG1[7:4] &lt;= 0xf,
like it was in the code before.

Signed-off-by: Eran Matityahu &lt;eran.m@variscite.com&gt;
Cc: Stefano Babic &lt;sbabic@denx.de&gt;
Cc: Jagan Teki &lt;jagan@openedev.com&gt;
Cc: Tim Harvey &lt;tharvey@gateworks.com&gt;
</content>
</entry>
<entry>
<title>mx6: Add board mx6memcal for use in validating DDR</title>
<updated>2018-01-03T12:58:51Z</updated>
<author>
<name>Eric Nelson</name>
<email>eric@nelint.com</email>
</author>
<published>2017-12-11T15:52:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=baefb63a13d106458577704ca4586b3f414c9520'/>
<id>urn:sha1:baefb63a13d106458577704ca4586b3f414c9520</id>
<content type='text'>
This is a virtual "board" that uses configuration files and
Kconfig to define the memory layout used by a real board during
the board bring-up process.

It generates an SPL image that can be loaded using imx_usb or
SB_LOADER.exe.

When run, it will generate a set of calibration constants for
use in either or both a DCD configuration file for boards that
use u-boot.imx or struct mx6_mmdc_calibration for boards that
boot via SPL.

In essence, it is a configurable, open-source variant of the
Freescale ddr-stress tool.

	https://community.nxp.com/docs/DOC-105652

File mx6memcal_defconfig configures the board for use with
mx6sabresd or mx6qsabreauto.

Signed-off-by: Eric Nelson &lt;eric@nelint.com&gt;
Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-rockchip</title>
<updated>2018-01-01T14:04:35Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2018-01-01T14:04:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d167dd4883406ca852b1a2e75db5553279815f62'/>
<id>urn:sha1:d167dd4883406ca852b1a2e75db5553279815f62</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ARM: dts: omap3-evm: Enable DM and devicetree for TMDSEVM{3530, 3730}</title>
<updated>2018-01-01T14:04:19Z</updated>
<author>
<name>Derald D. Woods</name>
<email>woods.technical@gmail.com</email>
</author>
<published>2017-12-27T15:40:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c2900f595ef0fe83e2ece21981df8ea8961ac162'/>
<id>urn:sha1:c2900f595ef0fe83e2ece21981df8ea8961ac162</id>
<content type='text'>
This commit updates the configuration files needed to support OF_CONTROL
on the OMAP3 EVM baseboard.

Additionally:
- CONFIG_SYS_THUMB_BUILD is enabled
- CONFIG_SPL_ENV_SUPPORT is enabled

Tested using GCC 7.2.0 [--with-float=hard --with-mode=thumb].

Signed-off-by: Derald D. Woods &lt;woods.technical@gmail.com&gt;
</content>
</entry>
<entry>
<title>ARM: dts: omap3-evm: Add support for TMDSEVM{3530, 3730}</title>
<updated>2018-01-01T14:04:19Z</updated>
<author>
<name>Derald D. Woods</name>
<email>woods.technical@gmail.com</email>
</author>
<published>2017-12-16T20:14:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d9be183b4c1a90649bb065f55754515abc96d51c'/>
<id>urn:sha1:d9be183b4c1a90649bb065f55754515abc96d51c</id>
<content type='text'>
This commit adds OMAP3 EVM devicetree files from Linux v4.15-rc3. Note
that this is the first addition of OMAP34XX devicetree files.

Signed-off-by: Derald D. Woods &lt;woods.technical@gmail.com&gt;
</content>
</entry>
<entry>
<title>rockchip: dts: rk3399-evb: support boot from sd-card</title>
<updated>2018-01-01T13:45:37Z</updated>
<author>
<name>Kever Yang</name>
<email>kever.yang@rock-chips.com</email>
</author>
<published>2017-12-20T02:40:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f777df3628c544d2f982cbb631fbd053f4072955'/>
<id>urn:sha1:f777df3628c544d2f982cbb631fbd053f4072955</id>
<content type='text'>
Enable sdmmc node in SPL and add it to boot order.

Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;
Acked-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;
Reviewed-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;
[Fixed commit tags:]
Signed-off-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;
</content>
</entry>
</feed>
