<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/arch/arm/include/asm/ti-common, 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/include/asm/ti-common?h=v2018.01</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/arch/arm/include/asm/ti-common?h=v2018.01'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2017-12-04T13:00:00Z</updated>
<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>ARM: omap2+: rename config to ARCH_OMAP2PLUS and consolidate Kconfig</title>
<updated>2017-04-27T20:49:08Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2017-04-25T04:10:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a93fbf4a78924741a1fc157fd182de79ea15f327'/>
<id>urn:sha1:a93fbf4a78924741a1fc157fd182de79ea15f327</id>
<content type='text'>
In Linux, CONFIG_ARCH_OMAP2PLUS is used for OMAP2 or later SoCs.
Rename CONFIG_ARCH_OMAP2 to CONFIG_ARCH_OMAP2PLUS to follow this
naming.

Move the OMAP2+ board/SoC choice down to mach-omap2/Kconfig to slim
down the arch/arm/Kconfig level.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>ti: wdt: common: Make the wdt IP defines common for the TI platform</title>
<updated>2017-04-09T01:32:48Z</updated>
<author>
<name>Lukasz Majewski</name>
<email>lukma@denx.de</email>
</author>
<published>2017-02-19T22:24:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d7ebbe9dc4c4df4112f9403b7447438774e6b15c'/>
<id>urn:sha1:d7ebbe9dc4c4df4112f9403b7447438774e6b15c</id>
<content type='text'>
Signed-off-by: Lukasz Majewski &lt;lukma@denx.de&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>TI: Remove CONFIG_OMAP_COMMON in favor of CONFIG_ARCH_OMAP2</title>
<updated>2016-11-21T19:07:29Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2016-11-08T02:34:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=187f9dc3f70f827fe0742d5345067fcabd1cca6b'/>
<id>urn:sha1:187f9dc3f70f827fe0742d5345067fcabd1cca6b</id>
<content type='text'>
With the move to arch/arm/mach-omap2 there are now very few uses of
CONFIG_OMAP_COMMON and further they can all be replaced with
CONFIG_ARCH_OMAP2, so do so.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>ARM: keystone: rename clk_get_rate() to ks_clk_get_rate()</title>
<updated>2016-10-08T13:33:13Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2016-09-26T11:45:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=43ebbfc39ff0b59047b84827a9f92f4a8ff9bb9b'/>
<id>urn:sha1:43ebbfc39ff0b59047b84827a9f92f4a8ff9bb9b</id>
<content type='text'>
The KeyStone platform has its own clk_get_rate() but its prototype
is different from that of the common-clk (clk-uclass) framework.

Prefix the KeyStone specific implementation with ks_ in order to
avoid name-space conflict.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Acked-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Fix to davinci_nand.h to place CEnCFG registers at correct</title>
<updated>2016-06-06T17:39:12Z</updated>
<author>
<name>Peter Howard</name>
<email>pjh@northern-ridge.com.au</email>
</author>
<published>2016-06-02T03:19:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c165994299281957d735f5ec8863dda6243c3456'/>
<id>urn:sha1:c165994299281957d735f5ec8863dda6243c3456</id>
<content type='text'>
Signed-off-by: Peter Howard &lt;phoward@gme.net.au&gt;
</content>
</entry>
<entry>
<title>driver: net: keystone_net: add support for rgmii phy</title>
<updated>2015-10-22T18:22:23Z</updated>
<author>
<name>Vitaly Andrianov</name>
<email>vitalya@ti.com</email>
</author>
<published>2015-09-19T10:56:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4657a2d44ed06272c1fb1d6f5b842e93ceddbbb6'/>
<id>urn:sha1:4657a2d44ed06272c1fb1d6f5b842e93ceddbbb6</id>
<content type='text'>
In K2G, Ethernet doesn't support SGMII instead it support RGMII,
adding support to the driver to connect to RGMII phy.

Signed-off-by: Vitaly Andrianov &lt;vitalya@ti.com&gt;
Signed-off-by: Mugunthan V N &lt;mugunthanvnm@ti.com&gt;
Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
</content>
</entry>
<entry>
<title>driver: net: keystone_net: fix phy mode configuration</title>
<updated>2015-10-22T18:22:22Z</updated>
<author>
<name>Mugunthan V N</name>
<email>mugunthanvnm@ti.com</email>
</author>
<published>2015-09-19T10:56:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bf7bd4e725105fc0f6f43df6d01d85c6df3ce4eb'/>
<id>urn:sha1:bf7bd4e725105fc0f6f43df6d01d85c6df3ce4eb</id>
<content type='text'>
Phy mode is a board property and it can be different between
multiple board and ports, so it should not be hardcoded in
driver to one specific mode. So adding a field in eth_priv_t
structure to pass phy mode to driver.

Signed-off-by: Mugunthan V N &lt;mugunthanvnm@ti.com&gt;
Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
</content>
</entry>
<entry>
<title>ARM: k2g: Add clock information</title>
<updated>2015-10-22T18:22:16Z</updated>
<author>
<name>Vitaly Andrianov</name>
<email>vitalya@ti.com</email>
</author>
<published>2015-09-19T10:56:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e6d71e1ca5dc40e871e53ad0d14d68676cf92601'/>
<id>urn:sha1:e6d71e1ca5dc40e871e53ad0d14d68676cf92601</id>
<content type='text'>
Add clock information for Galileo

Signed-off-by: Vitaly Andrianov &lt;vitalya@ti.com&gt;
Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
Signed-off-by: Mugunthan V N &lt;mugunthanvnm@ti.com&gt;
</content>
</entry>
<entry>
<title>dma: ti-edma3: Add helper function to support edma3 transfer</title>
<updated>2015-08-17T17:59:15Z</updated>
<author>
<name>Vignesh R</name>
<email>vigneshr@ti.com</email>
</author>
<published>2015-08-17T07:59:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=664ab2c992d1e06c4381f66c93d2e155fc7722e1'/>
<id>urn:sha1:664ab2c992d1e06c4381f66c93d2e155fc7722e1</id>
<content type='text'>
Signed-off-by: Vignesh R &lt;vigneshr@ti.com&gt;
Reviewed-by: Jagan Teki &lt;jteki@openedev.com&gt;
</content>
</entry>
</feed>
