<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/atmel, 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/atmel?h=master</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/atmel?h=master'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2026-06-25T00:13:24Z</updated>
<entry>
<title>treewide: move bi_dram[] from bd to gd</title>
<updated>2026-06-25T00:13:24Z</updated>
<author>
<name>Ilias Apalodimas</name>
<email>ilias.apalodimas@linaro.org</email>
</author>
<published>2026-06-17T07:48:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1174c99ab421168221be372bd83a4143bf5f167d'/>
<id>urn:sha1:1174c99ab421168221be372bd83a4143bf5f167d</id>
<content type='text'>
Currently, the bi_dram[] information is stored in the board info
structure (bd). Because bd is only valid after reserve_board(),
dram_init_banksize() must be called late in the initialization process.
This limitation is problematic, as it forces us to rely on a variety of
bespoke functions to determine board RAM, bank memory sizes, and other
early setup requirements.

By moving bi_dram[] into the global data (gd), we can run it earlier.
This is particularly convenient since boards define their own
dram_init_banksize() routines, which do not always rely on parsing
Device Tree (DT) memory nodes.

Additionally, U-Boot defaults to relocating to the top of the first memory
bank. While boards currently use custom functions to override this
behavior, having the DRAM bank information available earlier in gd makes
relocating to a different bank trivial and standardizes the process.

Reviewed-by: Anshul Dalal &lt;anshuld@ti.com&gt;
Tested-by: Michal Simek &lt;michal.simek@amd.com&gt; # Versal Gen 2 Vek385
Tested-by: Anshul Dalal &lt;anshuld@ti.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Signed-off-by: Ilias Apalodimas &lt;ilias.apalodimas@linaro.org&gt;
Tested-by: Christophe Leroy (CS GROUP) &lt;chleroy@kernel.org&gt;
</content>
</entry>
<entry>
<title>Merge tag 'u-boot-at91-fixes-2026.07-a' of https://source.denx.de/u-boot/custodians/u-boot-at91</title>
<updated>2026-05-09T13:31:55Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2026-05-09T13:31:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=22a285380e35a31d0a882af66278bc1edc1b917e'/>
<id>urn:sha1:22a285380e35a31d0a882af66278bc1edc1b917e</id>
<content type='text'>
First set of u-boot-at91 fixes for the 2026.07 cycle:

- Cleanup some useless code
</content>
</entry>
<entry>
<title>arm: at91: Drop unnecessary BOARD_EARLY_INIT_F usage</title>
<updated>2026-05-01T07:00:13Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2026-03-25T19:00:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=301bad079b15bdcdae1dc7c3f4f7b30cff15ba84'/>
<id>urn:sha1:301bad079b15bdcdae1dc7c3f4f7b30cff15ba84</id>
<content type='text'>
All of these platforms enable CONFIG_BOARD_EARLY_INIT_F and then have a
do-nothing board_early_init_f function. Change to not enabling the
option and so not needing an empty function.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>MAINTAINERS, mailmap: Change email for Eugen Hristev</title>
<updated>2026-04-26T20:06:24Z</updated>
<author>
<name>Eugen Hristev</name>
<email>ehristev@kernel.org</email>
</author>
<published>2026-04-26T05:47:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=53f8419ce4c939d843d852241a0af1f1325e3c64'/>
<id>urn:sha1:53f8419ce4c939d843d852241a0af1f1325e3c64</id>
<content type='text'>
Replace old bouncing emails with ehristev@kernel.org

Signed-off-by: Eugen Hristev &lt;ehristev@kernel.org&gt;
</content>
</entry>
<entry>
<title>sam9x60-curiosity: migrate Boot LED setup to use /options/u-boot/boot-led</title>
<updated>2025-12-03T17:03:45Z</updated>
<author>
<name>Quentin Schulz</name>
<email>quentin.schulz@cherry.de</email>
</author>
<published>2025-11-12T17:48:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=98be3062088a81cf7124cf16f05c7ae735587bf7'/>
<id>urn:sha1:98be3062088a81cf7124cf16f05c7ae735587bf7</id>
<content type='text'>
This board is one of the last users of /config/u-boot,boot-led property
which is a U-Boot property out of the DT spec.

Let's migrate it to use the in-spec /options/u-boot/boot-led property.
When enabling LED_BOOT, U-Boot proper will lit the LED right before
entering the main loop, so nothing needs to be done in board files.

As explained in the commit adding support for this u-boot,boot-led
property, let's keep backward compatibility in case LED_BOOT isn't
selected.

Note that this is not tested as I do not own this device.

Cc: Alexander Dahl &lt;ada@thorsis.com&gt;
Signed-off-by: Quentin Schulz &lt;quentin.schulz@cherry.de&gt;
Tested-by: Alexander Dahl &lt;ada@thorsis.com&gt;
</content>
</entry>
<entry>
<title>configs: sama7d65_curiosity: Add defconfig for sama7d65_curiosity</title>
<updated>2025-07-25T08:54:43Z</updated>
<author>
<name>Ryan Wanner</name>
<email>Ryan.Wanner@microchip.com</email>
</author>
<published>2025-07-07T11:37:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ecbe341012f8c9b989daa61309b1c16d2b7298a7'/>
<id>urn:sha1:ecbe341012f8c9b989daa61309b1c16d2b7298a7</id>
<content type='text'>
Add initial mmc defconfig to boot from SDMMC1.

Signed-off-by: Ryan Wanner &lt;Ryan.Wanner@microchip.com&gt;
Signed-off-by: Romain Sioen &lt;Romain.Sioen@microchip.com&gt;
</content>
</entry>
<entry>
<title>board: sama7d65_curiosity: Add support for sama7d65_curiosity</title>
<updated>2025-07-25T08:54:43Z</updated>
<author>
<name>Ryan Wanner</name>
<email>Ryan.Wanner@microchip.com</email>
</author>
<published>2025-07-07T11:36:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9e40ad0f81597010610cc7b4353cd1f8301d7242'/>
<id>urn:sha1:9e40ad0f81597010610cc7b4353cd1f8301d7242</id>
<content type='text'>
Add board specific functions for sama7d65_curiosity.

Signed-off-by: Ryan Wanner &lt;Ryan.Wanner@microchip.com&gt;
</content>
</entry>
<entry>
<title>configs: sam9x75_curiosity: Add initial mmc default config</title>
<updated>2025-06-19T10:56:43Z</updated>
<author>
<name>Manikandan Muralidharan</name>
<email>manikandan.m@microchip.com</email>
</author>
<published>2025-06-03T05:05:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9b9a2c99946a7ad43d9716618ae48ea01947f5fa'/>
<id>urn:sha1:9b9a2c99946a7ad43d9716618ae48ea01947f5fa</id>
<content type='text'>
Add default configuration for sd-card to boot the linux kernel.

Signed-off-by: Manikandan Muralidharan &lt;manikandan.m@microchip.com&gt;
Reviewed-by: Eugen Hristev &lt;eugen.hristev@linaro.org&gt;
</content>
</entry>
<entry>
<title>board: sam9x75_curiosity: Add support for sam9x75 curiosity</title>
<updated>2025-06-19T10:56:43Z</updated>
<author>
<name>Manikandan Muralidharan</name>
<email>manikandan.m@microchip.com</email>
</author>
<published>2025-06-03T05:05:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ee6d7a5bf8a10e3fb487e7b936c9dd6aaf31dd9b'/>
<id>urn:sha1:ee6d7a5bf8a10e3fb487e7b936c9dd6aaf31dd9b</id>
<content type='text'>
Add board specific functions for sam9x75 curiosity

Signed-off-by: Manikandan Muralidharan &lt;manikandan.m@microchip.com&gt;
Reviewed-by: Eugen Hristev &lt;eugen.hristev@linaro.org&gt;
</content>
</entry>
<entry>
<title>board: sama5d27_wlsom1_ek: Get RAM size and base from devicetree</title>
<updated>2025-06-19T10:56:43Z</updated>
<author>
<name>Fabio Estevam</name>
<email>festevam@denx.de</email>
</author>
<published>2025-05-08T00:07:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f414dbcc13dd8709e03ac3f935f5e5c2eebfa5a0'/>
<id>urn:sha1:f414dbcc13dd8709e03ac3f935f5e5c2eebfa5a0</id>
<content type='text'>
Instead of using defines for the RAM size and base address, retrieve these
information from the devicetree.

This aligns with the sama5d27_som1_ek board in commit 73c1589f025d9
("board: sama5d27_som1_ek: Get dram size and base from device tree").

While at it, remove a spurious '/* SPL */' comment.

Signed-off-by: Fabio Estevam &lt;festevam@denx.de&gt;
</content>
</entry>
</feed>
