bootstd: sata: Add bootstd support for ahci sata

Add ahci sata bootdev and corresponding hunting function.

Signed-off-by: Tony Dinh <mibodhi@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
Tony Dinh 2023-10-11 13:26:42 -07:00 committed by Tom Rini
parent 7a790f018a
commit a7527fbbf2
5 changed files with 113 additions and 5 deletions

View file

@ -188,12 +188,20 @@ static int script_boot(struct udevice *dev, struct bootflow *bflow)
{
struct blk_desc *desc = dev_get_uclass_plat(bflow->blk);
ulong addr;
int ret;
int ret = 0;
if (desc->uclass_id == UCLASS_USB)
if (desc->uclass_id == UCLASS_USB) {
ret = env_set("devtype", "usb");
else
ret = env_set("devtype", blk_get_devtype(bflow->blk));
} else {
/* If the uclass is AHCI, but the driver is ATA
* (not scsi), set devtype to sata
*/
if (IS_ENABLED(CONFIG_SATA) &&
desc->uclass_id == UCLASS_AHCI)
ret = env_set("devtype", "sata");
else
ret = env_set("devtype", blk_get_devtype(bflow->blk));
}
if (!ret)
ret = env_set_hex("devnum", desc->devnum);
if (!ret)

View file

@ -10,7 +10,7 @@ obj-$(CONFIG_SCSI_AHCI) += ahci.o
obj-$(CONFIG_DWC_AHSATA) += dwc_ahsata.o
obj-$(CONFIG_FSL_SATA) += fsl_sata.o
obj-$(CONFIG_LIBATA) += libata.o
obj-$(CONFIG_SATA) += sata.o
obj-$(CONFIG_SATA) += sata.o sata_bootdev.o
obj-$(CONFIG_SATA_CEVA) += sata_ceva.o
obj-$(CONFIG_SATA_MV) += sata_mv.o
obj-$(CONFIG_SATA_SIL) += sata_sil.o

View file

@ -15,6 +15,8 @@
#include <dm.h>
#include <part.h>
#include <sata.h>
#include <dm/device-internal.h>
#include <dm/uclass-internal.h>
#ifndef CONFIG_AHCI
struct blk_desc sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
@ -50,6 +52,36 @@ int sata_scan(struct udevice *dev)
return ops->scan(dev);
}
int sata_rescan(bool verbose)
{
int ret;
struct udevice *dev;
if (verbose)
printf("Removing devices on SATA bus...\n");
blk_unbind_all(UCLASS_AHCI);
ret = uclass_find_first_device(UCLASS_AHCI, &dev);
if (ret || !dev) {
printf("Cannot find SATA device (err=%d)\n", ret);
return -ENOSYS;
}
ret = device_remove(dev, DM_REMOVE_NORMAL);
if (ret) {
printf("Cannot remove SATA device '%s' (err=%d)\n", dev->name, ret);
return -ENOSYS;
}
if (verbose)
printf("Rescanning SATA bus for devices...\n");
ret = uclass_probe_all(UCLASS_AHCI);
return ret;
}
#ifndef CONFIG_AHCI
#ifdef CONFIG_PARTITIONS
struct blk_desc *sata_get_dev(int dev)

View file

@ -0,0 +1,62 @@
// SPDX-License-Identifier: GPL-2.0+
/*
* Bootdev for sata
*
* Copyright 2023 Tony Dinh <mibodhi@gmail.com>
*/
#include <common.h>
#include <ahci.h>
#include <bootdev.h>
#include <dm.h>
#include <init.h>
#include <sata.h>
static int sata_bootdev_bind(struct udevice *dev)
{
struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
ucp->prio = BOOTDEVP_4_SCAN_FAST;
return 0;
}
static int sata_bootdev_hunt(struct bootdev_hunter *info, bool show)
{
int ret;
if (IS_ENABLED(CONFIG_PCI)) {
ret = pci_init();
if (ret)
return ret;
}
ret = sata_rescan(true);
if (ret)
return ret;
return 0;
}
struct bootdev_ops sata_bootdev_ops = {
};
static const struct udevice_id sata_bootdev_ids[] = {
{ .compatible = "u-boot,bootdev-sata" },
{ }
};
U_BOOT_DRIVER(sata_bootdev) = {
.name = "sata_bootdev",
.id = UCLASS_BOOTDEV,
.ops = &sata_bootdev_ops,
.bind = sata_bootdev_bind,
.of_match = sata_bootdev_ids,
};
BOOTDEV_HUNTER(sata_bootdev_hunter) = {
.prio = BOOTDEVP_4_SCAN_FAST,
.uclass = UCLASS_AHCI,
.hunt = sata_bootdev_hunt,
.drv = DM_DRIVER_REF(sata_bootdev),
};

View file

@ -21,4 +21,10 @@ extern struct blk_desc sata_dev_desc[];
int sata_probe(int devnum);
int sata_remove(int devnum);
/*
* Remove existing AHCI SATA device uclass and all of its children,
* if any, and probe it again.
*/
int sata_rescan(bool verbose);
#endif