<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/board/solidrun/mx6cuboxi, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2018-07-23T08:17:04Z</updated>
<entry>
<title>mx6cuboxi: Use mmc_get_op_cond() to check for an eMMC</title>
<updated>2018-07-23T08:17:04Z</updated>
<author>
<name>Jon Nettleton</name>
</author>
<published>2018-06-11T12:26:22Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=19ed6063a567c6924dbfc358bf4ce9a60a31c567'/>
<id>urn:sha1:19ed6063a567c6924dbfc358bf4ce9a60a31c567</id>
<content type='text'>
Previously we had just made broad assumptions with which of our
boards had an eMMC or not even though this is a manufacturing time
assembly option.  This takes the guessing away and actually checks for
the existence of an eMMC and sets up the has_emmc environment variable.

Signed-off-by: Jon Nettleton &lt;jon@solid-run.com&gt;
Signed-off-by: Baruch Siach &lt;baruch@tkos.co.il&gt;
</content>
</entry>
<entry>
<title>mx6cuboxi: Add support for eMMC booting</title>
<updated>2018-07-23T08:17:04Z</updated>
<author>
<name>Jon Nettleton</name>
</author>
<published>2018-06-11T12:26:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=86e5a7fc13d4eb7e21630b9d421469c663dc8c77'/>
<id>urn:sha1:86e5a7fc13d4eb7e21630b9d421469c663dc8c77</id>
<content type='text'>
The HB2 boards as well as rev 1.5 soms support eMMC
booting as well as SDHC.  Add the infrastructure to support
booting these devices.

Signed-off-by: Jon Nettleton &lt;jon@solid-run.com&gt;
Signed-off-by: Baruch Siach &lt;baruch@tkos.co.il&gt;
</content>
</entry>
<entry>
<title>mx6cuboxi: fix 4GB ddr memory detection</title>
<updated>2018-06-18T14:50:55Z</updated>
<author>
<name>Jon Nettleton</name>
</author>
<published>2018-06-07T13:17:37Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=51f957adf77575075b69a95a37f118653532892c'/>
<id>urn:sha1:51f957adf77575075b69a95a37f118653532892c</id>
<content type='text'>
The soms with 4GB ddr have a rowaddr of 16 not 15, this allows
the detection mechanism to properly identify them as 4GB.
However these soms can be populated with whatever amount of
memory the customer requests therefor we need a ram stride test.
We can not use the get_ram_size() function because not all 4GB's
of DDR is addressable on a 32-bit architecture.  Therefore instead
we use a memory stride of 128MB's and look for the address that
the memory wraps.  This function is used for all som types to
catch most memory configurations.

This is a revised version of Rabeeh Khoury's original code.

Signed-off-by: Jon Nettleton &lt;jon@solid-run.com&gt;
Signed-off-by: Rabeeh Khoury &lt;rabeeh@solid-run.com&gt;
Signed-off-by: Baruch Siach &lt;baruch@tkos.co.il&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>mx6cuboxi: consolidate board detection and add som revision checking</title>
<updated>2018-06-18T14:50:40Z</updated>
<author>
<name>Jon Nettleton</name>
</author>
<published>2018-06-07T13:17:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=73708200f05501c5d9b7cb6d0a29b0839120b3c0'/>
<id>urn:sha1:73708200f05501c5d9b7cb6d0a29b0839120b3c0</id>
<content type='text'>
In order to properly detect the board the checks need to be done
in a specific order.  Move these tests back into a single enum
function that will always return the proper the board it is checking.

This also adds the best test we have for detecting the rev 1.5 som,
and it simplifies the device-tree filename building.

Signed-off-by: Jon Nettleton &lt;jon@solid-run.com&gt;
Signed-off-by: Baruch Siach &lt;baruch@tkos.co.il&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>SPDX: Convert all of our single license tags to Linux Kernel style</title>
<updated>2018-05-07T13:34:12Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2018-05-06T21:58:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=83d290c56fab2d38cd1ab4c4cc7099559c1d5046'/>
<id>urn:sha1:83d290c56fab2d38cd1ab4c4cc7099559c1d5046</id>
<content type='text'>
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>mx6cuboxi: Fix some memory configuration errors</title>
<updated>2018-04-15T09:56:21Z</updated>
<author>
<name>Jon Nettleton</name>
</author>
<published>2018-04-10T20:05:35Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=b4e9bdcd05ac83146ad16802a94db3e78f530d1a'/>
<id>urn:sha1:b4e9bdcd05ac83146ad16802a94db3e78f530d1a</id>
<content type='text'>
These changes bring mainline back into line with the configurations
that were originally set in our stable BSP.

Signed-off-by: Jon Nettleton &lt;jon@solid-run.com&gt;
Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>mx6cuboxi: Avoid calling setup_display() from SPL code</title>
<updated>2017-10-12T15:30:32Z</updated>
<author>
<name>Fabio Estevam</name>
</author>
<published>2017-09-23T02:45:31Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=ae40e82eeff7a3c71c375c183e9fe817b7280a1c'/>
<id>urn:sha1:ae40e82eeff7a3c71c375c183e9fe817b7280a1c</id>
<content type='text'>
There is no need call setup_display() from SPL code, so move it to
board_init(), which executes only in U-Boot proper.

Reported-by: Stefano Babic &lt;sbabic@denx.de&gt;
Signed-off-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
Reviewed-by: Stefano Babic &lt;sbabic@denx.de&gt;
</content>
</entry>
<entry>
<title>detect and setup solidrun hummingboard2</title>
<updated>2017-09-20T13:34:59Z</updated>
<author>
<name>Dennis Gilmore</name>
</author>
<published>2017-08-24T15:49:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=b1e8512e9dbe1771da9c3ad3ddfaf7681318fe0e'/>
<id>urn:sha1:b1e8512e9dbe1771da9c3ad3ddfaf7681318fe0e</id>
<content type='text'>
The hummingboard2 is slightly different to the cubox i and to the
hummingboard. The GPIO pin info to probe came from solidruns
for of u-boot on github.
https://github.com/SolidRun/u-boot-imx6/blob/imx6/board/solidrun/mx6_cubox-i/mx6_cubox-i.c#L569-L589
I have tested on a hummingboard-edge witha  imx6 solo and 512mb of
ram.

Signed-off-by: Dennis Gilmore &lt;dgilmore@redhat.com&gt;
</content>
</entry>
<entry>
<title>imx: imx6: Move gpr_init() function to soc.c</title>
<updated>2017-08-28T07:48:53Z</updated>
<author>
<name>Breno Lima</name>
</author>
<published>2017-08-24T13:00:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=3aa4b703b483f165dd2eb5c3324b44b60fbb1672'/>
<id>urn:sha1:3aa4b703b483f165dd2eb5c3324b44b60fbb1672</id>
<content type='text'>
Since the gpr_init() function is common for boards using MX6S, MX6DL, MX6D,
MX6Q and MX6QP processors move it to the soc.c file.

Signed-off-by: Breno Lima &lt;breno.lima@nxp.com&gt;
Acked-by: Stefano Babic &lt;sbabic@denx.de&gt;
Reviewed-by: Lukasz Majewski &lt;lukma@denx.de&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>env: Rename setenv() to env_set()</title>
<updated>2017-08-16T12:22:18Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-08-03T18:22:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=382bee57f19b4454e2015bc19a010bc2d0ab9337'/>
<id>urn:sha1:382bee57f19b4454e2015bc19a010bc2d0ab9337</id>
<content type='text'>
We are now using an env_ prefix for environment functions. Rename setenv()
for consistency. Also add function comments in common.h.

Suggested-by: Wolfgang Denk &lt;wd@denx.de&gt;
Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
</feed>
