Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 322563
b: refs/heads/master
c: 6e5267a
h: refs/heads/master
i:
  322561: e1d0fc6
  322559: 0be7cf4
v: v3
  • Loading branch information
Marek Szyprowski committed Aug 28, 2012
1 parent a9f9adb commit 2de3936
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e092705bcd53de3bafc3053b0b55bf83e5d6711f
refs/heads/master: 6e5267aa543817015edb4a65c66e15f9809f92bd
7 changes: 7 additions & 0 deletions trunk/arch/arm/include/asm/dma-mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@ static inline void dma_free_writecombine(struct device *dev, size_t size,
return dma_free_attrs(dev, size, cpu_addr, dma_handle, &attrs);
}

/*
* This can be called during early boot to increase the size of the atomic
* coherent DMA pool above the default value of 256KiB. It must be called
* before postcore_initcall.
*/
extern void __init init_dma_coherent_pool_size(unsigned long size);

/*
* This can be called during boot to increase the size of the consistent
* DMA region above it's default value of 2MB. It must be called before the
Expand Down
19 changes: 18 additions & 1 deletion trunk/arch/arm/mm/dma-mapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,8 @@ static void __dma_free_remap(void *cpu_addr, size_t size)
vunmap(cpu_addr);
}

#define DEFAULT_DMA_COHERENT_POOL_SIZE SZ_256K

struct dma_pool {
size_t size;
spinlock_t lock;
Expand All @@ -277,7 +279,7 @@ struct dma_pool {
};

static struct dma_pool atomic_pool = {
.size = SZ_256K,
.size = DEFAULT_DMA_COHERENT_POOL_SIZE,
};

static int __init early_coherent_pool(char *p)
Expand All @@ -287,6 +289,21 @@ static int __init early_coherent_pool(char *p)
}
early_param("coherent_pool", early_coherent_pool);

void __init init_dma_coherent_pool_size(unsigned long size)
{
/*
* Catch any attempt to set the pool size too late.
*/
BUG_ON(atomic_pool.vaddr);

/*
* Set architecture specific coherent pool size only if
* it has not been changed by kernel command line parameter.
*/
if (atomic_pool.size == DEFAULT_DMA_COHERENT_POOL_SIZE)
atomic_pool.size = size;
}

/*
* Initialise the coherent pool for atomic allocations.
*/
Expand Down

0 comments on commit 2de3936

Please sign in to comment.