linux/drivers/pci/dwc/pci-exynos.c
<<
>>
Prefs
   1/*
   2 * PCIe host controller driver for Samsung EXYNOS SoCs
   3 *
   4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
   5 *              http://www.samsung.com
   6 *
   7 * Author: Jingoo Han <jg1.han@samsung.com>
   8 *
   9 * This program is free software; you can redistribute it and/or modify
  10 * it under the terms of the GNU General Public License version 2 as
  11 * published by the Free Software Foundation.
  12 */
  13
  14#include <linux/clk.h>
  15#include <linux/delay.h>
  16#include <linux/gpio.h>
  17#include <linux/interrupt.h>
  18#include <linux/kernel.h>
  19#include <linux/init.h>
  20#include <linux/of_device.h>
  21#include <linux/of_gpio.h>
  22#include <linux/pci.h>
  23#include <linux/platform_device.h>
  24#include <linux/phy/phy.h>
  25#include <linux/resource.h>
  26#include <linux/signal.h>
  27#include <linux/types.h>
  28
  29#include "pcie-designware.h"
  30
  31#define to_exynos_pcie(x)       dev_get_drvdata((x)->dev)
  32
  33/* PCIe ELBI registers */
  34#define PCIE_IRQ_PULSE                  0x000
  35#define IRQ_INTA_ASSERT                 BIT(0)
  36#define IRQ_INTB_ASSERT                 BIT(2)
  37#define IRQ_INTC_ASSERT                 BIT(4)
  38#define IRQ_INTD_ASSERT                 BIT(6)
  39#define PCIE_IRQ_LEVEL                  0x004
  40#define PCIE_IRQ_SPECIAL                0x008
  41#define PCIE_IRQ_EN_PULSE               0x00c
  42#define PCIE_IRQ_EN_LEVEL               0x010
  43#define IRQ_MSI_ENABLE                  BIT(2)
  44#define PCIE_IRQ_EN_SPECIAL             0x014
  45#define PCIE_PWR_RESET                  0x018
  46#define PCIE_CORE_RESET                 0x01c
  47#define PCIE_CORE_RESET_ENABLE          BIT(0)
  48#define PCIE_STICKY_RESET               0x020
  49#define PCIE_NONSTICKY_RESET            0x024
  50#define PCIE_APP_INIT_RESET             0x028
  51#define PCIE_APP_LTSSM_ENABLE           0x02c
  52#define PCIE_ELBI_RDLH_LINKUP           0x064
  53#define PCIE_ELBI_LTSSM_ENABLE          0x1
  54#define PCIE_ELBI_SLV_AWMISC            0x11c
  55#define PCIE_ELBI_SLV_ARMISC            0x120
  56#define PCIE_ELBI_SLV_DBI_ENABLE        BIT(21)
  57
  58/* PCIe Purple registers */
  59#define PCIE_PHY_GLOBAL_RESET           0x000
  60#define PCIE_PHY_COMMON_RESET           0x004
  61#define PCIE_PHY_CMN_REG                0x008
  62#define PCIE_PHY_MAC_RESET              0x00c
  63#define PCIE_PHY_PLL_LOCKED             0x010
  64#define PCIE_PHY_TRSVREG_RESET          0x020
  65#define PCIE_PHY_TRSV_RESET             0x024
  66
  67/* PCIe PHY registers */
  68#define PCIE_PHY_IMPEDANCE              0x004
  69#define PCIE_PHY_PLL_DIV_0              0x008
  70#define PCIE_PHY_PLL_BIAS               0x00c
  71#define PCIE_PHY_DCC_FEEDBACK           0x014
  72#define PCIE_PHY_PLL_DIV_1              0x05c
  73#define PCIE_PHY_COMMON_POWER           0x064
  74#define PCIE_PHY_COMMON_PD_CMN          BIT(3)
  75#define PCIE_PHY_TRSV0_EMP_LVL          0x084
  76#define PCIE_PHY_TRSV0_DRV_LVL          0x088
  77#define PCIE_PHY_TRSV0_RXCDR            0x0ac
  78#define PCIE_PHY_TRSV0_POWER            0x0c4
  79#define PCIE_PHY_TRSV0_PD_TSV           BIT(7)
  80#define PCIE_PHY_TRSV0_LVCC             0x0dc
  81#define PCIE_PHY_TRSV1_EMP_LVL          0x144
  82#define PCIE_PHY_TRSV1_RXCDR            0x16c
  83#define PCIE_PHY_TRSV1_POWER            0x184
  84#define PCIE_PHY_TRSV1_PD_TSV           BIT(7)
  85#define PCIE_PHY_TRSV1_LVCC             0x19c
  86#define PCIE_PHY_TRSV2_EMP_LVL          0x204
  87#define PCIE_PHY_TRSV2_RXCDR            0x22c
  88#define PCIE_PHY_TRSV2_POWER            0x244
  89#define PCIE_PHY_TRSV2_PD_TSV           BIT(7)
  90#define PCIE_PHY_TRSV2_LVCC             0x25c
  91#define PCIE_PHY_TRSV3_EMP_LVL          0x2c4
  92#define PCIE_PHY_TRSV3_RXCDR            0x2ec
  93#define PCIE_PHY_TRSV3_POWER            0x304
  94#define PCIE_PHY_TRSV3_PD_TSV           BIT(7)
  95#define PCIE_PHY_TRSV3_LVCC             0x31c
  96
  97struct exynos_pcie_mem_res {
  98        void __iomem *elbi_base;   /* DT 0th resource: PCIe CTRL */
  99        void __iomem *phy_base;    /* DT 1st resource: PHY CTRL */
 100        void __iomem *block_base;  /* DT 2nd resource: PHY ADDITIONAL CTRL */
 101};
 102
 103struct exynos_pcie_clk_res {
 104        struct clk *clk;
 105        struct clk *bus_clk;
 106};
 107
 108struct exynos_pcie {
 109        struct dw_pcie                  *pci;
 110        struct exynos_pcie_mem_res      *mem_res;
 111        struct exynos_pcie_clk_res      *clk_res;
 112        const struct exynos_pcie_ops    *ops;
 113        int                             reset_gpio;
 114
 115        /* For Generic PHY Framework */
 116        bool                            using_phy;
 117        struct phy                      *phy;
 118};
 119
 120struct exynos_pcie_ops {
 121        int (*get_mem_resources)(struct platform_device *pdev,
 122                        struct exynos_pcie *ep);
 123        int (*get_clk_resources)(struct exynos_pcie *ep);
 124        int (*init_clk_resources)(struct exynos_pcie *ep);
 125        void (*deinit_clk_resources)(struct exynos_pcie *ep);
 126};
 127
 128static int exynos5440_pcie_get_mem_resources(struct platform_device *pdev,
 129                                             struct exynos_pcie *ep)
 130{
 131        struct dw_pcie *pci = ep->pci;
 132        struct device *dev = pci->dev;
 133        struct resource *res;
 134
 135        ep->mem_res = devm_kzalloc(dev, sizeof(*ep->mem_res), GFP_KERNEL);
 136        if (!ep->mem_res)
 137                return -ENOMEM;
 138
 139        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 140        ep->mem_res->elbi_base = devm_ioremap_resource(dev, res);
 141        if (IS_ERR(ep->mem_res->elbi_base))
 142                return PTR_ERR(ep->mem_res->elbi_base);
 143
 144        /* If using the PHY framework, doesn't need to get other resource */
 145        if (ep->using_phy)
 146                return 0;
 147
 148        res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
 149        ep->mem_res->phy_base = devm_ioremap_resource(dev, res);
 150        if (IS_ERR(ep->mem_res->phy_base))
 151                return PTR_ERR(ep->mem_res->phy_base);
 152
 153        res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
 154        ep->mem_res->block_base = devm_ioremap_resource(dev, res);
 155        if (IS_ERR(ep->mem_res->block_base))
 156                return PTR_ERR(ep->mem_res->block_base);
 157
 158        return 0;
 159}
 160
 161static int exynos5440_pcie_get_clk_resources(struct exynos_pcie *ep)
 162{
 163        struct dw_pcie *pci = ep->pci;
 164        struct device *dev = pci->dev;
 165
 166        ep->clk_res = devm_kzalloc(dev, sizeof(*ep->clk_res), GFP_KERNEL);
 167        if (!ep->clk_res)
 168                return -ENOMEM;
 169
 170        ep->clk_res->clk = devm_clk_get(dev, "pcie");
 171        if (IS_ERR(ep->clk_res->clk)) {
 172                dev_err(dev, "Failed to get pcie rc clock\n");
 173                return PTR_ERR(ep->clk_res->clk);
 174        }
 175
 176        ep->clk_res->bus_clk = devm_clk_get(dev, "pcie_bus");
 177        if (IS_ERR(ep->clk_res->bus_clk)) {
 178                dev_err(dev, "Failed to get pcie bus clock\n");
 179                return PTR_ERR(ep->clk_res->bus_clk);
 180        }
 181
 182        return 0;
 183}
 184
 185static int exynos5440_pcie_init_clk_resources(struct exynos_pcie *ep)
 186{
 187        struct dw_pcie *pci = ep->pci;
 188        struct device *dev = pci->dev;
 189        int ret;
 190
 191        ret = clk_prepare_enable(ep->clk_res->clk);
 192        if (ret) {
 193                dev_err(dev, "cannot enable pcie rc clock");
 194                return ret;
 195        }
 196
 197        ret = clk_prepare_enable(ep->clk_res->bus_clk);
 198        if (ret) {
 199                dev_err(dev, "cannot enable pcie bus clock");
 200                goto err_bus_clk;
 201        }
 202
 203        return 0;
 204
 205err_bus_clk:
 206        clk_disable_unprepare(ep->clk_res->clk);
 207
 208        return ret;
 209}
 210
 211static void exynos5440_pcie_deinit_clk_resources(struct exynos_pcie *ep)
 212{
 213        clk_disable_unprepare(ep->clk_res->bus_clk);
 214        clk_disable_unprepare(ep->clk_res->clk);
 215}
 216
 217static const struct exynos_pcie_ops exynos5440_pcie_ops = {
 218        .get_mem_resources      = exynos5440_pcie_get_mem_resources,
 219        .get_clk_resources      = exynos5440_pcie_get_clk_resources,
 220        .init_clk_resources     = exynos5440_pcie_init_clk_resources,
 221        .deinit_clk_resources   = exynos5440_pcie_deinit_clk_resources,
 222};
 223
 224static void exynos_pcie_writel(void __iomem *base, u32 val, u32 reg)
 225{
 226        writel(val, base + reg);
 227}
 228
 229static u32 exynos_pcie_readl(void __iomem *base, u32 reg)
 230{
 231        return readl(base + reg);
 232}
 233
 234static void exynos_pcie_sideband_dbi_w_mode(struct exynos_pcie *ep, bool on)
 235{
 236        u32 val;
 237
 238        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_SLV_AWMISC);
 239        if (on)
 240                val |= PCIE_ELBI_SLV_DBI_ENABLE;
 241        else
 242                val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
 243        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_ELBI_SLV_AWMISC);
 244}
 245
 246static void exynos_pcie_sideband_dbi_r_mode(struct exynos_pcie *ep, bool on)
 247{
 248        u32 val;
 249
 250        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_SLV_ARMISC);
 251        if (on)
 252                val |= PCIE_ELBI_SLV_DBI_ENABLE;
 253        else
 254                val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
 255        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_ELBI_SLV_ARMISC);
 256}
 257
 258static void exynos_pcie_assert_core_reset(struct exynos_pcie *ep)
 259{
 260        u32 val;
 261
 262        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_CORE_RESET);
 263        val &= ~PCIE_CORE_RESET_ENABLE;
 264        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_CORE_RESET);
 265        exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_PWR_RESET);
 266        exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_STICKY_RESET);
 267        exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_NONSTICKY_RESET);
 268}
 269
 270static void exynos_pcie_deassert_core_reset(struct exynos_pcie *ep)
 271{
 272        u32 val;
 273
 274        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_CORE_RESET);
 275        val |= PCIE_CORE_RESET_ENABLE;
 276
 277        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_CORE_RESET);
 278        exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_STICKY_RESET);
 279        exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_NONSTICKY_RESET);
 280        exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_APP_INIT_RESET);
 281        exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_APP_INIT_RESET);
 282        exynos_pcie_writel(ep->mem_res->block_base, 1, PCIE_PHY_MAC_RESET);
 283}
 284
 285static void exynos_pcie_assert_phy_reset(struct exynos_pcie *ep)
 286{
 287        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_MAC_RESET);
 288        exynos_pcie_writel(ep->mem_res->block_base, 1, PCIE_PHY_GLOBAL_RESET);
 289}
 290
 291static void exynos_pcie_deassert_phy_reset(struct exynos_pcie *ep)
 292{
 293        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_GLOBAL_RESET);
 294        exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_PWR_RESET);
 295        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_COMMON_RESET);
 296        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_CMN_REG);
 297        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_TRSVREG_RESET);
 298        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_TRSV_RESET);
 299}
 300
 301static void exynos_pcie_power_on_phy(struct exynos_pcie *ep)
 302{
 303        u32 val;
 304
 305        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_COMMON_POWER);
 306        val &= ~PCIE_PHY_COMMON_PD_CMN;
 307        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_COMMON_POWER);
 308
 309        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV0_POWER);
 310        val &= ~PCIE_PHY_TRSV0_PD_TSV;
 311        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV0_POWER);
 312
 313        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV1_POWER);
 314        val &= ~PCIE_PHY_TRSV1_PD_TSV;
 315        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV1_POWER);
 316
 317        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV2_POWER);
 318        val &= ~PCIE_PHY_TRSV2_PD_TSV;
 319        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV2_POWER);
 320
 321        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV3_POWER);
 322        val &= ~PCIE_PHY_TRSV3_PD_TSV;
 323        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV3_POWER);
 324}
 325
 326static void exynos_pcie_power_off_phy(struct exynos_pcie *ep)
 327{
 328        u32 val;
 329
 330        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_COMMON_POWER);
 331        val |= PCIE_PHY_COMMON_PD_CMN;
 332        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_COMMON_POWER);
 333
 334        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV0_POWER);
 335        val |= PCIE_PHY_TRSV0_PD_TSV;
 336        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV0_POWER);
 337
 338        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV1_POWER);
 339        val |= PCIE_PHY_TRSV1_PD_TSV;
 340        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV1_POWER);
 341
 342        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV2_POWER);
 343        val |= PCIE_PHY_TRSV2_PD_TSV;
 344        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV2_POWER);
 345
 346        val = exynos_pcie_readl(ep->mem_res->phy_base, PCIE_PHY_TRSV3_POWER);
 347        val |= PCIE_PHY_TRSV3_PD_TSV;
 348        exynos_pcie_writel(ep->mem_res->phy_base, val, PCIE_PHY_TRSV3_POWER);
 349}
 350
 351static void exynos_pcie_init_phy(struct exynos_pcie *ep)
 352{
 353        /* DCC feedback control off */
 354        exynos_pcie_writel(ep->mem_res->phy_base, 0x29, PCIE_PHY_DCC_FEEDBACK);
 355
 356        /* set TX/RX impedance */
 357        exynos_pcie_writel(ep->mem_res->phy_base, 0xd5, PCIE_PHY_IMPEDANCE);
 358
 359        /* set 50Mhz PHY clock */
 360        exynos_pcie_writel(ep->mem_res->phy_base, 0x14, PCIE_PHY_PLL_DIV_0);
 361        exynos_pcie_writel(ep->mem_res->phy_base, 0x12, PCIE_PHY_PLL_DIV_1);
 362
 363        /* set TX Differential output for lane 0 */
 364        exynos_pcie_writel(ep->mem_res->phy_base, 0x7f, PCIE_PHY_TRSV0_DRV_LVL);
 365
 366        /* set TX Pre-emphasis Level Control for lane 0 to minimum */
 367        exynos_pcie_writel(ep->mem_res->phy_base, 0x0, PCIE_PHY_TRSV0_EMP_LVL);
 368
 369        /* set RX clock and data recovery bandwidth */
 370        exynos_pcie_writel(ep->mem_res->phy_base, 0xe7, PCIE_PHY_PLL_BIAS);
 371        exynos_pcie_writel(ep->mem_res->phy_base, 0x82, PCIE_PHY_TRSV0_RXCDR);
 372        exynos_pcie_writel(ep->mem_res->phy_base, 0x82, PCIE_PHY_TRSV1_RXCDR);
 373        exynos_pcie_writel(ep->mem_res->phy_base, 0x82, PCIE_PHY_TRSV2_RXCDR);
 374        exynos_pcie_writel(ep->mem_res->phy_base, 0x82, PCIE_PHY_TRSV3_RXCDR);
 375
 376        /* change TX Pre-emphasis Level Control for lanes */
 377        exynos_pcie_writel(ep->mem_res->phy_base, 0x39, PCIE_PHY_TRSV0_EMP_LVL);
 378        exynos_pcie_writel(ep->mem_res->phy_base, 0x39, PCIE_PHY_TRSV1_EMP_LVL);
 379        exynos_pcie_writel(ep->mem_res->phy_base, 0x39, PCIE_PHY_TRSV2_EMP_LVL);
 380        exynos_pcie_writel(ep->mem_res->phy_base, 0x39, PCIE_PHY_TRSV3_EMP_LVL);
 381
 382        /* set LVCC */
 383        exynos_pcie_writel(ep->mem_res->phy_base, 0x20, PCIE_PHY_TRSV0_LVCC);
 384        exynos_pcie_writel(ep->mem_res->phy_base, 0xa0, PCIE_PHY_TRSV1_LVCC);
 385        exynos_pcie_writel(ep->mem_res->phy_base, 0xa0, PCIE_PHY_TRSV2_LVCC);
 386        exynos_pcie_writel(ep->mem_res->phy_base, 0xa0, PCIE_PHY_TRSV3_LVCC);
 387}
 388
 389static void exynos_pcie_assert_reset(struct exynos_pcie *ep)
 390{
 391        struct dw_pcie *pci = ep->pci;
 392        struct device *dev = pci->dev;
 393
 394        if (ep->reset_gpio >= 0)
 395                devm_gpio_request_one(dev, ep->reset_gpio,
 396                                GPIOF_OUT_INIT_HIGH, "RESET");
 397}
 398
 399static int exynos_pcie_establish_link(struct exynos_pcie *ep)
 400{
 401        struct dw_pcie *pci = ep->pci;
 402        struct pcie_port *pp = &pci->pp;
 403        struct device *dev = pci->dev;
 404        u32 val;
 405
 406        if (dw_pcie_link_up(pci)) {
 407                dev_err(dev, "Link already up\n");
 408                return 0;
 409        }
 410
 411        exynos_pcie_assert_core_reset(ep);
 412
 413        if (ep->using_phy) {
 414                phy_reset(ep->phy);
 415
 416                exynos_pcie_writel(ep->mem_res->elbi_base, 1,
 417                                PCIE_PWR_RESET);
 418
 419                phy_power_on(ep->phy);
 420                phy_init(ep->phy);
 421        } else {
 422                exynos_pcie_assert_phy_reset(ep);
 423                exynos_pcie_deassert_phy_reset(ep);
 424                exynos_pcie_power_on_phy(ep);
 425                exynos_pcie_init_phy(ep);
 426
 427                /* pulse for common reset */
 428                exynos_pcie_writel(ep->mem_res->block_base, 1,
 429                                        PCIE_PHY_COMMON_RESET);
 430                udelay(500);
 431                exynos_pcie_writel(ep->mem_res->block_base, 0,
 432                                        PCIE_PHY_COMMON_RESET);
 433        }
 434
 435        /* pulse for common reset */
 436        exynos_pcie_writel(ep->mem_res->block_base, 1, PCIE_PHY_COMMON_RESET);
 437        udelay(500);
 438        exynos_pcie_writel(ep->mem_res->block_base, 0, PCIE_PHY_COMMON_RESET);
 439
 440        exynos_pcie_deassert_core_reset(ep);
 441        dw_pcie_setup_rc(pp);
 442        exynos_pcie_assert_reset(ep);
 443
 444        /* assert LTSSM enable */
 445        exynos_pcie_writel(ep->mem_res->elbi_base, PCIE_ELBI_LTSSM_ENABLE,
 446                          PCIE_APP_LTSSM_ENABLE);
 447
 448        /* check if the link is up or not */
 449        if (!dw_pcie_wait_for_link(pci))
 450                return 0;
 451
 452        if (ep->using_phy) {
 453                phy_power_off(ep->phy);
 454                return -ETIMEDOUT;
 455        }
 456
 457        while (exynos_pcie_readl(ep->mem_res->phy_base,
 458                                PCIE_PHY_PLL_LOCKED) == 0) {
 459                val = exynos_pcie_readl(ep->mem_res->block_base,
 460                                PCIE_PHY_PLL_LOCKED);
 461                dev_info(dev, "PLL Locked: 0x%x\n", val);
 462        }
 463        exynos_pcie_power_off_phy(ep);
 464        return -ETIMEDOUT;
 465}
 466
 467static void exynos_pcie_clear_irq_pulse(struct exynos_pcie *ep)
 468{
 469        u32 val;
 470
 471        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_IRQ_PULSE);
 472        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_PULSE);
 473}
 474
 475static void exynos_pcie_enable_irq_pulse(struct exynos_pcie *ep)
 476{
 477        u32 val;
 478
 479        /* enable INTX interrupt */
 480        val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
 481                IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
 482        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_EN_PULSE);
 483}
 484
 485static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
 486{
 487        struct exynos_pcie *ep = arg;
 488
 489        exynos_pcie_clear_irq_pulse(ep);
 490        return IRQ_HANDLED;
 491}
 492
 493static irqreturn_t exynos_pcie_msi_irq_handler(int irq, void *arg)
 494{
 495        struct exynos_pcie *ep = arg;
 496        struct dw_pcie *pci = ep->pci;
 497        struct pcie_port *pp = &pci->pp;
 498
 499        return dw_handle_msi_irq(pp);
 500}
 501
 502static void exynos_pcie_msi_init(struct exynos_pcie *ep)
 503{
 504        struct dw_pcie *pci = ep->pci;
 505        struct pcie_port *pp = &pci->pp;
 506        u32 val;
 507
 508        dw_pcie_msi_init(pp);
 509
 510        /* enable MSI interrupt */
 511        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_IRQ_EN_LEVEL);
 512        val |= IRQ_MSI_ENABLE;
 513        exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_EN_LEVEL);
 514}
 515
 516static void exynos_pcie_enable_interrupts(struct exynos_pcie *ep)
 517{
 518        exynos_pcie_enable_irq_pulse(ep);
 519
 520        if (IS_ENABLED(CONFIG_PCI_MSI))
 521                exynos_pcie_msi_init(ep);
 522}
 523
 524static u32 exynos_pcie_read_dbi(struct dw_pcie *pci, void __iomem *base,
 525                                u32 reg, size_t size)
 526{
 527        struct exynos_pcie *ep = to_exynos_pcie(pci);
 528        u32 val;
 529
 530        exynos_pcie_sideband_dbi_r_mode(ep, true);
 531        dw_pcie_read(base + reg, size, &val);
 532        exynos_pcie_sideband_dbi_r_mode(ep, false);
 533        return val;
 534}
 535
 536static void exynos_pcie_write_dbi(struct dw_pcie *pci, void __iomem *base,
 537                                  u32 reg, size_t size, u32 val)
 538{
 539        struct exynos_pcie *ep = to_exynos_pcie(pci);
 540
 541        exynos_pcie_sideband_dbi_w_mode(ep, true);
 542        dw_pcie_write(base + reg, size, val);
 543        exynos_pcie_sideband_dbi_w_mode(ep, false);
 544}
 545
 546static int exynos_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
 547                                u32 *val)
 548{
 549        struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 550        struct exynos_pcie *ep = to_exynos_pcie(pci);
 551        int ret;
 552
 553        exynos_pcie_sideband_dbi_r_mode(ep, true);
 554        ret = dw_pcie_read(pci->dbi_base + where, size, val);
 555        exynos_pcie_sideband_dbi_r_mode(ep, false);
 556        return ret;
 557}
 558
 559static int exynos_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
 560                                u32 val)
 561{
 562        struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 563        struct exynos_pcie *ep = to_exynos_pcie(pci);
 564        int ret;
 565
 566        exynos_pcie_sideband_dbi_w_mode(ep, true);
 567        ret = dw_pcie_write(pci->dbi_base + where, size, val);
 568        exynos_pcie_sideband_dbi_w_mode(ep, false);
 569        return ret;
 570}
 571
 572static int exynos_pcie_link_up(struct dw_pcie *pci)
 573{
 574        struct exynos_pcie *ep = to_exynos_pcie(pci);
 575        u32 val;
 576
 577        val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_RDLH_LINKUP);
 578        if (val == PCIE_ELBI_LTSSM_ENABLE)
 579                return 1;
 580
 581        return 0;
 582}
 583
 584static void exynos_pcie_host_init(struct pcie_port *pp)
 585{
 586        struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 587        struct exynos_pcie *ep = to_exynos_pcie(pci);
 588
 589        exynos_pcie_establish_link(ep);
 590        exynos_pcie_enable_interrupts(ep);
 591}
 592
 593static const struct dw_pcie_host_ops exynos_pcie_host_ops = {
 594        .rd_own_conf = exynos_pcie_rd_own_conf,
 595        .wr_own_conf = exynos_pcie_wr_own_conf,
 596        .host_init = exynos_pcie_host_init,
 597};
 598
 599static int __init exynos_add_pcie_port(struct exynos_pcie *ep,
 600                                       struct platform_device *pdev)
 601{
 602        struct dw_pcie *pci = ep->pci;
 603        struct pcie_port *pp = &pci->pp;
 604        struct device *dev = &pdev->dev;
 605        int ret;
 606
 607        pp->irq = platform_get_irq(pdev, 1);
 608        if (!pp->irq) {
 609                dev_err(dev, "failed to get irq\n");
 610                return -ENODEV;
 611        }
 612        ret = devm_request_irq(dev, pp->irq, exynos_pcie_irq_handler,
 613                                IRQF_SHARED, "exynos-pcie", ep);
 614        if (ret) {
 615                dev_err(dev, "failed to request irq\n");
 616                return ret;
 617        }
 618
 619        if (IS_ENABLED(CONFIG_PCI_MSI)) {
 620                pp->msi_irq = platform_get_irq(pdev, 0);
 621                if (!pp->msi_irq) {
 622                        dev_err(dev, "failed to get msi irq\n");
 623                        return -ENODEV;
 624                }
 625
 626                ret = devm_request_irq(dev, pp->msi_irq,
 627                                        exynos_pcie_msi_irq_handler,
 628                                        IRQF_SHARED | IRQF_NO_THREAD,
 629                                        "exynos-pcie", ep);
 630                if (ret) {
 631                        dev_err(dev, "failed to request msi irq\n");
 632                        return ret;
 633                }
 634        }
 635
 636        pp->root_bus_nr = -1;
 637        pp->ops = &exynos_pcie_host_ops;
 638
 639        ret = dw_pcie_host_init(pp);
 640        if (ret) {
 641                dev_err(dev, "failed to initialize host\n");
 642                return ret;
 643        }
 644
 645        return 0;
 646}
 647
 648static const struct dw_pcie_ops dw_pcie_ops = {
 649        .read_dbi = exynos_pcie_read_dbi,
 650        .write_dbi = exynos_pcie_write_dbi,
 651        .link_up = exynos_pcie_link_up,
 652};
 653
 654static int __init exynos_pcie_probe(struct platform_device *pdev)
 655{
 656        struct device *dev = &pdev->dev;
 657        struct dw_pcie *pci;
 658        struct exynos_pcie *ep;
 659        struct device_node *np = dev->of_node;
 660        int ret;
 661
 662        ep = devm_kzalloc(dev, sizeof(*ep), GFP_KERNEL);
 663        if (!ep)
 664                return -ENOMEM;
 665
 666        pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
 667        if (!pci)
 668                return -ENOMEM;
 669
 670        pci->dev = dev;
 671        pci->ops = &dw_pcie_ops;
 672
 673        ep->pci = pci;
 674        ep->ops = (const struct exynos_pcie_ops *)
 675                of_device_get_match_data(dev);
 676
 677        ep->reset_gpio = of_get_named_gpio(np, "reset-gpio", 0);
 678
 679        /* Assume that controller doesn't use the PHY framework */
 680        ep->using_phy = false;
 681
 682        ep->phy = devm_of_phy_get(dev, np, NULL);
 683        if (IS_ERR(ep->phy)) {
 684                if (PTR_ERR(ep->phy) == -EPROBE_DEFER)
 685                        return PTR_ERR(ep->phy);
 686                dev_warn(dev, "Use the 'phy' property. Current DT of pci-exynos was deprecated!!\n");
 687        } else
 688                ep->using_phy = true;
 689
 690        if (ep->ops && ep->ops->get_mem_resources) {
 691                ret = ep->ops->get_mem_resources(pdev, ep);
 692                if (ret)
 693                        return ret;
 694        }
 695
 696        if (ep->ops && ep->ops->get_clk_resources) {
 697                ret = ep->ops->get_clk_resources(ep);
 698                if (ret)
 699                        return ret;
 700                ret = ep->ops->init_clk_resources(ep);
 701                if (ret)
 702                        return ret;
 703        }
 704
 705        platform_set_drvdata(pdev, ep);
 706
 707        ret = exynos_add_pcie_port(ep, pdev);
 708        if (ret < 0)
 709                goto fail_probe;
 710
 711        return 0;
 712
 713fail_probe:
 714        if (ep->using_phy)
 715                phy_exit(ep->phy);
 716
 717        if (ep->ops && ep->ops->deinit_clk_resources)
 718                ep->ops->deinit_clk_resources(ep);
 719        return ret;
 720}
 721
 722static int __exit exynos_pcie_remove(struct platform_device *pdev)
 723{
 724        struct exynos_pcie *ep = platform_get_drvdata(pdev);
 725
 726        if (ep->ops && ep->ops->deinit_clk_resources)
 727                ep->ops->deinit_clk_resources(ep);
 728
 729        return 0;
 730}
 731
 732static const struct of_device_id exynos_pcie_of_match[] = {
 733        {
 734                .compatible = "samsung,exynos5440-pcie",
 735                .data = &exynos5440_pcie_ops
 736        },
 737        {},
 738};
 739
 740static struct platform_driver exynos_pcie_driver = {
 741        .remove         = __exit_p(exynos_pcie_remove),
 742        .driver = {
 743                .name   = "exynos-pcie",
 744                .of_match_table = exynos_pcie_of_match,
 745        },
 746};
 747
 748/* Exynos PCIe driver does not allow module unload */
 749
 750static int __init exynos_pcie_init(void)
 751{
 752        return platform_driver_probe(&exynos_pcie_driver, exynos_pcie_probe);
 753}
 754subsys_initcall(exynos_pcie_init);
 755