diff options
-rw-r--r-- | drivers/net/cxgb3/adapter.h | 2 | ||||
-rw-r--r-- | drivers/net/cxgb3/ael1002.c | 16 | ||||
-rw-r--r-- | drivers/net/cxgb3/common.h | 21 | ||||
-rw-r--r-- | drivers/net/cxgb3/cxgb3_main.c | 4 | ||||
-rw-r--r-- | drivers/net/cxgb3/t3_hw.c | 133 | ||||
-rw-r--r-- | drivers/net/cxgb3/vsc8211.c | 5 |
6 files changed, 94 insertions, 87 deletions
diff --git a/drivers/net/cxgb3/adapter.h b/drivers/net/cxgb3/adapter.h index 02dd69b90ab..455ef529cd6 100644 --- a/drivers/net/cxgb3/adapter.h +++ b/drivers/net/cxgb3/adapter.h | |||
@@ -54,7 +54,6 @@ struct port_info { | |||
54 | struct adapter *adapter; | 54 | struct adapter *adapter; |
55 | struct vlan_group *vlan_grp; | 55 | struct vlan_group *vlan_grp; |
56 | struct sge_qset *qs; | 56 | struct sge_qset *qs; |
57 | const struct port_type_info *port_type; | ||
58 | u8 port_id; | 57 | u8 port_id; |
59 | u8 rx_csum_offload; | 58 | u8 rx_csum_offload; |
60 | u8 nqsets; | 59 | u8 nqsets; |
@@ -282,6 +281,7 @@ int t3_offload_tx(struct t3cdev *tdev, struct sk_buff *skb); | |||
282 | void t3_os_ext_intr_handler(struct adapter *adapter); | 281 | void t3_os_ext_intr_handler(struct adapter *adapter); |
283 | void t3_os_link_changed(struct adapter *adapter, int port_id, int link_status, | 282 | void t3_os_link_changed(struct adapter *adapter, int port_id, int link_status, |
284 | int speed, int duplex, int fc); | 283 | int speed, int duplex, int fc); |
284 | void t3_os_phymod_changed(struct adapter *adap, int port_id); | ||
285 | 285 | ||
286 | void t3_sge_start(struct adapter *adap); | 286 | void t3_sge_start(struct adapter *adap); |
287 | void t3_sge_stop(struct adapter *adap); | 287 | void t3_sge_stop(struct adapter *adap); |
diff --git a/drivers/net/cxgb3/ael1002.c b/drivers/net/cxgb3/ael1002.c index bf22e56429f..f4e046e32fc 100644 --- a/drivers/net/cxgb3/ael1002.c +++ b/drivers/net/cxgb3/ael1002.c | |||
@@ -122,7 +122,9 @@ static struct cphy_ops ael1002_ops = { | |||
122 | int t3_ael1002_phy_prep(struct cphy *phy, struct adapter *adapter, | 122 | int t3_ael1002_phy_prep(struct cphy *phy, struct adapter *adapter, |
123 | int phy_addr, const struct mdio_ops *mdio_ops) | 123 | int phy_addr, const struct mdio_ops *mdio_ops) |
124 | { | 124 | { |
125 | cphy_init(phy, adapter, phy_addr, &ael1002_ops, mdio_ops); | 125 | cphy_init(phy, adapter, phy_addr, &ael1002_ops, mdio_ops, |
126 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_FIBRE, | ||
127 | "10GBASE-R"); | ||
126 | ael100x_txon(phy); | 128 | ael100x_txon(phy); |
127 | return 0; | 129 | return 0; |
128 | } | 130 | } |
@@ -178,7 +180,9 @@ static struct cphy_ops ael1006_ops = { | |||
178 | int t3_ael1006_phy_prep(struct cphy *phy, struct adapter *adapter, | 180 | int t3_ael1006_phy_prep(struct cphy *phy, struct adapter *adapter, |
179 | int phy_addr, const struct mdio_ops *mdio_ops) | 181 | int phy_addr, const struct mdio_ops *mdio_ops) |
180 | { | 182 | { |
181 | cphy_init(phy, adapter, phy_addr, &ael1006_ops, mdio_ops); | 183 | cphy_init(phy, adapter, phy_addr, &ael1006_ops, mdio_ops, |
184 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_FIBRE, | ||
185 | "10GBASE-SR"); | ||
182 | ael100x_txon(phy); | 186 | ael100x_txon(phy); |
183 | return 0; | 187 | return 0; |
184 | } | 188 | } |
@@ -198,7 +202,9 @@ int t3_qt2045_phy_prep(struct cphy *phy, struct adapter *adapter, | |||
198 | { | 202 | { |
199 | unsigned int stat; | 203 | unsigned int stat; |
200 | 204 | ||
201 | cphy_init(phy, adapter, phy_addr, &qt2045_ops, mdio_ops); | 205 | cphy_init(phy, adapter, phy_addr, &qt2045_ops, mdio_ops, |
206 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_TP, | ||
207 | "10GBASE-CX4"); | ||
202 | 208 | ||
203 | /* | 209 | /* |
204 | * Some cards where the PHY is supposed to be at address 0 actually | 210 | * Some cards where the PHY is supposed to be at address 0 actually |
@@ -256,6 +262,8 @@ static struct cphy_ops xaui_direct_ops = { | |||
256 | int t3_xaui_direct_phy_prep(struct cphy *phy, struct adapter *adapter, | 262 | int t3_xaui_direct_phy_prep(struct cphy *phy, struct adapter *adapter, |
257 | int phy_addr, const struct mdio_ops *mdio_ops) | 263 | int phy_addr, const struct mdio_ops *mdio_ops) |
258 | { | 264 | { |
259 | cphy_init(phy, adapter, phy_addr, &xaui_direct_ops, mdio_ops); | 265 | cphy_init(phy, adapter, phy_addr, &xaui_direct_ops, mdio_ops, |
266 | SUPPORTED_10000baseT_Full | SUPPORTED_AUI | SUPPORTED_TP, | ||
267 | "10GBASE-CX4"); | ||
260 | return 0; | 268 | return 0; |
261 | } | 269 | } |
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common.h index 78c10d3f0ef..e83a360bcc9 100644 --- a/drivers/net/cxgb3/common.h +++ b/drivers/net/cxgb3/common.h | |||
@@ -193,8 +193,6 @@ struct mdio_ops { | |||
193 | struct adapter_info { | 193 | struct adapter_info { |
194 | unsigned char nports; /* # of ports */ | 194 | unsigned char nports; /* # of ports */ |
195 | unsigned char phy_base_addr; /* MDIO PHY base address */ | 195 | unsigned char phy_base_addr; /* MDIO PHY base address */ |
196 | unsigned char mdien; | ||
197 | unsigned char mdiinv; | ||
198 | unsigned int gpio_out; /* GPIO output settings */ | 196 | unsigned int gpio_out; /* GPIO output settings */ |
199 | unsigned int gpio_intr; /* GPIO IRQ enable mask */ | 197 | unsigned int gpio_intr; /* GPIO IRQ enable mask */ |
200 | unsigned long caps; /* adapter capabilities */ | 198 | unsigned long caps; /* adapter capabilities */ |
@@ -202,13 +200,6 @@ struct adapter_info { | |||
202 | const char *desc; /* product description */ | 200 | const char *desc; /* product description */ |
203 | }; | 201 | }; |
204 | 202 | ||
205 | struct port_type_info { | ||
206 | int (*phy_prep)(struct cphy *phy, struct adapter *adapter, | ||
207 | int phy_addr, const struct mdio_ops *ops); | ||
208 | unsigned int caps; | ||
209 | const char *desc; | ||
210 | }; | ||
211 | |||
212 | struct mc5_stats { | 203 | struct mc5_stats { |
213 | unsigned long parity_err; | 204 | unsigned long parity_err; |
214 | unsigned long active_rgn_full; | 205 | unsigned long active_rgn_full; |
@@ -548,7 +539,6 @@ enum { | |||
548 | 539 | ||
549 | /* PHY operations */ | 540 | /* PHY operations */ |
550 | struct cphy_ops { | 541 | struct cphy_ops { |
551 | void (*destroy)(struct cphy *phy); | ||
552 | int (*reset)(struct cphy *phy, int wait); | 542 | int (*reset)(struct cphy *phy, int wait); |
553 | 543 | ||
554 | int (*intr_enable)(struct cphy *phy); | 544 | int (*intr_enable)(struct cphy *phy); |
@@ -569,8 +559,10 @@ struct cphy_ops { | |||
569 | 559 | ||
570 | /* A PHY instance */ | 560 | /* A PHY instance */ |
571 | struct cphy { | 561 | struct cphy { |
572 | int addr; /* PHY address */ | 562 | int addr; /* PHY address */ |
563 | unsigned int caps; /* PHY capabilities */ | ||
573 | struct adapter *adapter; /* associated adapter */ | 564 | struct adapter *adapter; /* associated adapter */ |
565 | const char *desc; /* PHY description */ | ||
574 | unsigned long fifo_errors; /* FIFO over/under-flows */ | 566 | unsigned long fifo_errors; /* FIFO over/under-flows */ |
575 | const struct cphy_ops *ops; /* PHY operations */ | 567 | const struct cphy_ops *ops; /* PHY operations */ |
576 | int (*mdio_read)(struct adapter *adapter, int phy_addr, int mmd_addr, | 568 | int (*mdio_read)(struct adapter *adapter, int phy_addr, int mmd_addr, |
@@ -595,10 +587,13 @@ static inline int mdio_write(struct cphy *phy, int mmd, int reg, | |||
595 | /* Convenience initializer */ | 587 | /* Convenience initializer */ |
596 | static inline void cphy_init(struct cphy *phy, struct adapter *adapter, | 588 | static inline void cphy_init(struct cphy *phy, struct adapter *adapter, |
597 | int phy_addr, struct cphy_ops *phy_ops, | 589 | int phy_addr, struct cphy_ops *phy_ops, |
598 | const struct mdio_ops *mdio_ops) | 590 | const struct mdio_ops *mdio_ops, |
591 | unsigned int caps, const char *desc) | ||
599 | { | 592 | { |
600 | phy->adapter = adapter; | ||
601 | phy->addr = phy_addr; | 593 | phy->addr = phy_addr; |
594 | phy->caps = caps; | ||
595 | phy->adapter = adapter; | ||
596 | phy->desc = desc; | ||
602 | phy->ops = phy_ops; | 597 | phy->ops = phy_ops; |
603 | if (mdio_ops) { | 598 | if (mdio_ops) { |
604 | phy->mdio_read = mdio_ops->read; | 599 | phy->mdio_read = mdio_ops->read; |
diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c index fea2c719c8f..5b8251decbd 100644 --- a/drivers/net/cxgb3/cxgb3_main.c +++ b/drivers/net/cxgb3/cxgb3_main.c | |||
@@ -2368,7 +2368,7 @@ static void check_link_status(struct adapter *adapter) | |||
2368 | struct net_device *dev = adapter->port[i]; | 2368 | struct net_device *dev = adapter->port[i]; |
2369 | struct port_info *p = netdev_priv(dev); | 2369 | struct port_info *p = netdev_priv(dev); |
2370 | 2370 | ||
2371 | if (!(p->port_type->caps & SUPPORTED_IRQ) && netif_running(dev)) | 2371 | if (!(p->phy.caps & SUPPORTED_IRQ) && netif_running(dev)) |
2372 | t3_link_changed(adapter, i); | 2372 | t3_link_changed(adapter, i); |
2373 | } | 2373 | } |
2374 | } | 2374 | } |
@@ -2731,7 +2731,7 @@ static void __devinit print_port_info(struct adapter *adap, | |||
2731 | if (!test_bit(i, &adap->registered_device_map)) | 2731 | if (!test_bit(i, &adap->registered_device_map)) |
2732 | continue; | 2732 | continue; |
2733 | printk(KERN_INFO "%s: %s %s %sNIC (rev %d) %s%s\n", | 2733 | printk(KERN_INFO "%s: %s %s %sNIC (rev %d) %s%s\n", |
2734 | dev->name, ai->desc, pi->port_type->desc, | 2734 | dev->name, ai->desc, pi->phy.desc, |
2735 | is_offload(adap) ? "R" : "", adap->params.rev, buf, | 2735 | is_offload(adap) ? "R" : "", adap->params.rev, buf, |
2736 | (adap->flags & USING_MSIX) ? " MSI-X" : | 2736 | (adap->flags & USING_MSIX) ? " MSI-X" : |
2737 | (adap->flags & USING_MSI) ? " MSI" : ""); | 2737 | (adap->flags & USING_MSI) ? " MSI" : ""); |
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c index fa0a4b4fb5c..f7ced324227 100644 --- a/drivers/net/cxgb3/t3_hw.c +++ b/drivers/net/cxgb3/t3_hw.c | |||
@@ -194,21 +194,18 @@ int t3_mc7_bd_read(struct mc7 *mc7, unsigned int start, unsigned int n, | |||
194 | static void mi1_init(struct adapter *adap, const struct adapter_info *ai) | 194 | static void mi1_init(struct adapter *adap, const struct adapter_info *ai) |
195 | { | 195 | { |
196 | u32 clkdiv = adap->params.vpd.cclk / (2 * adap->params.vpd.mdc) - 1; | 196 | u32 clkdiv = adap->params.vpd.cclk / (2 * adap->params.vpd.mdc) - 1; |
197 | u32 val = F_PREEN | V_MDIINV(ai->mdiinv) | V_MDIEN(ai->mdien) | | 197 | u32 val = F_PREEN | V_CLKDIV(clkdiv); |
198 | V_CLKDIV(clkdiv); | ||
199 | 198 | ||
200 | if (!(ai->caps & SUPPORTED_10000baseT_Full)) | ||
201 | val |= V_ST(1); | ||
202 | t3_write_reg(adap, A_MI1_CFG, val); | 199 | t3_write_reg(adap, A_MI1_CFG, val); |
203 | } | 200 | } |
204 | 201 | ||
205 | #define MDIO_ATTEMPTS 10 | 202 | #define MDIO_ATTEMPTS 20 |
206 | 203 | ||
207 | /* | 204 | /* |
208 | * MI1 read/write operations for direct-addressed PHYs. | 205 | * MI1 read/write operations for clause 22 PHYs. |
209 | */ | 206 | */ |
210 | static int mi1_read(struct adapter *adapter, int phy_addr, int mmd_addr, | 207 | static int t3_mi1_read(struct adapter *adapter, int phy_addr, int mmd_addr, |
211 | int reg_addr, unsigned int *valp) | 208 | int reg_addr, unsigned int *valp) |
212 | { | 209 | { |
213 | int ret; | 210 | int ret; |
214 | u32 addr = V_REGADDR(reg_addr) | V_PHYADDR(phy_addr); | 211 | u32 addr = V_REGADDR(reg_addr) | V_PHYADDR(phy_addr); |
@@ -217,16 +214,17 @@ static int mi1_read(struct adapter *adapter, int phy_addr, int mmd_addr, | |||
217 | return -EINVAL; | 214 | return -EINVAL; |
218 | 215 | ||
219 | mutex_lock(&adapter->mdio_lock); | 216 | mutex_lock(&adapter->mdio_lock); |
217 | t3_set_reg_field(adapter, A_MI1_CFG, V_ST(M_ST), V_ST(1)); | ||
220 | t3_write_reg(adapter, A_MI1_ADDR, addr); | 218 | t3_write_reg(adapter, A_MI1_ADDR, addr); |
221 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(2)); | 219 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(2)); |
222 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 20); | 220 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 10); |
223 | if (!ret) | 221 | if (!ret) |
224 | *valp = t3_read_reg(adapter, A_MI1_DATA); | 222 | *valp = t3_read_reg(adapter, A_MI1_DATA); |
225 | mutex_unlock(&adapter->mdio_lock); | 223 | mutex_unlock(&adapter->mdio_lock); |
226 | return ret; | 224 | return ret; |
227 | } | 225 | } |
228 | 226 | ||
229 | static int mi1_write(struct adapter *adapter, int phy_addr, int mmd_addr, | 227 | static int t3_mi1_write(struct adapter *adapter, int phy_addr, int mmd_addr, |
230 | int reg_addr, unsigned int val) | 228 | int reg_addr, unsigned int val) |
231 | { | 229 | { |
232 | int ret; | 230 | int ret; |
@@ -236,37 +234,51 @@ static int mi1_write(struct adapter *adapter, int phy_addr, int mmd_addr, | |||
236 | return -EINVAL; | 234 | return -EINVAL; |
237 | 235 | ||
238 | mutex_lock(&adapter->mdio_lock); | 236 | mutex_lock(&adapter->mdio_lock); |
237 | t3_set_reg_field(adapter, A_MI1_CFG, V_ST(M_ST), V_ST(1)); | ||
239 | t3_write_reg(adapter, A_MI1_ADDR, addr); | 238 | t3_write_reg(adapter, A_MI1_ADDR, addr); |
240 | t3_write_reg(adapter, A_MI1_DATA, val); | 239 | t3_write_reg(adapter, A_MI1_DATA, val); |
241 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(1)); | 240 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(1)); |
242 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 20); | 241 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 10); |
243 | mutex_unlock(&adapter->mdio_lock); | 242 | mutex_unlock(&adapter->mdio_lock); |
244 | return ret; | 243 | return ret; |
245 | } | 244 | } |
246 | 245 | ||
247 | static const struct mdio_ops mi1_mdio_ops = { | 246 | static const struct mdio_ops mi1_mdio_ops = { |
248 | mi1_read, | 247 | t3_mi1_read, |
249 | mi1_write | 248 | t3_mi1_write |
250 | }; | 249 | }; |
251 | 250 | ||
252 | /* | 251 | /* |
252 | * Performs the address cycle for clause 45 PHYs. | ||
253 | * Must be called with the MDIO_LOCK held. | ||
254 | */ | ||
255 | static int mi1_wr_addr(struct adapter *adapter, int phy_addr, int mmd_addr, | ||
256 | int reg_addr) | ||
257 | { | ||
258 | u32 addr = V_REGADDR(mmd_addr) | V_PHYADDR(phy_addr); | ||
259 | |||
260 | t3_set_reg_field(adapter, A_MI1_CFG, V_ST(M_ST), 0); | ||
261 | t3_write_reg(adapter, A_MI1_ADDR, addr); | ||
262 | t3_write_reg(adapter, A_MI1_DATA, reg_addr); | ||
263 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(0)); | ||
264 | return t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, | ||
265 | MDIO_ATTEMPTS, 10); | ||
266 | } | ||
267 | |||
268 | /* | ||
253 | * MI1 read/write operations for indirect-addressed PHYs. | 269 | * MI1 read/write operations for indirect-addressed PHYs. |
254 | */ | 270 | */ |
255 | static int mi1_ext_read(struct adapter *adapter, int phy_addr, int mmd_addr, | 271 | static int mi1_ext_read(struct adapter *adapter, int phy_addr, int mmd_addr, |
256 | int reg_addr, unsigned int *valp) | 272 | int reg_addr, unsigned int *valp) |
257 | { | 273 | { |
258 | int ret; | 274 | int ret; |
259 | u32 addr = V_REGADDR(mmd_addr) | V_PHYADDR(phy_addr); | ||
260 | 275 | ||
261 | mutex_lock(&adapter->mdio_lock); | 276 | mutex_lock(&adapter->mdio_lock); |
262 | t3_write_reg(adapter, A_MI1_ADDR, addr); | 277 | ret = mi1_wr_addr(adapter, phy_addr, mmd_addr, reg_addr); |
263 | t3_write_reg(adapter, A_MI1_DATA, reg_addr); | ||
264 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(0)); | ||
265 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 20); | ||
266 | if (!ret) { | 278 | if (!ret) { |
267 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(3)); | 279 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(3)); |
268 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, | 280 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, |
269 | MDIO_ATTEMPTS, 20); | 281 | MDIO_ATTEMPTS, 10); |
270 | if (!ret) | 282 | if (!ret) |
271 | *valp = t3_read_reg(adapter, A_MI1_DATA); | 283 | *valp = t3_read_reg(adapter, A_MI1_DATA); |
272 | } | 284 | } |
@@ -278,18 +290,14 @@ static int mi1_ext_write(struct adapter *adapter, int phy_addr, int mmd_addr, | |||
278 | int reg_addr, unsigned int val) | 290 | int reg_addr, unsigned int val) |
279 | { | 291 | { |
280 | int ret; | 292 | int ret; |
281 | u32 addr = V_REGADDR(mmd_addr) | V_PHYADDR(phy_addr); | ||
282 | 293 | ||
283 | mutex_lock(&adapter->mdio_lock); | 294 | mutex_lock(&adapter->mdio_lock); |
284 | t3_write_reg(adapter, A_MI1_ADDR, addr); | 295 | ret = mi1_wr_addr(adapter, phy_addr, mmd_addr, reg_addr); |
285 | t3_write_reg(adapter, A_MI1_DATA, reg_addr); | ||
286 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(0)); | ||
287 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, MDIO_ATTEMPTS, 20); | ||
288 | if (!ret) { | 296 | if (!ret) { |
289 | t3_write_reg(adapter, A_MI1_DATA, val); | 297 | t3_write_reg(adapter, A_MI1_DATA, val); |
290 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(1)); | 298 | t3_write_reg(adapter, A_MI1_OP, V_MDI_OP(1)); |
291 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, | 299 | ret = t3_wait_op_done(adapter, A_MI1_OP, F_BUSY, 0, |
292 | MDIO_ATTEMPTS, 20); | 300 | MDIO_ATTEMPTS, 10); |
293 | } | 301 | } |
294 | mutex_unlock(&adapter->mdio_lock); | 302 | mutex_unlock(&adapter->mdio_lock); |
295 | return ret; | 303 | return ret; |
@@ -435,22 +443,22 @@ int t3_set_phy_speed_duplex(struct cphy *phy, int speed, int duplex) | |||
435 | } | 443 | } |
436 | 444 | ||
437 | static const struct adapter_info t3_adap_info[] = { | 445 | static const struct adapter_info t3_adap_info[] = { |
438 | {2, 0, 0, 0, | 446 | {2, 0, |
439 | F_GPIO2_OEN | F_GPIO4_OEN | | 447 | F_GPIO2_OEN | F_GPIO4_OEN | |
440 | F_GPIO2_OUT_VAL | F_GPIO4_OUT_VAL, F_GPIO3 | F_GPIO5, | 448 | F_GPIO2_OUT_VAL | F_GPIO4_OUT_VAL, F_GPIO3 | F_GPIO5, |
441 | 0, | 449 | 0, |
442 | &mi1_mdio_ops, "Chelsio PE9000"}, | 450 | &mi1_mdio_ops, "Chelsio PE9000"}, |
443 | {2, 0, 0, 0, | 451 | {2, 0, |
444 | F_GPIO2_OEN | F_GPIO4_OEN | | 452 | F_GPIO2_OEN | F_GPIO4_OEN | |
445 | F_GPIO2_OUT_VAL | F_GPIO4_OUT_VAL, F_GPIO3 | F_GPIO5, | 453 | F_GPIO2_OUT_VAL | F_GPIO4_OUT_VAL, F_GPIO3 | F_GPIO5, |
446 | 0, | 454 | 0, |
447 | &mi1_mdio_ops, "Chelsio T302"}, | 455 | &mi1_mdio_ops, "Chelsio T302"}, |
448 | {1, 0, 0, 0, | 456 | {1, 0, |
449 | F_GPIO1_OEN | F_GPIO6_OEN | F_GPIO7_OEN | F_GPIO10_OEN | | 457 | F_GPIO1_OEN | F_GPIO6_OEN | F_GPIO7_OEN | F_GPIO10_OEN | |
450 | F_GPIO11_OEN | F_GPIO1_OUT_VAL | F_GPIO6_OUT_VAL | F_GPIO10_OUT_VAL, | 458 | F_GPIO11_OEN | F_GPIO1_OUT_VAL | F_GPIO6_OUT_VAL | F_GPIO10_OUT_VAL, |
451 | 0, SUPPORTED_10000baseT_Full | SUPPORTED_AUI, | 459 | 0, SUPPORTED_10000baseT_Full | SUPPORTED_AUI, |
452 | &mi1_mdio_ext_ops, "Chelsio T310"}, | 460 | &mi1_mdio_ext_ops, "Chelsio T310"}, |
453 | {2, 0, 0, 0, | 461 | {2, 0, |
454 | F_GPIO1_OEN | F_GPIO2_OEN | F_GPIO4_OEN | F_GPIO5_OEN | F_GPIO6_OEN | | 462 | F_GPIO1_OEN | F_GPIO2_OEN | F_GPIO4_OEN | F_GPIO5_OEN | F_GPIO6_OEN | |
455 | F_GPIO7_OEN | F_GPIO10_OEN | F_GPIO11_OEN | F_GPIO1_OUT_VAL | | 463 | F_GPIO7_OEN | F_GPIO10_OEN | F_GPIO11_OEN | F_GPIO1_OUT_VAL | |
456 | F_GPIO5_OUT_VAL | F_GPIO6_OUT_VAL | F_GPIO10_OUT_VAL, 0, | 464 | F_GPIO5_OUT_VAL | F_GPIO6_OUT_VAL | F_GPIO10_OUT_VAL, 0, |
@@ -467,29 +475,23 @@ const struct adapter_info *t3_get_adapter_info(unsigned int id) | |||
467 | return id < ARRAY_SIZE(t3_adap_info) ? &t3_adap_info[id] : NULL; | 475 | return id < ARRAY_SIZE(t3_adap_info) ? &t3_adap_info[id] : NULL; |
468 | } | 476 | } |
469 | 477 | ||
470 | #define CAPS_1G (SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full | \ | 478 | struct port_type_info { |
471 | SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_MII) | 479 | int (*phy_prep)(struct cphy *phy, struct adapter *adapter, |
472 | #define CAPS_10G (SUPPORTED_10000baseT_Full | SUPPORTED_AUI) | 480 | int phy_addr, const struct mdio_ops *ops); |
481 | }; | ||
473 | 482 | ||
474 | static const struct port_type_info port_types[] = { | 483 | static const struct port_type_info port_types[] = { |
475 | {NULL}, | 484 | { NULL }, |
476 | {t3_ael1002_phy_prep, CAPS_10G | SUPPORTED_FIBRE, | 485 | { t3_ael1002_phy_prep }, |
477 | "10GBASE-XR"}, | 486 | { t3_vsc8211_phy_prep }, |
478 | {t3_vsc8211_phy_prep, CAPS_1G | SUPPORTED_TP | SUPPORTED_IRQ, | 487 | { NULL}, |
479 | "10/100/1000BASE-T"}, | 488 | { t3_xaui_direct_phy_prep }, |
480 | {NULL, CAPS_1G | SUPPORTED_TP | SUPPORTED_IRQ, | 489 | { NULL }, |
481 | "10/100/1000BASE-T"}, | 490 | { t3_qt2045_phy_prep }, |
482 | {t3_xaui_direct_phy_prep, CAPS_10G | SUPPORTED_TP, "10GBASE-CX4"}, | 491 | { t3_ael1006_phy_prep }, |
483 | {NULL, CAPS_10G, "10GBASE-KX4"}, | 492 | { NULL }, |
484 | {t3_qt2045_phy_prep, CAPS_10G | SUPPORTED_TP, "10GBASE-CX4"}, | ||
485 | {t3_ael1006_phy_prep, CAPS_10G | SUPPORTED_FIBRE, | ||
486 | "10GBASE-SR"}, | ||
487 | {NULL, CAPS_10G | SUPPORTED_TP, "10GBASE-CX4"}, | ||
488 | }; | 493 | }; |
489 | 494 | ||
490 | #undef CAPS_1G | ||
491 | #undef CAPS_10G | ||
492 | |||
493 | #define VPD_ENTRY(name, len) \ | 495 | #define VPD_ENTRY(name, len) \ |
494 | u8 name##_kword[2]; u8 name##_len; u8 name##_data[len] | 496 | u8 name##_kword[2]; u8 name##_len; u8 name##_data[len] |
495 | 497 | ||
@@ -1691,7 +1693,7 @@ int t3_phy_intr_handler(struct adapter *adapter) | |||
1691 | mask = gpi - (gpi & (gpi - 1)); | 1693 | mask = gpi - (gpi & (gpi - 1)); |
1692 | gpi -= mask; | 1694 | gpi -= mask; |
1693 | 1695 | ||
1694 | if (!(p->port_type->caps & SUPPORTED_IRQ)) | 1696 | if (!(p->phy.caps & SUPPORTED_IRQ)) |
1695 | continue; | 1697 | continue; |
1696 | 1698 | ||
1697 | if (cause & mask) { | 1699 | if (cause & mask) { |
@@ -3556,7 +3558,7 @@ int t3_prep_adapter(struct adapter *adapter, const struct adapter_info *ai, | |||
3556 | int reset) | 3558 | int reset) |
3557 | { | 3559 | { |
3558 | int ret; | 3560 | int ret; |
3559 | unsigned int i, j = 0; | 3561 | unsigned int i, j = -1; |
3560 | 3562 | ||
3561 | get_pci_mode(adapter, &adapter->params.pci); | 3563 | get_pci_mode(adapter, &adapter->params.pci); |
3562 | 3564 | ||
@@ -3620,19 +3622,18 @@ int t3_prep_adapter(struct adapter *adapter, const struct adapter_info *ai, | |||
3620 | 3622 | ||
3621 | for_each_port(adapter, i) { | 3623 | for_each_port(adapter, i) { |
3622 | u8 hw_addr[6]; | 3624 | u8 hw_addr[6]; |
3625 | const struct port_type_info *pti; | ||
3623 | struct port_info *p = adap2pinfo(adapter, i); | 3626 | struct port_info *p = adap2pinfo(adapter, i); |
3624 | 3627 | ||
3625 | while (!adapter->params.vpd.port_type[j]) | 3628 | while (!adapter->params.vpd.port_type[++j]) |
3626 | ++j; | 3629 | ; |
3627 | 3630 | ||
3628 | p->port_type = &port_types[adapter->params.vpd.port_type[j]]; | 3631 | pti = &port_types[adapter->params.vpd.port_type[j]]; |
3629 | ret = p->port_type->phy_prep(&p->phy, adapter, | 3632 | ret = pti->phy_prep(&p->phy, adapter, ai->phy_base_addr + j, |
3630 | ai->phy_base_addr + j, | 3633 | ai->mdio_ops); |
3631 | ai->mdio_ops); | ||
3632 | if (ret) | 3634 | if (ret) |
3633 | return ret; | 3635 | return ret; |
3634 | mac_prep(&p->mac, adapter, j); | 3636 | mac_prep(&p->mac, adapter, j); |
3635 | ++j; | ||
3636 | 3637 | ||
3637 | /* | 3638 | /* |
3638 | * The VPD EEPROM stores the base Ethernet address for the | 3639 | * The VPD EEPROM stores the base Ethernet address for the |
@@ -3646,9 +3647,9 @@ int t3_prep_adapter(struct adapter *adapter, const struct adapter_info *ai, | |||
3646 | ETH_ALEN); | 3647 | ETH_ALEN); |
3647 | memcpy(adapter->port[i]->perm_addr, hw_addr, | 3648 | memcpy(adapter->port[i]->perm_addr, hw_addr, |
3648 | ETH_ALEN); | 3649 | ETH_ALEN); |
3649 | init_link_config(&p->link_config, p->port_type->caps); | 3650 | init_link_config(&p->link_config, p->phy.caps); |
3650 | p->phy.ops->power_down(&p->phy, 1); | 3651 | p->phy.ops->power_down(&p->phy, 1); |
3651 | if (!(p->port_type->caps & SUPPORTED_IRQ)) | 3652 | if (!(p->phy.caps & SUPPORTED_IRQ)) |
3652 | adapter->params.linkpoll_period = 10; | 3653 | adapter->params.linkpoll_period = 10; |
3653 | } | 3654 | } |
3654 | 3655 | ||
@@ -3664,7 +3665,7 @@ void t3_led_ready(struct adapter *adapter) | |||
3664 | int t3_replay_prep_adapter(struct adapter *adapter) | 3665 | int t3_replay_prep_adapter(struct adapter *adapter) |
3665 | { | 3666 | { |
3666 | const struct adapter_info *ai = adapter->params.info; | 3667 | const struct adapter_info *ai = adapter->params.info; |
3667 | unsigned int i, j = 0; | 3668 | unsigned int i, j = -1; |
3668 | int ret; | 3669 | int ret; |
3669 | 3670 | ||
3670 | early_hw_init(adapter, ai); | 3671 | early_hw_init(adapter, ai); |
@@ -3673,17 +3674,17 @@ int t3_replay_prep_adapter(struct adapter *adapter) | |||
3673 | return ret; | 3674 | return ret; |
3674 | 3675 | ||
3675 | for_each_port(adapter, i) { | 3676 | for_each_port(adapter, i) { |
3677 | const struct port_type_info *pti; | ||
3676 | struct port_info *p = adap2pinfo(adapter, i); | 3678 | struct port_info *p = adap2pinfo(adapter, i); |
3677 | while (!adapter->params.vpd.port_type[j]) | ||
3678 | ++j; | ||
3679 | 3679 | ||
3680 | ret = p->port_type->phy_prep(&p->phy, adapter, | 3680 | while (!adapter->params.vpd.port_type[++j]) |
3681 | ai->phy_base_addr + j, | 3681 | ; |
3682 | ai->mdio_ops); | 3682 | |
3683 | pti = &port_types[adapter->params.vpd.port_type[j]]; | ||
3684 | ret = pti->phy_prep(&p->phy, adapter, p->phy.addr, NULL); | ||
3683 | if (ret) | 3685 | if (ret) |
3684 | return ret; | 3686 | return ret; |
3685 | p->phy.ops->power_down(&p->phy, 1); | 3687 | p->phy.ops->power_down(&p->phy, 1); |
3686 | ++j; | ||
3687 | } | 3688 | } |
3688 | 3689 | ||
3689 | return 0; | 3690 | return 0; |
diff --git a/drivers/net/cxgb3/vsc8211.c b/drivers/net/cxgb3/vsc8211.c index 8f1b0d3a27e..68e6334c206 100644 --- a/drivers/net/cxgb3/vsc8211.c +++ b/drivers/net/cxgb3/vsc8211.c | |||
@@ -224,6 +224,9 @@ static struct cphy_ops vsc8211_ops = { | |||
224 | int t3_vsc8211_phy_prep(struct cphy *phy, struct adapter *adapter, | 224 | int t3_vsc8211_phy_prep(struct cphy *phy, struct adapter *adapter, |
225 | int phy_addr, const struct mdio_ops *mdio_ops) | 225 | int phy_addr, const struct mdio_ops *mdio_ops) |
226 | { | 226 | { |
227 | cphy_init(phy, adapter, phy_addr, &vsc8211_ops, mdio_ops); | 227 | cphy_init(phy, adapter, phy_addr, &vsc8211_ops, mdio_ops, |
228 | SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full | | ||
229 | SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_MII | | ||
230 | SUPPORTED_TP | SUPPORTED_IRQ, "10/100/1000BASE-T"); | ||
228 | return 0; | 231 | return 0; |
229 | } | 232 | } |