]> Git Repo - linux.git/blob - drivers/net/dsa/bcm_sf2.h
mips: vdso: drop unnecessary cc-ldoption
[linux.git] / drivers / net / dsa / bcm_sf2.h
1 /*
2  * Broadcom Starfighter2 private context
3  *
4  * Copyright (C) 2014, Broadcom Corporation
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  */
11
12 #ifndef __BCM_SF2_H
13 #define __BCM_SF2_H
14
15 #include <linux/platform_device.h>
16 #include <linux/kernel.h>
17 #include <linux/io.h>
18 #include <linux/spinlock.h>
19 #include <linux/mutex.h>
20 #include <linux/mii.h>
21 #include <linux/ethtool.h>
22 #include <linux/types.h>
23 #include <linux/bitops.h>
24 #include <linux/if_vlan.h>
25
26 #include <net/dsa.h>
27
28 #include "bcm_sf2_regs.h"
29 #include "b53/b53_priv.h"
30
31 struct bcm_sf2_hw_params {
32         u16     top_rev;
33         u16     core_rev;
34         u16     gphy_rev;
35         u32     num_gphy;
36         u8      num_acb_queue;
37         u8      num_rgmii;
38         u8      num_ports;
39         u8      fcb_pause_override:1;
40         u8      acb_packets_inflight:1;
41 };
42
43 #define BCM_SF2_REGS_NAME {\
44         "core", "reg", "intrl2_0", "intrl2_1", "fcb", "acb" \
45 }
46
47 #define BCM_SF2_REGS_NUM        6
48
49 struct bcm_sf2_port_status {
50         unsigned int link;
51 };
52
53 struct bcm_sf2_cfp_priv {
54         /* Mutex protecting concurrent accesses to the CFP registers */
55         struct mutex lock;
56         DECLARE_BITMAP(used, CFP_NUM_RULES);
57         DECLARE_BITMAP(unique, CFP_NUM_RULES);
58         unsigned int rules_cnt;
59         struct list_head rules_list;
60 };
61
62 struct bcm_sf2_priv {
63         /* Base registers, keep those in order with BCM_SF2_REGS_NAME */
64         void __iomem                    *core;
65         void __iomem                    *reg;
66         void __iomem                    *intrl2_0;
67         void __iomem                    *intrl2_1;
68         void __iomem                    *fcb;
69         void __iomem                    *acb;
70
71         /* Register offsets indirection tables */
72         u32                             type;
73         const u16                       *reg_offsets;
74         unsigned int                    core_reg_align;
75         unsigned int                    num_cfp_rules;
76
77         /* spinlock protecting access to the indirect registers */
78         spinlock_t                      indir_lock;
79
80         int                             irq0;
81         int                             irq1;
82         u32                             irq0_stat;
83         u32                             irq0_mask;
84         u32                             irq1_stat;
85         u32                             irq1_mask;
86
87         /* Backing b53_device */
88         struct b53_device               *dev;
89
90         struct bcm_sf2_hw_params        hw_params;
91
92         struct bcm_sf2_port_status      port_sts[DSA_MAX_PORTS];
93
94         /* Mask of ports enabled for Wake-on-LAN */
95         u32                             wol_ports_mask;
96
97         /* MoCA port location */
98         int                             moca_port;
99
100         /* Bitmask of ports having an integrated PHY */
101         unsigned int                    int_phy_mask;
102
103         /* Master and slave MDIO bus controller */
104         unsigned int                    indir_phy_mask;
105         struct device_node              *master_mii_dn;
106         struct mii_bus                  *slave_mii_bus;
107         struct mii_bus                  *master_mii_bus;
108
109         /* Bitmask of ports needing BRCM tags */
110         unsigned int                    brcm_tag_mask;
111
112         /* CFP rules context */
113         struct bcm_sf2_cfp_priv         cfp;
114 };
115
116 static inline struct bcm_sf2_priv *bcm_sf2_to_priv(struct dsa_switch *ds)
117 {
118         struct b53_device *dev = ds->priv;
119
120         return dev->priv;
121 }
122
123 static inline u32 bcm_sf2_mangle_addr(struct bcm_sf2_priv *priv, u32 off)
124 {
125         return off << priv->core_reg_align;
126 }
127
128 #define SF2_IO_MACRO(name) \
129 static inline u32 name##_readl(struct bcm_sf2_priv *priv, u32 off)      \
130 {                                                                       \
131         return readl_relaxed(priv->name + off);                         \
132 }                                                                       \
133 static inline void name##_writel(struct bcm_sf2_priv *priv,             \
134                                   u32 val, u32 off)                     \
135 {                                                                       \
136         writel_relaxed(val, priv->name + off);                          \
137 }                                                                       \
138
139 /* Accesses to 64-bits register requires us to latch the hi/lo pairs
140  * using the REG_DIR_DATA_{READ,WRITE} ancillary registers. The 'indir_lock'
141  * spinlock is automatically grabbed and released to provide relative
142  * atomiticy with latched reads/writes.
143  */
144 #define SF2_IO64_MACRO(name) \
145 static inline u64 name##_readq(struct bcm_sf2_priv *priv, u32 off)      \
146 {                                                                       \
147         u32 indir, dir;                                                 \
148         spin_lock(&priv->indir_lock);                                   \
149         dir = name##_readl(priv, off);                                  \
150         indir = reg_readl(priv, REG_DIR_DATA_READ);                     \
151         spin_unlock(&priv->indir_lock);                                 \
152         return (u64)indir << 32 | dir;                                  \
153 }                                                                       \
154 static inline void name##_writeq(struct bcm_sf2_priv *priv, u64 val,    \
155                                                         u32 off)        \
156 {                                                                       \
157         spin_lock(&priv->indir_lock);                                   \
158         reg_writel(priv, upper_32_bits(val), REG_DIR_DATA_WRITE);       \
159         name##_writel(priv, lower_32_bits(val), off);                   \
160         spin_unlock(&priv->indir_lock);                                 \
161 }
162
163 #define SWITCH_INTR_L2(which)                                           \
164 static inline void intrl2_##which##_mask_clear(struct bcm_sf2_priv *priv, \
165                                                 u32 mask)               \
166 {                                                                       \
167         priv->irq##which##_mask &= ~(mask);                             \
168         intrl2_##which##_writel(priv, mask, INTRL2_CPU_MASK_CLEAR);     \
169 }                                                                       \
170 static inline void intrl2_##which##_mask_set(struct bcm_sf2_priv *priv, \
171                                                 u32 mask)               \
172 {                                                                       \
173         intrl2_## which##_writel(priv, mask, INTRL2_CPU_MASK_SET);      \
174         priv->irq##which##_mask |= (mask);                              \
175 }                                                                       \
176
177 static inline u32 core_readl(struct bcm_sf2_priv *priv, u32 off)
178 {
179         u32 tmp = bcm_sf2_mangle_addr(priv, off);
180         return readl_relaxed(priv->core + tmp);
181 }
182
183 static inline void core_writel(struct bcm_sf2_priv *priv, u32 val, u32 off)
184 {
185         u32 tmp = bcm_sf2_mangle_addr(priv, off);
186         writel_relaxed(val, priv->core + tmp);
187 }
188
189 static inline u32 reg_readl(struct bcm_sf2_priv *priv, u16 off)
190 {
191         return readl_relaxed(priv->reg + priv->reg_offsets[off]);
192 }
193
194 static inline void reg_writel(struct bcm_sf2_priv *priv, u32 val, u16 off)
195 {
196         writel_relaxed(val, priv->reg + priv->reg_offsets[off]);
197 }
198
199 SF2_IO64_MACRO(core);
200 SF2_IO_MACRO(intrl2_0);
201 SF2_IO_MACRO(intrl2_1);
202 SF2_IO_MACRO(fcb);
203 SF2_IO_MACRO(acb);
204
205 SWITCH_INTR_L2(0);
206 SWITCH_INTR_L2(1);
207
208 /* RXNFC */
209 int bcm_sf2_get_rxnfc(struct dsa_switch *ds, int port,
210                       struct ethtool_rxnfc *nfc, u32 *rule_locs);
211 int bcm_sf2_set_rxnfc(struct dsa_switch *ds, int port,
212                       struct ethtool_rxnfc *nfc);
213 int bcm_sf2_cfp_rst(struct bcm_sf2_priv *priv);
214 void bcm_sf2_cfp_exit(struct dsa_switch *ds);
215 int bcm_sf2_cfp_resume(struct dsa_switch *ds);
216 void bcm_sf2_cfp_get_strings(struct dsa_switch *ds, int port,
217                              u32 stringset, uint8_t *data);
218 void bcm_sf2_cfp_get_ethtool_stats(struct dsa_switch *ds, int port,
219                                    uint64_t *data);
220 int bcm_sf2_cfp_get_sset_count(struct dsa_switch *ds, int port, int sset);
221
222 #endif /* __BCM_SF2_H */
This page took 0.044977 seconds and 4 git commands to generate.