<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/siemens/draco, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/siemens/draco?h=master</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/siemens/draco?h=master'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2024-11-26T02:07:37Z</updated>
<entry>
<title>siemens: capricorn: add HW version information to boot log</title>
<updated>2024-11-26T02:07:37Z</updated>
<author>
<name>Alessandro Zini</name>
<email>alessandro.zini@siemens.com</email>
</author>
<published>2024-11-23T16:52:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a0aff2a6f5f41d3583396b425fef7d379d0656a8'/>
<id>urn:sha1:a0aff2a6f5f41d3583396b425fef7d379d0656a8</id>
<content type='text'>
Add the HW version read directly from EEPROM.

EEPROM chip data structure is now in a .h file common to draco
and capricorn.

Therefore move out the definitions in draco board to siemens
common place.

From: Alessandro Zini &lt;alessandro.zini@siemens.com&gt;
Signed-off-by: Alessandro Zini &lt;alessandro.zini@siemens.com&gt;
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
<entry>
<title>board: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD</title>
<updated>2024-10-11T17:44:48Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2024-09-30T01:49:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=dac3ce976a9b06be5aadbd857c4b64a8c521c6d4'/>
<id>urn:sha1:dac3ce976a9b06be5aadbd857c4b64a8c521c6d4</id>
<content type='text'>
Use the new symbol to refer to any 'SPL' build, including TPL and VPL

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>siemens: board: clean up includes</title>
<updated>2024-02-05T18:32:48Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2024-01-24T14:43:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=60ad0fdb19087297635f97062ac082ba887dda3a'/>
<id>urn:sha1:60ad0fdb19087297635f97062ac082ba887dda3a</id>
<content type='text'>
Many includes were not removed when code parts were moved or removed.

Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>siemens: board: clean up products folders vs common</title>
<updated>2024-02-05T18:32:48Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2024-01-24T14:43:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d89a97ef9403f79b98853e2a9ddfa36733c1a6e8'/>
<id>urn:sha1:d89a97ef9403f79b98853e2a9ddfa36733c1a6e8</id>
<content type='text'>
The common folder was initialially created for the common parts of the
products based on draco-am355x board family. These are the product lines
'pxm2', 'rut' and the base line named 'draco'!

Adding the new capricorn-imx8 board family, common was enhanced without
cleanup.
- rename 'common/board.c' to 'common/board_am335x.c'
- add 'common/board_am335x.h' for export to the product lines

Reviewed-by: Alexander Sverdlin &lt;alexander.sverdlin@siemens.com&gt;
Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>siemens: board: etamin: remove deprecated nand config</title>
<updated>2024-02-05T18:32:48Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2024-01-24T14:43:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=671be9f53995c78dec05a17293aa228c06963b26'/>
<id>urn:sha1:671be9f53995c78dec05a17293aa228c06963b26</id>
<content type='text'>
NAND was used in the early development phase of etamin. The board runs now
on MMC. This setting is no more used -&gt; remove to simplify the board file.

Further clean-up of etamin should remove all NAND settings. Complete clean-
up of etamin board will take place in a separate patch serie.

Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>siemens: eeprom: simplify setup &amp; read</title>
<updated>2024-02-05T18:32:48Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2024-01-24T14:43:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e9ef9a137741275ba656607cb8d1a66766c739e5'/>
<id>urn:sha1:e9ef9a137741275ba656607cb8d1a66766c739e5</id>
<content type='text'>
Since we have boards using the driver model or not for i2c, use abstraction
function to probe the i2c, check the EEPROM and read from EEPROM.

Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>siemens: eeprom: clean up definitions</title>
<updated>2024-02-05T18:32:48Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2024-01-24T14:43:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5ae54613ebb7b926ea09e8f145d9a40a85d6480e'/>
<id>urn:sha1:5ae54613ebb7b926ea09e8f145d9a40a85d6480e</id>
<content type='text'>
Move the I2C and EEPROM address definitions in common board header.

Reviewed-by: Alexander Sverdlin &lt;alexander.sverdlin@siemens.com&gt;
Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>siemens,am335x: clean-up draco targets</title>
<updated>2023-11-23T00:10:03Z</updated>
<author>
<name>Enrico Leto</name>
<email>enrico.leto@siemens.com</email>
</author>
<published>2023-11-08T14:53:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1c73e05b03477ba5e17ac6dcbda9b473140f6ac5'/>
<id>urn:sha1:1c73e05b03477ba5e17ac6dcbda9b473140f6ac5</id>
<content type='text'>
Draco is a family of 3 boards: thuban, rastaban &amp; etamin. Rename all
targets of the family adding the draco- prefix to increase readibility
and simplify future commits about concerning all boards of the family.

The name draco was initially used for the first target. It's deprecated
since a 2nd target was introduced. Unfortunately the draco target was
copied to the thuban target instead to be renamed. Remove it to save
unnecessary maintenance effort.

Signed-off-by: Enrico Leto &lt;enrico.leto@siemens.com&gt;
</content>
</entry>
<entry>
<title>tree-wide: Replace http:// link with https:// link for ti.com</title>
<updated>2023-11-10T16:01:50Z</updated>
<author>
<name>Nishanth Menon</name>
<email>nm@ti.com</email>
</author>
<published>2023-11-01T20:56:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a94a4071d449e12c9fb5ac37d6362d22efcb27da'/>
<id>urn:sha1:a94a4071d449e12c9fb5ac37d6362d22efcb27da</id>
<content type='text'>
Replace instances of http://www.ti.com with https://www.ti.com

Signed-off-by: Nishanth Menon &lt;nm@ti.com&gt;
</content>
</entry>
<entry>
<title>etamin: Rework CONFIG_NAND_CS_INIT</title>
<updated>2022-12-22T15:31:48Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-12-02T21:42:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3348c6b6a5cbf71bde837bf80cf962ee6aaeff20'/>
<id>urn:sha1:3348c6b6a5cbf71bde837bf80cf962ee6aaeff20</id>
<content type='text'>
Enable this in the board Kconfig file, but then check for it via
CONFIG_IS_ENABLED so that it will only be true in the non-SPL case, as
is done today.  As part of this we move some defines local to where
they are used as it's board specific.

Cc: Samuel Egli &lt;samuel.egli@siemens.com&gt;
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
</feed>
