summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2011-01-21 05:29:48 +0000
committerShaun Ruffell <sruffell@digium.com>2011-01-21 05:29:48 +0000
commitf4aa885076cf1e7d07b7bffd989e339f7bcb4c19 (patch)
tree6ebe66489b187008b243fdd26dc6505730743c6c
parentc38efc7ae4b053b48cd9f3e75fa43a829083ad4e (diff)
wct4xxp: Drop usage of 'volatile' qualifier.
The registers on the device are already accessed with readl/writel and the readchunk and writechunk are mapped into coherent DMA region. The contents of those buffers should not be changing in the middle of any transmit/receive prep call. Signed-off-by: Shaun Ruffell <sruffell@digium.com> Acked-by: Russ Meyerriecks <rmeyerriecks@digium.com> Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9400 git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.4@9671 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/wct4xxp/base.c41
1 files changed, 22 insertions, 19 deletions
diff --git a/drivers/dahdi/wct4xxp/base.c b/drivers/dahdi/wct4xxp/base.c
index 946631e..5725df1 100644
--- a/drivers/dahdi/wct4xxp/base.c
+++ b/drivers/dahdi/wct4xxp/base.c
@@ -272,8 +272,8 @@ struct t4;
struct t4_span {
struct t4 *owner;
- unsigned int *writechunk; /* Double-word aligned write memory */
- unsigned int *readchunk; /* Double-word aligned read memory */
+ u32 *writechunk; /* Double-word aligned write memory */
+ u32 *readchunk; /* Double-word aligned read memory */
int spantype; /* card type, T1 or E1 or J1 */
int sync;
int psync;
@@ -345,8 +345,8 @@ struct t4 {
int e1recover; /* E1 recovery timer */
spinlock_t reglock; /* lock register access */
int spansstarted; /* number of spans started */
- volatile unsigned int *writechunk; /* Double-word aligned write memory */
- volatile unsigned int *readchunk; /* Double-word aligned read memory */
+ u32 *writechunk; /* Double-word aligned write memory */
+ u32 *readchunk; /* Double-word aligned read memory */
unsigned short canary;
#ifdef ENABLE_WORKQUEUES
atomic_t worklist;
@@ -362,7 +362,7 @@ struct t4 {
dma_addr_t writedma;
unsigned long memaddr; /* Base address of card */
unsigned long memlen;
- __iomem volatile unsigned int *membase; /* Base address of card */
+ void __iomem *membase; /* Base address of card */
/* Add this for our softlockup protector */
unsigned int oct_rw_count;
@@ -532,14 +532,14 @@ static struct t4 *cards[MAX_T4_CARDS];
static inline unsigned int __t4_pci_in(struct t4 *wc, const unsigned int addr)
{
- unsigned int res = readl(&wc->membase[addr]);
+ unsigned int res = readl(wc->membase + (addr * sizeof(u32)));
return res;
}
static inline void __t4_pci_out(struct t4 *wc, const unsigned int addr, const unsigned int value)
{
unsigned int tmp;
- writel(value, &wc->membase[addr]);
+ writel(value, wc->membase + (addr * sizeof(u32)));
if (pedanticpci) {
tmp = __t4_pci_in(wc, WC_VERSION);
if ((tmp & 0xffff0000) != 0xc01a0000)
@@ -2795,7 +2795,7 @@ static inline void e1_check(struct t4 *wc, int span, int val)
static void t4_receiveprep(struct t4 *wc, int irq)
{
- volatile unsigned int *readchunk;
+ unsigned int *readchunk;
int dbl = 0;
int x,y,z;
unsigned int tmp;
@@ -2955,7 +2955,7 @@ static void t4_prep_gen2(struct t4 *wc)
#ifdef SUPPORT_GEN1
static void t4_transmitprep(struct t4 *wc, int irq)
{
- volatile unsigned int *writechunk;
+ u32 *writechunk;
int x,y,z;
unsigned int tmp;
int offset=0;
@@ -3689,14 +3689,15 @@ DAHDI_IRQ_HANDLER(t4_interrupt)
}
#endif
-static int t4_allocate_buffers(struct t4 *wc, int numbufs, volatile unsigned int **oldalloc, dma_addr_t *oldwritedma)
+static int t4_allocate_buffers(struct t4 *wc, int numbufs,
+ void **oldalloc, dma_addr_t *oldwritedma)
{
- volatile unsigned int *alloc;
+ void *alloc;
dma_addr_t writedma;
- alloc =
- /* 32 channels, Double-buffer, Read/Write, 4 spans */
- (unsigned int *)pci_alloc_consistent(wc->dev, numbufs * T4_BASE_SIZE * 2, &writedma);
+ /* 32 channels, Double-buffer, Read/Write, 4 spans */
+ alloc = pci_alloc_consistent(wc->dev, numbufs * T4_BASE_SIZE * 2,
+ &writedma);
if (!alloc) {
dev_notice(&wc->dev->dev, "wct%dxxp: Unable to allocate "
@@ -3721,8 +3722,8 @@ static int t4_allocate_buffers(struct t4 *wc, int numbufs, volatile unsigned int
wc->numbufs = numbufs;
/* Initialize Write/Buffers to all blank data */
- memset((void *)wc->writechunk,0x00, T4_BASE_SIZE * numbufs);
- memset((void *)wc->readchunk,0xff, T4_BASE_SIZE * numbufs);
+ memset(wc->writechunk, 0x00, T4_BASE_SIZE * numbufs);
+ memset(wc->readchunk, 0xff, T4_BASE_SIZE * numbufs);
dev_notice(&wc->dev->dev, "DMA memory base of size %d at %p. Read: "
"%p and Write %p\n", numbufs * T4_BASE_SIZE * 2,
@@ -3734,7 +3735,7 @@ static int t4_allocate_buffers(struct t4 *wc, int numbufs, volatile unsigned int
static void t4_increase_latency(struct t4 *wc, int newlatency)
{
unsigned long flags;
- volatile unsigned int *oldalloc;
+ void *oldalloc;
dma_addr_t oldaddr;
int oldbufs;
@@ -3771,7 +3772,8 @@ static void t4_increase_latency(struct t4 *wc, int newlatency)
spin_unlock_irqrestore(&wc->reglock, flags);
- pci_free_consistent(wc->dev, T4_BASE_SIZE * oldbufs * 2, (void *)oldalloc, oldaddr);
+ pci_free_consistent(wc->dev, T4_BASE_SIZE * oldbufs * 2,
+ oldalloc, oldaddr);
dev_info(&wc->dev->dev, "Increased latency to %d\n", newlatency);
@@ -4882,7 +4884,8 @@ static void __devexit t4_remove_one(struct pci_dev *pdev)
pci_release_regions(pdev);
/* Immediately free resources */
- pci_free_consistent(pdev, T4_BASE_SIZE * wc->numbufs * 2, (void *)wc->writechunk, wc->writedma);
+ pci_free_consistent(pdev, T4_BASE_SIZE * wc->numbufs * 2,
+ wc->writechunk, wc->writedma);
order_index[wc->order]--;