1 /* Freescale QUICC Engine HDLC Device Driver
3 * Copyright 2016 Freescale Semiconductor Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
11 #include <linux/delay.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/hdlc.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/netdevice.h>
21 #include <linux/of_address.h>
22 #include <linux/of_irq.h>
23 #include <linux/of_platform.h>
24 #include <linux/platform_device.h>
25 #include <linux/sched.h>
26 #include <linux/skbuff.h>
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29 #include <linux/stddef.h>
30 #include <soc/fsl/qe/qe_tdm.h>
31 #include <uapi/linux/if_arp.h>
33 #include "fsl_ucc_hdlc.h"
35 #define DRV_DESC "Freescale QE UCC HDLC Driver"
36 #define DRV_NAME "ucc_hdlc"
38 #define TDM_PPPOHT_SLIC_MAXIN
40 static struct ucc_tdm_info utdm_primary_info
= {
55 .mode
= UCC_FAST_PROTOCOL_MODE_HDLC
,
56 .ttx_trx
= UCC_FAST_GUMR_TRANSPARENT_TTX_TRX_NORMAL
,
57 .tenc
= UCC_FAST_TX_ENCODING_NRZ
,
58 .renc
= UCC_FAST_RX_ENCODING_NRZ
,
59 .tcrc
= UCC_FAST_16_BIT_CRC
,
60 .synl
= UCC_FAST_SYNC_LEN_NOT_USED
,
64 #ifdef TDM_PPPOHT_SLIC_MAXIN
79 static struct ucc_tdm_info utdm_info
[MAX_HDLC_NUM
];
81 static int uhdlc_init(struct ucc_hdlc_private
*priv
)
83 struct ucc_tdm_info
*ut_info
;
84 struct ucc_fast_info
*uf_info
;
89 dma_addr_t bd_dma_addr
;
94 ut_info
= priv
->ut_info
;
95 uf_info
= &ut_info
->uf_info
;
102 /* This sets HPM register in CMXUCR register which configures a
103 * open drain connected HDLC bus
106 uf_info
->brkpt_support
= 1;
108 uf_info
->uccm_mask
= ((UCC_HDLC_UCCE_RXB
| UCC_HDLC_UCCE_RXF
|
109 UCC_HDLC_UCCE_TXB
) << 16);
111 ret
= ucc_fast_init(uf_info
, &priv
->uccf
);
113 dev_err(priv
->dev
, "Failed to init uccf.");
117 priv
->uf_regs
= priv
->uccf
->uf_regs
;
118 ucc_fast_disable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
121 if (priv
->loopback
) {
122 dev_info(priv
->dev
, "Loopback Mode\n");
123 /* use the same clock when work in loopback */
124 qe_setbrg(ut_info
->uf_info
.rx_clock
, 20000000, 1);
126 gumr
= ioread32be(&priv
->uf_regs
->gumr
);
127 gumr
|= (UCC_FAST_GUMR_LOOPBACK
| UCC_FAST_GUMR_CDS
|
129 gumr
&= ~(UCC_FAST_GUMR_CTSP
| UCC_FAST_GUMR_RSYN
);
130 iowrite32be(gumr
, &priv
->uf_regs
->gumr
);
135 ucc_tdm_init(priv
->utdm
, priv
->ut_info
);
137 /* Write to QE CECR, UCCx channel to Stop Transmission */
138 cecr_subblock
= ucc_fast_get_qe_cr_subblock(uf_info
->ucc_num
);
139 ret
= qe_issue_cmd(QE_STOP_TX
, cecr_subblock
,
140 QE_CR_PROTOCOL_UNSPECIFIED
, 0);
142 /* Set UPSMR normal mode (need fixed)*/
143 iowrite32be(0, &priv
->uf_regs
->upsmr
);
146 if (priv
->hdlc_bus
) {
149 dev_info(priv
->dev
, "HDLC bus Mode\n");
150 upsmr
= ioread32be(&priv
->uf_regs
->upsmr
);
152 /* bus mode and retransmit enable, with collision window
155 upsmr
|= UCC_HDLC_UPSMR_RTE
| UCC_HDLC_UPSMR_BUS
|
157 iowrite32be(upsmr
, &priv
->uf_regs
->upsmr
);
159 /* explicitly disable CDS & CTSP */
160 gumr
= ioread32be(&priv
->uf_regs
->gumr
);
161 gumr
&= ~(UCC_FAST_GUMR_CDS
| UCC_FAST_GUMR_CTSP
);
162 /* set automatic sync to explicitly ignore CD signal */
163 gumr
|= UCC_FAST_GUMR_SYNL_AUTO
;
164 iowrite32be(gumr
, &priv
->uf_regs
->gumr
);
167 priv
->rx_ring_size
= RX_BD_RING_LEN
;
168 priv
->tx_ring_size
= TX_BD_RING_LEN
;
170 priv
->rx_bd_base
= dma_alloc_coherent(priv
->dev
,
171 RX_BD_RING_LEN
* sizeof(struct qe_bd
),
172 &priv
->dma_rx_bd
, GFP_KERNEL
);
174 if (!priv
->rx_bd_base
) {
175 dev_err(priv
->dev
, "Cannot allocate MURAM memory for RxBDs\n");
181 priv
->tx_bd_base
= dma_alloc_coherent(priv
->dev
,
182 TX_BD_RING_LEN
* sizeof(struct qe_bd
),
183 &priv
->dma_tx_bd
, GFP_KERNEL
);
185 if (!priv
->tx_bd_base
) {
186 dev_err(priv
->dev
, "Cannot allocate MURAM memory for TxBDs\n");
191 /* Alloc parameter ram for ucc hdlc */
192 priv
->ucc_pram_offset
= qe_muram_alloc(sizeof(struct ucc_hdlc_param
),
193 ALIGNMENT_OF_UCC_HDLC_PRAM
);
195 if (priv
->ucc_pram_offset
< 0) {
196 dev_err(priv
->dev
, "Can not allocate MURAM for hdlc parameter.\n");
201 priv
->rx_skbuff
= kcalloc(priv
->rx_ring_size
,
202 sizeof(*priv
->rx_skbuff
),
204 if (!priv
->rx_skbuff
)
207 priv
->tx_skbuff
= kcalloc(priv
->tx_ring_size
,
208 sizeof(*priv
->tx_skbuff
),
210 if (!priv
->tx_skbuff
)
214 priv
->skb_dirtytx
= 0;
215 priv
->curtx_bd
= priv
->tx_bd_base
;
216 priv
->dirty_tx
= priv
->tx_bd_base
;
217 priv
->currx_bd
= priv
->rx_bd_base
;
218 priv
->currx_bdnum
= 0;
220 /* init parameter base */
221 cecr_subblock
= ucc_fast_get_qe_cr_subblock(uf_info
->ucc_num
);
222 ret
= qe_issue_cmd(QE_ASSIGN_PAGE_TO_DEVICE
, cecr_subblock
,
223 QE_CR_PROTOCOL_UNSPECIFIED
, priv
->ucc_pram_offset
);
225 priv
->ucc_pram
= (struct ucc_hdlc_param __iomem
*)
226 qe_muram_addr(priv
->ucc_pram_offset
);
228 /* Zero out parameter ram */
229 memset_io(priv
->ucc_pram
, 0, sizeof(struct ucc_hdlc_param
));
231 /* Alloc riptr, tiptr */
232 riptr
= qe_muram_alloc(32, 32);
234 dev_err(priv
->dev
, "Cannot allocate MURAM mem for Receive internal temp data pointer\n");
239 tiptr
= qe_muram_alloc(32, 32);
241 dev_err(priv
->dev
, "Cannot allocate MURAM mem for Transmit internal temp data pointer\n");
246 /* Set RIPTR, TIPTR */
247 iowrite16be(riptr
, &priv
->ucc_pram
->riptr
);
248 iowrite16be(tiptr
, &priv
->ucc_pram
->tiptr
);
251 iowrite16be(MAX_RX_BUF_LENGTH
, &priv
->ucc_pram
->mrblr
);
253 /* Set RBASE, TBASE */
254 iowrite32be(priv
->dma_rx_bd
, &priv
->ucc_pram
->rbase
);
255 iowrite32be(priv
->dma_tx_bd
, &priv
->ucc_pram
->tbase
);
257 /* Set RSTATE, TSTATE */
258 iowrite32be(BMR_GBL
| BMR_BIG_ENDIAN
, &priv
->ucc_pram
->rstate
);
259 iowrite32be(BMR_GBL
| BMR_BIG_ENDIAN
, &priv
->ucc_pram
->tstate
);
261 /* Set C_MASK, C_PRES for 16bit CRC */
262 iowrite32be(CRC_16BIT_MASK
, &priv
->ucc_pram
->c_mask
);
263 iowrite32be(CRC_16BIT_PRES
, &priv
->ucc_pram
->c_pres
);
265 iowrite16be(MAX_FRAME_LENGTH
, &priv
->ucc_pram
->mflr
);
266 iowrite16be(DEFAULT_RFTHR
, &priv
->ucc_pram
->rfthr
);
267 iowrite16be(DEFAULT_RFTHR
, &priv
->ucc_pram
->rfcnt
);
268 iowrite16be(DEFAULT_ADDR_MASK
, &priv
->ucc_pram
->hmask
);
269 iowrite16be(DEFAULT_HDLC_ADDR
, &priv
->ucc_pram
->haddr1
);
270 iowrite16be(DEFAULT_HDLC_ADDR
, &priv
->ucc_pram
->haddr2
);
271 iowrite16be(DEFAULT_HDLC_ADDR
, &priv
->ucc_pram
->haddr3
);
272 iowrite16be(DEFAULT_HDLC_ADDR
, &priv
->ucc_pram
->haddr4
);
275 bd_buffer
= dma_zalloc_coherent(priv
->dev
,
276 (RX_BD_RING_LEN
+ TX_BD_RING_LEN
) *
278 &bd_dma_addr
, GFP_KERNEL
);
281 dev_err(priv
->dev
, "Could not allocate buffer descriptors\n");
286 priv
->rx_buffer
= bd_buffer
;
287 priv
->tx_buffer
= bd_buffer
+ RX_BD_RING_LEN
* MAX_RX_BUF_LENGTH
;
289 priv
->dma_rx_addr
= bd_dma_addr
;
290 priv
->dma_tx_addr
= bd_dma_addr
+ RX_BD_RING_LEN
* MAX_RX_BUF_LENGTH
;
292 for (i
= 0; i
< RX_BD_RING_LEN
; i
++) {
293 if (i
< (RX_BD_RING_LEN
- 1))
294 bd_status
= R_E_S
| R_I_S
;
296 bd_status
= R_E_S
| R_I_S
| R_W_S
;
298 iowrite16be(bd_status
, &priv
->rx_bd_base
[i
].status
);
299 iowrite32be(priv
->dma_rx_addr
+ i
* MAX_RX_BUF_LENGTH
,
300 &priv
->rx_bd_base
[i
].buf
);
303 for (i
= 0; i
< TX_BD_RING_LEN
; i
++) {
304 if (i
< (TX_BD_RING_LEN
- 1))
305 bd_status
= T_I_S
| T_TC_S
;
307 bd_status
= T_I_S
| T_TC_S
| T_W_S
;
309 iowrite16be(bd_status
, &priv
->tx_bd_base
[i
].status
);
310 iowrite32be(priv
->dma_tx_addr
+ i
* MAX_RX_BUF_LENGTH
,
311 &priv
->tx_bd_base
[i
].buf
);
317 qe_muram_free(tiptr
);
319 qe_muram_free(riptr
);
321 kfree(priv
->tx_skbuff
);
323 kfree(priv
->rx_skbuff
);
325 qe_muram_free(priv
->ucc_pram_offset
);
327 dma_free_coherent(priv
->dev
,
328 TX_BD_RING_LEN
* sizeof(struct qe_bd
),
329 priv
->tx_bd_base
, priv
->dma_tx_bd
);
331 dma_free_coherent(priv
->dev
,
332 RX_BD_RING_LEN
* sizeof(struct qe_bd
),
333 priv
->rx_bd_base
, priv
->dma_rx_bd
);
335 ucc_fast_free(priv
->uccf
);
340 static netdev_tx_t
ucc_hdlc_tx(struct sk_buff
*skb
, struct net_device
*dev
)
342 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
343 struct ucc_hdlc_private
*priv
= (struct ucc_hdlc_private
*)hdlc
->priv
;
344 struct qe_bd __iomem
*bd
;
351 if (skb_headroom(skb
) < HDLC_HEAD_LEN
) {
352 dev
->stats
.tx_dropped
++;
354 netdev_err(dev
, "No enough space for hdlc head\n");
358 skb_push(skb
, HDLC_HEAD_LEN
);
360 proto_head
= (u16
*)skb
->data
;
361 *proto_head
= htons(DEFAULT_HDLC_HEAD
);
363 dev
->stats
.tx_bytes
+= skb
->len
;
367 proto_head
= (u16
*)skb
->data
;
368 if (*proto_head
!= htons(DEFAULT_PPP_HEAD
)) {
369 dev
->stats
.tx_dropped
++;
371 netdev_err(dev
, "Wrong ppp header\n");
375 dev
->stats
.tx_bytes
+= skb
->len
;
379 dev
->stats
.tx_dropped
++;
383 spin_lock_irqsave(&priv
->lock
, flags
);
385 /* Start from the next BD that should be filled */
387 bd_status
= ioread16be(&bd
->status
);
388 /* Save the skb pointer so we can free it later */
389 priv
->tx_skbuff
[priv
->skb_curtx
] = skb
;
391 /* Update the current skb pointer (wrapping if this was the last) */
393 (priv
->skb_curtx
+ 1) & TX_RING_MOD_MASK(TX_BD_RING_LEN
);
395 /* copy skb data to tx buffer for sdma processing */
396 memcpy(priv
->tx_buffer
+ (be32_to_cpu(bd
->buf
) - priv
->dma_tx_addr
),
397 skb
->data
, skb
->len
);
399 /* set bd status and length */
400 bd_status
= (bd_status
& T_W_S
) | T_R_S
| T_I_S
| T_L_S
| T_TC_S
;
402 iowrite16be(skb
->len
, &bd
->length
);
403 iowrite16be(bd_status
, &bd
->status
);
405 /* Move to next BD in the ring */
406 if (!(bd_status
& T_W_S
))
409 bd
= priv
->tx_bd_base
;
411 if (bd
== priv
->dirty_tx
) {
412 if (!netif_queue_stopped(dev
))
413 netif_stop_queue(dev
);
418 spin_unlock_irqrestore(&priv
->lock
, flags
);
423 static int hdlc_tx_done(struct ucc_hdlc_private
*priv
)
425 /* Start from the next BD that should be filled */
426 struct net_device
*dev
= priv
->ndev
;
427 struct qe_bd
*bd
; /* BD pointer */
431 bd_status
= ioread16be(&bd
->status
);
433 /* Normal processing. */
434 while ((bd_status
& T_R_S
) == 0) {
437 /* BD contains already transmitted buffer. */
438 /* Handle the transmitted buffer and release */
439 /* the BD to be used with the current frame */
441 skb
= priv
->tx_skbuff
[priv
->skb_dirtytx
];
444 dev
->stats
.tx_packets
++;
445 memset(priv
->tx_buffer
+
446 (be32_to_cpu(bd
->buf
) - priv
->dma_tx_addr
),
448 dev_kfree_skb_irq(skb
);
450 priv
->tx_skbuff
[priv
->skb_dirtytx
] = NULL
;
453 1) & TX_RING_MOD_MASK(TX_BD_RING_LEN
);
455 /* We freed a buffer, so now we can restart transmission */
456 if (netif_queue_stopped(dev
))
457 netif_wake_queue(dev
);
459 /* Advance the confirmation BD pointer */
460 if (!(bd_status
& T_W_S
))
463 bd
= priv
->tx_bd_base
;
464 bd_status
= ioread16be(&bd
->status
);
471 static int hdlc_rx_done(struct ucc_hdlc_private
*priv
, int rx_work_limit
)
473 struct net_device
*dev
= priv
->ndev
;
474 struct sk_buff
*skb
= NULL
;
475 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
478 u16 length
, howmany
= 0;
482 bd_status
= ioread16be(&bd
->status
);
484 /* while there are received buffers and BD is full (~R_E) */
485 while (!((bd_status
& (R_E_S
)) || (--rx_work_limit
< 0))) {
486 if (bd_status
& R_OV_S
)
487 dev
->stats
.rx_over_errors
++;
488 if (bd_status
& R_CR_S
) {
489 dev
->stats
.rx_crc_errors
++;
490 dev
->stats
.rx_dropped
++;
493 bdbuffer
= priv
->rx_buffer
+
494 (priv
->currx_bdnum
* MAX_RX_BUF_LENGTH
);
495 length
= ioread16be(&bd
->length
);
499 bdbuffer
+= HDLC_HEAD_LEN
;
500 length
-= (HDLC_HEAD_LEN
+ HDLC_CRC_SIZE
);
502 skb
= dev_alloc_skb(length
);
504 dev
->stats
.rx_dropped
++;
508 skb_put(skb
, length
);
511 memcpy(skb
->data
, bdbuffer
, length
);
515 length
-= HDLC_CRC_SIZE
;
517 skb
= dev_alloc_skb(length
);
519 dev
->stats
.rx_dropped
++;
523 skb_put(skb
, length
);
526 memcpy(skb
->data
, bdbuffer
, length
);
530 dev
->stats
.rx_packets
++;
531 dev
->stats
.rx_bytes
+= skb
->len
;
534 skb
->protocol
= hdlc_type_trans(skb
, dev
);
535 netif_receive_skb(skb
);
538 iowrite16be(bd_status
| R_E_S
| R_I_S
, &bd
->status
);
540 /* update to point at the next bd */
541 if (bd_status
& R_W_S
) {
542 priv
->currx_bdnum
= 0;
543 bd
= priv
->rx_bd_base
;
545 if (priv
->currx_bdnum
< (RX_BD_RING_LEN
- 1))
546 priv
->currx_bdnum
+= 1;
548 priv
->currx_bdnum
= RX_BD_RING_LEN
- 1;
553 bd_status
= ioread16be(&bd
->status
);
560 static int ucc_hdlc_poll(struct napi_struct
*napi
, int budget
)
562 struct ucc_hdlc_private
*priv
= container_of(napi
,
563 struct ucc_hdlc_private
,
567 /* Tx event processing */
568 spin_lock(&priv
->lock
);
570 spin_unlock(&priv
->lock
);
573 howmany
+= hdlc_rx_done(priv
, budget
- howmany
);
575 if (howmany
< budget
) {
576 napi_complete_done(napi
, howmany
);
577 qe_setbits32(priv
->uccf
->p_uccm
,
578 (UCCE_HDLC_RX_EVENTS
| UCCE_HDLC_TX_EVENTS
) << 16);
584 static irqreturn_t
ucc_hdlc_irq_handler(int irq
, void *dev_id
)
586 struct ucc_hdlc_private
*priv
= (struct ucc_hdlc_private
*)dev_id
;
587 struct net_device
*dev
= priv
->ndev
;
588 struct ucc_fast_private
*uccf
;
589 struct ucc_tdm_info
*ut_info
;
593 ut_info
= priv
->ut_info
;
596 ucce
= ioread32be(uccf
->p_ucce
);
597 uccm
= ioread32be(uccf
->p_uccm
);
599 iowrite32be(ucce
, uccf
->p_ucce
);
603 if ((ucce
>> 16) & (UCCE_HDLC_RX_EVENTS
| UCCE_HDLC_TX_EVENTS
)) {
604 if (napi_schedule_prep(&priv
->napi
)) {
605 uccm
&= ~((UCCE_HDLC_RX_EVENTS
| UCCE_HDLC_TX_EVENTS
)
607 iowrite32be(uccm
, uccf
->p_uccm
);
608 __napi_schedule(&priv
->napi
);
612 /* Errors and other events */
613 if (ucce
>> 16 & UCC_HDLC_UCCE_BSY
)
614 dev
->stats
.rx_errors
++;
615 if (ucce
>> 16 & UCC_HDLC_UCCE_TXE
)
616 dev
->stats
.tx_errors
++;
621 static int uhdlc_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
623 const size_t size
= sizeof(te1_settings
);
625 struct ucc_hdlc_private
*priv
= netdev_priv(dev
);
627 if (cmd
!= SIOCWANDEV
)
628 return hdlc_ioctl(dev
, ifr
, cmd
);
630 switch (ifr
->ifr_settings
.type
) {
632 ifr
->ifr_settings
.type
= IF_IFACE_E1
;
633 if (ifr
->ifr_settings
.size
< size
) {
634 ifr
->ifr_settings
.size
= size
; /* data size wanted */
637 memset(&line
, 0, sizeof(line
));
638 line
.clock_type
= priv
->clocking
;
640 if (copy_to_user(ifr
->ifr_settings
.ifs_ifsu
.sync
, &line
, size
))
645 return hdlc_ioctl(dev
, ifr
, cmd
);
649 static int uhdlc_open(struct net_device
*dev
)
652 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
653 struct ucc_hdlc_private
*priv
= hdlc
->priv
;
654 struct ucc_tdm
*utdm
= priv
->utdm
;
656 if (priv
->hdlc_busy
!= 1) {
657 if (request_irq(priv
->ut_info
->uf_info
.irq
,
658 ucc_hdlc_irq_handler
, 0, "hdlc", priv
))
661 cecr_subblock
= ucc_fast_get_qe_cr_subblock(
662 priv
->ut_info
->uf_info
.ucc_num
);
664 qe_issue_cmd(QE_INIT_TX_RX
, cecr_subblock
,
665 QE_CR_PROTOCOL_UNSPECIFIED
, 0);
667 ucc_fast_enable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
669 /* Enable the TDM port */
671 utdm
->si_regs
->siglmr1_h
|= (0x1 << utdm
->tdm_port
);
674 netif_device_attach(priv
->ndev
);
675 napi_enable(&priv
->napi
);
676 netif_start_queue(dev
);
683 static void uhdlc_memclean(struct ucc_hdlc_private
*priv
)
685 qe_muram_free(priv
->ucc_pram
->riptr
);
686 qe_muram_free(priv
->ucc_pram
->tiptr
);
688 if (priv
->rx_bd_base
) {
689 dma_free_coherent(priv
->dev
,
690 RX_BD_RING_LEN
* sizeof(struct qe_bd
),
691 priv
->rx_bd_base
, priv
->dma_rx_bd
);
693 priv
->rx_bd_base
= NULL
;
697 if (priv
->tx_bd_base
) {
698 dma_free_coherent(priv
->dev
,
699 TX_BD_RING_LEN
* sizeof(struct qe_bd
),
700 priv
->tx_bd_base
, priv
->dma_tx_bd
);
702 priv
->tx_bd_base
= NULL
;
706 if (priv
->ucc_pram
) {
707 qe_muram_free(priv
->ucc_pram_offset
);
708 priv
->ucc_pram
= NULL
;
709 priv
->ucc_pram_offset
= 0;
712 kfree(priv
->rx_skbuff
);
713 priv
->rx_skbuff
= NULL
;
715 kfree(priv
->tx_skbuff
);
716 priv
->tx_skbuff
= NULL
;
719 iounmap(priv
->uf_regs
);
720 priv
->uf_regs
= NULL
;
724 ucc_fast_free(priv
->uccf
);
728 if (priv
->rx_buffer
) {
729 dma_free_coherent(priv
->dev
,
730 RX_BD_RING_LEN
* MAX_RX_BUF_LENGTH
,
731 priv
->rx_buffer
, priv
->dma_rx_addr
);
732 priv
->rx_buffer
= NULL
;
733 priv
->dma_rx_addr
= 0;
736 if (priv
->tx_buffer
) {
737 dma_free_coherent(priv
->dev
,
738 TX_BD_RING_LEN
* MAX_RX_BUF_LENGTH
,
739 priv
->tx_buffer
, priv
->dma_tx_addr
);
740 priv
->tx_buffer
= NULL
;
741 priv
->dma_tx_addr
= 0;
745 static int uhdlc_close(struct net_device
*dev
)
747 struct ucc_hdlc_private
*priv
= dev_to_hdlc(dev
)->priv
;
748 struct ucc_tdm
*utdm
= priv
->utdm
;
751 napi_disable(&priv
->napi
);
752 cecr_subblock
= ucc_fast_get_qe_cr_subblock(
753 priv
->ut_info
->uf_info
.ucc_num
);
755 qe_issue_cmd(QE_GRACEFUL_STOP_TX
, cecr_subblock
,
756 (u8
)QE_CR_PROTOCOL_UNSPECIFIED
, 0);
757 qe_issue_cmd(QE_CLOSE_RX_BD
, cecr_subblock
,
758 (u8
)QE_CR_PROTOCOL_UNSPECIFIED
, 0);
761 utdm
->si_regs
->siglmr1_h
&= ~(0x1 << utdm
->tdm_port
);
763 ucc_fast_disable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
765 free_irq(priv
->ut_info
->uf_info
.irq
, priv
);
766 netif_stop_queue(dev
);
772 static int ucc_hdlc_attach(struct net_device
*dev
, unsigned short encoding
,
773 unsigned short parity
)
775 struct ucc_hdlc_private
*priv
= dev_to_hdlc(dev
)->priv
;
777 if (encoding
!= ENCODING_NRZ
&&
778 encoding
!= ENCODING_NRZI
)
781 if (parity
!= PARITY_NONE
&&
782 parity
!= PARITY_CRC32_PR1_CCITT
&&
783 parity
!= PARITY_CRC16_PR1_CCITT
)
786 priv
->encoding
= encoding
;
787 priv
->parity
= parity
;
793 static void store_clk_config(struct ucc_hdlc_private
*priv
)
795 struct qe_mux
*qe_mux_reg
= &qe_immr
->qmx
;
798 priv
->cmxsi1cr_h
= ioread32be(&qe_mux_reg
->cmxsi1cr_h
);
799 priv
->cmxsi1cr_l
= ioread32be(&qe_mux_reg
->cmxsi1cr_l
);
802 priv
->cmxsi1syr
= ioread32be(&qe_mux_reg
->cmxsi1syr
);
805 memcpy_fromio(priv
->cmxucr
, qe_mux_reg
->cmxucr
, 4 * sizeof(u32
));
808 static void resume_clk_config(struct ucc_hdlc_private
*priv
)
810 struct qe_mux
*qe_mux_reg
= &qe_immr
->qmx
;
812 memcpy_toio(qe_mux_reg
->cmxucr
, priv
->cmxucr
, 4 * sizeof(u32
));
814 iowrite32be(priv
->cmxsi1cr_h
, &qe_mux_reg
->cmxsi1cr_h
);
815 iowrite32be(priv
->cmxsi1cr_l
, &qe_mux_reg
->cmxsi1cr_l
);
817 iowrite32be(priv
->cmxsi1syr
, &qe_mux_reg
->cmxsi1syr
);
820 static int uhdlc_suspend(struct device
*dev
)
822 struct ucc_hdlc_private
*priv
= dev_get_drvdata(dev
);
823 struct ucc_tdm_info
*ut_info
;
824 struct ucc_fast __iomem
*uf_regs
;
829 if (!netif_running(priv
->ndev
))
832 netif_device_detach(priv
->ndev
);
833 napi_disable(&priv
->napi
);
835 ut_info
= priv
->ut_info
;
836 uf_regs
= priv
->uf_regs
;
838 /* backup gumr guemr*/
839 priv
->gumr
= ioread32be(&uf_regs
->gumr
);
840 priv
->guemr
= ioread8(&uf_regs
->guemr
);
842 priv
->ucc_pram_bak
= kmalloc(sizeof(*priv
->ucc_pram_bak
),
844 if (!priv
->ucc_pram_bak
)
847 /* backup HDLC parameter */
848 memcpy_fromio(priv
->ucc_pram_bak
, priv
->ucc_pram
,
849 sizeof(struct ucc_hdlc_param
));
851 /* store the clk configuration */
852 store_clk_config(priv
);
855 ucc_fast_disable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
860 static int uhdlc_resume(struct device
*dev
)
862 struct ucc_hdlc_private
*priv
= dev_get_drvdata(dev
);
863 struct ucc_tdm
*utdm
;
864 struct ucc_tdm_info
*ut_info
;
865 struct ucc_fast __iomem
*uf_regs
;
866 struct ucc_fast_private
*uccf
;
867 struct ucc_fast_info
*uf_info
;
875 if (!netif_running(priv
->ndev
))
879 ut_info
= priv
->ut_info
;
880 uf_info
= &ut_info
->uf_info
;
881 uf_regs
= priv
->uf_regs
;
884 /* restore gumr guemr */
885 iowrite8(priv
->guemr
, &uf_regs
->guemr
);
886 iowrite32be(priv
->gumr
, &uf_regs
->gumr
);
888 /* Set Virtual Fifo registers */
889 iowrite16be(uf_info
->urfs
, &uf_regs
->urfs
);
890 iowrite16be(uf_info
->urfet
, &uf_regs
->urfet
);
891 iowrite16be(uf_info
->urfset
, &uf_regs
->urfset
);
892 iowrite16be(uf_info
->utfs
, &uf_regs
->utfs
);
893 iowrite16be(uf_info
->utfet
, &uf_regs
->utfet
);
894 iowrite16be(uf_info
->utftt
, &uf_regs
->utftt
);
895 /* utfb, urfb are offsets from MURAM base */
896 iowrite32be(uccf
->ucc_fast_tx_virtual_fifo_base_offset
, &uf_regs
->utfb
);
897 iowrite32be(uccf
->ucc_fast_rx_virtual_fifo_base_offset
, &uf_regs
->urfb
);
899 /* Rx Tx and sync clock routing */
900 resume_clk_config(priv
);
902 iowrite32be(uf_info
->uccm_mask
, &uf_regs
->uccm
);
903 iowrite32be(0xffffffff, &uf_regs
->ucce
);
905 ucc_fast_disable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
909 ucc_tdm_init(priv
->utdm
, priv
->ut_info
);
911 /* Write to QE CECR, UCCx channel to Stop Transmission */
912 cecr_subblock
= ucc_fast_get_qe_cr_subblock(uf_info
->ucc_num
);
913 ret
= qe_issue_cmd(QE_STOP_TX
, cecr_subblock
,
914 (u8
)QE_CR_PROTOCOL_UNSPECIFIED
, 0);
916 /* Set UPSMR normal mode */
917 iowrite32be(0, &uf_regs
->upsmr
);
919 /* init parameter base */
920 cecr_subblock
= ucc_fast_get_qe_cr_subblock(uf_info
->ucc_num
);
921 ret
= qe_issue_cmd(QE_ASSIGN_PAGE_TO_DEVICE
, cecr_subblock
,
922 QE_CR_PROTOCOL_UNSPECIFIED
, priv
->ucc_pram_offset
);
924 priv
->ucc_pram
= (struct ucc_hdlc_param __iomem
*)
925 qe_muram_addr(priv
->ucc_pram_offset
);
927 /* restore ucc parameter */
928 memcpy_toio(priv
->ucc_pram
, priv
->ucc_pram_bak
,
929 sizeof(struct ucc_hdlc_param
));
930 kfree(priv
->ucc_pram_bak
);
932 /* rebuild BD entry */
933 for (i
= 0; i
< RX_BD_RING_LEN
; i
++) {
934 if (i
< (RX_BD_RING_LEN
- 1))
935 bd_status
= R_E_S
| R_I_S
;
937 bd_status
= R_E_S
| R_I_S
| R_W_S
;
939 iowrite16be(bd_status
, &priv
->rx_bd_base
[i
].status
);
940 iowrite32be(priv
->dma_rx_addr
+ i
* MAX_RX_BUF_LENGTH
,
941 &priv
->rx_bd_base
[i
].buf
);
944 for (i
= 0; i
< TX_BD_RING_LEN
; i
++) {
945 if (i
< (TX_BD_RING_LEN
- 1))
946 bd_status
= T_I_S
| T_TC_S
;
948 bd_status
= T_I_S
| T_TC_S
| T_W_S
;
950 iowrite16be(bd_status
, &priv
->tx_bd_base
[i
].status
);
951 iowrite32be(priv
->dma_tx_addr
+ i
* MAX_RX_BUF_LENGTH
,
952 &priv
->tx_bd_base
[i
].buf
);
955 /* if hdlc is busy enable TX and RX */
956 if (priv
->hdlc_busy
== 1) {
957 cecr_subblock
= ucc_fast_get_qe_cr_subblock(
958 priv
->ut_info
->uf_info
.ucc_num
);
960 qe_issue_cmd(QE_INIT_TX_RX
, cecr_subblock
,
961 (u8
)QE_CR_PROTOCOL_UNSPECIFIED
, 0);
963 ucc_fast_enable(priv
->uccf
, COMM_DIR_RX
| COMM_DIR_TX
);
965 /* Enable the TDM port */
967 utdm
->si_regs
->siglmr1_h
|= (0x1 << utdm
->tdm_port
);
970 napi_enable(&priv
->napi
);
971 netif_device_attach(priv
->ndev
);
976 static const struct dev_pm_ops uhdlc_pm_ops
= {
977 .suspend
= uhdlc_suspend
,
978 .resume
= uhdlc_resume
,
979 .freeze
= uhdlc_suspend
,
980 .thaw
= uhdlc_resume
,
983 #define HDLC_PM_OPS (&uhdlc_pm_ops)
987 #define HDLC_PM_OPS NULL
990 static const struct net_device_ops uhdlc_ops
= {
991 .ndo_open
= uhdlc_open
,
992 .ndo_stop
= uhdlc_close
,
993 .ndo_start_xmit
= hdlc_start_xmit
,
994 .ndo_do_ioctl
= uhdlc_ioctl
,
997 static int ucc_hdlc_probe(struct platform_device
*pdev
)
999 struct device_node
*np
= pdev
->dev
.of_node
;
1000 struct ucc_hdlc_private
*uhdlc_priv
= NULL
;
1001 struct ucc_tdm_info
*ut_info
;
1002 struct ucc_tdm
*utdm
= NULL
;
1003 struct resource res
;
1004 struct net_device
*dev
;
1011 ret
= of_property_read_u32_index(np
, "cell-index", 0, &val
);
1013 dev_err(&pdev
->dev
, "Invalid ucc property\n");
1018 if ((ucc_num
> 3) || (ucc_num
< 0)) {
1019 dev_err(&pdev
->dev
, ": Invalid UCC num\n");
1023 memcpy(&utdm_info
[ucc_num
], &utdm_primary_info
,
1024 sizeof(utdm_primary_info
));
1026 ut_info
= &utdm_info
[ucc_num
];
1027 ut_info
->uf_info
.ucc_num
= ucc_num
;
1029 sprop
= of_get_property(np
, "rx-clock-name", NULL
);
1031 ut_info
->uf_info
.rx_clock
= qe_clock_source(sprop
);
1032 if ((ut_info
->uf_info
.rx_clock
< QE_CLK_NONE
) ||
1033 (ut_info
->uf_info
.rx_clock
> QE_CLK24
)) {
1034 dev_err(&pdev
->dev
, "Invalid rx-clock-name property\n");
1038 dev_err(&pdev
->dev
, "Invalid rx-clock-name property\n");
1042 sprop
= of_get_property(np
, "tx-clock-name", NULL
);
1044 ut_info
->uf_info
.tx_clock
= qe_clock_source(sprop
);
1045 if ((ut_info
->uf_info
.tx_clock
< QE_CLK_NONE
) ||
1046 (ut_info
->uf_info
.tx_clock
> QE_CLK24
)) {
1047 dev_err(&pdev
->dev
, "Invalid tx-clock-name property\n");
1051 dev_err(&pdev
->dev
, "Invalid tx-clock-name property\n");
1055 ret
= of_address_to_resource(np
, 0, &res
);
1059 ut_info
->uf_info
.regs
= res
.start
;
1060 ut_info
->uf_info
.irq
= irq_of_parse_and_map(np
, 0);
1062 uhdlc_priv
= kzalloc(sizeof(*uhdlc_priv
), GFP_KERNEL
);
1067 dev_set_drvdata(&pdev
->dev
, uhdlc_priv
);
1068 uhdlc_priv
->dev
= &pdev
->dev
;
1069 uhdlc_priv
->ut_info
= ut_info
;
1071 if (of_get_property(np
, "fsl,tdm-interface", NULL
))
1072 uhdlc_priv
->tsa
= 1;
1074 if (of_get_property(np
, "fsl,ucc-internal-loopback", NULL
))
1075 uhdlc_priv
->loopback
= 1;
1077 if (of_get_property(np
, "fsl,hdlc-bus", NULL
))
1078 uhdlc_priv
->hdlc_bus
= 1;
1080 if (uhdlc_priv
->tsa
== 1) {
1081 utdm
= kzalloc(sizeof(*utdm
), GFP_KERNEL
);
1084 dev_err(&pdev
->dev
, "No mem to alloc ucc tdm data\n");
1085 goto free_uhdlc_priv
;
1087 uhdlc_priv
->utdm
= utdm
;
1088 ret
= ucc_of_parse_tdm(np
, utdm
, ut_info
);
1093 ret
= uhdlc_init(uhdlc_priv
);
1095 dev_err(&pdev
->dev
, "Failed to init uhdlc\n");
1099 dev
= alloc_hdlcdev(uhdlc_priv
);
1102 pr_err("ucc_hdlc: unable to allocate memory\n");
1103 goto undo_uhdlc_init
;
1106 uhdlc_priv
->ndev
= dev
;
1107 hdlc
= dev_to_hdlc(dev
);
1108 dev
->tx_queue_len
= 16;
1109 dev
->netdev_ops
= &uhdlc_ops
;
1110 hdlc
->attach
= ucc_hdlc_attach
;
1111 hdlc
->xmit
= ucc_hdlc_tx
;
1112 netif_napi_add(dev
, &uhdlc_priv
->napi
, ucc_hdlc_poll
, 32);
1113 if (register_hdlc_device(dev
)) {
1115 pr_err("ucc_hdlc: unable to register hdlc device\n");
1126 if (uhdlc_priv
->tsa
)
1133 static int ucc_hdlc_remove(struct platform_device
*pdev
)
1135 struct ucc_hdlc_private
*priv
= dev_get_drvdata(&pdev
->dev
);
1137 uhdlc_memclean(priv
);
1139 if (priv
->utdm
->si_regs
) {
1140 iounmap(priv
->utdm
->si_regs
);
1141 priv
->utdm
->si_regs
= NULL
;
1144 if (priv
->utdm
->siram
) {
1145 iounmap(priv
->utdm
->siram
);
1146 priv
->utdm
->siram
= NULL
;
1150 dev_info(&pdev
->dev
, "UCC based hdlc module removed\n");
1155 static const struct of_device_id fsl_ucc_hdlc_of_match
[] = {
1157 .compatible
= "fsl,ucc-hdlc",
1162 MODULE_DEVICE_TABLE(of
, fsl_ucc_hdlc_of_match
);
1164 static struct platform_driver ucc_hdlc_driver
= {
1165 .probe
= ucc_hdlc_probe
,
1166 .remove
= ucc_hdlc_remove
,
1170 .of_match_table
= fsl_ucc_hdlc_of_match
,
1174 module_platform_driver(ucc_hdlc_driver
);
1175 MODULE_LICENSE("GPL");