Re: [PATCH 2/2] sunxi: H616: dram: Improve address wrapping detection

2025-03-09 Thread Ryan Walklin
takenly incorrectly detect RAM size, in particular 2 or 4 GB RAM on the 1GB device. Tested-by: Ryan Walklin Regards, Ryan

Re: [PATCH v2 4/6] power: pmic: sunxi: add AXP717 SPL support

2024-07-15 Thread Ryan Walklin
On Mon, 15 Jul 2024, at 11:38 AM, Andre Przywara wrote: > On Sun, 14 Jul 2024 20:20:44 +1200 > "Ryan Walklin" wrote: > > Hi Ryan, > > I consider the fact that the AXP209 and the AXP717 use the same I2C > address a sheer coincidence, so would like to keep the code re

Re: [PATCH v2 4/6] power: pmic: sunxi: add AXP717 SPL support

2024-07-14 Thread Ryan Walklin
obj-$(CONFIG_AXP313_POWER) += axp313.o > +obj-$(CONFIG_AXP717_POWER) += axp_spl.o > obj-$(CONFIG_AXP809_POWER) += axp809.o > obj-$(CONFIG_AXP818_POWER) += axp818.o > endif > -- > 2.25.1 Tested with RG35XX-H and RG35XX-Plus boards (Allwinner H700 with AXP717). Confirmed both DCDC2 and DCDC3 are set correctly in SPL, allowing successful DRAM init and boot. Tested-by: Ryan Walklin Regards, Ryan

Re: [PATCH] sunxi: spl: h616: fix booting from high MMC offset

2024-05-28 Thread Ryan Walklin
d with an H700-based board and u-boot at the 512-sector/256KB offset. Tested-by: Ryan Walklin Regards, Ryan

Re: [PATCH 2/2] power: regulator: add AXP717 support

2024-05-11 Thread Ryan Walklin
[AXP806_ID] = axp806_regulators, > [AXP809_ID] = axp809_regulators, > diff --git a/include/axp_pmic.h b/include/axp_pmic.h > index aabafc8501b..ae62ef0d76d 100644 > --- a/include/axp_pmic.h > +++ b/include/axp_pmic.h > @@ -33,6 +33,7 @@ enum { > AXP221_ID, > AXP223_ID, > AXP313_ID, > + AXP717_ID, > AXP803_ID, > AXP806_ID, > AXP809_ID, > -- > 2.35.8 Confirmed working on H700 board with AXP717 PMIC and LPDDR4 DRAM controller (Anbernic RG35XX-H). Registers and voltage ranges confirmed from datasheet. Reviewed-by: Ryan Walklin Regards, Ryan

Re: [PATCH 1/2] power: pmic: sunxi: add AXP717 SPL driver

2024-05-11 Thread Ryan Walklin
; > + > + return pmic_bus_setbits(AXP717_OUTPUT_CTRL1, 1U << (dcdc_num - 1)); > +} > + > +int axp_set_dcdc1(unsigned int mvolt) > +{ > + return axp_set_dcdc(1, mvolt); > +} > + > +int axp_set_dcdc2(unsigned int mvolt) > +{ > + return axp_set_dcdc(2, mvolt); > +} &

[PATCH] net: phy: Add missing RGMII internal delay cases to vsc8541_config

2024-05-02 Thread Shimizu, Ryan
ts corresponding DT node. Fix by adding missing RGMII internal delay modes to list of fall-through cases so that when configured with modes "rgmii-id", "rgmii-txid" or "rgmii-rxid", the internal delay registers get updated correctly in vsc8531_vsc8541_clk_skew_config()

Re: [PATCH v2 2/2] tools: binman: ti_board_cfg: Check for linting problems

2024-01-22 Thread Ryan Eatmon
0 + d: 0 diff --git a/tools/buildman/requirements.txt b/tools/buildman/requirements.txt index a1efcb9d4b..4a31e69e4c 100644 --- a/tools/buildman/requirements.txt +++ b/tools/buildman/requirements.txt @@ -1,2 +1,3 @@ jsonschema==4.17.3 pyyaml==6.0 +yamllint==1.26.3 -- 2.34.1 -- Ryan Eatmonreat...@ti.com - Texas Instruments, Inc. - LCPD - MGTS

RE: [PATCH] net: ftgmac100: Add reset control

2023-10-02 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Thursday, July 27, 2023 9:58 AM > To: Ryan Chen ; ChiaWei Wang > ; BMC-SW ; > j...@jms.id.au; joe.hershber...@ni.com; rfried@gmail.com; > u-boot@lists.denx.de > Cc: kobedy...@gmail.com; Dylan Hung > Subj

Re: [PATCH] boot/pxe-utils: populate initrd_filesize for extlinux boot

2023-09-16 Thread Ryan Lahfa
On Sat, Sep 16, 2023 at 03:14:58PM +0200, Ryan Lahfa wrote: > Currently, it seems like the `initrd_filesize` was uninitialized for a > while. > > This is particularly problematic when attempting to `zboot` with a > initrd with a size coming from `label->initrd`, because it will

[PATCH] boot/pxe-utils: populate initrd_filesize for extlinux boot

2023-09-16 Thread Ryan Lahfa
the boot. This fixes the issue and I confirmed it enable me booting a U-Boot on QEMU x86_64 q35 with NixOS kernel and initrds. Signed-off-by: Ryan Lahfa Cc: Tom Rini Cc: Simon Glass Cc: Bin Meng Cc: Zhaofeng Li Cc: Heinrich Schuchardt Cc: Ramon Fried Cc: Artem Lapkin --- boot/pxe_utils.c

zboot: [PATCH] boot/pxe-utils: populate initrd_filesize for extlinux boot

2023-09-16 Thread Ryan Lahfa
The reason for this is that initrd_filesize is constantly equal to zero or more specifically, potentially uninitialized memory. I believe this was introduced in 085cbdafca9c3d7bc2f27523a343f61db82f2ccb ("pxe: simplify label_boot()"), diff here: diff --git a/boot/pxe_utils.c b/boot/pxe_utils.c ind

[PATCH] include: configs: Change dtb names in fitImage to match oe-core

2023-03-30 Thread Ryan Eatmon
The oe-core class for assembling the fitImage includes the vendor sub-directory (with the / changed to _) in the config sections of the fitImage. Our env var settings for chosing which section to boot from needs to be updated to agree with the fitImage. Signed-off-by: Ryan Eatmon --- include

[PATCH] include: configs: Change dtb names in fitImage to match oe-core

2023-03-30 Thread Ryan Eatmon
The oe-core class for assembling the fitImage includes the vendor sub-directory (with the / changed to _) in the config sections of the fitImage. Our env var settings for chosing which section to boot from needs to be updated to agree with the fitImage. Signed-off-by: Ryan Eatmon --- include

[PATCH] configs: evb-ast2600: Enable configs to store env in SPI

2023-02-09 Thread Ryan Chen
Enable defconfigs relevant for storing env on SPI flash. Signed-off-by: Ryan Chen --- configs/evb-ast2600_defconfig | 4 1 file changed, 4 insertions(+) diff --git a/configs/evb-ast2600_defconfig b/configs/evb-ast2600_defconfig index 3440062156..7c09e846ac 100644 --- a/configs/evb

RE: [PATCH v2 1/1] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-29 Thread Ryan Chen
> -Original Message- > From: Simon Glass > Sent: Tuesday, January 24, 2023 2:44 AM > To: Ryan Chen > Cc: Heiko Schocher ; BMC-SW ; > u-boot@lists.denx.de > Subject: Re: [PATCH v2 1/1] i2c:aspeed:support ast2600 i2c new register mode > driver > > Hi Ryan,

[PATCH v3 1/2] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-29 Thread Ryan Chen
Add i2c new register mode driver to support AST2600 i2c new register mode. AST2600 i2c controller have legacy and new register mode. The new register mode have global register support 4 base clock for scl clock selection, and new clock divider mode. Signed-off-by: Ryan Chen --- MAINTAINERS

[PATCH v3 2/2] arm: aspeed: dtsi: add reg for i2c

2023-01-29 Thread Ryan Chen
The i2c driver have global register that i2c bus use ofnode_get_parent to get parent register address. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2600.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/ast2600.dtsi b/arch/arm/dts/ast2600.dtsi index 8d91eedc17..beabcf14f8

[PATCH v3 0/2] Add ASPEED AST2600 I2C new controller driver

2023-01-29 Thread Ryan Chen
This series add AST2600 i2c new register set driver. The i2c new register set have new clock divider option for more flexiable generation. Changes in v3: -modify uclass_get_device_by_driver to ofnode_get_parent. -Add i2c reg address in dtsi node. -fix up git config name from ryan_chen to Ryan

RE: [PATCH v2 1/1] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-20 Thread Ryan Chen
> -Original Message- > From: Simon Glass > Sent: Saturday, January 21, 2023 5:58 AM > To: Ryan Chen > Cc: Heiko Schocher ; BMC-SW ; > u-boot@lists.denx.de > Subject: Re: [PATCH v2 1/1] i2c:aspeed:support ast2600 i2c new register mode > driver > > Hi Ryan,

RE: [PATCH v2 1/1] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-19 Thread Ryan Chen
Hello Simon, Sorry, do you have time to check v2 patch? Ryan Chen > -Original Message- > From: Ryan Chen > Sent: Wednesday, January 11, 2023 2:53 PM > To: Heiko Schocher ; Ryan Chen ; > BMC-SW ; u-boot@lists.denx.de > Subject: [PATCH v2 1/1] i2c:aspeed:suppo

RE: [PATCH 1/1] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-14 Thread Ryan Chen
Hello, I resend the v2 version here https://www.mail-archive.com/u-boot@lists.denx.de/msg460560.html Ryan Chen > -Original Message- > From: Simon Glass > Sent: Thursday, January 12, 2023 5:08 AM > To: Ryan Chen > Cc: Heiko Schocher ; BMC-SW ; > u-

RE: [PATCH 1/1] i2c:aspeed:support ast2600 i2c new register mode driver

2023-01-09 Thread Ryan Chen
Hello Simon, Thank your feedback. > -Original Message- > From: Simon Glass > Sent: Tuesday, January 10, 2023 3:47 AM > To: Ryan Chen > Cc: Heiko Schocher ; BMC-SW ; > u-boot@lists.denx.de > Subject: Re: [PATCH 1/1] i2c:aspeed:support ast2600 i2c new r

RE: [PATCH 3/3] ram: ast2600: Align the RL and WL setting

2022-11-23 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Friday, November 11, 2022 3:30 PM > To: Ryan Chen ; ChiaWei Wang > ; j...@jms.id.au; Dylan Hung > ; u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 3/3] ram: ast2600: Align the RL and WL setting > > Use ma

RE: [PATCH 2/3] ram: ast2600: Improve ddr4 timing and signal quality

2022-11-23 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Friday, November 11, 2022 3:30 PM > To: Ryan Chen ; ChiaWei Wang > ; j...@jms.id.au; Dylan Hung > ; u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 2/3] ram: ast2600: Improve ddr4 timing and signal quality &

RE: [PATCH 1/3] ram: ast2600: Fix incorrect statement of the register polling

2022-11-23 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Friday, November 11, 2022 3:30 PM > To: Ryan Chen ; ChiaWei Wang > ; j...@jms.id.au; Dylan Hung > ; u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 1/3] ram: ast2600: Fix incorrect statement of the register >

RE: [PATCH 08/10] i2c/aspeed: Add AST2600 compatible

2022-06-21 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 08/10] i2c/aspeed: Add AST2600 compatible >

RE: [PATCH 07/10] i2c/aspeed: Fix reset control

2022-06-21 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 07/10] i2c/aspeed: Fix reset control >

RE: [PATCH 06/10] reset/aspeed: Implement status callback

2022-06-21 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 06/10] reset/aspeed: Implement status

RE: [PATCH 05/10] ARM: dts: ast2600-evb: Add I2C devices

2022-06-20 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 05/10] ARM: dts: ast2600-evb: Add I2C device

RE: [PATCH 04/10] ARM: dts: ast2500-evb: Add I2C devices

2022-06-20 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 04/10] ARM: dts: ast2500-evb: Add I2C device

RE: [PATCH 03/10] ARM: dts: ast2600: Dsiable I2C nodes by default

2022-06-20 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 03/10] ARM: dts: ast2600: Dsiable I2C nodes

RE: [PATCH 02/10] ARM: dts: ast2600: Add I2C reset properties

2022-06-20 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: u-boot@lists.denx.de; Cédric Le Goater > Subject: [PATCH 02/10] ARM: dts: ast2600: Add I2C reset pro

RE: [PATCH 01/10] ARM: dts: ast2600: Add I2C pinctrl

2022-06-20 Thread Ryan Chen
> -Original Message- > From: joel.s...@gmail.com On Behalf Of Joel Stanley > Sent: Monday, June 20, 2022 3:25 PM > To: Ryan Chen ; BMC-SW > ; Heiko Schocher > Cc: Eddie James ; u-boot@lists.denx.de; Cédric Le > Goater > Subject: [PATCH 01/10] ARM: dts: ast2600: A

RE: [PATCH] arm: dts: ast2600: Add I2C pinctrl

2022-06-06 Thread Ryan Chen
n Wed, 1 Jun 2022 at 16:10, Eddie James wrote: > > > > Set the pinctrl groups for each I2C bus. These are essential to I2C > > operating correctly. > > > > Signed-off-by: Eddie James > > Reviewed-by: Joel Stanley > Reviewed-by: Ryan Chen > > --- >

RE: [PATCH] i2c: ast_i2c: Remove SCL direct drive mode

2022-05-18 Thread Ryan Chen
> -Original Message- > From: Joel Stanley > Sent: Thursday, May 19, 2022 8:28 AM > To: Eddie James ; Ryan Chen > ; BMC-SW > Cc: U-Boot Mailing List ; h...@denx.de > Subject: Re: [PATCH] i2c: ast_i2c: Remove SCL direct drive mode > > On Wed, 11 May 2022 at

RE: [PATCH] gpio: aspeed: Fix incorrect offset of read back register.

2022-04-13 Thread Ryan Chen
> -Original Message- > From: Billy Tsai > Sent: Wednesday, April 13, 2022 1:35 PM > To: Ryan Chen ; ChiaWei Wang > ; BMC-SW ; > and...@aj.id.au; Billy Tsai ; > u-boot@lists.denx.de > Subject: [PATCH] gpio: aspeed: Fix incorrect offset of read back register. >

RE: [PATCH 0/3] gpio: Add AST2[456]00 GPIO driver

2022-02-16 Thread Ryan Chen
Hello Andrew, This patch series are ok, Please help add Reviewed-by: Ryan Chen > -Original Message- > From: Andrew Jeffery > Sent: Wednesday, February 16, 2022 7:57 AM > To: u-boot@lists.denx.de > Cc: max...@google.com; ChiaWei Wang ; > Ryan Chen ; Troy Le

Re: [PATCH V2 1/7] tools: imx8mimage: not abort when mmap fail

2022-01-05 Thread Ryan

RE: [PATCH] drivers: net: add Aspeed MDIO driver

2021-11-15 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Tuesday, November 2, 2021 1:42 PM > To: u-boot@lists.denx.de; joe.hershber...@ni.com; rfried@gmail.com; > Ryan Chen ; ChiaWei Wang > > Cc: BMC-SW > Subject: [PATCH] drivers: net: add Aspeed MDIO driver >

RE: [PATCH] ARM: dts: ast2600: Make WDT by default disabled

2021-09-16 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Thursday, September 16, 2021 2:10 PM > To: u-boot@lists.denx.de > Cc: Ryan Chen > Subject: [PATCH] ARM: dts: ast2600: Make WDT by default disabled > > The WDT devices described in the general .dtsi file should

U-Boot ECDSA Software Implementation Status

2021-08-26 Thread Pabis, Ryan
I see that Tim was working to add a non-platform specific implementation of the ECDSA algorithm to u-boot back in February. I would like to use this feature as well and was wondering if this work has been completed and where I can find the patch. Thanks, Ryan

RE: [PATCH 7/7] configs: aspeed: Add defconfig for AST2600 EVB

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW > Subject: [PATCH 7/7] configs: aspeed: Add defconfig for AST2600 EVB > > Add the default config

RE: [PATCH 6/7] aspeed: Add AST2600 platform support

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW > Subject: [PATCH 6/7] aspeed: Add AST2600 platform support > > Add low level platform initialization

RE: [PATCH 5/7] ARM: dts: aspeed: Add AST2600 SoC support

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW > Subject: [PATCH 5/7] ARM: dts: aspeed: Add AST2600 SoC support > > AST2600 is the 7th generation o

RE: [PATCH 4/7] reset: aspeed: Add AST2600 reset support

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW > Subject: [PATCH 4/7] reset: aspeed: Add AST2600 reset support > > Add controller reset support thro

RE: [PATCH 3/7] wdt: aspeed: Add AST2600 watchdog support

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW > Subject: [PATCH 3/7] wdt: aspeed: Add AST2600 watchdog support > > AST2600 has 8 watchdog timers

RE: [PATCH 2/7] ram: aspeed: Add AST2600 DRAM control support

2021-01-11 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, December 14, 2020 1:54 PM > To: tr...@konsulko.com; u-boot@lists.denx.de; Ryan Chen > > Cc: BMC-SW ; Dylan Hung > > Subject: [PATCH 2/7] ram: aspeed: Add AST2600 DRAM control support > > From: Dyl

RE: [v2 2/2] cosmetic: reset: ast2500: Rename driver and configs

2020-10-12 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, October 12, 2020 10:36 AM > To: tr...@konsulko.com; u-boot@lists.denx.de; max...@google.com > Cc: Ryan Chen ; BMC-SW > > Subject: [v2 2/2] cosmetic: reset: ast2500: Rename driver and configs > > 1.

RE: [v2 1/2] reset: ast2500: Use SCU for reset control

2020-10-12 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Monday, October 12, 2020 10:36 AM > To: tr...@konsulko.com; u-boot@lists.denx.de; max...@google.com > Cc: Ryan Chen ; BMC-SW > > Subject: [v2 1/2] reset: ast2500: Use SCU for reset control > > The System Contr

RE: [PATCH 1/2] reset: ast2500: Use SCU for reset control

2020-09-21 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Tuesday, September 8, 2020 3:21 PM > To: Ryan Chen ; max...@google.com; > u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 1/2] reset: ast2500: Use SCU for reset control > > The System Control Unit (SCU

RE: [PATCH 2/2] cosmetic: reset: ast2500: Rename driver and configs

2020-09-21 Thread Ryan Chen
> -Original Message- > From: ChiaWei Wang > Sent: Tuesday, September 8, 2020 3:21 PM > To: Ryan Chen ; max...@google.com; > u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 2/2] cosmetic: reset: ast2500: Rename driver and configs > > 1. Rename AST250

RE: [PATCH 2/2] ram: add ddr4 dual x8 configuration

2020-09-20 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Monday, September 7, 2020 4:25 PM > To: Ryan Chen ; u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 2/2] ram: add ddr4 dual x8 configuration > > the aspeed ddr sdram controller needs to know if the memory chip m

RE: [PATCH 1/2] ram: move aspeed ram driver into drivers/ directory

2020-09-20 Thread Ryan Chen
> -Original Message- > From: Dylan Hung > Sent: Monday, September 7, 2020 4:25 PM > To: Ryan Chen ; u-boot@lists.denx.de > Cc: BMC-SW > Subject: [PATCH 1/2] ram: move aspeed ram driver into drivers/ directory > > to improve the maintainability. It is more

RE: [PATCH v2] arm: dts: fix ast2500-evb inclusion for the correct soc family

2020-09-07 Thread Ryan Chen
> -Original Message- > From: Thirupathaiah Annapureddy > Sent: Wednesday, September 2, 2020 4:43 AM > To: u-boot@lists.denx.de > Cc: Maxim Sloyko ; Marek Vasut ; > thir...@microsoft.com; thir...@linux.microsoft.com; Tom Rini > ; ChiaWei Wang ; > Ryan Chen > S

[PATCH v2 0/3] Rename ASPEED SoC clock name

2020-08-30 Thread Ryan Chen
This patch series refactor the exiting ASPEED clock name define sync with Linux kernel. And also add SPDX-License V2 : modify patch 2/3 title form "aspeed:clock:" -> "clock:aspeed:" description Ryan Chen (3): cosmetic: aspeed: ast2500: Rename clock header clock:

[PATCH v2 3/3] cosmetic: aspeed: Modify for SPDX-License

2020-08-30 Thread Ryan Chen
Modify SPDX-License for furture patch warning Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi | 1 + include/dt-bindings/clock/aspeed-clock.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/ast2500-u-boot.dtsi b/arch/arm/dts/ast2500-u

[PATCH v2 1/3] cosmetic: aspeed: ast2500: Rename clock header

2020-08-30 Thread Ryan Chen
Rename the ast2500-scu.h to aspeed-clock.h. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi| 2 +- arch/arm/mach-aspeed/ast2500/sdram_ast2500.c| 2 +- drivers/clk/aspeed/clk_ast2500.c| 2 +- include/dt

[PATCH v2 2/3] clock:aspeed: Sync with Linux kernel clock header define

2020-08-30 Thread Ryan Chen
v2: modify title description aspeed:clock -> clock:aspeed Use kernel include/dt-bindings/clock/aspeed-clock.h define for clock driver. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi | 20 +++ drivers/clk/aspeed/clk_ast2500.c | 38 +++-- include

RE: [PATCH 0/3] Rename ASPEED SoC clock name

2020-08-30 Thread Ryan Chen
> -Original Message- > From: Cédric Le Goater > Sent: Saturday, August 29, 2020 4:46 PM > To: Ryan Chen ; ChiaWei Wang > ; BMC-SW ; > lu...@denx.de; eaja...@linux.ibm.com; s...@chromium.org; > u-boot@lists.denx.de; Joel Stanley > Subject: Re: [PATCH 0/3] Rena

[PATCH 2/3] aspeed:clock: Sync with Linux kernel clock header define

2020-08-28 Thread Ryan Chen
Use kernel include/dt-bindings/clock/aspeed-clock.h define for clock driver. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi | 20 +++ drivers/clk/aspeed/clk_ast2500.c | 38 +++-- include/dt-bindings/clock/aspeed-clock.h | 68 ++-- 3

[PATCH 3/3] cosmetic: aspeed: Modify for SPDX-License

2020-08-28 Thread Ryan Chen
Modify SPDX-License for furture patch warning Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi | 1 + include/dt-bindings/clock/aspeed-clock.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/ast2500-u-boot.dtsi b/arch/arm/dts/ast2500-u

[PATCH 1/3] cosmetic: aspeed: ast2500: Rename clock header

2020-08-28 Thread Ryan Chen
Rename the ast2500-scu.h to aspeed-clock.h. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi| 2 +- arch/arm/mach-aspeed/ast2500/sdram_ast2500.c| 2 +- drivers/clk/aspeed/clk_ast2500.c| 2 +- include/dt

[PATCH 0/3] Rename ASPEED SoC clock name

2020-08-28 Thread Ryan Chen
This patch series refactor the exiting ASPEED clock name define sync with Linux kernel. And also add SPDX-License Ryan Chen (3): cosmetic: aspeed: ast2500: Rename clock header aspeed:clock: Sync with Linux kernel clock header define cosmetic: aspeed: Modify for SPDX-License arch/arm/dts

[PATCH 1/1] Remove not used export function header.

2020-08-28 Thread Ryan Chen
All driver is use clk dm model, will not use this function call. Signed-off-by: Ryan Chen --- arch/arm/dts/ast2500-u-boot.dtsi| 2 +- arch/arm/mach-aspeed/ast2500/sdram_ast2500.c| 2 +- drivers/clk/aspeed/clk_ast2500.c| 2

RE: [PATCH] arm: dts: fix ast2500-evb inclusion for correct target

2020-08-20 Thread Ryan Chen
Hi > -Original Message- > From: Thirupathaiah Annapureddy [mailto:thir...@linux.microsoft.com] > Sent: Thursday, August 20, 2020 8:16 AM > To: u-boot@lists.denx.de > Cc: Maxim Sloyko ; Marek Vasut ; > ChiaWei Wang ; Ryan Chen > > Subject: Re: [PATCH] arm: dts: f

Re: [PATCH] fvp: Add support for loading Android boot images via semihosting

2020-04-06 Thread Ryan Harkin
On Mon, 6 Apr 2020 at 19:25, Peter Collingbourne wrote: > On Mon, Apr 6, 2020 at 10:40 AM Ryan Harkin > wrote: > >> Hi Peter, >> >> This looks good to me, but I have a quick question below. >> >> On Sat, 4 Apr 2020 at 03:58, Peter Collingbourne wrote: >

[U-Boot] Error when replacing SPI NOR Flash IC

2019-09-30 Thread RUSSELL Ryan
x27;broken' part and replace it the board becomes functional again. Is there something different about these parts that require a slightly different u-boot configuration that could cause the Flash to function initially but later become corrupt? Best Regards, Ryan J. Russell Hardware Designer A

[U-Boot] [PATCH] Revert "vexpress64: fvp dram: add DRAM configuration"

2019-08-27 Thread Ryan Harkin
This reverts commit fc04b923541d984b1544056fd3bfa8129d4e5aac where the FVP DRAM configuration was added. Signed-off-by: Ryan Harkin --- arch/arm/Kconfig | 10 --- board/armltd/vexpress64/Kconfig| 2 +- board/armltd/vexpress64/MAINTAINERS| 5 configs

Re: [U-Boot] [PATCH] ARM: vexpress_*_defconfig: replace earlyprintk with earlycon

2019-08-22 Thread Ryan Harkin
On Thu, 22 Aug 2019 at 13:10, Sudeep Holla wrote: > On Thu, Aug 22, 2019 at 12:38:31PM +0100, Ryan Harkin wrote: > > On Thu, 22 Aug 2019 at 02:25, Peng Fan wrote: > > > > > > Subject: [U-Boot] [PATCH] ARM: vexpress_*_defconfig: replace > ear

Re: [U-Boot] [PATCH] ARM: vexpress_*_defconfig: replace earlyprintk with earlycon

2019-08-22 Thread Ryan Harkin
On Thu, 22 Aug 2019 at 02:25, Peng Fan wrote: > > Subject: [U-Boot] [PATCH] ARM: vexpress_*_defconfig: replace earlyprintk > > with earlycon > > > > earlyprintk no longer works on arm64 platforms. Replace it with earlycon > > which works fine. > > > > Cc

Re: [U-Boot] Booting Linux kernel on x86_64

2019-08-12 Thread Ryan Wilkins
lieve that u-boot wasn’t booting my kernel. Thank you very much, Bin and Andy, for your assistance with this. I appreciate it. Best, Ryan ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] Booting Linux kernel on x86_64

2019-08-12 Thread Ryan Wilkins
ng stages of boot process. > > > > -- > With Best Regards, > Andy Shevchenko Andy, This worked for me and I was able to see that the kernel was booting but was unable to mount the rootfs. It also told me that my framebuffer isn’t being initialized properly so I wasn’t see

Re: [U-Boot] Booting Linux kernel on x86_64

2019-08-09 Thread Ryan Wilkins
> On Aug 9, 2019, at 12:00 PM, Bin Meng wrote: > > +Simon, Andy, > > Hi Ryan, > >> On Fri, Aug 9, 2019 at 11:52 PM Ryan Wilkins >> wrote: >> >> Hello, >> >> I’m trying to get u-boot 2019.04 to execute the Linux 4.19.55 kernel from &

[U-Boot] Booting Linux kernel on x86_64

2019-08-09 Thread Ryan Wilkins
. Ryan Wilkins ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 0/2] Fix CAAM for TrustZone enable for warp7

2018-01-24 Thread Ryan Harkin
[1] Thanks for all of your help BTW - Peng, there's no way this would be > working without you giving direction on how. > > Bryan O'Donoghue (2): > drivers/crypto/fsl: assign job-rings to non-TrustZone > warp7 : run sec_init for CAAM RNG > This series: Tested-b

Re: [U-Boot] [PATCH 1/2] serial: mxc: support DTE mode

2018-01-22 Thread Ryan Harkin
Hi Simon, On 22 January 2018 at 00:29, Simon Glass wrote: > Hi Ryan, > > On 19 January 2018 at 06:21, Ryan Harkin wrote: > > Hi Stefan, > > > > Thanks for looking so quickly. > > > > On 19 January 2018 at 12:23, Stefan Agner > wrote: > >> >

Re: [U-Boot] [PATCH 1/2] serial: mxc: support DTE mode

2018-01-19 Thread Ryan Harkin
Hi Stefan, Thanks for looking so quickly. On 19 January 2018 at 12:23, Stefan Agner wrote: > Hi Ryan, > > > On 19.01.2018 10:53, Ryan Harkin wrote: > > Add DTE mode support via Kconfig on the MXC uart. > > Make use of the driver model, there DTE is supporte

[U-Boot] [PATCH 2/2] warp7: add support for console on UART6 and mikroBus

2018-01-19 Thread Ryan Harkin
Add support to route the serial console on the NXP WaRP7 board to UART6 and the mikroBus. To use UART6 on the WaRP7 board, I add the following lines to configs/warp7_defconfig: +CONFIG_MXC_CONSOLE_NUM=6 +CONFIG_SERIAL_MXC_DTE_MODE=y Signed-off-by: Ryan Harkin Reviewed-by: Bryan O'Don

[U-Boot] [PATCH 1/2] serial: mxc: support DTE mode

2018-01-19 Thread Ryan Harkin
Add DTE mode support via Kconfig on the MXC uart. Signed-off-by: Ryan Harkin Reviewed-by: Bryan O'Donoghue --- drivers/serial/Kconfig | 7 +++ drivers/serial/serial_mxc.c | 10 -- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/drivers/serial/Kconfig b/dr

[U-Boot] [PATCH 0/2] warp7: add UART6 support

2018-01-19 Thread Ryan Harkin
This small series adds support for using the console on UART6 on the WaRP7 board. The board retains current functionality: UART6 is not used by default and needs it needs to be enabled in defconfig. [PATCH 1/2] serial: mxc: support DTE mode [PATCH 2/2] warp7: add support for console on UART6 and

[U-Boot] am33xx ddr tests

2017-08-27 Thread Ryan
Hello, I have 2 chips which are 512mb each connected to the AM33xx processor. I want to check if the base address is configured for each chip in u-boot or kernel. If it is configured in u-boot can anyone point me to where it is configured. The problem i am facing is i dont if i need to do a mte

[U-Boot] [PATCH] do_smhload: fix return code

2017-03-02 Thread Ryan Harkin
, rather than the enumeration CMD_RET_FAILURE (which is also 1). Signed-off-by: Ryan Harkin --- arch/arm/lib/semihosting.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/lib/semihosting.c b/arch/arm/lib/semihosting.c index e32ad90..415ac89 100644 --- a/arch/arm/lib

[U-Boot] mlo and u-boot

2017-02-23 Thread Ryan
Hello, I am using AM43XX based board. The bootloader is divided into spl u-boot (MLO) and u-boot.bin I wanted to check what variables are shared between them. How does MLO a seperate binary share the boot mode and mmcdev to u-boot so that it can use the appropriate mmcdev to find the kernel. tha

Re: [U-Boot] [PATCH v3] cmd: move CONFIG_CMD_UNZIP and CONFIG_CMD_ZIP to Kconfig

2017-02-06 Thread Ryan Harkin
platform. > > Signed-off-by: Masahiro Yamada > Acked-by: Michal Simek > Acked-by: Stefan Roese Acked-by: Ryan Harkin Tested-by: Ryan Harkin Tested on TC2, FVP Foundation and AEMv8 models and Juno R0, R1 and R2. > --- > > Changes in v3: > - Fix a typo in Kconf

Re: [U-Boot] [PATCH v2] armv8: aarch64: Fix the warning about x1-x3 nonzero issue

2017-01-16 Thread Ryan Harkin
_el2 and armv8_switch_to_el1. The input argument 4 will >> be set to the right value, such as zero. >> >> Signed-off-by: Alison Wang Thanks Alison, this removes the warning for me now and still boots fine. I tested with Juno R0/1/2 and FVP Foundation and AEMv8 models. Tested-b

Re: [U-Boot] [RFC PATCH] arm: bootm: Boot kernel with U-Boot's FDT blob

2017-01-13 Thread Ryan Harkin
On 13 January 2017 at 14:19, Mark Rutland wrote: > On Thu, Jan 12, 2017 at 01:47:32PM +0000, Ryan Harkin wrote: >> On 12 January 2017 at 12:25, Mark Rutland wrote: >> > On Tue, Jan 10, 2017 at 06:50:19PM +, Jon Medhurst (Tixy) wrote: >> >> On Tue, 2017-01-1

Re: [U-Boot] [PATCH] armv8: aarch64: Fix the warning about x1-x3 nonzero issue

2017-01-13 Thread Ryan Harkin
Hi Alison, I'll wait for a new version based on Alex's feedback before I test. The change looks like it should work, so I'm happy to wait, unless you feel thjere is a need to test it sooner. Thanks for the quick response. Regards, Ryan. On 13 Jan 2017 08:16, "Alison Wan

Re: [U-Boot] [RFC PATCH] arm: bootm: Boot kernel with U-Boot's FDT blob

2017-01-12 Thread Ryan Harkin
On 12 January 2017 at 12:25, Mark Rutland wrote: > On Tue, Jan 10, 2017 at 06:50:19PM +, Jon Medhurst (Tixy) wrote: >> On Tue, 2017-01-10 at 18:34 +, Mark Rutland wrote: >> > Looking at the git log for arch/arm64/boot/dts/arm, most updates are >> > simply adding new descriptions, so a DTB

Re: [U-Boot] [PATCH v8 1/3] armv8: Support loading 32-bit OS in AArch32 execution state

2017-01-11 Thread Ryan Harkin
first time. I'm not sure which one is causing the warning in the kernel, but I guess we need to reset x3 to zero before jumping to the kernel? I'm happy to test any fixes if you wish to send them to me. Thanks, Ryan. On 10 November 2016 at 02:49, Alison Wang wrote: > To support l

Re: [U-Boot] [RFC PATCH] arm: bootm: Boot kernel with U-Boot's FDT blob

2017-01-10 Thread Ryan Harkin
On 10 January 2017 at 16:58, Alexander Graf wrote: > On 01/10/2017 05:47 PM, Ryan Harkin wrote: >> >> On 10 January 2017 at 16:35, Alexander Graf wrote: >>> >>> On 01/10/2017 05:31 PM, york sun wrote: >>>> >>>> On 01/10/2017 05:02 AM,

Re: [U-Boot] [RFC PATCH] arm: bootm: Boot kernel with U-Boot's FDT blob

2017-01-10 Thread Ryan Harkin
On 10 January 2017 at 16:35, Alexander Graf wrote: > On 01/10/2017 05:31 PM, york sun wrote: >> >> On 01/10/2017 05:02 AM, Alexander Graf wrote: >>> >>> On 01/10/2017 01:58 PM, Michal Simek wrote: U-Boot configured via DTB can use the same DTB for booting the kernel. When OF_CONTROL

Re: [U-Boot] [RFC PACH v2 1/1] Add vexpress_aemv8a_aarch32 variant

2016-12-05 Thread Ryan Harkin
Hi Tom, On 5 December 2016 at 17:13, Tom Rini wrote: > On Mon, Dec 05, 2016 at 04:11:45PM +0000, Ryan Harkin wrote: > >> The ARM AEMv8 FVP model can be run in Aarch64 or Aarch32 mode. Aarch32 >> support is enable per-CPU when launching the model, eg: >> >> -C clust

[U-Boot] [RFC PACH v2 1/1] Add vexpress_aemv8a_aarch32 variant

2016-12-05 Thread Ryan Harkin
. Signed-off-by: Ryan Harkin --- Changes since v1: This single patch replaces my earlier RFC series of two patches, where the first modified generic code and the other added a new variant. After Tom's suggestion that I review the Raspberry PI code, my original [RFC PATCH 1/2] has been dr

Re: [U-Boot] [RFC PATCH 0/2] ARMv8 Aarch32 support

2016-12-05 Thread Ryan Harkin
On 5 December 2016 at 15:14, Andre Przywara wrote: > Hi, > > On 02/12/16 19:20, Tom Rini wrote: >> On Fri, Dec 02, 2016 at 04:25:37PM +, Ryan Harkin wrote: >>> On 2 December 2016 at 15:41, Tom Rini wrote: >>>> On Fri, Dec 02, 2016 at 11:51:07AM +, Rya

Re: [U-Boot] [RFC PATCH 0/2] ARMv8 Aarch32 support

2016-12-02 Thread Ryan Harkin
On 2 Dec 2016 19:20, "Tom Rini" wrote: > > On Fri, Dec 02, 2016 at 04:25:37PM +, Ryan Harkin wrote: > > On 2 December 2016 at 15:41, Tom Rini wrote: > > > On Fri, Dec 02, 2016 at 11:51:07AM +, Ryan Harkin wrote: > > > > > >> I'

Re: [U-Boot] [RFC PATCH 0/2] ARMv8 Aarch32 support

2016-12-02 Thread Ryan Harkin
On 2 December 2016 at 15:41, Tom Rini wrote: > On Fri, Dec 02, 2016 at 11:51:07AM +0000, Ryan Harkin wrote: > >> I've been working with Soby Mathew to get U-Boot booting on ARM's >> AEMv8 FVP model in Aarch32 mode. >> >> Soby worked out what needed to

[U-Boot] [RFC PATCH 1/2] Add Aarch32 option for ARMv8 CPUs

2016-12-02 Thread Ryan Harkin
core. This patch is co-authored with Soby Mathew . Signed-off-by: Ryan Harkin --- Makefile | 5 + arch/arm/Kconfig | 6 ++ arch/arm/cpu/armv7/virt-v7.c | 2 ++ arch/arm/cpu/armv8/u-boot-spl.lds | 5 + arch/arm/cpu/armv8/u-boot.lds

[U-Boot] [RFC PATCH 2/2] Add vexpress_aemv8a_aarch32 variant

2016-12-02 Thread Ryan Harkin
. Signed-off-by: Ryan Harkin --- arch/arm/Kconfig | 10 ++ board/armltd/vexpress64/Kconfig | 2 +- configs/vexpress_aemv8a_aarch32_defconfig | 30 ++ include/configs/vexpress_aemv8a.h | 28 ++-- 4

[U-Boot] [RFC PATCH 0/2] ARMv8 Aarch32 support

2016-12-02 Thread Ryan Harkin
I've been working with Soby Mathew to get U-Boot booting on ARM's AEMv8 FVP model in Aarch32 mode. Soby worked out what needed to be changed and I'm refining the changes into patches that can be built for both Aarch64 and Aarch32 mode. There are two patches for discussion: [RFC PATCH 1/2] Add Aa

  1   2   3   >