mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

Rename 'ahci_mvebu' to 'ahci_generic' and select it by default. The AHCI driver contains no SoC specific code and only expects the base address to be passed, thus rename it to ahci_generic and add the DT compatible string "generic-ahci". Update existing defconfigs to use the new Kconfig name as well. TEST: Booted on QEMU sbsa using the generic-ahci node. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Stefan Roese <sr@denx.de> Cc: Tom Rini <trini@konsulko.com> Cc: Stefan Roese <sr@denx.de> Acked-by: Tony Dinh <mibodhi@gmail.com>
61 lines
1.2 KiB
C
61 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2016 Stefan Roese <sr@denx.de>
|
|
*/
|
|
|
|
#include <ahci.h>
|
|
#include <dm.h>
|
|
#include <log.h>
|
|
|
|
/*
|
|
* Dummy implementation that can be overwritten by a board
|
|
* specific function
|
|
*/
|
|
__weak int board_ahci_enable(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int generic_ahci_bind(struct udevice *dev)
|
|
{
|
|
struct udevice *scsi_dev;
|
|
int ret;
|
|
|
|
ret = ahci_bind_scsi(dev, &scsi_dev);
|
|
if (ret) {
|
|
debug("%s: Failed to bind (err=%d\n)", __func__, ret);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int generic_ahci_probe(struct udevice *dev)
|
|
{
|
|
/*
|
|
* Board specific SATA / AHCI enable code, e.g. enable the
|
|
* AHCI power or deassert reset
|
|
*/
|
|
board_ahci_enable();
|
|
|
|
ahci_probe_scsi(dev, (ulong)dev_remap_addr(dev));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct udevice_id generic_ahci_ids[] = {
|
|
{ .compatible = "marvell,armada-380-ahci" },
|
|
{ .compatible = "marvell,armada-3700-ahci" },
|
|
{ .compatible = "marvell,armada-8k-ahci" },
|
|
{ .compatible = "cavium,octeon-7130-ahci" },
|
|
{ .compatible = "generic-ahci" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(ahci_generic_drv) = {
|
|
.name = "ahci_generic",
|
|
.id = UCLASS_AHCI,
|
|
.of_match = generic_ahci_ids,
|
|
.bind = generic_ahci_bind,
|
|
.probe = generic_ahci_probe,
|
|
};
|