Re: [PATCH] dfu: sf: rely on DT for spi speed and mode

2024-10-01 Thread Mattijs Korpershoek
On mar., oct. 01, 2024 at 12:13, Neil Armstrong wrote: > On 01/10/2024 12:01, Neil Armstrong wrote: >> On 01/10/2024 10:52, Mattijs Korpershoek wrote: >>> Hi Neil, >>> >>> Thank you for the patch and sorry the review delay. >>> >>> On mar., sept. 17, 2024 at 14:24, Neil Armstrong >>> wrote: >>

Re: [PATCH] dfu: sf: rely on DT for spi speed and mode

2024-10-01 Thread Neil Armstrong
On 01/10/2024 12:01, Neil Armstrong wrote: On 01/10/2024 10:52, Mattijs Korpershoek wrote: Hi Neil, Thank you for the patch and sorry the review delay. On mar., sept. 17, 2024 at 14:24, Neil Armstrong wrote: Align with cmd_sf, and try to rely on DT for spi speed and mode, and still fallbac

Re: [PATCH] dfu: sf: rely on DT for spi speed and mode

2024-10-01 Thread Neil Armstrong
On 01/10/2024 10:52, Mattijs Korpershoek wrote: Hi Neil, Thank you for the patch and sorry the review delay. On mar., sept. 17, 2024 at 14:24, Neil Armstrong wrote: Align with cmd_sf, and try to rely on DT for spi speed and mode, and still fallback on spi_flash_probe() if it fails. With th

Re: [PATCH] dfu: sf: rely on DT for spi speed and mode

2024-10-01 Thread Mattijs Korpershoek
Hi Neil, Thank you for the patch and sorry the review delay. On mar., sept. 17, 2024 at 14:24, Neil Armstrong wrote: > Align with cmd_sf, and try to rely on DT for spi speed and mode, > and still fallback on spi_flash_probe() if it fails. > > With the current scheme, spi_flash_probe() will be

Re: [PATCH] dfu: sf: rely on DT for spi speed and mode

2024-10-01 Thread neil . armstrong
On 01/10/2024 14:02, Mattijs Korpershoek wrote: On mar., oct. 01, 2024 at 12:13, Neil Armstrong wrote: On 01/10/2024 12:01, Neil Armstrong wrote: On 01/10/2024 10:52, Mattijs Korpershoek wrote: Hi Neil, Thank you for the patch and sorry the review delay. On mar., sept. 17, 2024 at 14:24,

[PATCH] dfu: sf: rely on DT for spi speed and mode

2024-09-17 Thread Neil Armstrong
Align with cmd_sf, and try to rely on DT for spi speed and mode, and still fallback on spi_flash_probe() if it fails. With the current scheme, spi_flash_probe() will be called with CONFIG_SF_DEFAULT_SPEED and CONFIG_SF_DEFAULT_MODE with are set to 0 by default on DT platforms using DM_SPI_FLASH.