linux/drivers/pci/controller/dwc/pcie-artpec6.c

// SPDX-License-Identifier: GPL-2.0
/*
 * PCIe host controller driver for Axis ARTPEC-6 SoC
 *
 * Author: Niklas Cassel <[email protected]>
 *
 * Based on work done by Phil Edworthy <[email protected]>
 */

#include <linux/delay.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/of.h>
#include <linux/pci.h>
#include <linux/platform_device.h>
#include <linux/resource.h>
#include <linux/signal.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/mfd/syscon.h>
#include <linux/regmap.h>

#include "pcie-designware.h"

#define to_artpec6_pcie(x)

enum artpec_pcie_variants {};

struct artpec6_pcie {};

struct artpec_pcie_of_data {};

static const struct of_device_id artpec6_pcie_of_match[];

/* ARTPEC-6 specific registers */
#define PCIECFG
#define PCIECFG_DBG_OEN
#define PCIECFG_CORE_RESET_REQ
#define PCIECFG_LTSSM_ENABLE
#define PCIECFG_DEVICE_TYPE_MASK
#define PCIECFG_CLKREQ_B
#define PCIECFG_REFCLK_ENABLE
#define PCIECFG_PLL_ENABLE
#define PCIECFG_PCLK_ENABLE
#define PCIECFG_RISRCREN
#define PCIECFG_MODE_TX_DRV_EN
#define PCIECFG_CISRREN
#define PCIECFG_MACRO_ENABLE
/* ARTPEC-7 specific fields */
#define PCIECFG_REFCLKSEL
#define PCIECFG_NOC_RESET

#define PCIESTAT
/* ARTPEC-7 specific fields */
#define PCIESTAT_EXTREFCLK

#define NOCCFG
#define NOCCFG_ENABLE_CLK_PCIE
#define NOCCFG_POWER_PCIE_IDLEACK
#define NOCCFG_POWER_PCIE_IDLE
#define NOCCFG_POWER_PCIE_IDLEREQ

#define PHY_STATUS
#define PHY_COSPLLLOCK

#define PHY_TX_ASIC_OUT
#define PHY_TX_ASIC_OUT_TX_ACK

#define PHY_RX_ASIC_OUT
#define PHY_RX_ASIC_OUT_ACK

static u32 artpec6_pcie_readl(struct artpec6_pcie *artpec6_pcie, u32 offset)
{}

static void artpec6_pcie_writel(struct artpec6_pcie *artpec6_pcie, u32 offset, u32 val)
{}

static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 cpu_addr)
{}

static int artpec6_pcie_establish_link(struct dw_pcie *pci)
{}

static void artpec6_pcie_stop_link(struct dw_pcie *pci)
{}

static const struct dw_pcie_ops dw_pcie_ops =;

static void artpec6_pcie_wait_for_phy_a6(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_wait_for_phy_a7(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_wait_for_phy(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_init_phy_a6(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_init_phy_a7(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_init_phy(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_assert_core_reset(struct artpec6_pcie *artpec6_pcie)
{}

static void artpec6_pcie_deassert_core_reset(struct artpec6_pcie *artpec6_pcie)
{}

static int artpec6_pcie_host_init(struct dw_pcie_rp *pp)
{}

static const struct dw_pcie_host_ops artpec6_pcie_host_ops =;

static void artpec6_pcie_ep_init(struct dw_pcie_ep *ep)
{}

static int artpec6_pcie_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
				  unsigned int type, u16 interrupt_num)
{}

static const struct dw_pcie_ep_ops pcie_ep_ops =;

static int artpec6_pcie_probe(struct platform_device *pdev)
{}

static const struct artpec_pcie_of_data artpec6_pcie_rc_of_data =;

static const struct artpec_pcie_of_data artpec6_pcie_ep_of_data =;

static const struct artpec_pcie_of_data artpec7_pcie_rc_of_data =;

static const struct artpec_pcie_of_data artpec7_pcie_ep_of_data =;

static const struct of_device_id artpec6_pcie_of_match[] =;

static struct platform_driver artpec6_pcie_driver =;
builtin_platform_driver();