1 // SPDX-License-Identifier: GPL-2.0+
3 * MTK SATA platform driver
5 * Copyright (C) 2020 MediaTek Inc.
12 #include <asm/global_data.h>
15 #include <dm/of_access.h>
16 #include <generic-phy.h>
17 #include <linux/err.h>
23 #include <dm/device_compat.h>
26 #define SYS_CFG_SATA_MSK GENMASK(31, 30)
27 #define SYS_CFG_SATA_EN BIT(31)
29 struct mtk_ahci_priv {
32 struct ahci_uc_priv ahci_priv;
34 struct reset_ctl_bulk rst_bulk;
37 static int mtk_ahci_bind(struct udevice *dev)
39 struct udevice *scsi_dev;
41 return ahci_bind_scsi(dev, &scsi_dev);
44 static int mtk_ahci_of_to_plat(struct udevice *dev)
46 struct mtk_ahci_priv *priv = dev_get_priv(dev);
48 priv->base = devfdt_remap_addr_index(dev, 0);
53 static int mtk_ahci_parse_property(struct ahci_uc_priv *hpriv,
56 struct mtk_ahci_priv *plat = dev_get_priv(dev);
57 const void *fdt = gd->fdt_blob;
59 /* enable SATA function if needed */
60 if (fdt_get_property(fdt, dev_of_offset(dev),
61 "mediatek,phy-mode", NULL)) {
62 plat->mode = syscon_regmap_lookup_by_phandle(dev,
64 if (IS_ERR(plat->mode)) {
65 dev_err(dev, "missing phy-mode phandle\n");
66 return PTR_ERR(plat->mode);
68 regmap_update_bits(plat->mode, SYS_CFG,
69 SYS_CFG_SATA_MSK, SYS_CFG_SATA_EN);
72 ofnode_read_u32(dev_ofnode(dev), "ports-implemented",
77 static int mtk_ahci_probe(struct udevice *dev)
79 struct mtk_ahci_priv *priv = dev_get_priv(dev);
83 ret = mtk_ahci_parse_property(&priv->ahci_priv, dev);
87 ret = reset_get_bulk(dev, &priv->rst_bulk);
89 reset_assert_bulk(&priv->rst_bulk);
90 reset_deassert_bulk(&priv->rst_bulk);
92 dev_err(dev, "Failed to get reset: %d\n", ret);
95 ret = generic_phy_get_by_name(dev, "sata-phy", &phy);
97 pr_err("can't get the phy from DT\n");
101 ret = generic_phy_init(&phy);
103 pr_err("unable to initialize the sata phy\n");
107 ret = generic_phy_power_on(&phy);
109 pr_err("unable to power on the sata phy\n");
113 return ahci_probe_scsi(dev, (ulong)priv->base);
116 static const struct udevice_id mtk_ahci_ids[] = {
117 { .compatible = "mediatek,mtk-ahci" },
121 U_BOOT_DRIVER(mtk_ahci) = {
124 .of_match = mtk_ahci_ids,
125 .bind = mtk_ahci_bind,
126 .of_to_plat = mtk_ahci_of_to_plat,
128 .probe = mtk_ahci_probe,
129 .priv_auto = sizeof(struct mtk_ahci_priv),