2 * SBE 2T3E3 synchronous serial card driver for Linux
4 * Copyright (C) 2009-2010 Krzysztof Halasa <khc@pm.waw.pl>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License
8 * as published by the Free Software Foundation.
10 * This code is based on a driver written by SBE Inc.
13 #include <linux/netdevice.h>
14 #include <linux/types.h>
15 #include <linux/errno.h>
20 static int dc_init_descriptor_list(struct channel
*sc
);
22 void dc_init(struct channel
*sc
)
27 /*dc_reset(sc);*/ /* do not want to reset here */
32 val
= SBE_2T3E3_21143_VAL_READ_LINE_ENABLE
|
33 SBE_2T3E3_21143_VAL_READ_MULTIPLE_ENABLE
|
34 SBE_2T3E3_21143_VAL_TRANSMIT_AUTOMATIC_POLLING_200us
|
35 SBE_2T3E3_21143_VAL_BUS_ARBITRATION_RR
;
37 if (sc
->h
.command
& 16)
38 val
|= SBE_2T3E3_21143_VAL_WRITE_AND_INVALIDATE_ENABLE
;
40 switch (sc
->h
.cache_size
) {
42 val
|= SBE_2T3E3_21143_VAL_CACHE_ALIGNMENT_32
;
45 val
|= SBE_2T3E3_21143_VAL_CACHE_ALIGNMENT_16
;
48 val
|= SBE_2T3E3_21143_VAL_CACHE_ALIGNMENT_8
;
54 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_BUS_MODE
, val
);
56 /* OPERATION_MODE (CSR6) */
57 val
= SBE_2T3E3_21143_VAL_RECEIVE_ALL
|
58 SBE_2T3E3_21143_VAL_MUST_BE_ONE
|
59 SBE_2T3E3_21143_VAL_THRESHOLD_CONTROL_BITS_1
|
60 SBE_2T3E3_21143_VAL_LOOPBACK_OFF
|
61 SBE_2T3E3_21143_VAL_PASS_ALL_MULTICAST
|
62 SBE_2T3E3_21143_VAL_PROMISCUOUS_MODE
|
63 SBE_2T3E3_21143_VAL_PASS_BAD_FRAMES
;
64 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
, val
);
65 if (sc
->p
.loopback
== SBE_2T3E3_LOOPBACK_ETHERNET
)
66 sc
->p
.loopback
= SBE_2T3E3_LOOPBACK_NONE
;
69 * GENERAL_PURPOSE_TIMER_AND_INTERRUPT_MITIGATION_CONTROL (CSR11)
71 val
= SBE_2T3E3_21143_VAL_CYCLE_SIZE
|
72 SBE_2T3E3_21143_VAL_TRANSMIT_TIMER
|
73 SBE_2T3E3_21143_VAL_NUMBER_OF_TRANSMIT_PACKETS
|
74 SBE_2T3E3_21143_VAL_RECEIVE_TIMER
|
75 SBE_2T3E3_21143_VAL_NUMBER_OF_RECEIVE_PACKETS
;
76 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_GENERAL_PURPOSE_TIMER_AND_INTERRUPT_MITIGATION_CONTROL
, val
);
78 /* prepare descriptors and data for receive and transmit processes */
79 if (dc_init_descriptor_list(sc
) != 0)
82 /* clear ethernet interrupts status */
83 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_STATUS
, 0xFFFFFFFF);
85 /* SIA mode registers */
86 dc_set_output_port(sc
);
89 void dc_start(struct channel
*sc
)
93 if (!(sc
->r
.flags
& SBE_2T3E3_FLAG_NETWORK_UP
))
98 /* get actual LOS and OOF status */
99 switch (sc
->p
.frame_type
) {
100 case SBE_2T3E3_FRAME_TYPE_E3_G751
:
101 case SBE_2T3E3_FRAME_TYPE_E3_G832
:
102 val
= exar7250_read(sc
, SBE_2T3E3_FRAMER_REG_E3_RX_CONFIGURATION_STATUS_2
);
103 dev_dbg(&sc
->pdev
->dev
, "Start Framer Rx Status = %02X\n", val
);
104 sc
->s
.OOF
= val
& SBE_2T3E3_FRAMER_VAL_E3_RX_OOF
? 1 : 0;
106 case SBE_2T3E3_FRAME_TYPE_T3_CBIT
:
107 case SBE_2T3E3_FRAME_TYPE_T3_M13
:
108 val
= exar7250_read(sc
, SBE_2T3E3_FRAMER_REG_T3_RX_CONFIGURATION_STATUS
);
109 dev_dbg(&sc
->pdev
->dev
, "Start Framer Rx Status = %02X\n", val
);
110 sc
->s
.OOF
= val
& SBE_2T3E3_FRAMER_VAL_T3_RX_OOF
? 1 : 0;
117 /* start receive and transmit processes */
118 dc_transmitter_onoff(sc
, SBE_2T3E3_ON
);
119 dc_receiver_onoff(sc
, SBE_2T3E3_ON
);
121 /* start interrupts */
125 #define MAX_INT_WAIT_CNT 12000
126 void dc_stop(struct channel
*sc
)
130 /* stop receive and transmit processes */
131 dc_receiver_onoff(sc
, SBE_2T3E3_OFF
);
132 dc_transmitter_onoff(sc
, SBE_2T3E3_OFF
);
134 /* turn off ethernet interrupts */
137 /* wait to ensure the interrupts have been completed */
138 for (wcnt
= 0; wcnt
< MAX_INT_WAIT_CNT
; wcnt
++) {
140 if (!sc
->interrupt_active
)
143 if (wcnt
>= MAX_INT_WAIT_CNT
)
144 dev_warn(&sc
->pdev
->dev
, "SBE 2T3E3: Interrupt active too long\n");
146 /* clear all receive/transmit data */
147 dc_drop_descriptor_list(sc
);
150 void dc_start_intr(struct channel
*sc
)
152 if (sc
->p
.loopback
== SBE_2T3E3_LOOPBACK_NONE
&& sc
->s
.OOF
)
155 if (sc
->p
.receiver_on
|| sc
->p
.transmitter_on
) {
156 if (!sc
->ether
.interrupt_enable_mask
)
157 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_STATUS
, 0xFFFFFFFF);
159 sc
->ether
.interrupt_enable_mask
=
160 SBE_2T3E3_21143_VAL_NORMAL_INTERRUPT_SUMMARY_ENABLE
|
161 SBE_2T3E3_21143_VAL_ABNORMAL_INTERRUPT_SUMMARY_ENABLE
|
162 SBE_2T3E3_21143_VAL_RECEIVE_STOPPED_ENABLE
|
163 SBE_2T3E3_21143_VAL_RECEIVE_BUFFER_UNAVAILABLE_ENABLE
|
164 SBE_2T3E3_21143_VAL_RECEIVE_INTERRUPT_ENABLE
|
165 SBE_2T3E3_21143_VAL_TRANSMIT_UNDERFLOW_INTERRUPT_ENABLE
|
166 SBE_2T3E3_21143_VAL_TRANSMIT_BUFFER_UNAVAILABLE_ENABLE
|
167 SBE_2T3E3_21143_VAL_TRANSMIT_STOPPED_ENABLE
|
168 SBE_2T3E3_21143_VAL_TRANSMIT_INTERRUPT_ENABLE
;
170 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_INTERRUPT_ENABLE
,
171 sc
->ether
.interrupt_enable_mask
);
175 void dc_stop_intr(struct channel
*sc
)
177 sc
->ether
.interrupt_enable_mask
= 0;
178 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_INTERRUPT_ENABLE
, 0);
181 void dc_reset(struct channel
*sc
)
183 /* turn off ethernet interrupts */
184 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_INTERRUPT_ENABLE
, 0);
185 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_STATUS
, 0xFFFFFFFF);
188 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_BUS_MODE
,
189 SBE_2T3E3_21143_VAL_SOFTWARE_RESET
);
190 udelay(4); /* 50 PCI cycles < 2us */
192 /* clear hardware configuration */
193 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_BUS_MODE
, 0);
195 /* clear software configuration */
196 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
, 0);
198 /* turn off SIA reset */
199 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_SIA_CONNECTIVITY
,
200 SBE_2T3E3_21143_VAL_SIA_RESET
);
201 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_TRANSMIT_AND_RECEIVE
, 0);
202 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_AND_GENERAL_PURPOSE_PORT
, 0);
206 void dc_receiver_onoff(struct channel
*sc
, u32 mode
)
210 if (sc
->p
.receiver_on
== mode
)
215 if (dc_read(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
) &
216 SBE_2T3E3_21143_VAL_RECEIVE_START
) {
217 dc_clear_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
218 SBE_2T3E3_21143_VAL_RECEIVE_START
);
220 for (i
= 0; i
< 16; i
++) {
221 state
= dc_read(sc
->addr
, SBE_2T3E3_21143_REG_STATUS
) &
222 SBE_2T3E3_21143_VAL_RECEIVE_PROCESS_STATE
;
223 if (state
== SBE_2T3E3_21143_VAL_RX_STOPPED
)
227 if (state
!= SBE_2T3E3_21143_VAL_RX_STOPPED
)
228 dev_warn(&sc
->pdev
->dev
, "SBE 2T3E3: Rx failed to stop\n");
230 dev_info(&sc
->pdev
->dev
, "SBE 2T3E3: Rx off\n");
234 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
235 SBE_2T3E3_21143_VAL_RECEIVE_START
);
237 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_RECEIVE_POLL_DEMAND
, 0xFFFFFFFF);
243 sc
->p
.receiver_on
= mode
;
246 void dc_transmitter_onoff(struct channel
*sc
, u32 mode
)
250 if (sc
->p
.transmitter_on
== mode
)
255 if (dc_read(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
) &
256 SBE_2T3E3_21143_VAL_TRANSMISSION_START
) {
257 dc_clear_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
258 SBE_2T3E3_21143_VAL_TRANSMISSION_START
);
260 for (i
= 0; i
< 16; i
++) {
261 state
= dc_read(sc
->addr
, SBE_2T3E3_21143_REG_STATUS
) &
262 SBE_2T3E3_21143_VAL_TRANSMISSION_PROCESS_STATE
;
263 if (state
== SBE_2T3E3_21143_VAL_TX_STOPPED
)
267 if (state
!= SBE_2T3E3_21143_VAL_TX_STOPPED
)
268 dev_warn(&sc
->pdev
->dev
, "SBE 2T3E3: Tx failed to stop\n");
272 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
273 SBE_2T3E3_21143_VAL_TRANSMISSION_START
);
275 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_TRANSMIT_POLL_DEMAND
, 0xFFFFFFFF);
281 sc
->p
.transmitter_on
= mode
;
286 void dc_set_loopback(struct channel
*sc
, u32 mode
)
291 case SBE_2T3E3_21143_VAL_LOOPBACK_OFF
:
292 case SBE_2T3E3_21143_VAL_LOOPBACK_INTERNAL
:
298 /* select loopback mode */
299 val
= dc_read(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
) &
300 ~SBE_2T3E3_21143_VAL_OPERATING_MODE
;
302 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
, val
);
304 if (mode
== SBE_2T3E3_21143_VAL_LOOPBACK_OFF
)
305 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
306 SBE_2T3E3_21143_VAL_FULL_DUPLEX_MODE
);
308 dc_clear_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
309 SBE_2T3E3_21143_VAL_FULL_DUPLEX_MODE
);
312 static int dc_init_descriptor_list(struct channel
*sc
)
317 if (sc
->ether
.rx_ring
== NULL
)
318 sc
->ether
.rx_ring
= kcalloc(SBE_2T3E3_RX_DESC_RING_SIZE
,
319 sizeof(struct t3e3_rx_desc
), GFP_KERNEL
);
320 if (sc
->ether
.rx_ring
== NULL
)
323 if (sc
->ether
.tx_ring
== NULL
)
324 sc
->ether
.tx_ring
= kcalloc(SBE_2T3E3_TX_DESC_RING_SIZE
,
325 sizeof(struct t3e3_tx_desc
), GFP_KERNEL
);
326 if (sc
->ether
.tx_ring
== NULL
) {
327 kfree(sc
->ether
.rx_ring
);
328 sc
->ether
.rx_ring
= NULL
;
336 for (i
= 0; i
< SBE_2T3E3_RX_DESC_RING_SIZE
; i
++) {
337 sc
->ether
.rx_ring
[i
].rdes0
= SBE_2T3E3_RX_DESC_21143_OWN
;
338 sc
->ether
.rx_ring
[i
].rdes1
=
339 SBE_2T3E3_RX_DESC_SECOND_ADDRESS_CHAINED
| SBE_2T3E3_MTU
;
341 if (sc
->ether
.rx_data
[i
] == NULL
) {
342 m
= dev_alloc_skb(MCLBYTES
);
344 for (j
= 0; j
< i
; j
++) {
345 dev_kfree_skb_any(sc
->ether
.rx_data
[j
]);
346 sc
->ether
.rx_data
[j
] = NULL
;
348 kfree(sc
->ether
.rx_ring
);
349 sc
->ether
.rx_ring
= NULL
;
350 kfree(sc
->ether
.tx_ring
);
351 sc
->ether
.tx_ring
= NULL
;
352 dev_err(&sc
->pdev
->dev
, "SBE 2T3E3: token_alloc err:"
353 " no buffer space for RX ring\n");
356 sc
->ether
.rx_data
[i
] = m
;
358 sc
->ether
.rx_ring
[i
].rdes2
= virt_to_phys(sc
->ether
.rx_data
[i
]->data
);
360 sc
->ether
.rx_ring
[i
].rdes3
= virt_to_phys(
361 &sc
->ether
.rx_ring
[(i
+ 1) % SBE_2T3E3_RX_DESC_RING_SIZE
]);
363 sc
->ether
.rx_ring
[SBE_2T3E3_RX_DESC_RING_SIZE
- 1].rdes1
|=
364 SBE_2T3E3_RX_DESC_END_OF_RING
;
365 sc
->ether
.rx_ring_current_read
= 0;
367 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_RECEIVE_LIST_BASE_ADDRESS
,
368 virt_to_phys(&sc
->ether
.rx_ring
[0]));
373 for (i
= 0; i
< SBE_2T3E3_TX_DESC_RING_SIZE
; i
++) {
374 sc
->ether
.tx_ring
[i
].tdes0
= 0;
375 sc
->ether
.tx_ring
[i
].tdes1
= SBE_2T3E3_TX_DESC_SECOND_ADDRESS_CHAINED
|
376 SBE_2T3E3_TX_DESC_DISABLE_PADDING
;
378 sc
->ether
.tx_ring
[i
].tdes2
= 0;
379 sc
->ether
.tx_data
[i
] = NULL
;
381 sc
->ether
.tx_ring
[i
].tdes3
= virt_to_phys(
382 &sc
->ether
.tx_ring
[(i
+ 1) % SBE_2T3E3_TX_DESC_RING_SIZE
]);
384 sc
->ether
.tx_ring
[SBE_2T3E3_TX_DESC_RING_SIZE
- 1].tdes1
|=
385 SBE_2T3E3_TX_DESC_END_OF_RING
;
387 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_TRANSMIT_LIST_BASE_ADDRESS
,
388 virt_to_phys(&sc
->ether
.tx_ring
[0]));
389 sc
->ether
.tx_ring_current_read
= 0;
390 sc
->ether
.tx_ring_current_write
= 0;
391 sc
->ether
.tx_free_cnt
= SBE_2T3E3_TX_DESC_RING_SIZE
;
392 spin_lock_init(&sc
->ether
.tx_lock
);
397 void dc_clear_descriptor_list(struct channel
*sc
)
401 /* clear CSR3 and CSR4 */
402 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_RECEIVE_LIST_BASE_ADDRESS
, 0);
403 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_TRANSMIT_LIST_BASE_ADDRESS
, 0);
405 /* free all data buffers on TX ring */
406 for (i
= 0; i
< SBE_2T3E3_TX_DESC_RING_SIZE
; i
++) {
407 if (sc
->ether
.tx_data
[i
] != NULL
) {
408 dev_kfree_skb_any(sc
->ether
.tx_data
[i
]);
409 sc
->ether
.tx_data
[i
] = NULL
;
414 void dc_drop_descriptor_list(struct channel
*sc
)
418 dc_clear_descriptor_list(sc
);
420 /* free all data buffers on RX ring */
421 for (i
= 0; i
< SBE_2T3E3_RX_DESC_RING_SIZE
; i
++) {
422 if (sc
->ether
.rx_data
[i
] != NULL
) {
423 dev_kfree_skb_any(sc
->ether
.rx_data
[i
]);
424 sc
->ether
.rx_data
[i
] = NULL
;
428 kfree(sc
->ether
.rx_ring
);
429 sc
->ether
.rx_ring
= NULL
;
430 kfree(sc
->ether
.tx_ring
);
431 sc
->ether
.tx_ring
= NULL
;
435 void dc_set_output_port(struct channel
*sc
)
437 dc_clear_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
438 SBE_2T3E3_21143_VAL_PORT_SELECT
);
440 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_STATUS
, 0x00000301);
441 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_CONNECTIVITY
, 0);
442 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_TRANSMIT_AND_RECEIVE
, 0);
443 dc_write(sc
->addr
, SBE_2T3E3_21143_REG_SIA_AND_GENERAL_PURPOSE_PORT
, 0x08000011);
445 dc_set_bits(sc
->addr
, SBE_2T3E3_21143_REG_OPERATION_MODE
,
446 SBE_2T3E3_21143_VAL_TRANSMIT_THRESHOLD_MODE_100Mbs
|
447 SBE_2T3E3_21143_VAL_HEARTBEAT_DISABLE
|
448 SBE_2T3E3_21143_VAL_PORT_SELECT
|
449 SBE_2T3E3_21143_VAL_FULL_DUPLEX_MODE
);
452 void dc_restart(struct channel
*sc
)
454 dev_warn(&sc
->pdev
->dev
, "SBE 2T3E3: 21143 restart\n");
458 dc_init(sc
); /* stop + reset + init */