blob: 6ede7dc6c10a9ef858ef6016c87f0abbd93fa9fe [file] [log] [blame]
Jarkko Nikula2e747962008-04-25 13:55:19 +02001/*
2 * omap-pcm.c -- ALSA PCM interface for the OMAP SoC
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03006 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
Peter Ujfalusi1c7687b2011-05-03 18:14:43 +03007 * Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula2e747962008-04-25 13:55:19 +02008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020028#include <sound/core.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/soc.h>
32
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/dma.h>
Jarkko Nikula2e747962008-04-25 13:55:19 +020034#include "omap-pcm.h"
35
36static const struct snd_pcm_hardware omap_pcm_hardware = {
37 .info = SNDRV_PCM_INFO_MMAP |
38 SNDRV_PCM_INFO_MMAP_VALID |
39 SNDRV_PCM_INFO_INTERLEAVED |
40 SNDRV_PCM_INFO_PAUSE |
Peter Ujfalusib4173822011-05-12 13:04:55 +030041 SNDRV_PCM_INFO_RESUME |
42 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
Misael Lopez Cruze17dd322010-02-22 15:09:19 -060043 .formats = SNDRV_PCM_FMTBIT_S16_LE |
44 SNDRV_PCM_FMTBIT_S32_LE,
Jarkko Nikula2e747962008-04-25 13:55:19 +020045 .period_bytes_min = 32,
46 .period_bytes_max = 64 * 1024,
47 .periods_min = 2,
48 .periods_max = 255,
49 .buffer_bytes_max = 128 * 1024,
50};
51
52struct omap_runtime_data {
53 spinlock_t lock;
54 struct omap_pcm_dma_data *dma_data;
55 int dma_ch;
56 int period_index;
57};
58
59static void omap_pcm_dma_irq(int ch, u16 stat, void *data)
60{
61 struct snd_pcm_substream *substream = data;
62 struct snd_pcm_runtime *runtime = substream->runtime;
63 struct omap_runtime_data *prtd = runtime->private_data;
64 unsigned long flags;
65
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +020066 if ((cpu_is_omap1510())) {
Jarkko Nikula2e747962008-04-25 13:55:19 +020067 /*
Janusz Krzysztofik64844a62009-08-10 10:50:04 +020068 * OMAP1510 doesn't fully support DMA progress counter
69 * and there is no software emulation implemented yet,
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +020070 * so have to maintain our own progress counters
Janusz Krzysztofik64844a62009-08-10 10:50:04 +020071 * that can be used by omap_pcm_pointer() instead.
Jarkko Nikula2e747962008-04-25 13:55:19 +020072 */
73 spin_lock_irqsave(&prtd->lock, flags);
Janusz Krzysztofik471e3de2009-08-11 21:44:29 +020074 if ((stat == OMAP_DMA_LAST_IRQ) &&
75 (prtd->period_index == runtime->periods - 1)) {
76 /* we are in sync, do nothing */
77 spin_unlock_irqrestore(&prtd->lock, flags);
78 return;
79 }
Jarkko Nikula2e747962008-04-25 13:55:19 +020080 if (prtd->period_index >= 0) {
Janusz Krzysztofik471e3de2009-08-11 21:44:29 +020081 if (stat & OMAP_DMA_BLOCK_IRQ) {
82 /* end of buffer reached, loop back */
83 prtd->period_index = 0;
84 } else if (stat & OMAP_DMA_LAST_IRQ) {
85 /* update the counter for the last period */
86 prtd->period_index = runtime->periods - 1;
87 } else if (++prtd->period_index >= runtime->periods) {
88 /* end of buffer missed? loop back */
Jarkko Nikula2e747962008-04-25 13:55:19 +020089 prtd->period_index = 0;
Jarkko Nikula2e747962008-04-25 13:55:19 +020090 }
91 }
92 spin_unlock_irqrestore(&prtd->lock, flags);
93 }
94
95 snd_pcm_period_elapsed(substream);
96}
97
98/* this may get called several times by oss emulation */
99static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
100 struct snd_pcm_hw_params *params)
101{
102 struct snd_pcm_runtime *runtime = substream->runtime;
103 struct snd_soc_pcm_runtime *rtd = substream->private_data;
104 struct omap_runtime_data *prtd = runtime->private_data;
Daniel Mack5f712b22010-03-22 10:11:15 +0100105 struct omap_pcm_dma_data *dma_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000106
Jarkko Nikula2e747962008-04-25 13:55:19 +0200107 int err = 0;
108
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000109 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Daniel Mack5f712b22010-03-22 10:11:15 +0100110
Joonyoung Shim1b4246a2009-04-22 10:56:50 +0900111 /* return if this is a bufferless transfer e.g.
112 * codec <--> BT codec or GSM modem -- lg FIXME */
Jarkko Nikula2e747962008-04-25 13:55:19 +0200113 if (!dma_data)
Joonyoung Shim1b4246a2009-04-22 10:56:50 +0900114 return 0;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200115
116 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
117 runtime->dma_bytes = params_buffer_bytes(params);
118
119 if (prtd->dma_data)
120 return 0;
121 prtd->dma_data = dma_data;
122 err = omap_request_dma(dma_data->dma_req, dma_data->name,
123 omap_pcm_dma_irq, substream, &prtd->dma_ch);
Janusz Krzysztofik64844a62009-08-10 10:50:04 +0200124 if (!err) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200125 /*
126 * Link channel with itself so DMA doesn't need any
127 * reprogramming while looping the buffer
128 */
129 omap_dma_link_lch(prtd->dma_ch, prtd->dma_ch);
130 }
131
132 return err;
133}
134
135static int omap_pcm_hw_free(struct snd_pcm_substream *substream)
136{
137 struct snd_pcm_runtime *runtime = substream->runtime;
138 struct omap_runtime_data *prtd = runtime->private_data;
139
140 if (prtd->dma_data == NULL)
141 return 0;
142
Janusz Krzysztofik64844a62009-08-10 10:50:04 +0200143 omap_dma_unlink_lch(prtd->dma_ch, prtd->dma_ch);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200144 omap_free_dma(prtd->dma_ch);
145 prtd->dma_data = NULL;
146
147 snd_pcm_set_runtime_buffer(substream, NULL);
148
149 return 0;
150}
151
152static int omap_pcm_prepare(struct snd_pcm_substream *substream)
153{
154 struct snd_pcm_runtime *runtime = substream->runtime;
155 struct omap_runtime_data *prtd = runtime->private_data;
156 struct omap_pcm_dma_data *dma_data = prtd->dma_data;
157 struct omap_dma_channel_params dma_params;
Misael Lopez Cruze17dd322010-02-22 15:09:19 -0600158 int bytes;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200159
Joonyoung Shim1b4246a2009-04-22 10:56:50 +0900160 /* return if this is a bufferless transfer e.g.
161 * codec <--> BT codec or GSM modem -- lg FIXME */
162 if (!prtd->dma_data)
163 return 0;
164
Jarkko Nikula2e747962008-04-25 13:55:19 +0200165 memset(&dma_params, 0, sizeof(dma_params));
Misael Lopez Cruze17dd322010-02-22 15:09:19 -0600166 dma_params.data_type = dma_data->data_type;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200167 dma_params.trigger = dma_data->dma_req;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300168 dma_params.sync_mode = dma_data->sync_mode;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200169 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
170 dma_params.src_amode = OMAP_DMA_AMODE_POST_INC;
171 dma_params.dst_amode = OMAP_DMA_AMODE_CONSTANT;
172 dma_params.src_or_dst_synch = OMAP_DMA_DST_SYNC;
173 dma_params.src_start = runtime->dma_addr;
174 dma_params.dst_start = dma_data->port_addr;
Arun KS9d374842008-09-30 15:35:16 +0530175 dma_params.dst_port = OMAP_DMA_PORT_MPUI;
Misael Lopez Cruze17dd322010-02-22 15:09:19 -0600176 dma_params.dst_fi = dma_data->packet_size;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200177 } else {
178 dma_params.src_amode = OMAP_DMA_AMODE_CONSTANT;
179 dma_params.dst_amode = OMAP_DMA_AMODE_POST_INC;
180 dma_params.src_or_dst_synch = OMAP_DMA_SRC_SYNC;
181 dma_params.src_start = dma_data->port_addr;
182 dma_params.dst_start = runtime->dma_addr;
Arun KS9d374842008-09-30 15:35:16 +0530183 dma_params.src_port = OMAP_DMA_PORT_MPUI;
Misael Lopez Cruze17dd322010-02-22 15:09:19 -0600184 dma_params.src_fi = dma_data->packet_size;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200185 }
186 /*
187 * Set DMA transfer frame size equal to ALSA period size and frame
188 * count as no. of ALSA periods. Then with DMA frame interrupt enabled,
189 * we can transfer the whole ALSA buffer with single DMA transfer but
190 * still can get an interrupt at each period bounary
191 */
Misael Lopez Cruze17dd322010-02-22 15:09:19 -0600192 bytes = snd_pcm_lib_period_bytes(substream);
193 dma_params.elem_count = bytes >> dma_data->data_type;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200194 dma_params.frame_count = runtime->periods;
195 omap_set_dma_params(prtd->dma_ch, &dma_params);
196
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +0200197 if ((cpu_is_omap1510()))
Janusz Krzysztofik471e3de2009-08-11 21:44:29 +0200198 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ |
199 OMAP_DMA_LAST_IRQ | OMAP_DMA_BLOCK_IRQ);
Peter Ujfalusib4173822011-05-12 13:04:55 +0300200 else if (!substream->runtime->no_period_wakeup)
Janusz Krzysztofik471e3de2009-08-11 21:44:29 +0200201 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ);
Peter Ujfalusib1b6cff2011-10-04 11:09:52 +0300202 else {
203 /*
204 * No period wakeup:
205 * we need to disable BLOCK_IRQ, which is enabled by the omap
206 * dma core at request dma time.
207 */
208 omap_disable_dma_irq(prtd->dma_ch, OMAP_DMA_BLOCK_IRQ);
209 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200210
Janusz Krzysztofik4d187fb2009-10-21 23:10:03 +0200211 if (!(cpu_class_is_omap1())) {
212 omap_set_dma_src_burst_mode(prtd->dma_ch,
213 OMAP_DMA_DATA_BURST_16);
214 omap_set_dma_dest_burst_mode(prtd->dma_ch,
215 OMAP_DMA_DATA_BURST_16);
216 }
Eduardo Valentin9599d482009-08-20 16:18:21 +0300217
Jarkko Nikula2e747962008-04-25 13:55:19 +0200218 return 0;
219}
220
221static int omap_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
222{
223 struct snd_pcm_runtime *runtime = substream->runtime;
224 struct omap_runtime_data *prtd = runtime->private_data;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300225 struct omap_pcm_dma_data *dma_data = prtd->dma_data;
Eero Nurkkala21dff432009-02-02 14:20:46 +0200226 unsigned long flags;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200227 int ret = 0;
228
Eero Nurkkala21dff432009-02-02 14:20:46 +0200229 spin_lock_irqsave(&prtd->lock, flags);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200230 switch (cmd) {
231 case SNDRV_PCM_TRIGGER_START:
232 case SNDRV_PCM_TRIGGER_RESUME:
233 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
234 prtd->period_index = 0;
Eduardo Valentincaebc0c2009-08-20 16:18:25 +0300235 /* Configure McBSP internal buffer usage */
236 if (dma_data->set_threshold)
237 dma_data->set_threshold(substream);
238
Jarkko Nikula2e747962008-04-25 13:55:19 +0200239 omap_start_dma(prtd->dma_ch);
240 break;
241
242 case SNDRV_PCM_TRIGGER_STOP:
243 case SNDRV_PCM_TRIGGER_SUSPEND:
244 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
245 prtd->period_index = -1;
246 omap_stop_dma(prtd->dma_ch);
247 break;
248 default:
249 ret = -EINVAL;
250 }
Eero Nurkkala21dff432009-02-02 14:20:46 +0200251 spin_unlock_irqrestore(&prtd->lock, flags);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200252
253 return ret;
254}
255
256static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
257{
258 struct snd_pcm_runtime *runtime = substream->runtime;
259 struct omap_runtime_data *prtd = runtime->private_data;
260 dma_addr_t ptr;
261 snd_pcm_uframes_t offset;
262
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +0200263 if (cpu_is_omap1510()) {
264 offset = prtd->period_index * runtime->period_size;
265 } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200266 ptr = omap_get_dma_dst_pos(prtd->dma_ch);
Janusz Krzysztofik1bdd7412009-06-28 00:21:05 +0200267 offset = bytes_to_frames(runtime, ptr - runtime->dma_addr);
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +0200268 } else {
Janusz Krzysztofik1bdd7412009-06-28 00:21:05 +0200269 ptr = omap_get_dma_src_pos(prtd->dma_ch);
270 offset = bytes_to_frames(runtime, ptr - runtime->dma_addr);
Janusz Krzysztofikb5442a72010-03-28 22:29:29 +0200271 }
Jarkko Nikula2e747962008-04-25 13:55:19 +0200272
Jarkko Nikula2e747962008-04-25 13:55:19 +0200273 if (offset >= runtime->buffer_size)
274 offset = 0;
275
276 return offset;
277}
278
279static int omap_pcm_open(struct snd_pcm_substream *substream)
280{
281 struct snd_pcm_runtime *runtime = substream->runtime;
282 struct omap_runtime_data *prtd;
283 int ret;
284
285 snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware);
286
287 /* Ensure that buffer size is a multiple of period size */
288 ret = snd_pcm_hw_constraint_integer(runtime,
289 SNDRV_PCM_HW_PARAM_PERIODS);
290 if (ret < 0)
291 goto out;
292
Stanley Miao19b3f312008-12-19 22:08:22 +0800293 prtd = kzalloc(sizeof(*prtd), GFP_KERNEL);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200294 if (prtd == NULL) {
295 ret = -ENOMEM;
296 goto out;
297 }
298 spin_lock_init(&prtd->lock);
299 runtime->private_data = prtd;
300
301out:
302 return ret;
303}
304
305static int omap_pcm_close(struct snd_pcm_substream *substream)
306{
307 struct snd_pcm_runtime *runtime = substream->runtime;
308
309 kfree(runtime->private_data);
310 return 0;
311}
312
313static int omap_pcm_mmap(struct snd_pcm_substream *substream,
314 struct vm_area_struct *vma)
315{
316 struct snd_pcm_runtime *runtime = substream->runtime;
317
318 return dma_mmap_writecombine(substream->pcm->card->dev, vma,
319 runtime->dma_area,
320 runtime->dma_addr,
321 runtime->dma_bytes);
322}
323
Mark Brownb2a19d02009-01-17 19:14:26 +0000324static struct snd_pcm_ops omap_pcm_ops = {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200325 .open = omap_pcm_open,
326 .close = omap_pcm_close,
327 .ioctl = snd_pcm_lib_ioctl,
328 .hw_params = omap_pcm_hw_params,
329 .hw_free = omap_pcm_hw_free,
330 .prepare = omap_pcm_prepare,
331 .trigger = omap_pcm_trigger,
332 .pointer = omap_pcm_pointer,
333 .mmap = omap_pcm_mmap,
334};
335
Eduardo Valentina152ff22009-08-20 16:18:22 +0300336static u64 omap_pcm_dmamask = DMA_BIT_MASK(64);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200337
338static int omap_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
339 int stream)
340{
341 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
342 struct snd_dma_buffer *buf = &substream->dma_buffer;
343 size_t size = omap_pcm_hardware.buffer_bytes_max;
344
345 buf->dev.type = SNDRV_DMA_TYPE_DEV;
346 buf->dev.dev = pcm->card->dev;
347 buf->private_data = NULL;
348 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
349 &buf->addr, GFP_KERNEL);
350 if (!buf->area)
351 return -ENOMEM;
352
353 buf->bytes = size;
354 return 0;
355}
356
357static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm)
358{
359 struct snd_pcm_substream *substream;
360 struct snd_dma_buffer *buf;
361 int stream;
362
363 for (stream = 0; stream < 2; stream++) {
364 substream = pcm->streams[stream].substream;
365 if (!substream)
366 continue;
367
368 buf = &substream->dma_buffer;
369 if (!buf->area)
370 continue;
371
372 dma_free_writecombine(pcm->card->dev, buf->bytes,
373 buf->area, buf->addr);
374 buf->area = NULL;
375 }
376}
377
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100378static int omap_pcm_new(struct snd_soc_pcm_runtime *rtd)
Jarkko Nikula2e747962008-04-25 13:55:19 +0200379{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100380 struct snd_card *card = rtd->card->snd_card;
381 struct snd_soc_dai *dai = rtd->cpu_dai;
382 struct snd_pcm *pcm = rtd->pcm;
Jarkko Nikula2e747962008-04-25 13:55:19 +0200383 int ret = 0;
384
385 if (!card->dev->dma_mask)
386 card->dev->dma_mask = &omap_pcm_dmamask;
387 if (!card->dev->coherent_dma_mask)
Eduardo Valentina152ff22009-08-20 16:18:22 +0300388 card->dev->coherent_dma_mask = DMA_BIT_MASK(64);
Jarkko Nikula2e747962008-04-25 13:55:19 +0200389
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000390 if (dai->driver->playback.channels_min) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200391 ret = omap_pcm_preallocate_dma_buffer(pcm,
392 SNDRV_PCM_STREAM_PLAYBACK);
393 if (ret)
394 goto out;
395 }
396
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000397 if (dai->driver->capture.channels_min) {
Jarkko Nikula2e747962008-04-25 13:55:19 +0200398 ret = omap_pcm_preallocate_dma_buffer(pcm,
399 SNDRV_PCM_STREAM_CAPTURE);
400 if (ret)
401 goto out;
402 }
403
404out:
405 return ret;
406}
407
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000408static struct snd_soc_platform_driver omap_soc_platform = {
409 .ops = &omap_pcm_ops,
Jarkko Nikula2e747962008-04-25 13:55:19 +0200410 .pcm_new = omap_pcm_new,
411 .pcm_free = omap_pcm_free_dma_buffers,
412};
Jarkko Nikula2e747962008-04-25 13:55:19 +0200413
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000414static __devinit int omap_pcm_probe(struct platform_device *pdev)
Mark Brown958e7922008-12-03 19:58:17 +0000415{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000416 return snd_soc_register_platform(&pdev->dev,
417 &omap_soc_platform);
Mark Brown958e7922008-12-03 19:58:17 +0000418}
Mark Brown958e7922008-12-03 19:58:17 +0000419
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000420static int __devexit omap_pcm_remove(struct platform_device *pdev)
Mark Brown958e7922008-12-03 19:58:17 +0000421{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000422 snd_soc_unregister_platform(&pdev->dev);
423 return 0;
Mark Brown958e7922008-12-03 19:58:17 +0000424}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000425
426static struct platform_driver omap_pcm_driver = {
427 .driver = {
428 .name = "omap-pcm-audio",
429 .owner = THIS_MODULE,
430 },
431
432 .probe = omap_pcm_probe,
433 .remove = __devexit_p(omap_pcm_remove),
434};
435
436static int __init snd_omap_pcm_init(void)
437{
438 return platform_driver_register(&omap_pcm_driver);
439}
440module_init(snd_omap_pcm_init);
441
442static void __exit snd_omap_pcm_exit(void)
443{
444 platform_driver_unregister(&omap_pcm_driver);
445}
446module_exit(snd_omap_pcm_exit);
Mark Brown958e7922008-12-03 19:58:17 +0000447
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +0300448MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
Jarkko Nikula2e747962008-04-25 13:55:19 +0200449MODULE_DESCRIPTION("OMAP PCM DMA module");
450MODULE_LICENSE("GPL");