<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/bootcount/Kconfig, branch v2024.10</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/drivers/bootcount/Kconfig?h=v2024.10</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/drivers/bootcount/Kconfig?h=v2024.10'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2024-09-12T16:14:49Z</updated>
<entry>
<title>bootcount: Update to point to current documentation</title>
<updated>2024-09-12T16:14:49Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2024-08-26T16:49:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7387be522efe2ead220fadc1e249d06aaf435719'/>
<id>urn:sha1:7387be522efe2ead220fadc1e249d06aaf435719</id>
<content type='text'>
The current documentation for the bootcount API is on our website and
not the old wiki, update the link in two places.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Merge patch series "drivers: bootcount: Add support for ANY filesystem"</title>
<updated>2024-07-16T18:56:20Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2024-07-16T18:46:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7f050668699377321339d82231afe1417849b5f8'/>
<id>urn:sha1:7f050668699377321339d82231afe1417849b5f8</id>
<content type='text'>
Vasileios Amoiridis &lt;vassilisamir@gmail.com&gt; says:

This patch adds support to save the bootcount variable in a file located in
FAT filesystem. Up to now, there was support only for EXT filesystem.
</content>
</entry>
<entry>
<title>drivers: bootcount: Add support for ANY filesystem</title>
<updated>2024-07-16T18:46:34Z</updated>
<author>
<name>Vasileios Amoiridis</name>
<email>vassilisamir@gmail.com</email>
</author>
<published>2024-06-28T17:35:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1d7e2120af8ddf1abbdb6f34e3a39174cf54736f'/>
<id>urn:sha1:1d7e2120af8ddf1abbdb6f34e3a39174cf54736f</id>
<content type='text'>
Add support to save boot count variable in ANY filesystem. Tested with
FAT and EXT.

Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;
Reviewed-by: Philip Oberfichtner &lt;pro@denx.de&gt;
Signed-off-by: Vasileios Amoiridis &lt;vasileios.amoiridis@cern.ch&gt;
</content>
</entry>
<entry>
<title>bootcount: Add driver model I2C driver</title>
<updated>2023-10-31T08:09:04Z</updated>
<author>
<name>Philip Richard Oberfichtner</name>
<email>pro@denx.de</email>
</author>
<published>2023-10-31T07:38:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5b6ee512ceb8d990e010646c4fe7b8a3633fad68'/>
<id>urn:sha1:5b6ee512ceb8d990e010646c4fe7b8a3633fad68</id>
<content type='text'>
This adds a generic I2C bootcounter adhering to driver model to replace
the previously removed legacy implementation.

There is no change in functionality, it can be used on any I2C device.
The device tree configuration may look like this for example:

	bootcount {
		compatible = "u-boot,bootcount-i2c";
		i2cbcdev = &lt;&amp;i2c_rtc&gt;;
		offset = &lt;0x11&gt;;
	};

Signed-off-by: Philip Richard Oberfichtner &lt;pro@denx.de&gt;
Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
<entry>
<title>bootcount: Remove legacy I2C driver</title>
<updated>2023-10-31T08:08:36Z</updated>
<author>
<name>Philip Richard Oberfichtner</name>
<email>pro@denx.de</email>
</author>
<published>2023-10-31T07:38:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=31f4ee4b13d974ba4b973211eeb57db70bc5ea77'/>
<id>urn:sha1:31f4ee4b13d974ba4b973211eeb57db70bc5ea77</id>
<content type='text'>
The legacy I2C bootcounter will hereby be removed and eventually
be replaced by a driver model implementation in the follow-up commit.

The legacy driver has the following drawbacks:
	- It's not adhering to the driver model
	- Settings are grabbed from Kconfig rather than device tree
	- i2c_{read,write} are being used instead of dm_i2c_{read,write}

Signed-off-by: Philip Richard Oberfichtner &lt;pro@denx.de&gt;
Reviewed-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
<entry>
<title>global: Move remaining CONFIG_SYS_* to CFG_SYS_*</title>
<updated>2022-12-05T21:06:08Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-11-16T18:10:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=65cc0e2a65d2c9f107b2f42db6396d9ade6c5ad8'/>
<id>urn:sha1:65cc0e2a65d2c9f107b2f42db6396d9ade6c5ad8</id>
<content type='text'>
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS namespace do
not easily transition to Kconfig. In many cases they likely should come
from the device tree instead. Move these out of CONFIG namespace and in
to CFG namespace.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>bootcount: pmic: Correct misleading comment</title>
<updated>2022-10-11T19:40:48Z</updated>
<author>
<name>Philip Oberfichtner</name>
<email>pro@denx.de</email>
</author>
<published>2022-09-19T08:11:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bda5f3e7d678ef34ca512cc5321b73e39320b147'/>
<id>urn:sha1:bda5f3e7d678ef34ca512cc5321b73e39320b147</id>
<content type='text'>
Fix a copy-paste error I did when inserting the comment.

Signed-off-by: Philip Oberfichtner &lt;pro@denx.de&gt;
Reviewed-by: Jaehoon Chung &lt;jh80.chung@samsung.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SYS_BOOTCOUNT_LE et al to Kconfig</title>
<updated>2022-07-07T18:01:09Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-06-25T15:02:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=64a2a7b04b0a50e50a7cd36d7956d40c7a874478'/>
<id>urn:sha1:64a2a7b04b0a50e50a7cd36d7956d40c7a874478</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SYS_BOOTCOUNT_LE
   CONFIG_SYS_BOOTCOUNT_BE

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Merge tag 'v2022.04-rc5' into next</title>
<updated>2022-03-28T16:36:49Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-03-28T16:36:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=34d2b7f20369d62c0f091d6572a8c0ea4655cf14'/>
<id>urn:sha1:34d2b7f20369d62c0f091d6572a8c0ea4655cf14</id>
<content type='text'>
Prepare v2022.04-rc5
</content>
</entry>
<entry>
<title>bootcount: Add pmic pfuze100 bootcount driver</title>
<updated>2022-03-25T20:42:40Z</updated>
<author>
<name>Philip Oberfichtner</name>
<email>pro@denx.de</email>
</author>
<published>2022-03-18T11:04:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c537a36839964b66b6c56c7488c3809763de5a16'/>
<id>urn:sha1:c537a36839964b66b6c56c7488c3809763de5a16</id>
<content type='text'>
Use the MEMA - MEMD registers on the PFUZE100 as bootcount
registers.

Based on work from Heiko Schocher &lt;hs@denx.de&gt;.
Signed-off-by: Philip Oberfichtner &lt;pro@denx.de&gt;
</content>
</entry>
</feed>
