~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/kernel/dma.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /kernel/dma.c (Version linux-6.12-rc7) and /kernel/dma.c (Version linux-5.13.19)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 /*                                                  2 /*
  3  * linux/kernel/dma.c: A DMA channel allocator      3  * linux/kernel/dma.c: A DMA channel allocator. Inspired by linux/kernel/irq.c.
  4  *                                                  4  *
  5  * Written by Hennus Bergman, 1992.                 5  * Written by Hennus Bergman, 1992.
  6  *                                                  6  *
  7  * 1994/12/26: Changes by Alex Nash to fix a m      7  * 1994/12/26: Changes by Alex Nash to fix a minor bug in /proc/dma.
  8  *   In the previous version the reported devi      8  *   In the previous version the reported device could end up being wrong,
  9  *   if a device requested a DMA channel that       9  *   if a device requested a DMA channel that was already in use.
 10  *   [It also happened to remove the sizeof(ch     10  *   [It also happened to remove the sizeof(char *) == sizeof(int)
 11  *   assumption introduced because of those /p     11  *   assumption introduced because of those /proc/dma patches. -- Hennus]
 12  */                                                12  */
 13 #include <linux/export.h>                          13 #include <linux/export.h>
 14 #include <linux/kernel.h>                          14 #include <linux/kernel.h>
 15 #include <linux/errno.h>                           15 #include <linux/errno.h>
 16 #include <linux/spinlock.h>                        16 #include <linux/spinlock.h>
 17 #include <linux/string.h>                          17 #include <linux/string.h>
 18 #include <linux/seq_file.h>                        18 #include <linux/seq_file.h>
 19 #include <linux/proc_fs.h>                         19 #include <linux/proc_fs.h>
 20 #include <linux/init.h>                            20 #include <linux/init.h>
 21 #include <asm/dma.h>                               21 #include <asm/dma.h>
 22                                                    22 
 23                                                    23 
 24                                                    24 
 25 /* A note on resource allocation:                  25 /* A note on resource allocation:
 26  *                                                 26  *
 27  * All drivers needing DMA channels, should al     27  * All drivers needing DMA channels, should allocate and release them
 28  * through the public routines `request_dma()'     28  * through the public routines `request_dma()' and `free_dma()'.
 29  *                                                 29  *
 30  * In order to avoid problems, all processes s     30  * In order to avoid problems, all processes should allocate resources in
 31  * the same sequence and release them in the r     31  * the same sequence and release them in the reverse order.
 32  *                                                 32  *
 33  * So, when allocating DMAs and IRQs, first al     33  * So, when allocating DMAs and IRQs, first allocate the IRQ, then the DMA.
 34  * When releasing them, first release the DMA,     34  * When releasing them, first release the DMA, then release the IRQ.
 35  * If you don't, you may cause allocation requ     35  * If you don't, you may cause allocation requests to fail unnecessarily.
 36  * This doesn't really matter now, but it will     36  * This doesn't really matter now, but it will once we get real semaphores
 37  * in the kernel.                                  37  * in the kernel.
 38  */                                                38  */
 39                                                    39 
 40                                                    40 
 41 DEFINE_SPINLOCK(dma_spin_lock);                    41 DEFINE_SPINLOCK(dma_spin_lock);
 42                                                    42 
 43 /*                                                 43 /*
 44  *      If our port doesn't define this it has     44  *      If our port doesn't define this it has no PC like DMA
 45  */                                                45  */
 46                                                    46 
 47 #ifdef MAX_DMA_CHANNELS                            47 #ifdef MAX_DMA_CHANNELS
 48                                                    48 
 49                                                    49 
 50 /* Channel n is busy iff dma_chan_busy[n].lock     50 /* Channel n is busy iff dma_chan_busy[n].lock != 0.
 51  * DMA0 used to be reserved for DRAM refresh,      51  * DMA0 used to be reserved for DRAM refresh, but apparently not any more...
 52  * DMA4 is reserved for cascading.                 52  * DMA4 is reserved for cascading.
 53  */                                                53  */
 54                                                    54 
 55 struct dma_chan {                                  55 struct dma_chan {
 56         int  lock;                                 56         int  lock;
 57         const char *device_id;                     57         const char *device_id;
 58 };                                                 58 };
 59                                                    59 
 60 static struct dma_chan dma_chan_busy[MAX_DMA_C     60 static struct dma_chan dma_chan_busy[MAX_DMA_CHANNELS] = {
 61         [4] = { 1, "cascade" },                    61         [4] = { 1, "cascade" },
 62 };                                                 62 };
 63                                                    63 
 64                                                    64 
 65 /**                                                65 /**
 66  * request_dma - request and reserve a system      66  * request_dma - request and reserve a system DMA channel
 67  * @dmanr: DMA channel number                      67  * @dmanr: DMA channel number
 68  * @device_id: reserving device ID string, use     68  * @device_id: reserving device ID string, used in /proc/dma
 69  */                                                69  */
 70 int request_dma(unsigned int dmanr, const char     70 int request_dma(unsigned int dmanr, const char * device_id)
 71 {                                                  71 {
 72         if (dmanr >= MAX_DMA_CHANNELS)             72         if (dmanr >= MAX_DMA_CHANNELS)
 73                 return -EINVAL;                    73                 return -EINVAL;
 74                                                    74 
 75         if (xchg(&dma_chan_busy[dmanr].lock, 1     75         if (xchg(&dma_chan_busy[dmanr].lock, 1) != 0)
 76                 return -EBUSY;                     76                 return -EBUSY;
 77                                                    77 
 78         dma_chan_busy[dmanr].device_id = devic     78         dma_chan_busy[dmanr].device_id = device_id;
 79                                                    79 
 80         /* old flag was 0, now contains 1 to i     80         /* old flag was 0, now contains 1 to indicate busy */
 81         return 0;                                  81         return 0;
 82 } /* request_dma */                                82 } /* request_dma */
 83                                                    83 
 84 /**                                                84 /**
 85  * free_dma - free a reserved system DMA chann     85  * free_dma - free a reserved system DMA channel
 86  * @dmanr: DMA channel number                      86  * @dmanr: DMA channel number
 87  */                                                87  */
 88 void free_dma(unsigned int dmanr)                  88 void free_dma(unsigned int dmanr)
 89 {                                                  89 {
 90         if (dmanr >= MAX_DMA_CHANNELS) {           90         if (dmanr >= MAX_DMA_CHANNELS) {
 91                 printk(KERN_WARNING "Trying to     91                 printk(KERN_WARNING "Trying to free DMA%d\n", dmanr);
 92                 return;                            92                 return;
 93         }                                          93         }
 94                                                    94 
 95         if (xchg(&dma_chan_busy[dmanr].lock, 0     95         if (xchg(&dma_chan_busy[dmanr].lock, 0) == 0) {
 96                 printk(KERN_WARNING "Trying to     96                 printk(KERN_WARNING "Trying to free free DMA%d\n", dmanr);
 97                 return;                            97                 return;
 98         }                                          98         }
 99                                                    99 
100 } /* free_dma */                                  100 } /* free_dma */
101                                                   101 
102 #else                                             102 #else
103                                                   103 
104 int request_dma(unsigned int dmanr, const char    104 int request_dma(unsigned int dmanr, const char *device_id)
105 {                                                 105 {
106         return -EINVAL;                           106         return -EINVAL;
107 }                                                 107 }
108                                                   108 
109 void free_dma(unsigned int dmanr)                 109 void free_dma(unsigned int dmanr)
110 {                                                 110 {
111 }                                                 111 }
112                                                   112 
113 #endif                                            113 #endif
114                                                   114 
115 #ifdef CONFIG_PROC_FS                             115 #ifdef CONFIG_PROC_FS
116                                                   116 
117 #ifdef MAX_DMA_CHANNELS                           117 #ifdef MAX_DMA_CHANNELS
118 static int proc_dma_show(struct seq_file *m, v    118 static int proc_dma_show(struct seq_file *m, void *v)
119 {                                                 119 {
120         int i;                                    120         int i;
121                                                   121 
122         for (i = 0 ; i < MAX_DMA_CHANNELS ; i+    122         for (i = 0 ; i < MAX_DMA_CHANNELS ; i++) {
123                 if (dma_chan_busy[i].lock) {      123                 if (dma_chan_busy[i].lock) {
124                         seq_printf(m, "%2d: %s    124                         seq_printf(m, "%2d: %s\n", i,
125                                    dma_chan_bu    125                                    dma_chan_busy[i].device_id);
126                 }                                 126                 }
127         }                                         127         }
128         return 0;                                 128         return 0;
129 }                                                 129 }
130 #else                                             130 #else
131 static int proc_dma_show(struct seq_file *m, v    131 static int proc_dma_show(struct seq_file *m, void *v)
132 {                                                 132 {
133         seq_puts(m, "No DMA\n");                  133         seq_puts(m, "No DMA\n");
134         return 0;                                 134         return 0;
135 }                                                 135 }
136 #endif /* MAX_DMA_CHANNELS */                     136 #endif /* MAX_DMA_CHANNELS */
137                                                   137 
138 static int __init proc_dma_init(void)             138 static int __init proc_dma_init(void)
139 {                                                 139 {
140         proc_create_single("dma", 0, NULL, pro    140         proc_create_single("dma", 0, NULL, proc_dma_show);
141         return 0;                                 141         return 0;
142 }                                                 142 }
143                                                   143 
144 __initcall(proc_dma_init);                        144 __initcall(proc_dma_init);
145 #endif                                            145 #endif
146                                                   146 
147 EXPORT_SYMBOL(request_dma);                       147 EXPORT_SYMBOL(request_dma);
148 EXPORT_SYMBOL(free_dma);                          148 EXPORT_SYMBOL(free_dma);
149 EXPORT_SYMBOL(dma_spin_lock);                     149 EXPORT_SYMBOL(dma_spin_lock);
150                                                   150 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php