uboot/arch/x86/cpu/ivybridge/sata.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * From Coreboot
   4 * Copyright (C) 2008-2009 coresystems GmbH
   5 */
   6
   7#include <common.h>
   8#include <ahci.h>
   9#include <dm.h>
  10#include <fdtdec.h>
  11#include <asm/io.h>
  12#include <asm/pch_common.h>
  13#include <asm/pci.h>
  14#include <asm/arch/pch.h>
  15
  16DECLARE_GLOBAL_DATA_PTR;
  17
  18static void common_sata_init(struct udevice *dev, unsigned int port_map)
  19{
  20        u32 reg32;
  21        u16 reg16;
  22
  23        /* Set IDE I/O Configuration */
  24        reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
  25        dm_pci_write_config32(dev, IDE_CONFIG, reg32);
  26
  27        /* Port enable */
  28        dm_pci_read_config16(dev, 0x92, &reg16);
  29        reg16 &= ~0x3f;
  30        reg16 |= port_map;
  31        dm_pci_write_config16(dev, 0x92, reg16);
  32
  33        /* SATA Initialization register */
  34        port_map &= 0xff;
  35        dm_pci_write_config32(dev, 0x94, ((port_map ^ 0x3f) << 24) | 0x183);
  36}
  37
  38static void bd82x6x_sata_init(struct udevice *dev, struct udevice *pch)
  39{
  40        unsigned int port_map, speed_support, port_tx;
  41        const void *blob = gd->fdt_blob;
  42        int node = dev_of_offset(dev);
  43        const char *mode;
  44        u32 reg32;
  45        u16 reg16;
  46
  47        debug("SATA: Initializing...\n");
  48
  49        /* SATA configuration */
  50        port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0);
  51        speed_support = fdtdec_get_int(blob, node,
  52                                       "sata_interface_speed_support", 0);
  53
  54        mode = fdt_getprop(blob, node, "intel,sata-mode", NULL);
  55        if (!mode || !strcmp(mode, "ahci")) {
  56                ulong abar;
  57
  58                debug("SATA: Controller in AHCI mode\n");
  59
  60                /* Set timings */
  61                dm_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
  62                                IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
  63                                IDE_PPE0 | IDE_IE0 | IDE_TIME0);
  64                dm_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
  65                                IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
  66
  67                /* Sync DMA */
  68                dm_pci_write_config16(dev, IDE_SDMA_CNT, IDE_PSDE0);
  69                dm_pci_write_config16(dev, IDE_SDMA_TIM, 0x0001);
  70
  71                common_sata_init(dev, 0x8000 | port_map);
  72
  73                /* Initialize AHCI memory-mapped space */
  74                abar = dm_pci_read_bar32(dev, 5);
  75                debug("ABAR: %08lx\n", abar);
  76                /* CAP (HBA Capabilities) : enable power management */
  77                reg32 = readl(abar + 0x00);
  78                reg32 |= 0x0c006000;  /* set PSC+SSC+SALP+SSS */
  79                reg32 &= ~0x00020060; /* clear SXS+EMS+PMS */
  80                /* Set ISS, if available */
  81                if (speed_support) {
  82                        reg32 &= ~0x00f00000;
  83                        reg32 |= (speed_support & 0x03) << 20;
  84                }
  85                writel(reg32, abar + 0x00);
  86                /* PI (Ports implemented) */
  87                writel(port_map, abar + 0x0c);
  88                (void) readl(abar + 0x0c); /* Read back 1 */
  89                (void) readl(abar + 0x0c); /* Read back 2 */
  90                /* CAP2 (HBA Capabilities Extended)*/
  91                reg32 = readl(abar + 0x24);
  92                reg32 &= ~0x00000002;
  93                writel(reg32, abar + 0x24);
  94                /* VSP (Vendor Specific Register */
  95                reg32 = readl(abar + 0xa0);
  96                reg32 &= ~0x00000005;
  97                writel(reg32, abar + 0xa0);
  98        } else if (!strcmp(mode, "combined")) {
  99                debug("SATA: Controller in combined mode\n");
 100
 101                /* No AHCI: clear AHCI base */
 102                dm_pci_write_bar32(dev, 5, 0x00000000);
 103                /* And without AHCI BAR no memory decoding */
 104                dm_pci_read_config16(dev, PCI_COMMAND, &reg16);
 105                reg16 &= ~PCI_COMMAND_MEMORY;
 106                dm_pci_write_config16(dev, PCI_COMMAND, reg16);
 107
 108                dm_pci_write_config8(dev, 0x09, 0x80);
 109
 110                /* Set timings */
 111                dm_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
 112                                IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
 113                dm_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
 114                                IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
 115                                IDE_PPE0 | IDE_IE0 | IDE_TIME0);
 116
 117                /* Sync DMA */
 118                dm_pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0);
 119                dm_pci_write_config16(dev, IDE_SDMA_TIM, 0x0200);
 120
 121                common_sata_init(dev, port_map);
 122        } else {
 123                debug("SATA: Controller in plain-ide mode\n");
 124
 125                /* No AHCI: clear AHCI base */
 126                dm_pci_write_bar32(dev, 5, 0x00000000);
 127
 128                /* And without AHCI BAR no memory decoding */
 129                dm_pci_read_config16(dev, PCI_COMMAND, &reg16);
 130                reg16 &= ~PCI_COMMAND_MEMORY;
 131                dm_pci_write_config16(dev, PCI_COMMAND, reg16);
 132
 133                /*
 134                 * Native mode capable on both primary and secondary (0xa)
 135                 * OR'ed with enabled (0x50) = 0xf
 136                 */
 137                dm_pci_write_config8(dev, 0x09, 0x8f);
 138
 139                /* Set timings */
 140                dm_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
 141                                IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
 142                                IDE_PPE0 | IDE_IE0 | IDE_TIME0);
 143                dm_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
 144                                IDE_SITRE | IDE_ISP_3_CLOCKS |
 145                                IDE_RCT_1_CLOCKS | IDE_IE0 | IDE_TIME0);
 146
 147                /* Sync DMA */
 148                dm_pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0 | IDE_PSDE0);
 149                dm_pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
 150
 151                common_sata_init(dev, port_map);
 152        }
 153
 154        /* Set Gen3 Transmitter settings if needed */
 155        port_tx = fdtdec_get_int(blob, node, "intel,sata-port0-gen3-tx", 0);
 156        if (port_tx)
 157                pch_iobp_update(pch, SATA_IOBP_SP0G3IR, 0, port_tx);
 158
 159        port_tx = fdtdec_get_int(blob, node, "intel,sata-port1-gen3-tx", 0);
 160        if (port_tx)
 161                pch_iobp_update(pch, SATA_IOBP_SP1G3IR, 0, port_tx);
 162
 163        /* Additional Programming Requirements */
 164        pch_common_sir_write(dev, 0x04, 0x00001600);
 165        pch_common_sir_write(dev, 0x28, 0xa0000033);
 166        reg32 = pch_common_sir_read(dev, 0x54);
 167        reg32 &= 0xff000000;
 168        reg32 |= 0x5555aa;
 169        pch_common_sir_write(dev, 0x54, reg32);
 170        pch_common_sir_write(dev, 0x64, 0xcccc8484);
 171        reg32 = pch_common_sir_read(dev, 0x68);
 172        reg32 &= 0xffff0000;
 173        reg32 |= 0xcccc;
 174        pch_common_sir_write(dev, 0x68, reg32);
 175        reg32 = pch_common_sir_read(dev, 0x78);
 176        reg32 &= 0x0000ffff;
 177        reg32 |= 0x88880000;
 178        pch_common_sir_write(dev, 0x78, reg32);
 179        pch_common_sir_write(dev, 0x84, 0x001c7000);
 180        pch_common_sir_write(dev, 0x88, 0x88338822);
 181        pch_common_sir_write(dev, 0xa0, 0x001c7000);
 182        pch_common_sir_write(dev, 0xc4, 0x0c0c0c0c);
 183        pch_common_sir_write(dev, 0xc8, 0x0c0c0c0c);
 184        pch_common_sir_write(dev, 0xd4, 0x10000000);
 185
 186        pch_iobp_update(pch, 0xea004001, 0x3fffffff, 0xc0000000);
 187        pch_iobp_update(pch, 0xea00408a, 0xfffffcff, 0x00000100);
 188}
 189
 190static void bd82x6x_sata_enable(struct udevice *dev)
 191{
 192        const void *blob = gd->fdt_blob;
 193        int node = dev_of_offset(dev);
 194        unsigned port_map;
 195        const char *mode;
 196        u16 map = 0;
 197
 198        /*
 199         * Set SATA controller mode early so the resource allocator can
 200         * properly assign IO/Memory resources for the controller.
 201         */
 202        mode = fdt_getprop(blob, node, "intel,sata-mode", NULL);
 203        if (mode && !strcmp(mode, "ahci"))
 204                map = 0x0060;
 205        port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0);
 206
 207        map |= (port_map ^ 0x3f) << 8;
 208        dm_pci_write_config16(dev, 0x90, map);
 209}
 210
 211static int bd82x6x_sata_bind(struct udevice *dev)
 212{
 213        struct udevice *scsi_dev;
 214        int ret;
 215
 216        if (gd->flags & GD_FLG_RELOC) {
 217                ret = ahci_bind_scsi(dev, &scsi_dev);
 218                if (ret)
 219                        return ret;
 220        }
 221
 222        return 0;
 223}
 224
 225static int bd82x6x_sata_probe(struct udevice *dev)
 226{
 227        struct udevice *pch;
 228        int ret;
 229
 230        ret = uclass_first_device_err(UCLASS_PCH, &pch);
 231        if (ret)
 232                return ret;
 233
 234        if (!(gd->flags & GD_FLG_RELOC))
 235                bd82x6x_sata_enable(dev);
 236        else {
 237                bd82x6x_sata_init(dev, pch);
 238                ret = ahci_probe_scsi_pci(dev);
 239                if (ret)
 240                        return ret;
 241        }
 242
 243        return 0;
 244}
 245
 246static const struct udevice_id bd82x6x_ahci_ids[] = {
 247        { .compatible = "intel,pantherpoint-ahci" },
 248        { }
 249};
 250
 251U_BOOT_DRIVER(ahci_ivybridge_drv) = {
 252        .name           = "ahci_ivybridge",
 253        .id             = UCLASS_AHCI,
 254        .of_match       = bd82x6x_ahci_ids,
 255        .bind           = bd82x6x_sata_bind,
 256        .probe          = bd82x6x_sata_probe,
 257};
 258