[PATCH next 1/2] rockchip: theobroma-systems: migrate git URLs to HTTPS

2024-06-20 Thread Quentin Schulz
From: Quentin Schulz It turns out only Puma had a working git:// URL. Though that is now fixed, having HTTPS URLs make it easier to directly reach our cgit webserver to check what's up without having to change the URL manually. Depending on your terminal settings, this also makes it possible to

[PATCH next 0/2] rockchip: theobroma: use HTTPS for git URLs and drop RK3368 Lion support

2024-06-20 Thread Quentin Schulz
ertions(+), 840 deletions(-) --- base-commit: e124e630ad694327e33d6513e43951793e827d3a change-id: 20240620-tsd-http-git-clone-53c0ea69adbe Best regards, -- Quentin Schulz

Re: [PATCH] dt-bindings: imx: Drop redundant imports with dts/upstream

2024-06-20 Thread Michael Nazzareno Trimarchi
Hi Sumit On Thu, Jun 20, 2024 at 6:55 AM Sumit Garg wrote: > > On Wed, 19 Jun 2024 at 18:51, Michael Nazzareno Trimarchi > wrote: > > > > Hi > > > > On Wed, Jun 19, 2024 at 3:07 PM Sumit Garg wrote: > > > > > > On Wed, 19 Jun 2024 at 18:26, Adam Ford wrote: > > > > > > > > On Wed, Jun 19, 2024

Re: [PATCH v7 3/4] use fdt_kaslrseed function to de-duplicate code

2024-06-20 Thread Michal Simek
On 6/18/24 23:06, Tim Harvey wrote: Use the fdt_kaslrseed function to deduplicate code doing the same thing. Note that the kalsrseed command (CMD_KASLRSEED) is likely pointless now but left in place in case boot scripts exist that rely on this command existing and returning success. An inform

Re: [PATCH 0/3] lib: smbios: Extend driver with using sysinfo driver

2024-06-20 Thread Michal Simek
Hi, On 4/26/24 15:38, Michal Simek wrote: Hi, currently only DT way is supported and it is added directly to lib/smbios.c but I think DT and env is only one way how information can be found that's why this series is improving handling with using sysinfo driver which can be platform specific. At

Re: [PATCH v4 00/14] Introduce the lwIP network stack

2024-06-20 Thread Jerome Forissier
On 6/19/24 19:19, Peter Robinson wrote: > On Wed, 19 Jun 2024 at 16:06, Jerome Forissier > wrote: >> >> >> >> On 6/19/24 09:24, Ilias Apalodimas wrote: >>> Hi Tom >>> >>> On Tue, 18 Jun 2024 at 23:21, Tom Rini wrote: On Mon, Jun 17, 2024 at 05:32:52PM +0200, Jerome Forissier wrote: >

[PATCH v2 4/5] usb: dwc3: meson-gxl: drop usb-gx.h and make dwc3_meson_gxl_force_mode static

2024-06-20 Thread Neil Armstrong
Drop this useless usb-gx.h and now make dwc3_meson_gxl_force_mode static since only used in the dwc3-meson-gxl.c file. Signed-off-by: Neil Armstrong --- arch/arm/include/asm/arch-meson/usb-gx.h | 14 -- drivers/usb/dwc3/dwc3-meson-gxl.c| 3 +-- 2 files changed, 1 insertion(+

[PATCH v2 5/5] usb: dwc3: meson-g12a: drop usb.h and make dwc3_meson_g12a_force_mode static

2024-06-20 Thread Neil Armstrong
Drop this useless usb.h and now make dwc3_meson_g12a_force_mode static since only used in the dwc3-meson-g12a.c file. Signed-off-by: Neil Armstrong --- arch/arm/include/asm/arch-meson/usb.h | 12 drivers/usb/dwc3/dwc3-meson-g12a.c| 2 +- 2 files changed, 1 insertion(+), 13 dele

[PATCH v2 3/5] phy: meson-gxl-usb2: remove phy_meson_gxl_usb2_set_mode

2024-06-20 Thread Neil Armstrong
Remove the public phy_meson_gxl_usb2_set_mode and move the implementation in the the set_mode callback. Signed-off-by: Neil Armstrong --- arch/arm/include/asm/arch-meson/usb-gx.h | 3 --- drivers/phy/meson-gxl-usb2.c | 45 ++-- 2 files changed, 14 inserti

[PATCH v2 2/5] usb: dwc3: meson-gxl: switch to generic_phy_set_mode

2024-06-20 Thread Neil Armstrong
Use the PHY set_mode call instead of calling directly in the PHY shared function. Signed-off-by: Neil Armstrong --- drivers/usb/dwc3/dwc3-meson-gxl.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/drivers/usb/dwc3/dwc3-meson-gxl.c b/drivers/usb/dwc3/dwc3-mes

[PATCH v2 1/5] phy: meson-gxl-usb2: add set_mode callback

2024-06-20 Thread Neil Armstrong
Implement set_mode callback by calling the current public function, use a temporary function name that will be removed when the public phy_meson_gxl_usb2_set_mode is finally removed in a following change. Signed-off-by: Neil Armstrong --- drivers/phy/meson-gxl-usb2.c | 25 +++

[PATCH v2 0/5] usb: meson: switch to set_mode callback and other cleanup

2024-06-20 Thread Neil Armstrong
Switch to set_mode callback now it's available and in the same time make public functions static and drop useless mach-meson headers that are no more needed. Signed-off-by: Neil Armstrong --- Changes in v2: - Update commit message in patch 1 to specify why we use _ in the set_mode callback - Lin

Re: [PATCH 3/5] phy: meson-gxl-usb2: remove phy_meson_gxl_usb2_set_mode

2024-06-20 Thread Neil Armstrong
On 18/06/2024 16:56, Marek Vasut wrote: On 6/18/24 9:55 AM, Neil Armstrong wrote: [...] @@ -205,7 +188,7 @@ static int phy_meson_gxl_usb2_power_off(struct phy *phy)   struct phy_ops meson_gxl_usb2_phy_ops = {   .power_on = phy_meson_gxl_usb2_power_on,   .power_off = phy_meson_gxl_usb2_

<    1   2