¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Re: [PATCH 1/5] phy: meson-gxl-usb2: add set_mode callback
On 6/18/24 9:55 AM, Neil Armstrong wrote: > Implement set_mode callback by calling the current public > function. > Signed-off-by: Neil Armstrong <neil.armstrong@...> > --- >
By Marek Vasut <marex@...> · #2305 ·
Re: [PATCH 3/5] phy: meson-gxl-usb2: remove phy_meson_gxl_usb2_set_mode
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 =
By Marek Vasut <marex@...> · #2304 ·
[PATCH 5/5] usb: dwc3: meson-g12a: drop usb.h and make dwc3_meson_g12a_force_mode static
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 <neil.armstrong@...> ---
By Neil Armstrong · #2303 ·
[PATCH 4/5] usb: dwc3: meson-gxl: drop usb-gx.h and make dwc3_meson_gxl_force_mode static
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 <neil.armstrong@...> ---
By Neil Armstrong · #2302 ·
[PATCH 3/5] phy: meson-gxl-usb2: remove phy_meson_gxl_usb2_set_mode
Remove the public phy_meson_gxl_usb2_set_mode and move the implementation in the the set_mode callback. Signed-off-by: Neil Armstrong <neil.armstrong@...> ---
By Neil Armstrong · #2301 ·
[PATCH 2/5] usb: dwc3: meson-gxl: switch to generic_phy_set_mode
Use the PHY set_mode call instead of calling directly in the PHY shared function. Signed-off-by: Neil Armstrong <neil.armstrong@...> --- drivers/usb/dwc3/dwc3-meson-gxl.c | 15
By Neil Armstrong · #2300 ·
[PATCH 1/5] phy: meson-gxl-usb2: add set_mode callback
Implement set_mode callback by calling the current public function. Signed-off-by: Neil Armstrong <neil.armstrong@...> --- drivers/phy/meson-gxl-usb2.c | 25 ++++++++++++++++++++++++- 1 file
By Neil Armstrong · #2299 ·
[PATCH 0/5] usb: meson: switch to set_mode callback and other cleanup
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
By Neil Armstrong · #2298 ·
Re: [PATCH 00/42] labgrid: Provide an integration with Labgrid
Hi Tom,
By Simon Glass <sjg@...> · #2297 ·
Re: [PATCH 00/42] labgrid: Provide an integration with Labgrid
Hi Ilias, <ilias.apalodimas@...> wrote:
By Simon Glass <sjg@...> · #2296 ·
Re: [PATCH 00/42] labgrid: Provide an integration with Labgrid
On Wed, Jun 12, 2024 at 09:08:32AM +0300, Ilias Apalodimas wrote: > Hi Simon > > On Tue, 11 Jun 2024 at 23:02, Simon Glass <sjg@...> wrote: > > > > Labgrid provides access to a hardware lab
By Tom Rini <trini@...> · #2295 ·
Re: [PATCH 00/42] labgrid: Provide an integration with Labgrid
Hi Simon
By Ilias Apalodimas <ilias.apalodimas@...> · #2294 ·
Re: [PATCH 00/42] labgrid: Provide an integration with Labgrid
Hi,
By Simon Glass <sjg@...> · #2293 ·
[PATCH 18/42] meson: Correct driver declaration for meson_axg_gpio
This should use the driver macros so that the driver appears in the linker list. Fix this. Fixes: 8587839f19d ("pinctrl: meson: add axg support") Signed-off-by: Simon Glass <sjg@...> ---
By Simon Glass <sjg@...> · #2292 ·
[PATCH 00/42] labgrid: Provide an integration with Labgrid
Labgrid provides access to a hardware lab in an automated way. It is possible to boot U-Boot on boards in the lab without physically touching them. It relies on relays, USB UARTs and SD muxes, among
By Simon Glass <sjg@...> · #2291 ·
Re: [PATCH 18/42] meson: Correct driver declaration for meson_axg_gpio
On 11/06/2024 22:01, Simon Glass wrote: > This should use the driver macros so that the driver appears in the > linker list. Fix this. > Fixes: 8587839f19d ("pinctrl: meson: add axg support") >
By Neil Armstrong · #2290 ·
[PATCH v1 1/3] mtd: rawnand: nand_base: support for 'NAND_IS_BOOT_MEDIUM' flag
Based on Linux kernel: commit f922bd798bb9 ("mtd: rawnand: add an option to specify NAND chip as a boot device") Allow to define a NAND chip as a boot device. This can be helpful for the selection of
By Arseniy Krasnov <avkrasnov@...> · #2289 ·
[PATCH v1 2/3] mtd: rawnand: meson: refactor use of 'meson_nfc_cmd_access()'
Move call 'meson_nfc_cmd_seed()' and check for 'NAND_NEED_SCRAMBLING' to 'meson_nfc_cmd_access()', thus removing code duplication. Signed-off-by: Arseniy Krasnov <avkrasnov@...> ---
By Arseniy Krasnov <avkrasnov@...> · #2288 ·
[PATCH v1 0/3] Meson: R/W support for pages used by boot ROM
Patchset is based on patchset for Linux (today merged to nand-next): https://lore.kernel.org/linux-mtd/20240507230903.3399594-1-avkrasnov@.../ Here is description from it:
By Arseniy Krasnov <avkrasnov@...> · #2287 ·
[PATCH v1 3/3] mtd: rawnand: meson: read/write access for boot ROM pages
Boot ROM on Meson needs some pages to be read/written in a special mode: 384 byte ECC mode (so called "short" by Amlogic) and with scrambling enabled. Such pages are located on the chip in the
By Arseniy Krasnov <avkrasnov@...> · #2286 ·