Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 2 | /* |
| 3 | * DWC SATA platform driver |
| 4 | * |
| 5 | * (C) Copyright 2016 |
| 6 | * Texas Instruments Incorporated, <www.ti.com> |
| 7 | * |
| 8 | * Author: Mugunthan V N <mugunthanvnm@ti.com> |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 11 | #include <dm.h> |
| 12 | #include <ahci.h> |
| 13 | #include <scsi.h> |
| 14 | #include <sata.h> |
Jonas Karlman | 4006cb0 | 2023-07-22 14:02:12 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_ARCH_OMAP2PLUS |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 16 | #include <asm/arch/sata.h> |
Jonas Karlman | 4006cb0 | 2023-07-22 14:02:12 +0000 | [diff] [blame] | 17 | #endif |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <generic-phy.h> |
Simon Glass | bdd5f81 | 2023-09-14 18:21:46 -0600 | [diff] [blame] | 20 | #include <linux/printk.h> |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 21 | |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 22 | struct dwc_ahci_priv { |
| 23 | void *base; |
| 24 | void *wrapper_base; |
| 25 | }; |
| 26 | |
Jean-Jacques Hiblot | d05ef52 | 2018-04-06 11:13:53 +0200 | [diff] [blame] | 27 | static int dwc_ahci_bind(struct udevice *dev) |
| 28 | { |
| 29 | struct udevice *scsi_dev; |
| 30 | |
| 31 | return ahci_bind_scsi(dev, &scsi_dev); |
| 32 | } |
| 33 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 34 | static int dwc_ahci_of_to_plat(struct udevice *dev) |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 35 | { |
| 36 | struct dwc_ahci_priv *priv = dev_get_priv(dev); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 37 | fdt_addr_t addr; |
| 38 | |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 39 | priv->base = map_physmem(dev_read_addr(dev), sizeof(void *), |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 40 | MAP_NOCACHE); |
| 41 | |
Simon Glass | ba1dea4 | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 42 | addr = devfdt_get_addr_index(dev, 1); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 43 | if (addr != FDT_ADDR_T_NONE) { |
| 44 | priv->wrapper_base = map_physmem(addr, sizeof(void *), |
| 45 | MAP_NOCACHE); |
| 46 | } else { |
| 47 | priv->wrapper_base = NULL; |
| 48 | } |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | static int dwc_ahci_probe(struct udevice *dev) |
| 54 | { |
| 55 | struct dwc_ahci_priv *priv = dev_get_priv(dev); |
| 56 | int ret; |
| 57 | struct phy phy; |
| 58 | |
| 59 | ret = generic_phy_get_by_name(dev, "sata-phy", &phy); |
| 60 | if (ret) { |
Masahiro Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 61 | pr_err("can't get the phy from DT\n"); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 62 | return ret; |
| 63 | } |
| 64 | |
| 65 | ret = generic_phy_init(&phy); |
| 66 | if (ret) { |
Patrick Delaunay | 0cc2324 | 2020-07-03 17:36:44 +0200 | [diff] [blame] | 67 | pr_debug("unable to initialize the sata phy\n"); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 68 | return ret; |
| 69 | } |
| 70 | |
| 71 | ret = generic_phy_power_on(&phy); |
| 72 | if (ret) { |
Patrick Delaunay | 0cc2324 | 2020-07-03 17:36:44 +0200 | [diff] [blame] | 73 | pr_debug("unable to power on the sata phy\n"); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 74 | return ret; |
| 75 | } |
| 76 | |
Jonas Karlman | 4006cb0 | 2023-07-22 14:02:12 +0000 | [diff] [blame] | 77 | #ifdef CONFIG_ARCH_OMAP2PLUS |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 78 | if (priv->wrapper_base) { |
| 79 | u32 val = TI_SATA_IDLE_NO | TI_SATA_STANDBY_NO; |
| 80 | |
| 81 | /* Enable SATA module, No Idle, No Standby */ |
| 82 | writel(val, priv->wrapper_base + TI_SATA_SYSCONFIG); |
| 83 | } |
Jonas Karlman | 4006cb0 | 2023-07-22 14:02:12 +0000 | [diff] [blame] | 84 | #endif |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 85 | |
Jean-Jacques Hiblot | d05ef52 | 2018-04-06 11:13:53 +0200 | [diff] [blame] | 86 | return ahci_probe_scsi(dev, (ulong)priv->base); |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | static const struct udevice_id dwc_ahci_ids[] = { |
| 90 | { .compatible = "snps,dwc-ahci" }, |
| 91 | { } |
| 92 | }; |
| 93 | |
| 94 | U_BOOT_DRIVER(dwc_ahci) = { |
| 95 | .name = "dwc_ahci", |
Jean-Jacques Hiblot | d05ef52 | 2018-04-06 11:13:53 +0200 | [diff] [blame] | 96 | .id = UCLASS_AHCI, |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 97 | .of_match = dwc_ahci_ids, |
Jean-Jacques Hiblot | d05ef52 | 2018-04-06 11:13:53 +0200 | [diff] [blame] | 98 | .bind = dwc_ahci_bind, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 99 | .of_to_plat = dwc_ahci_of_to_plat, |
Simon Glass | c4dfa89 | 2017-06-14 21:28:43 -0600 | [diff] [blame] | 100 | .ops = &scsi_ops, |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 101 | .probe = dwc_ahci_probe, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 102 | .priv_auto = sizeof(struct dwc_ahci_priv), |
Jean-Jacques Hiblot | d7cb71b | 2017-04-24 11:51:31 +0200 | [diff] [blame] | 103 | }; |