2 * Copyright (C) 2006-2007 PA Semi, Inc
4 * Common functions for DMA access on PA Semi PWRficient
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/export.h>
23 #include <linux/pci.h>
24 #include <linux/slab.h>
26 #include <linux/sched.h>
28 #include <asm/pasemi_dma.h>
35 static struct pasdma_status
*dma_status
;
37 static void __iomem
*iob_regs
;
38 static void __iomem
*mac_regs
[6];
39 static void __iomem
*dma_regs
;
41 static int base_hw_irq
;
43 static int num_txch
, num_rxch
;
45 static struct pci_dev
*dma_pdev
;
47 /* Bitmaps to handle allocation of channels */
49 static DECLARE_BITMAP(txch_free
, MAX_TXCH
);
50 static DECLARE_BITMAP(rxch_free
, MAX_RXCH
);
51 static DECLARE_BITMAP(flags_free
, MAX_FLAGS
);
52 static DECLARE_BITMAP(fun_free
, MAX_FUN
);
54 /* pasemi_read_iob_reg - read IOB register
55 * @reg: Register to read (offset into PCI CFG space)
57 unsigned int pasemi_read_iob_reg(unsigned int reg
)
59 return in_le32(iob_regs
+reg
);
61 EXPORT_SYMBOL(pasemi_read_iob_reg
);
63 /* pasemi_write_iob_reg - write IOB register
64 * @reg: Register to write to (offset into PCI CFG space)
65 * @val: Value to write
67 void pasemi_write_iob_reg(unsigned int reg
, unsigned int val
)
69 out_le32(iob_regs
+reg
, val
);
71 EXPORT_SYMBOL(pasemi_write_iob_reg
);
73 /* pasemi_read_mac_reg - read MAC register
74 * @intf: MAC interface
75 * @reg: Register to read (offset into PCI CFG space)
77 unsigned int pasemi_read_mac_reg(int intf
, unsigned int reg
)
79 return in_le32(mac_regs
[intf
]+reg
);
81 EXPORT_SYMBOL(pasemi_read_mac_reg
);
83 /* pasemi_write_mac_reg - write MAC register
84 * @intf: MAC interface
85 * @reg: Register to write to (offset into PCI CFG space)
86 * @val: Value to write
88 void pasemi_write_mac_reg(int intf
, unsigned int reg
, unsigned int val
)
90 out_le32(mac_regs
[intf
]+reg
, val
);
92 EXPORT_SYMBOL(pasemi_write_mac_reg
);
94 /* pasemi_read_dma_reg - read DMA register
95 * @reg: Register to read (offset into PCI CFG space)
97 unsigned int pasemi_read_dma_reg(unsigned int reg
)
99 return in_le32(dma_regs
+reg
);
101 EXPORT_SYMBOL(pasemi_read_dma_reg
);
103 /* pasemi_write_dma_reg - write DMA register
104 * @reg: Register to write to (offset into PCI CFG space)
105 * @val: Value to write
107 void pasemi_write_dma_reg(unsigned int reg
, unsigned int val
)
109 out_le32(dma_regs
+reg
, val
);
111 EXPORT_SYMBOL(pasemi_write_dma_reg
);
113 static int pasemi_alloc_tx_chan(enum pasemi_dmachan_type type
)
118 switch (type
& (TXCHAN_EVT0
|TXCHAN_EVT1
)) {
133 bit
= find_next_bit(txch_free
, MAX_TXCH
, start
);
136 if (!test_and_clear_bit(bit
, txch_free
))
142 static void pasemi_free_tx_chan(int chan
)
144 BUG_ON(test_bit(chan
, txch_free
));
145 set_bit(chan
, txch_free
);
148 static int pasemi_alloc_rx_chan(void)
152 bit
= find_first_bit(rxch_free
, MAX_RXCH
);
155 if (!test_and_clear_bit(bit
, rxch_free
))
161 static void pasemi_free_rx_chan(int chan
)
163 BUG_ON(test_bit(chan
, rxch_free
));
164 set_bit(chan
, rxch_free
);
167 /* pasemi_dma_alloc_chan - Allocate a DMA channel
168 * @type: Type of channel to allocate
169 * @total_size: Total size of structure to allocate (to allow for more
170 * room behind the structure to be used by the client)
171 * @offset: Offset in bytes from start of the total structure to the beginning
172 * of struct pasemi_dmachan. Needed when struct pasemi_dmachan is
173 * not the first member of the client structure.
175 * pasemi_dma_alloc_chan allocates a DMA channel for use by a client. The
176 * type argument specifies whether it's a RX or TX channel, and in the case
177 * of TX channels which group it needs to belong to (if any).
179 * Returns a pointer to the total structure allocated on success, NULL
182 void *pasemi_dma_alloc_chan(enum pasemi_dmachan_type type
,
183 int total_size
, int offset
)
186 struct pasemi_dmachan
*chan
;
189 BUG_ON(total_size
< sizeof(struct pasemi_dmachan
));
191 buf
= kzalloc(total_size
, GFP_KERNEL
);
199 switch (type
& (TXCHAN
|RXCHAN
)) {
201 chno
= pasemi_alloc_rx_chan();
203 chan
->irq
= irq_create_mapping(NULL
,
204 base_hw_irq
+ num_txch
+ chno
);
205 chan
->status
= &dma_status
->rx_sta
[chno
];
208 chno
= pasemi_alloc_tx_chan(type
);
210 chan
->irq
= irq_create_mapping(NULL
, base_hw_irq
+ chno
);
211 chan
->status
= &dma_status
->tx_sta
[chno
];
215 chan
->chan_type
= type
;
219 EXPORT_SYMBOL(pasemi_dma_alloc_chan
);
221 /* pasemi_dma_free_chan - Free a previously allocated channel
222 * @chan: Channel to free
224 * Frees a previously allocated channel. It will also deallocate any
225 * descriptor ring associated with the channel, if allocated.
227 void pasemi_dma_free_chan(struct pasemi_dmachan
*chan
)
230 pasemi_dma_free_ring(chan
);
232 switch (chan
->chan_type
& (RXCHAN
|TXCHAN
)) {
234 pasemi_free_rx_chan(chan
->chno
);
237 pasemi_free_tx_chan(chan
->chno
);
243 EXPORT_SYMBOL(pasemi_dma_free_chan
);
245 /* pasemi_dma_alloc_ring - Allocate descriptor ring for a channel
246 * @chan: Channel for which to allocate
247 * @ring_size: Ring size in 64-bit (8-byte) words
249 * Allocate a descriptor ring for a channel. Returns 0 on success, errno
250 * on failure. The passed in struct pasemi_dmachan is updated with the
251 * virtual and DMA addresses of the ring.
253 int pasemi_dma_alloc_ring(struct pasemi_dmachan
*chan
, int ring_size
)
255 BUG_ON(chan
->ring_virt
);
257 chan
->ring_size
= ring_size
;
259 chan
->ring_virt
= dma_alloc_coherent(&dma_pdev
->dev
,
260 ring_size
* sizeof(u64
),
261 &chan
->ring_dma
, GFP_KERNEL
);
263 if (!chan
->ring_virt
)
266 memset(chan
->ring_virt
, 0, ring_size
* sizeof(u64
));
270 EXPORT_SYMBOL(pasemi_dma_alloc_ring
);
272 /* pasemi_dma_free_ring - Free an allocated descriptor ring for a channel
273 * @chan: Channel for which to free the descriptor ring
275 * Frees a previously allocated descriptor ring for a channel.
277 void pasemi_dma_free_ring(struct pasemi_dmachan
*chan
)
279 BUG_ON(!chan
->ring_virt
);
281 dma_free_coherent(&dma_pdev
->dev
, chan
->ring_size
* sizeof(u64
),
282 chan
->ring_virt
, chan
->ring_dma
);
283 chan
->ring_virt
= NULL
;
287 EXPORT_SYMBOL(pasemi_dma_free_ring
);
289 /* pasemi_dma_start_chan - Start a DMA channel
290 * @chan: Channel to start
291 * @cmdsta: Additional CCMDSTA/TCMDSTA bits to write
293 * Enables (starts) a DMA channel with optional additional arguments.
295 void pasemi_dma_start_chan(const struct pasemi_dmachan
*chan
, const u32 cmdsta
)
297 if (chan
->chan_type
== RXCHAN
)
298 pasemi_write_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(chan
->chno
),
299 cmdsta
| PAS_DMA_RXCHAN_CCMDSTA_EN
);
301 pasemi_write_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(chan
->chno
),
302 cmdsta
| PAS_DMA_TXCHAN_TCMDSTA_EN
);
304 EXPORT_SYMBOL(pasemi_dma_start_chan
);
306 /* pasemi_dma_stop_chan - Stop a DMA channel
307 * @chan: Channel to stop
309 * Stops (disables) a DMA channel. This is done by setting the ST bit in the
310 * CMDSTA register and waiting on the ACT (active) bit to clear, then
311 * finally disabling the whole channel.
313 * This function will only try for a short while for the channel to stop, if
314 * it doesn't it will return failure.
316 * Returns 1 on success, 0 on failure.
318 #define MAX_RETRIES 5000
319 int pasemi_dma_stop_chan(const struct pasemi_dmachan
*chan
)
324 if (chan
->chan_type
== RXCHAN
) {
325 reg
= PAS_DMA_RXCHAN_CCMDSTA(chan
->chno
);
326 pasemi_write_dma_reg(reg
, PAS_DMA_RXCHAN_CCMDSTA_ST
);
327 for (retries
= 0; retries
< MAX_RETRIES
; retries
++) {
328 sta
= pasemi_read_dma_reg(reg
);
329 if (!(sta
& PAS_DMA_RXCHAN_CCMDSTA_ACT
)) {
330 pasemi_write_dma_reg(reg
, 0);
336 reg
= PAS_DMA_TXCHAN_TCMDSTA(chan
->chno
);
337 pasemi_write_dma_reg(reg
, PAS_DMA_TXCHAN_TCMDSTA_ST
);
338 for (retries
= 0; retries
< MAX_RETRIES
; retries
++) {
339 sta
= pasemi_read_dma_reg(reg
);
340 if (!(sta
& PAS_DMA_TXCHAN_TCMDSTA_ACT
)) {
341 pasemi_write_dma_reg(reg
, 0);
350 EXPORT_SYMBOL(pasemi_dma_stop_chan
);
352 /* pasemi_dma_alloc_buf - Allocate a buffer to use for DMA
353 * @chan: Channel to allocate for
354 * @size: Size of buffer in bytes
355 * @handle: DMA handle
357 * Allocate a buffer to be used by the DMA engine for read/write,
358 * similar to dma_alloc_coherent().
360 * Returns the virtual address of the buffer, or NULL in case of failure.
362 void *pasemi_dma_alloc_buf(struct pasemi_dmachan
*chan
, int size
,
365 return dma_alloc_coherent(&dma_pdev
->dev
, size
, handle
, GFP_KERNEL
);
367 EXPORT_SYMBOL(pasemi_dma_alloc_buf
);
369 /* pasemi_dma_free_buf - Free a buffer used for DMA
370 * @chan: Channel the buffer was allocated for
371 * @size: Size of buffer in bytes
372 * @handle: DMA handle
374 * Frees a previously allocated buffer.
376 void pasemi_dma_free_buf(struct pasemi_dmachan
*chan
, int size
,
379 dma_free_coherent(&dma_pdev
->dev
, size
, handle
, GFP_KERNEL
);
381 EXPORT_SYMBOL(pasemi_dma_free_buf
);
383 /* pasemi_dma_alloc_flag - Allocate a flag (event) for channel synchronization
385 * Allocates a flag for use with channel synchronization (event descriptors).
386 * Returns allocated flag (0-63), < 0 on error.
388 int pasemi_dma_alloc_flag(void)
393 bit
= find_next_bit(flags_free
, MAX_FLAGS
, 0);
394 if (bit
>= MAX_FLAGS
)
396 if (!test_and_clear_bit(bit
, flags_free
))
401 EXPORT_SYMBOL(pasemi_dma_alloc_flag
);
404 /* pasemi_dma_free_flag - Deallocates a flag (event)
405 * @flag: Flag number to deallocate
407 * Frees up a flag so it can be reused for other purposes.
409 void pasemi_dma_free_flag(int flag
)
411 BUG_ON(test_bit(flag
, flags_free
));
412 BUG_ON(flag
>= MAX_FLAGS
);
413 set_bit(flag
, flags_free
);
415 EXPORT_SYMBOL(pasemi_dma_free_flag
);
418 /* pasemi_dma_set_flag - Sets a flag (event) to 1
419 * @flag: Flag number to set active
421 * Sets the flag provided to 1.
423 void pasemi_dma_set_flag(int flag
)
425 BUG_ON(flag
>= MAX_FLAGS
);
427 pasemi_write_dma_reg(PAS_DMA_TXF_SFLG0
, 1 << flag
);
429 pasemi_write_dma_reg(PAS_DMA_TXF_SFLG1
, 1 << flag
);
431 EXPORT_SYMBOL(pasemi_dma_set_flag
);
433 /* pasemi_dma_clear_flag - Sets a flag (event) to 0
434 * @flag: Flag number to set inactive
436 * Sets the flag provided to 0.
438 void pasemi_dma_clear_flag(int flag
)
440 BUG_ON(flag
>= MAX_FLAGS
);
442 pasemi_write_dma_reg(PAS_DMA_TXF_CFLG0
, 1 << flag
);
444 pasemi_write_dma_reg(PAS_DMA_TXF_CFLG1
, 1 << flag
);
446 EXPORT_SYMBOL(pasemi_dma_clear_flag
);
448 /* pasemi_dma_alloc_fun - Allocate a function engine
450 * Allocates a function engine to use for crypto/checksum offload
451 * Returns allocated engine (0-8), < 0 on error.
453 int pasemi_dma_alloc_fun(void)
458 bit
= find_next_bit(fun_free
, MAX_FLAGS
, 0);
459 if (bit
>= MAX_FLAGS
)
461 if (!test_and_clear_bit(bit
, fun_free
))
466 EXPORT_SYMBOL(pasemi_dma_alloc_fun
);
469 /* pasemi_dma_free_fun - Deallocates a function engine
470 * @flag: Engine number to deallocate
472 * Frees up a function engine so it can be used for other purposes.
474 void pasemi_dma_free_fun(int fun
)
476 BUG_ON(test_bit(fun
, fun_free
));
477 BUG_ON(fun
>= MAX_FLAGS
);
478 set_bit(fun
, fun_free
);
480 EXPORT_SYMBOL(pasemi_dma_free_fun
);
483 static void *map_onedev(struct pci_dev
*p
, int index
)
485 struct device_node
*dn
;
488 dn
= pci_device_to_OF_node(p
);
492 ret
= of_iomap(dn
, index
);
498 /* This is hardcoded and ugly, but we have some firmware versions
499 * that don't provide the register space in the device tree. Luckily
500 * they are at well-known locations so we can just do the math here.
502 return ioremap(0xe0000000 + (p
->devfn
<< 12), 0x2000);
505 /* pasemi_dma_init - Initialize the PA Semi DMA library
507 * This function initializes the DMA library. It must be called before
508 * any other function in the library.
510 * Returns 0 on success, errno on failure.
512 int pasemi_dma_init(void)
514 static DEFINE_SPINLOCK(init_lock
);
515 struct pci_dev
*iob_pdev
;
516 struct pci_dev
*pdev
;
518 struct device_node
*dn
;
519 int i
, intf
, err
= 0;
520 unsigned long timeout
;
523 if (!machine_is(pasemi
))
526 spin_lock(&init_lock
);
528 /* Make sure we haven't already initialized */
532 iob_pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa001, NULL
);
535 printk(KERN_WARNING
"Can't find I/O Bridge\n");
539 iob_regs
= map_onedev(iob_pdev
, 0);
541 dma_pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa007, NULL
);
544 printk(KERN_WARNING
"Can't find DMA controller\n");
548 dma_regs
= map_onedev(dma_pdev
, 0);
549 base_hw_irq
= virq_to_hw(dma_pdev
->irq
);
551 pci_read_config_dword(dma_pdev
, PAS_DMA_CAP_TXCH
, &tmp
);
552 num_txch
= (tmp
& PAS_DMA_CAP_TXCH_TCHN_M
) >> PAS_DMA_CAP_TXCH_TCHN_S
;
554 pci_read_config_dword(dma_pdev
, PAS_DMA_CAP_RXCH
, &tmp
);
555 num_rxch
= (tmp
& PAS_DMA_CAP_RXCH_RCHN_M
) >> PAS_DMA_CAP_RXCH_RCHN_S
;
558 for (pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa006, NULL
);
560 pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa006, pdev
))
561 mac_regs
[intf
++] = map_onedev(pdev
, 0);
565 for (pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa005, NULL
);
567 pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa005, pdev
))
568 mac_regs
[intf
++] = map_onedev(pdev
, 0);
572 dn
= pci_device_to_OF_node(iob_pdev
);
574 err
= of_address_to_resource(dn
, 1, &res
);
576 /* Fallback for old firmware */
577 res
.start
= 0xfd800000;
578 res
.end
= res
.start
+ 0x1000;
580 dma_status
= __ioremap(res
.start
, resource_size(&res
), 0);
581 pci_dev_put(iob_pdev
);
583 for (i
= 0; i
< MAX_TXCH
; i
++)
584 __set_bit(i
, txch_free
);
586 for (i
= 0; i
< MAX_RXCH
; i
++)
587 __set_bit(i
, rxch_free
);
589 timeout
= jiffies
+ HZ
;
590 pasemi_write_dma_reg(PAS_DMA_COM_RXCMD
, 0);
591 while (pasemi_read_dma_reg(PAS_DMA_COM_RXSTA
) & 1) {
592 if (time_after(jiffies
, timeout
)) {
593 pr_warning("Warning: Could not disable RX section\n");
598 timeout
= jiffies
+ HZ
;
599 pasemi_write_dma_reg(PAS_DMA_COM_TXCMD
, 0);
600 while (pasemi_read_dma_reg(PAS_DMA_COM_TXSTA
) & 1) {
601 if (time_after(jiffies
, timeout
)) {
602 pr_warning("Warning: Could not disable TX section\n");
607 /* setup resource allocations for the different DMA sections */
608 tmp
= pasemi_read_dma_reg(PAS_DMA_COM_CFG
);
609 pasemi_write_dma_reg(PAS_DMA_COM_CFG
, tmp
| 0x18000000);
611 /* enable tx section */
612 pasemi_write_dma_reg(PAS_DMA_COM_TXCMD
, PAS_DMA_COM_TXCMD_EN
);
614 /* enable rx section */
615 pasemi_write_dma_reg(PAS_DMA_COM_RXCMD
, PAS_DMA_COM_RXCMD_EN
);
617 for (i
= 0; i
< MAX_FLAGS
; i
++)
618 __set_bit(i
, flags_free
);
620 for (i
= 0; i
< MAX_FUN
; i
++)
621 __set_bit(i
, fun_free
);
623 /* clear all status flags */
624 pasemi_write_dma_reg(PAS_DMA_TXF_CFLG0
, 0xffffffff);
625 pasemi_write_dma_reg(PAS_DMA_TXF_CFLG1
, 0xffffffff);
627 printk(KERN_INFO
"PA Semi PWRficient DMA library initialized "
628 "(%d tx, %d rx channels)\n", num_txch
, num_rxch
);
631 spin_unlock(&init_lock
);
634 EXPORT_SYMBOL(pasemi_dma_init
);