<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/arch/arm/mach-snapdragon, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2019-01-25T17:12:56Z</updated>
<entry>
<title>arm: mach-snapdragon: pinctrl: clarify gpio disable bit</title>
<updated>2019-01-25T17:12:56Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2019-01-12T09:47:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=ea7bf8fb08872bc5e1fe9b10b1ccf05de5df4a4c'/>
<id>urn:sha1:ea7bf8fb08872bc5e1fe9b10b1ccf05de5df4a4c</id>
<content type='text'>
The TLMM_GPIO_ENABLE bit is actually use to disable
the GPIO. change it to TLMM_GPIO_DISABLE so it's clearer.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>arm: mach-snapdragon: add pinctrl driver for db820c</title>
<updated>2019-01-25T17:12:55Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2019-01-12T09:47:25Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=94268f1ab21e196920b4f566341428d278aebbde'/>
<id>urn:sha1:94268f1ab21e196920b4f566341428d278aebbde</id>
<content type='text'>
Add pinctrl driver for Dragonboard820c, currently with only
one mux func to initialize pins for serial console.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>arm: mach-snapdragon: db820c: Actually init PLL for serial</title>
<updated>2019-01-25T17:12:55Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2019-01-12T09:47:24Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=604aa9d30b1ed6aa95569d416aea5a51ad7ba7e4'/>
<id>urn:sha1:604aa9d30b1ed6aa95569d416aea5a51ad7ba7e4</id>
<content type='text'>
The PLL for the UART was not set, and relied on previous
initializtion made by LK. add the appropriate initialization.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>mach-snapdragon: db410: pinctrl: fix pin count</title>
<updated>2019-01-18T14:16:15Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2019-01-12T09:48:28Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=8d24a4776a59c96e83a95c7cc5b3f3fa294c2c70'/>
<id>urn:sha1:8d24a4776a59c96e83a95c7cc5b3f3fa294c2c70</id>
<content type='text'>
Pin count in APQ8016 was wrong, fix that.

Fixes: ad97051b7ff6 ("mach-snapdragon: Introduce pinctrl driver")
Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>db410c: serial# env using msm board serial</title>
<updated>2018-09-30T17:00:35Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-09-21T10:35:46Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=2df573e6a5d30c3f009a9cea8f5e2e11cc9710e3'/>
<id>urn:sha1:2df573e6a5d30c3f009a9cea8f5e2e11cc9710e3</id>
<content type='text'>
The serial# environment variable needs to be
defined so it will be used by fastboot as serial
for the endpoint descriptor.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>snapdragon: added MAC generation functions</title>
<updated>2018-08-13T18:04:04Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-08-03T13:25:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=e0b04a15250a4aff28f1ab34812e9449098fa978'/>
<id>urn:sha1:e0b04a15250a4aff28f1ab34812e9449098fa978</id>
<content type='text'>
Add support for generation of unique MAC address
that is derived from board serial.
Algorithm for generation of MAC taken from LK.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>snapdragon: added msm_board_serial() func</title>
<updated>2018-08-13T18:04:04Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-08-03T13:25:35Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=86e5e429468310d0f1716a1ebb95159aba3b61b4'/>
<id>urn:sha1:86e5e429468310d0f1716a1ebb95159aba3b61b4</id>
<content type='text'>
This commit adds a function to get the board
serial number.
In snapdragon it's actually the eMMC serial number.

Function added in a new file misc.c that will
include further snapdragon miscellaneous functions.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>snapdragon: Add DRAM detection &amp; FDT fixup</title>
<updated>2018-08-10T17:45:35Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-07-31T09:29:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=36adb7c9e826f3284a67503c1b49327cfa9bc895'/>
<id>urn:sha1:36adb7c9e826f3284a67503c1b49327cfa9bc895</id>
<content type='text'>
Fixup the Linux FDT with the detection of onboard DRAM as
provided by SBL (Secondary boot loader) by reading
the shared-memory region.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>mach-snapdragon: increase size of malloc pool</title>
<updated>2018-05-29T15:01:37Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-05-28T20:55:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=f035526624dcb4b6bd36314162013eb820fdd86b'/>
<id>urn:sha1:f035526624dcb4b6bd36314162013eb820fdd86b</id>
<content type='text'>
Pool size must be increased to support new additionals
drivers.

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
</content>
</entry>
<entry>
<title>mach-snapdragon: Introduce pinctrl driver</title>
<updated>2018-05-26T22:19:16Z</updated>
<author>
<name>Ramon Fried</name>
</author>
<published>2018-05-16T09:13:40Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=ad97051b7ff61a92380dfcf3236e18503c1fe8ef'/>
<id>urn:sha1:ad97051b7ff61a92380dfcf3236e18503c1fe8ef</id>
<content type='text'>
This patch adds pinmux and pinctrl driver for TLMM
subsystem in snapdragon chipsets.
Currently, supporting only 8016, but implementation is
generic and 8096 can be added easily.

Driver is using the generic dt-bindings and doesn't
introduce any new bindings (yet).

Signed-off-by: Ramon Fried &lt;ramon.fried@gmail.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
</feed>
