blob: b4027778be0b06bc09f27ca0a6a9cc435ab6c4d3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese33357862016-05-23 11:12:05 +02002/*
3 * Copyright (C) 2015-2016 Marvell International Ltd.
Stefan Roese33357862016-05-23 11:12:05 +02004 */
5
6#ifndef _COMPHY_H_
7#define _COMPHY_H_
8
9#include <dt-bindings/comphy/comphy_data.h>
10#include <fdtdec.h>
11
12#if defined(DEBUG)
13#define debug_enter() printf("----> Enter %s\n", __func__);
14#define debug_exit() printf("<---- Exit %s\n", __func__);
15#else
16#define debug_enter()
17#define debug_exit()
18#endif
19
20/* COMPHY registers */
21#define COMMON_PHY_CFG1_REG 0x0
22#define COMMON_PHY_CFG1_PWR_UP_OFFSET 1
23#define COMMON_PHY_CFG1_PWR_UP_MASK \
24 (0x1 << COMMON_PHY_CFG1_PWR_UP_OFFSET)
25#define COMMON_PHY_CFG1_PIPE_SELECT_OFFSET 2
26#define COMMON_PHY_CFG1_PIPE_SELECT_MASK \
27 (0x1 << COMMON_PHY_CFG1_PIPE_SELECT_OFFSET)
28#define COMMON_PHY_CFG1_PWR_ON_RESET_OFFSET 13
29#define COMMON_PHY_CFG1_PWR_ON_RESET_MASK \
30 (0x1 << COMMON_PHY_CFG1_PWR_ON_RESET_OFFSET)
31#define COMMON_PHY_CFG1_CORE_RSTN_OFFSET 14
32#define COMMON_PHY_CFG1_CORE_RSTN_MASK \
33 (0x1 << COMMON_PHY_CFG1_CORE_RSTN_OFFSET)
34#define COMMON_PHY_PHY_MODE_OFFSET 15
35#define COMMON_PHY_PHY_MODE_MASK \
36 (0x1 << COMMON_PHY_PHY_MODE_OFFSET)
37
38#define COMMON_PHY_CFG6_REG 0x14
39#define COMMON_PHY_CFG6_IF_40_SEL_OFFSET 18
40#define COMMON_PHY_CFG6_IF_40_SEL_MASK \
41 (0x1 << COMMON_PHY_CFG6_IF_40_SEL_OFFSET)
42
43#define COMMON_SELECTOR_PHY_OFFSET 0x140
44#define COMMON_SELECTOR_PIPE_OFFSET 0x144
45
46#define COMMON_PHY_SD_CTRL1 0x148
47#define COMMON_PHY_SD_CTRL1_COMPHY_0_4_PORT_OFFSET 0
48#define COMMON_PHY_SD_CTRL1_COMPHY_0_4_PORT_MASK 0xFFFF
49#define COMMON_PHY_SD_CTRL1_PCIE_X4_EN_OFFSET 24
50#define COMMON_PHY_SD_CTRL1_PCIE_X4_EN_MASK \
51 (0x1 << COMMON_PHY_SD_CTRL1_PCIE_X4_EN_OFFSET)
52#define COMMON_PHY_SD_CTRL1_PCIE_X2_EN_OFFSET 25
53#define COMMON_PHY_SD_CTRL1_PCIE_X2_EN_MASK \
54 (0x1 << COMMON_PHY_SD_CTRL1_PCIE_X2_EN_OFFSET)
55#define COMMON_PHY_SD_CTRL1_RXAUI1_OFFSET 26
56#define COMMON_PHY_SD_CTRL1_RXAUI1_MASK \
57 (0x1 << COMMON_PHY_SD_CTRL1_RXAUI1_OFFSET)
58#define COMMON_PHY_SD_CTRL1_RXAUI0_OFFSET 27
59#define COMMON_PHY_SD_CTRL1_RXAUI0_MASK \
60 (0x1 << COMMON_PHY_SD_CTRL1_RXAUI0_OFFSET)
61
Stefan Roesec0132f62016-08-30 16:48:20 +020062/* ToDo: Get this address via DT */
63#define MVEBU_CP0_REGS_BASE 0xF2000000UL
64
Stefan Roese33357862016-05-23 11:12:05 +020065#define DFX_DEV_GEN_CTRL12 (MVEBU_CP0_REGS_BASE + 0x400280)
66#define DFX_DEV_GEN_PCIE_CLK_SRC_OFFSET 7
67#define DFX_DEV_GEN_PCIE_CLK_SRC_MASK \
68 (0x3 << DFX_DEV_GEN_PCIE_CLK_SRC_OFFSET)
69
70#define MAX_LANE_OPTIONS 10
Stefan Roesee8c31562016-10-25 18:16:25 +020071#define MAX_UTMI_PHY_COUNT 3
Stefan Roese33357862016-05-23 11:12:05 +020072
73struct comphy_mux_options {
74 u32 type;
75 u32 mux_value;
76};
77
78struct comphy_mux_data {
79 u32 max_lane_values;
80 struct comphy_mux_options mux_values[MAX_LANE_OPTIONS];
81};
82
83struct comphy_map {
84 u32 type;
85 u32 speed;
86 u32 invert;
87 bool clk_src;
Stefan Roese7dda98e2017-04-24 18:45:22 +030088 bool end_point;
Stefan Roese33357862016-05-23 11:12:05 +020089};
90
91struct chip_serdes_phy_config {
92 struct comphy_mux_data *mux_data;
93 int (*ptr_comphy_chip_init)(struct chip_serdes_phy_config *,
94 struct comphy_map *);
95 void __iomem *comphy_base_addr;
96 void __iomem *hpipe3_base_addr;
97 u32 comphy_lanes_count;
98 u32 comphy_mux_bitcount;
Marek BehĂșn7586ac22018-04-24 17:21:21 +020099 const fdt32_t *comphy_mux_lane_order;
Igal Liberman528213d2017-04-24 18:45:32 +0300100 u32 cp_index;
Stefan Roese33357862016-05-23 11:12:05 +0200101};
102
103/* Register helper functions */
104void reg_set(void __iomem *addr, u32 data, u32 mask);
105void reg_set_silent(void __iomem *addr, u32 data, u32 mask);
106void reg_set16(void __iomem *addr, u16 data, u16 mask);
107void reg_set_silent16(void __iomem *addr, u16 data, u16 mask);
108
109/* SoC specific init functions */
110#ifdef CONFIG_ARMADA_3700
111int comphy_a3700_init(struct chip_serdes_phy_config *ptr_chip_cfg,
112 struct comphy_map *serdes_map);
113#else
114static inline int comphy_a3700_init(struct chip_serdes_phy_config *ptr_chip_cfg,
115 struct comphy_map *serdes_map)
116{
117 /*
118 * This function should never be called in this configuration, so
119 * lets return an error here.
120 */
121 return -1;
122}
123#endif
Stefan Roesec0132f62016-08-30 16:48:20 +0200124
125#ifdef CONFIG_ARMADA_8K
Stefan Roese33357862016-05-23 11:12:05 +0200126int comphy_cp110_init(struct chip_serdes_phy_config *ptr_chip_cfg,
127 struct comphy_map *serdes_map);
Stefan Roesec0132f62016-08-30 16:48:20 +0200128#else
129static inline int comphy_cp110_init(struct chip_serdes_phy_config *ptr_chip_cfg,
130 struct comphy_map *serdes_map)
131{
132 /*
133 * This function should never be called in this configuration, so
134 * lets return an error here.
135 */
136 return -1;
137}
138#endif
Stefan Roese33357862016-05-23 11:12:05 +0200139
140void comphy_dedicated_phys_init(void);
141
142/* MUX function */
143void comphy_mux_init(struct chip_serdes_phy_config *ptr_chip_cfg,
144 struct comphy_map *comphy_map_data,
145 void __iomem *selector_base);
146
147void comphy_pcie_config_set(u32 comphy_max_count,
148 struct comphy_map *serdes_map);
149void comphy_pcie_config_detect(u32 comphy_max_count,
150 struct comphy_map *serdes_map);
151void comphy_pcie_unit_general_config(u32 pex_index);
152
153#endif /* _COMPHY_H_ */
154