Re: [PATCH v4] bootstd: sata: Add bootstd support for ahci sata

2023-10-11 Thread Tony Dinh
Hi Tom, On Wed, Oct 11, 2023 at 7:43 AM Tom Rini wrote: > > On Sun, Sep 17, 2023 at 04:06:48PM -0700, Tony Dinh wrote: > > Add ahci sata bootdev and corresponding hunting function. > > > > Signed-off-by: Tony Dinh > > Reviewed-by: Simon Glass > > --- > > > > Changes in v4: > > - Revise logic in

Re: [PATCH v4] bootstd: sata: Add bootstd support for ahci sata

2023-10-11 Thread Tom Rini
On Sun, Sep 17, 2023 at 04:06:48PM -0700, Tony Dinh wrote: > Add ahci sata bootdev and corresponding hunting function. > > Signed-off-by: Tony Dinh > Reviewed-by: Simon Glass > --- > > Changes in v4: > - Revise logic in bootmeth_script() to set devtype to sata for non-scsi > SATA device > - Rew

Re: [PATCH v4] bootstd: sata: Add bootstd support for ahci sata

2023-09-22 Thread Simon Glass
On Sun, 17 Sept 2023 at 17:07, Tony Dinh wrote: > > Add ahci sata bootdev and corresponding hunting function. > > Signed-off-by: Tony Dinh > --- > > Changes in v4: > - Revise logic in bootmeth_script() to set devtype to sata for non-scsi > SATA device > - Rewrite sata_rescan() logic to properly r

[PATCH v4] bootstd: sata: Add bootstd support for ahci sata

2023-09-17 Thread Tony Dinh
Add ahci sata bootdev and corresponding hunting function. Signed-off-by: Tony Dinh --- Changes in v4: - Revise logic in bootmeth_script() to set devtype to sata for non-scsi SATA device - Rewrite sata_rescan() logic to properly remove all devices before probing - Add description to sata_rescan()