[PATCH v2] timer: starfive: Add Starfive timer support

2023-11-27 Thread Kuan Lim Lee
Add timer driver in Starfive SoC. It is an timer that outside of CPU core and inside Starfive SoC. Signed-off-by: Kuan Lim Lee Signed-off-by: Wei Liang Lim Changes for v2: - correct driver name, comment, variable --- drivers/timer/Kconfig | 7 +++ drivers/timer/Makefile | 1

[PATCH v2] mmc: sdhci-cadence: Add support for Cadence sdmmc v6

2023-11-27 Thread Kuan Lim Lee
Cadence SDMMC v6 controller has a lot of changes on initialize compared to v4 controller. PHY is needed by v6 controller. Signed-off-by: Kuan Lim Lee Co-developed-by: Alex Soo Signed-off-by: Wei Liang Lim --- Changes in v2 - Rename file sdhci-cadence6-phy.c to sdhci-cadence6.c - Remove

[PATCH v2] timer: starfive: Add Starfive timer support

2023-11-05 Thread Kuan Lim Lee
Add timer driver in Starfive SoC. It is an timer that outside of CPU core and inside Starfive SoC. Signed-off-by: Kuan Lim Lee Signed-off-by: Wei Liang Lim Reviewed-by: Simon Glass Changes for v2: - correct driver name, comment, variable --- drivers/timer/Kconfig | 7 +++ drivers

[PATCH] mmc: sdhci-cadence: Add support for Cadence sdmmc v6

2023-10-03 Thread Kuan Lim Lee
From: Kuan Lim Lee Cadence SDMMC v6 controller has a lot of changes on initialize compared to v4 controller. PHY is needed by v6 controller. Signed-off-by: Kuan Lim Lee Reviewed-by: Alex Soo Reviewed-by: Wei Liang Lim --- drivers/mmc/Kconfig | 13 ++ drivers/mmc/Makefile

[PATCH] spl: mmc: Resolve emmc not load image after switched hw partition

2023-10-02 Thread Kuan Lim Lee
When selecting MMCSD_MODE_EMMCBOOT as boot_mode, emmc do not load U-boot proper image after switched hardware partition. Signed-off-by: Kuan Lim Lee Reviewed-by: Chee Hong Ang Reviewed-by: Wei Liang Lim --- common/spl/spl_mmc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common

[PATCH] timer: starfive: Add Starfive timer support

2023-09-19 Thread Kuan Lim Lee
Add timer driver in Starfive SoC. It is an timer that outside of CPU core and inside Starfive SoC. Signed-off-by: Kuan Lim Lee Reviewed-by: Wei Liang Lim --- drivers/timer/Kconfig | 7 +++ drivers/timer/Makefile | 1 + drivers/timer/starfive-timer.c | 94