blob: fceb2adfcac76968dc4756dfc96c3905bc624f42 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/mm/consistent.c
3 *
Paul Mundt8a7bcf02007-11-11 17:07:06 +09004 * Copyright (C) 2004 - 2007 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Magnus Dammf93e97e2008-01-24 18:35:10 +09006 * Declared coherent memory functions based on arch/x86/kernel/pci-dma_32.c
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/mm.h>
Paul Mundt7b41f562009-04-14 15:22:15 +090013#include <linux/init.h>
Magnus Damm1eca5c92008-07-16 19:02:54 +090014#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/dma-mapping.h>
Paul Mundtf802d962009-04-09 10:36:54 -070016#include <linux/dma-debug.h>
Paul Mundt7b41f562009-04-14 15:22:15 +090017#include <linux/io.h>
Paul Mundt73c926b2009-10-20 12:55:56 +090018#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Paul Mundt26ff6c12006-09-27 15:13:36 +090020#include <asm/cacheflush.h>
21#include <asm/addrspace.h>
Paul Mundt7b41f562009-04-14 15:22:15 +090022
Bart Van Assche52997092017-01-20 13:04:01 -080023const struct dma_map_ops *dma_ops;
Paul Mundt73c926b2009-10-20 12:55:56 +090024EXPORT_SYMBOL(dma_ops);
25
Paul Mundtf32154c92009-10-26 09:50:51 +090026void *dma_generic_alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewicz552c0d32011-12-14 12:11:13 +010027 dma_addr_t *dma_handle, gfp_t gfp,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070028 unsigned long attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Magnus Damm2a3eeba2008-01-25 12:42:48 +090030 void *ret, *ret_nocache;
Magnus Dammf93e97e2008-01-24 18:35:10 +090031 int order = get_order(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Andrew Murray57682822010-08-04 16:38:35 +090033 gfp |= __GFP_ZERO;
34
Magnus Dammf93e97e2008-01-24 18:35:10 +090035 ret = (void *)__get_free_pages(gfp, order);
Magnus Damm2a3eeba2008-01-25 12:42:48 +090036 if (!ret)
37 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Magnus Damm2a3eeba2008-01-25 12:42:48 +090039 /*
40 * Pages from the page allocator may have data present in
41 * cache. So flush the cache before using uncached memory.
42 */
Christoph Hellwige0c65842017-08-27 10:35:40 +020043 sh_sync_dma_for_device(ret, size, DMA_BIDIRECTIONAL);
Magnus Damm2a3eeba2008-01-25 12:42:48 +090044
Paul Mundtfa439722008-09-04 18:53:58 +090045 ret_nocache = (void __force *)ioremap_nocache(virt_to_phys(ret), size);
Magnus Damm2a3eeba2008-01-25 12:42:48 +090046 if (!ret_nocache) {
47 free_pages((unsigned long)ret, order);
48 return NULL;
Magnus Dammf93e97e2008-01-24 18:35:10 +090049 }
Magnus Damm2a3eeba2008-01-25 12:42:48 +090050
Magnus Dammda9fdc82008-12-17 17:18:45 +090051 split_page(pfn_to_page(virt_to_phys(ret) >> PAGE_SHIFT), order);
52
Jacopo Mondib9826a42018-04-18 11:42:35 +020053 *dma_handle = virt_to_phys(ret);
54 if (!WARN_ON(!dev))
55 *dma_handle -= PFN_PHYS(dev->dma_pfn_offset);
Paul Mundtf802d962009-04-09 10:36:54 -070056
Magnus Damm2a3eeba2008-01-25 12:42:48 +090057 return ret_nocache;
Magnus Dammf93e97e2008-01-24 18:35:10 +090058}
Magnus Dammf93e97e2008-01-24 18:35:10 +090059
Paul Mundtf32154c92009-10-26 09:50:51 +090060void dma_generic_free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewicz552c0d32011-12-14 12:11:13 +010061 void *vaddr, dma_addr_t dma_handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070062 unsigned long attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Magnus Dammf93e97e2008-01-24 18:35:10 +090064 int order = get_order(size);
Jacopo Mondib9826a42018-04-18 11:42:35 +020065 unsigned long pfn = dma_handle >> PAGE_SHIFT;
Magnus Dammda9fdc82008-12-17 17:18:45 +090066 int k;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jacopo Mondib9826a42018-04-18 11:42:35 +020068 if (!WARN_ON(!dev))
69 pfn += dev->dma_pfn_offset;
70
Paul Mundtf802d962009-04-09 10:36:54 -070071 for (k = 0; k < (1 << order); k++)
72 __free_pages(pfn_to_page(pfn + k), 0);
Paul Mundtf32154c92009-10-26 09:50:51 +090073
Paul Mundtf802d962009-04-09 10:36:54 -070074 iounmap(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Christoph Hellwige0c65842017-08-27 10:35:40 +020077void sh_sync_dma_for_device(void *vaddr, size_t size,
Magnus Dammf93e97e2008-01-24 18:35:10 +090078 enum dma_data_direction direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Paul Mundte2fcf742010-11-04 12:32:24 +090080 void *addr;
81
82 addr = __in_29bit_mode() ?
Paul Mundt3f9b85202011-05-31 14:38:29 +090083 (void *)CAC_ADDR((unsigned long)vaddr) : vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 switch (direction) {
86 case DMA_FROM_DEVICE: /* invalidate only */
Paul Mundte2fcf742010-11-04 12:32:24 +090087 __flush_invalidate_region(addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 break;
89 case DMA_TO_DEVICE: /* writeback only */
Paul Mundte2fcf742010-11-04 12:32:24 +090090 __flush_wback_region(addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 break;
92 case DMA_BIDIRECTIONAL: /* writeback and invalidate */
Paul Mundte2fcf742010-11-04 12:32:24 +090093 __flush_purge_region(addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 break;
95 default:
96 BUG();
97 }
98}
Christoph Hellwige0c65842017-08-27 10:35:40 +020099EXPORT_SYMBOL(sh_sync_dma_for_device);
Magnus Damm1eca5c92008-07-16 19:02:54 +0900100
Magnus Damm0c13bf12008-08-11 15:13:24 +0900101static int __init memchunk_setup(char *str)
102{
103 return 1; /* accept anything that begins with "memchunk." */
104}
105__setup("memchunk.", memchunk_setup);
106
Magnus Dammc773d8a2008-08-27 18:21:29 +0900107static void __init memchunk_cmdline_override(char *name, unsigned long *sizep)
Magnus Damm0c13bf12008-08-11 15:13:24 +0900108{
109 char *p = boot_command_line;
110 int k = strlen(name);
111
112 while ((p = strstr(p, "memchunk."))) {
113 p += 9; /* strlen("memchunk.") */
114 if (!strncmp(name, p, k) && p[k] == '=') {
115 p += k + 1;
116 *sizep = memparse(p, NULL);
117 pr_info("%s: forcing memory chunk size to 0x%08lx\n",
118 name, *sizep);
119 break;
120 }
121 }
122}
123
Magnus Dammc773d8a2008-08-27 18:21:29 +0900124int __init platform_resource_setup_memory(struct platform_device *pdev,
125 char *name, unsigned long memsize)
Magnus Damm1eca5c92008-07-16 19:02:54 +0900126{
127 struct resource *r;
128 dma_addr_t dma_handle;
129 void *buf;
130
131 r = pdev->resource + pdev->num_resources - 1;
132 if (r->flags) {
133 pr_warning("%s: unable to find empty space for resource\n",
134 name);
135 return -EINVAL;
136 }
137
Magnus Damm0c13bf12008-08-11 15:13:24 +0900138 memchunk_cmdline_override(name, &memsize);
139 if (!memsize)
140 return 0;
141
Jacopo Mondib9826a42018-04-18 11:42:35 +0200142 buf = dma_alloc_coherent(&pdev->dev, memsize, &dma_handle, GFP_KERNEL);
Magnus Damm1eca5c92008-07-16 19:02:54 +0900143 if (!buf) {
144 pr_warning("%s: unable to allocate memory\n", name);
145 return -ENOMEM;
146 }
147
148 memset(buf, 0, memsize);
149
150 r->flags = IORESOURCE_MEM;
151 r->start = dma_handle;
152 r->end = r->start + memsize - 1;
153 r->name = name;
154 return 0;
155}