<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/logicpd, branch v2018.03</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/logicpd?h=v2018.03</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/logicpd?h=v2018.03'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2018-01-28T17:27:37Z</updated>
<entry>
<title>omap3_logic: Clean up I2C pin muxing.</title>
<updated>2018-01-28T17:27:37Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2018-01-25T20:15:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4f6c7b12ed425095e635c32f184e8f8002da3823'/>
<id>urn:sha1:4f6c7b12ed425095e635c32f184e8f8002da3823</id>
<content type='text'>
The SOM has external pull-up resistors, so let's turn these off.
It was helping reduce some errors when running I2C1 @ 2.6MHz.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>ARM: omap3_logic: Enable SPL_OF_CONTROL and SPL_OF_PLATDATA</title>
<updated>2018-01-22T15:27:13Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-12-27T19:39:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6931ab2fb48d2c36c815b832ede6d21596e3312a'/>
<id>urn:sha1:6931ab2fb48d2c36c815b832ede6d21596e3312a</id>
<content type='text'>
The SPL doesn't have much room, so in order to support OF_CONTROL
in SPL, we need the extra functionality of SPL_OF_PLATDATA.

Adding these features allows us to remove a small part of code without
losing the serial port during SPL.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>ARM: omap3_logic: Enable NAND unlocking during Falcon mode</title>
<updated>2017-12-13T02:33:38Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-12-04T23:54:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6032c029474cfba1ab2ff4a68e78905545c0c843'/>
<id>urn:sha1:6032c029474cfba1ab2ff4a68e78905545c0c843</id>
<content type='text'>
Falcon mode was already working with SD card.  This enables the
unlocking of NAND to allow the NAND read &amp; write.  This also
expands the README file based on the am335x describing how to
setup Falcon mode.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>ARM: omap3_logic: Unlock NAND automatically in U-Boot</title>
<updated>2017-12-13T02:33:38Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-12-03T12:24:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=157af4f81fffd416d8952cd9ca5c5decc6d6de9e'/>
<id>urn:sha1:157af4f81fffd416d8952cd9ca5c5decc6d6de9e</id>
<content type='text'>
The Micron Flash is locked by default.  This will automaticlly
unlock so manually unlocking is unnecessary in U-Boot.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: nand: Rename nand.h into rawnand.h</title>
<updated>2017-12-04T13:00:00Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2017-11-30T04:45:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6ae3900a86b52429bf7a73ad832f0ad02acc2282'/>
<id>urn:sha1:6ae3900a86b52429bf7a73ad832f0ad02acc2282</id>
<content type='text'>
This header was renamed to rawnand.h in Linux.

The following is the corresponding commit in Linux.

  commit d4092d76a4a4e57b65910899948a83cc8646c5a5
  Author: Boris Brezillon &lt;boris.brezillon@free-electrons.com&gt;
  Date:   Fri Aug 4 17:29:10 2017 +0200

      mtd: nand: Rename nand.h into rawnand.h

      We are planning to share more code between different NAND based
      devices (SPI NAND, OneNAND and raw NANDs), but before doing that
      we need to move the existing include/linux/mtd/nand.h file into
      include/linux/mtd/rawnand.h so we can later create a nand.h header
      containing all common structure and function prototypes.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>omap3: omap3_logic: Move pinmuxing to header file</title>
<updated>2017-11-17T12:44:13Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-11-07T01:57:30Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=470dd6cc22d9791648bd063db4ad50dea79cdc02'/>
<id>urn:sha1:470dd6cc22d9791648bd063db4ad50dea79cdc02</id>
<content type='text'>
To keep the board file smaller and clean, let's move the pinmux to the header file.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>imx: Include &lt;input.h&gt; header file</title>
<updated>2017-10-12T15:31:16Z</updated>
<author>
<name>Diego Dorta</name>
<email>diego.dorta@nxp.com</email>
</author>
<published>2017-09-22T15:12:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7594c51ae60296b21f90052d060d4d1330a507a6'/>
<id>urn:sha1:7594c51ae60296b21f90052d060d4d1330a507a6</id>
<content type='text'>
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 &lt;input.h&gt;.

Signed-off-by: Diego Dorta &lt;diego.dorta@nxp.com&gt;
Reviewed-by: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;
</content>
</entry>
<entry>
<title>ARM: omap3: am3517-evm: Add device tree and DM support</title>
<updated>2017-09-29T18:07:54Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-09-20T01:32:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b85781c2a82ff33a65a32b64599416d3c21eeba6'/>
<id>urn:sha1:b85781c2a82ff33a65a32b64599416d3c21eeba6</id>
<content type='text'>
With the device tree ported from Linux 4.13, this enables
Driver Model and Device Tree support for the am3517-evm

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
Tested-by: Derald D. Woods &lt;woods.technical@gmail.com&gt;
</content>
</entry>
<entry>
<title>omap3: omap3_logic: Finish enabling fastboot on MUSB</title>
<updated>2017-09-13T13:24:25Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-08-13T12:36:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=74cd48e1323658fc79f03b442bb9869ca56c0226'/>
<id>urn:sha1:74cd48e1323658fc79f03b442bb9869ca56c0226</id>
<content type='text'>
Either the USB and Fastboot were never finished, or somehow it got
lost.  This puts enough hooks back into omap3logic to enable
fastboot and hopefully prepare it for Kconfig conversion.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
</content>
</entry>
<entry>
<title>omap3: am3517_evm: Enable TI_COMMON_CMD_OPTION</title>
<updated>2017-09-12T22:02:21Z</updated>
<author>
<name>Adam Ford</name>
<email>aford173@gmail.com</email>
</author>
<published>2017-08-22T15:50:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=29487ef4d5d720012658cb7a093af742f8ae2af5'/>
<id>urn:sha1:29487ef4d5d720012658cb7a093af742f8ae2af5</id>
<content type='text'>
Enable TI_COMMON_CMD_OPTIONS and remove similar options
from the defconfig. Updated with savedefconfig.

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
Tested-by: Derald D. Woods &lt;woods.technical@gmail.com&gt;
</content>
</entry>
</feed>
