<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/arch/Kconfig, branch v2017.03</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/arch/Kconfig?h=v2017.03</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/arch/Kconfig?h=v2017.03'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2017-01-25T22:38:41Z</updated>
<entry>
<title>Convert CONFIG_ARCH_MISC_INIT to Kconfig</title>
<updated>2017-01-25T22:38:41Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2017-01-23T20:31:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4585601ae2147730fcf342ed9b57a2c684503490'/>
<id>urn:sha1:4585601ae2147730fcf342ed9b57a2c684503490</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_ARCH_MISC_INIT

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_ARCH_EARLY_INIT_R to Kconfig</title>
<updated>2017-01-25T21:43:48Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2017-01-23T20:31:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a421192fb8d49da9a8bc30258c29c51675a1a1c9'/>
<id>urn:sha1:a421192fb8d49da9a8bc30258c29c51675a1a1c9</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_ARCH_EARLY_INIT_R

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>Kconfig: Migrate BOARD_LATE_INIT to a select</title>
<updated>2017-01-24T15:35:54Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2017-01-23T00:43:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e5ec48152ad13ada83c541cdf7f47d5867c506db'/>
<id>urn:sha1:e5ec48152ad13ada83c541cdf7f47d5867c506db</id>
<content type='text'>
This option should not really be user selectable.  Note that on PowerPC
we currently only need BOARD_LATE_INIT when CHAIN_OF_TRUST is enabled so be
conditional on that.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
Acked-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt; (for UniPhier)
</content>
</entry>
<entry>
<title>sandbox, x86: select DM_KEYBOARD instead of default y entry</title>
<updated>2016-10-02T00:04:33Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2016-09-08T09:47:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=558e12571e3cc949837ab0c232a1bb528a8f95da'/>
<id>urn:sha1:558e12571e3cc949837ab0c232a1bb528a8f95da</id>
<content type='text'>
Once we migrate to DM-based drivers, we cannot go back to legacy
ones, i.e. config options like DM_* are not user-configurable.

Make SANDBOX and X86 select DM_KEYBOARD like other platforms do.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>xtensa: add support for the xtensa processor architecture [2/2]</title>
<updated>2016-08-15T22:46:38Z</updated>
<author>
<name>Chris Zankel</name>
<email>chris@zankel.net</email>
</author>
<published>2016-08-10T15:36:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c978b52410016b0ab5a213f235596340af8d45f7'/>
<id>urn:sha1:c978b52410016b0ab5a213f235596340af8d45f7</id>
<content type='text'>
The Xtensa processor architecture is a configurable, extensible,
and synthesizable 32-bit RISC processor core provided by Tensilica, inc.

This is the second part of the basic architecture port, adding the
'arch/xtensa' directory and a readme file.

Signed-off-by: Chris Zankel &lt;chris@zankel.net&gt;
Signed-off-by: Max Filippov &lt;jcmvbkbc@gmail.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>linux/io.h: add generic ioremap()/iounmap() defines</title>
<updated>2016-07-14T22:22:26Z</updated>
<author>
<name>Masahiro Yamada</name>
<email>yamada.masahiro@socionext.com</email>
</author>
<published>2016-06-28T01:48:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9a387128e341debb6d7e32df8e0f72669a3a079b'/>
<id>urn:sha1:9a387128e341debb6d7e32df8e0f72669a3a079b</id>
<content type='text'>
For most of architectures in U-Boot, virtual address is straight
mapped to physical address.  So, it makes sense to have generic
defines of ioremap and friends in &lt;linux/io.h&gt;.

All of them are just empty and will disappear at compile time, but
they will be helpful to implement drivers which are counterparts of
Linux ones.

I notice MIPS already has its own implementation, so I added a
Kconfig symbol CONFIG_HAVE_ARCH_IOREMAP which MIPS (and maybe
Sandbox as well) can select.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Daniel Schwierzeck &lt;daniel.schwierzeck@gmail.com&gt;
</content>
</entry>
<entry>
<title>dm: sandbox: Convert to use CONFIG_CMD_MMC_OPS</title>
<updated>2016-07-11T20:06:44Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-06-13T05:30:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9a46bd3febd405e2d4b894d9ebae2e9ca88b22d6'/>
<id>urn:sha1:9a46bd3febd405e2d4b894d9ebae2e9ca88b22d6</id>
<content type='text'>
Update the sandbox MMC emulation to use driver model for MMC operations.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>Drop HAVE_GENERIC_BOARD and SYS_GENERIC_BOARD options</title>
<updated>2016-05-27T19:39:55Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2016-05-15T00:49:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2507854e46654042839bf0dcf0d9a291f60c31cf'/>
<id>urn:sha1:2507854e46654042839bf0dcf0d9a291f60c31cf</id>
<content type='text'>
These are no longer used. The migration is complete. Drop these options.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Acked-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
Acked-by: Andreas Bießmann &lt;andreas@biessmann.org&gt;
</content>
</entry>
<entry>
<title>MIPS: add initial infrastructure for device-tree files</title>
<updated>2016-01-16T20:06:45Z</updated>
<author>
<name>Daniel Schwierzeck</name>
<email>daniel.schwierzeck@gmail.com</email>
</author>
<published>2015-12-19T19:20:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=0fc13a90933c064218ae3a7db5243f39f00e928f'/>
<id>urn:sha1:0fc13a90933c064218ae3a7db5243f39f00e928f</id>
<content type='text'>
Prepare sub-folder for device-tree files. Make support for
device-tree on MIPS available in Kbuild/Kconfig.

Signed-off-by: Daniel Schwierzeck &lt;daniel.schwierzeck@gmail.com&gt;
Signed-off-by: Purna Chandra Mandal &lt;purna.mandal@microchip.com&gt;
</content>
</entry>
<entry>
<title>m68k: add private libgcc</title>
<updated>2015-12-14T01:22:00Z</updated>
<author>
<name>angelo@sysam.it</name>
<email>angelo@sysam.it</email>
</author>
<published>2015-12-06T16:47:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6463fd8f952df9e4bb448f0aff5d16873f8dfdb2'/>
<id>urn:sha1:6463fd8f952df9e4bb448f0aff5d16873f8dfdb2</id>
<content type='text'>
Add private libgcc

Signed-off-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
</feed>
