2 * Xtfpga I2S controller driver
4 * Copyright (c) 2014 Cadence Design Systems Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/clk.h>
13 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <sound/pcm_params.h>
18 #include <sound/soc.h>
20 #define DRV_NAME "xtfpga-i2s"
22 #define XTFPGA_I2S_VERSION 0x00
23 #define XTFPGA_I2S_CONFIG 0x04
24 #define XTFPGA_I2S_INT_MASK 0x08
25 #define XTFPGA_I2S_INT_STATUS 0x0c
26 #define XTFPGA_I2S_CHAN0_DATA 0x10
27 #define XTFPGA_I2S_CHAN1_DATA 0x14
28 #define XTFPGA_I2S_CHAN2_DATA 0x18
29 #define XTFPGA_I2S_CHAN3_DATA 0x1c
31 #define XTFPGA_I2S_CONFIG_TX_ENABLE 0x1
32 #define XTFPGA_I2S_CONFIG_INT_ENABLE 0x2
33 #define XTFPGA_I2S_CONFIG_LEFT 0x4
34 #define XTFPGA_I2S_CONFIG_RATIO_BASE 8
35 #define XTFPGA_I2S_CONFIG_RATIO_MASK 0x0000ff00
36 #define XTFPGA_I2S_CONFIG_RES_BASE 16
37 #define XTFPGA_I2S_CONFIG_RES_MASK 0x003f0000
38 #define XTFPGA_I2S_CONFIG_LEVEL_BASE 24
39 #define XTFPGA_I2S_CONFIG_LEVEL_MASK 0x0f000000
40 #define XTFPGA_I2S_CONFIG_CHANNEL_BASE 28
42 #define XTFPGA_I2S_INT_UNDERRUN 0x1
43 #define XTFPGA_I2S_INT_LEVEL 0x2
44 #define XTFPGA_I2S_INT_VALID 0x3
46 #define XTFPGA_I2S_FIFO_SIZE 8192
49 * I2S controller operation:
51 * Enabling TX: output 1 period of zeros (starting with left channel)
52 * and then queued data.
54 * Level status and interrupt: whenever FIFO level is below FIFO trigger,
55 * level status is 1 and an IRQ is asserted (if enabled).
57 * Underrun status and interrupt: whenever FIFO is empty, underrun status
58 * is 1 and an IRQ is asserted (if enabled).
63 struct regmap
*regmap
;
66 /* current playback substream. NULL if not playing.
68 * Access to that field is synchronized between the interrupt handler
69 * and userspace through RCU.
71 * Interrupt handler (threaded part) does PIO on substream data in RCU
72 * read-side critical section. Trigger callback sets and clears the
73 * pointer when the playback is started and stopped with
74 * rcu_assign_pointer. When userspace is about to free the playback
75 * stream in the pcm_close callback it synchronizes with the interrupt
76 * handler by means of synchronize_rcu call.
78 struct snd_pcm_substream __rcu
*tx_substream
;
79 unsigned (*tx_fn
)(struct xtfpga_i2s
*i2s
,
80 struct snd_pcm_runtime
*runtime
,
82 unsigned tx_ptr
; /* next frame index in the sample buffer */
84 /* current fifo level estimate.
85 * Doesn't have to be perfectly accurate, but must be not less than
86 * the actual FIFO level in order to avoid stall on push attempt.
88 unsigned tx_fifo_level
;
90 /* FIFO level at which level interrupt occurs */
93 /* maximal FIFO level */
94 unsigned tx_fifo_high
;
97 static bool xtfpga_i2s_wr_reg(struct device
*dev
, unsigned int reg
)
99 return reg
>= XTFPGA_I2S_CONFIG
;
102 static bool xtfpga_i2s_rd_reg(struct device
*dev
, unsigned int reg
)
104 return reg
< XTFPGA_I2S_CHAN0_DATA
;
107 static bool xtfpga_i2s_volatile_reg(struct device
*dev
, unsigned int reg
)
109 return reg
== XTFPGA_I2S_INT_STATUS
;
112 static const struct regmap_config xtfpga_i2s_regmap_config
= {
116 .max_register
= XTFPGA_I2S_CHAN3_DATA
,
117 .writeable_reg
= xtfpga_i2s_wr_reg
,
118 .readable_reg
= xtfpga_i2s_rd_reg
,
119 .volatile_reg
= xtfpga_i2s_volatile_reg
,
120 .cache_type
= REGCACHE_FLAT
,
123 /* Generate functions that do PIO from TX DMA area to FIFO for all supported
125 * Functions will be called xtfpga_pcm_tx_<channels>x<sample bits>, e.g.
126 * xtfpga_pcm_tx_2x16 for 16-bit stereo.
128 * FIFO consists of 32-bit words, one word per channel, always 2 channels.
129 * If I2S interface is configured with smaller sample resolution, only
130 * the LSB of each word is used.
132 #define xtfpga_pcm_tx_fn(channels, sample_bits) \
133 static unsigned xtfpga_pcm_tx_##channels##x##sample_bits( \
134 struct xtfpga_i2s *i2s, struct snd_pcm_runtime *runtime, \
137 const u##sample_bits (*p)[channels] = \
138 (void *)runtime->dma_area; \
140 for (; i2s->tx_fifo_level < i2s->tx_fifo_high; \
141 i2s->tx_fifo_level += 2) { \
142 iowrite32(p[tx_ptr][0], \
143 i2s->regs + XTFPGA_I2S_CHAN0_DATA); \
144 iowrite32(p[tx_ptr][channels - 1], \
145 i2s->regs + XTFPGA_I2S_CHAN0_DATA); \
146 if (++tx_ptr >= runtime->buffer_size) \
152 xtfpga_pcm_tx_fn(1, 16)
153 xtfpga_pcm_tx_fn(2, 16)
154 xtfpga_pcm_tx_fn(1, 32)
155 xtfpga_pcm_tx_fn(2, 32)
157 #undef xtfpga_pcm_tx_fn
159 static bool xtfpga_pcm_push_tx(struct xtfpga_i2s
*i2s
)
161 struct snd_pcm_substream
*tx_substream
;
165 tx_substream
= rcu_dereference(i2s
->tx_substream
);
166 tx_active
= tx_substream
&& snd_pcm_running(tx_substream
);
168 unsigned tx_ptr
= READ_ONCE(i2s
->tx_ptr
);
169 unsigned new_tx_ptr
= i2s
->tx_fn(i2s
, tx_substream
->runtime
,
172 cmpxchg(&i2s
->tx_ptr
, tx_ptr
, new_tx_ptr
);
179 static void xtfpga_pcm_refill_fifo(struct xtfpga_i2s
*i2s
)
184 regmap_read(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
,
187 for (i
= 0; i
< 2; ++i
) {
188 bool tx_active
= xtfpga_pcm_push_tx(i2s
);
190 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
,
191 XTFPGA_I2S_INT_VALID
);
193 regmap_read(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
,
197 !(int_status
& XTFPGA_I2S_INT_LEVEL
))
200 /* After the push the level IRQ is still asserted,
201 * means FIFO level is below tx_fifo_low. Estimate
204 i2s
->tx_fifo_level
= i2s
->tx_fifo_low
;
207 if (!(int_status
& XTFPGA_I2S_INT_LEVEL
))
208 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_MASK
,
209 XTFPGA_I2S_INT_VALID
);
210 else if (!(int_status
& XTFPGA_I2S_INT_UNDERRUN
))
211 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_MASK
,
212 XTFPGA_I2S_INT_UNDERRUN
);
214 if (!(int_status
& XTFPGA_I2S_INT_UNDERRUN
))
215 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
216 XTFPGA_I2S_CONFIG_INT_ENABLE
|
217 XTFPGA_I2S_CONFIG_TX_ENABLE
,
218 XTFPGA_I2S_CONFIG_INT_ENABLE
|
219 XTFPGA_I2S_CONFIG_TX_ENABLE
);
221 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
222 XTFPGA_I2S_CONFIG_INT_ENABLE
|
223 XTFPGA_I2S_CONFIG_TX_ENABLE
, 0);
226 static irqreturn_t
xtfpga_i2s_threaded_irq_handler(int irq
, void *dev_id
)
228 struct xtfpga_i2s
*i2s
= dev_id
;
229 struct snd_pcm_substream
*tx_substream
;
230 unsigned config
, int_status
, int_mask
;
232 regmap_read(i2s
->regmap
, XTFPGA_I2S_CONFIG
, &config
);
233 regmap_read(i2s
->regmap
, XTFPGA_I2S_INT_MASK
, &int_mask
);
234 regmap_read(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
, &int_status
);
236 if (!(config
& XTFPGA_I2S_CONFIG_INT_ENABLE
) ||
237 !(int_status
& int_mask
& XTFPGA_I2S_INT_VALID
))
240 /* Update FIFO level estimate in accordance with interrupt status
243 if (int_status
& XTFPGA_I2S_INT_UNDERRUN
) {
244 i2s
->tx_fifo_level
= 0;
245 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
246 XTFPGA_I2S_CONFIG_TX_ENABLE
, 0);
248 /* The FIFO isn't empty, but is below tx_fifo_low. Estimate
251 i2s
->tx_fifo_level
= i2s
->tx_fifo_low
;
255 tx_substream
= rcu_dereference(i2s
->tx_substream
);
257 if (tx_substream
&& snd_pcm_running(tx_substream
)) {
258 snd_pcm_period_elapsed(tx_substream
);
259 if (int_status
& XTFPGA_I2S_INT_UNDERRUN
)
260 dev_dbg_ratelimited(i2s
->dev
, "%s: underrun\n",
265 /* Refill FIFO, update allowed IRQ reasons, enable IRQ if FIFO is
268 xtfpga_pcm_refill_fifo(i2s
);
273 static int xtfpga_i2s_startup(struct snd_pcm_substream
*substream
,
274 struct snd_soc_dai
*dai
)
276 struct xtfpga_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
278 snd_soc_dai_set_dma_data(dai
, substream
, i2s
);
282 static int xtfpga_i2s_hw_params(struct snd_pcm_substream
*substream
,
283 struct snd_pcm_hw_params
*params
,
284 struct snd_soc_dai
*dai
)
286 struct xtfpga_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
287 unsigned srate
= params_rate(params
);
288 unsigned channels
= params_channels(params
);
289 unsigned period_size
= params_period_size(params
);
290 unsigned sample_size
= snd_pcm_format_width(params_format(params
));
291 unsigned freq
, ratio
, level
;
294 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
295 XTFPGA_I2S_CONFIG_RES_MASK
,
296 sample_size
<< XTFPGA_I2S_CONFIG_RES_BASE
);
299 err
= clk_set_rate(i2s
->clk
, freq
);
303 /* ratio field of the config register controls MCLK->I2S clock
304 * derivation: I2S clock = MCLK / (2 * (ratio + 2)).
306 * So with MCLK = 256 * sample rate ratio is 0 for 32 bit stereo
307 * and 2 for 16 bit stereo.
309 ratio
= (freq
- (srate
* sample_size
* 8)) /
310 (srate
* sample_size
* 4);
312 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
313 XTFPGA_I2S_CONFIG_RATIO_MASK
,
314 ratio
<< XTFPGA_I2S_CONFIG_RATIO_BASE
);
316 i2s
->tx_fifo_low
= XTFPGA_I2S_FIFO_SIZE
/ 2;
318 /* period_size * 2: FIFO always gets 2 samples per frame */
320 i2s
->tx_fifo_low
/ 2 >= period_size
* 2 &&
321 level
< (XTFPGA_I2S_CONFIG_LEVEL_MASK
>>
322 XTFPGA_I2S_CONFIG_LEVEL_BASE
); ++level
)
323 i2s
->tx_fifo_low
/= 2;
325 i2s
->tx_fifo_high
= 2 * i2s
->tx_fifo_low
;
327 regmap_update_bits(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
328 XTFPGA_I2S_CONFIG_LEVEL_MASK
,
329 level
<< XTFPGA_I2S_CONFIG_LEVEL_BASE
);
332 "%s srate: %u, channels: %u, sample_size: %u, period_size: %u\n",
333 __func__
, srate
, channels
, sample_size
, period_size
);
334 dev_dbg(i2s
->dev
, "%s freq: %u, ratio: %u, level: %u\n",
335 __func__
, freq
, ratio
, level
);
340 static int xtfpga_i2s_set_fmt(struct snd_soc_dai
*cpu_dai
,
343 if ((fmt
& SND_SOC_DAIFMT_INV_MASK
) != SND_SOC_DAIFMT_NB_NF
)
345 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
347 if ((fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) != SND_SOC_DAIFMT_I2S
)
355 static const struct snd_pcm_hardware xtfpga_pcm_hardware
= {
356 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
357 SNDRV_PCM_INFO_MMAP_VALID
|
358 SNDRV_PCM_INFO_BLOCK_TRANSFER
,
359 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
360 SNDRV_PCM_FMTBIT_S32_LE
,
363 .period_bytes_min
= 2,
364 .period_bytes_max
= XTFPGA_I2S_FIFO_SIZE
/ 2 * 8,
366 .periods_max
= XTFPGA_I2S_FIFO_SIZE
* 8 / 2,
367 .buffer_bytes_max
= XTFPGA_I2S_FIFO_SIZE
* 8,
371 static int xtfpga_pcm_open(struct snd_pcm_substream
*substream
)
373 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
374 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
377 snd_soc_set_runtime_hwparams(substream
, &xtfpga_pcm_hardware
);
378 p
= snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
379 runtime
->private_data
= p
;
384 static int xtfpga_pcm_close(struct snd_pcm_substream
*substream
)
390 static int xtfpga_pcm_hw_params(struct snd_pcm_substream
*substream
,
391 struct snd_pcm_hw_params
*hw_params
)
394 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
395 struct xtfpga_i2s
*i2s
= runtime
->private_data
;
396 unsigned channels
= params_channels(hw_params
);
408 switch (params_format(hw_params
)) {
409 case SNDRV_PCM_FORMAT_S16_LE
:
410 i2s
->tx_fn
= (channels
== 1) ?
415 case SNDRV_PCM_FORMAT_S32_LE
:
416 i2s
->tx_fn
= (channels
== 1) ?
425 ret
= snd_pcm_lib_malloc_pages(substream
,
426 params_buffer_bytes(hw_params
));
430 static int xtfpga_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
433 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
434 struct xtfpga_i2s
*i2s
= runtime
->private_data
;
437 case SNDRV_PCM_TRIGGER_START
:
438 case SNDRV_PCM_TRIGGER_RESUME
:
439 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
440 WRITE_ONCE(i2s
->tx_ptr
, 0);
441 rcu_assign_pointer(i2s
->tx_substream
, substream
);
442 xtfpga_pcm_refill_fifo(i2s
);
445 case SNDRV_PCM_TRIGGER_STOP
:
446 case SNDRV_PCM_TRIGGER_SUSPEND
:
447 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
448 rcu_assign_pointer(i2s
->tx_substream
, NULL
);
458 static snd_pcm_uframes_t
xtfpga_pcm_pointer(struct snd_pcm_substream
*substream
)
460 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
461 struct xtfpga_i2s
*i2s
= runtime
->private_data
;
462 snd_pcm_uframes_t pos
= READ_ONCE(i2s
->tx_ptr
);
464 return pos
< runtime
->buffer_size
? pos
: 0;
467 static int xtfpga_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
469 struct snd_card
*card
= rtd
->card
->snd_card
;
470 size_t size
= xtfpga_pcm_hardware
.buffer_bytes_max
;
472 return snd_pcm_lib_preallocate_pages_for_all(rtd
->pcm
,
474 card
->dev
, size
, size
);
477 static const struct snd_pcm_ops xtfpga_pcm_ops
= {
478 .open
= xtfpga_pcm_open
,
479 .close
= xtfpga_pcm_close
,
480 .ioctl
= snd_pcm_lib_ioctl
,
481 .hw_params
= xtfpga_pcm_hw_params
,
482 .trigger
= xtfpga_pcm_trigger
,
483 .pointer
= xtfpga_pcm_pointer
,
486 static const struct snd_soc_platform_driver xtfpga_soc_platform
= {
487 .pcm_new
= xtfpga_pcm_new
,
488 .ops
= &xtfpga_pcm_ops
,
491 static const struct snd_soc_component_driver xtfpga_i2s_component
= {
495 static const struct snd_soc_dai_ops xtfpga_i2s_dai_ops
= {
496 .startup
= xtfpga_i2s_startup
,
497 .hw_params
= xtfpga_i2s_hw_params
,
498 .set_fmt
= xtfpga_i2s_set_fmt
,
501 static struct snd_soc_dai_driver xtfpga_i2s_dai
[] = {
503 .name
= "xtfpga-i2s",
508 .rates
= SNDRV_PCM_RATE_8000_96000
,
509 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
510 SNDRV_PCM_FMTBIT_S32_LE
,
512 .ops
= &xtfpga_i2s_dai_ops
,
516 static int xtfpga_i2s_runtime_suspend(struct device
*dev
)
518 struct xtfpga_i2s
*i2s
= dev_get_drvdata(dev
);
520 clk_disable_unprepare(i2s
->clk
);
524 static int xtfpga_i2s_runtime_resume(struct device
*dev
)
526 struct xtfpga_i2s
*i2s
= dev_get_drvdata(dev
);
529 ret
= clk_prepare_enable(i2s
->clk
);
531 dev_err(dev
, "clk_prepare_enable failed: %d\n", ret
);
537 static int xtfpga_i2s_probe(struct platform_device
*pdev
)
539 struct xtfpga_i2s
*i2s
;
540 struct resource
*mem
;
543 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(*i2s
), GFP_KERNEL
);
548 platform_set_drvdata(pdev
, i2s
);
549 i2s
->dev
= &pdev
->dev
;
550 dev_dbg(&pdev
->dev
, "dev: %p, i2s: %p\n", &pdev
->dev
, i2s
);
552 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
553 i2s
->regs
= devm_ioremap_resource(&pdev
->dev
, mem
);
554 if (IS_ERR(i2s
->regs
)) {
555 err
= PTR_ERR(i2s
->regs
);
559 i2s
->regmap
= devm_regmap_init_mmio(&pdev
->dev
, i2s
->regs
,
560 &xtfpga_i2s_regmap_config
);
561 if (IS_ERR(i2s
->regmap
)) {
562 dev_err(&pdev
->dev
, "regmap init failed\n");
563 err
= PTR_ERR(i2s
->regmap
);
567 i2s
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
568 if (IS_ERR(i2s
->clk
)) {
569 dev_err(&pdev
->dev
, "couldn't get clock\n");
570 err
= PTR_ERR(i2s
->clk
);
574 regmap_write(i2s
->regmap
, XTFPGA_I2S_CONFIG
,
575 (0x1 << XTFPGA_I2S_CONFIG_CHANNEL_BASE
));
576 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
, XTFPGA_I2S_INT_VALID
);
577 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_MASK
, XTFPGA_I2S_INT_UNDERRUN
);
579 irq
= platform_get_irq(pdev
, 0);
581 dev_err(&pdev
->dev
, "No IRQ resource\n");
585 err
= devm_request_threaded_irq(&pdev
->dev
, irq
, NULL
,
586 xtfpga_i2s_threaded_irq_handler
,
587 IRQF_SHARED
| IRQF_ONESHOT
,
590 dev_err(&pdev
->dev
, "request_irq failed\n");
594 err
= snd_soc_register_platform(&pdev
->dev
, &xtfpga_soc_platform
);
596 dev_err(&pdev
->dev
, "couldn't register platform\n");
599 err
= devm_snd_soc_register_component(&pdev
->dev
,
600 &xtfpga_i2s_component
,
602 ARRAY_SIZE(xtfpga_i2s_dai
));
604 dev_err(&pdev
->dev
, "couldn't register component\n");
605 goto err_unregister_platform
;
608 pm_runtime_enable(&pdev
->dev
);
609 if (!pm_runtime_enabled(&pdev
->dev
)) {
610 err
= xtfpga_i2s_runtime_resume(&pdev
->dev
);
617 pm_runtime_disable(&pdev
->dev
);
618 err_unregister_platform
:
619 snd_soc_unregister_platform(&pdev
->dev
);
621 dev_err(&pdev
->dev
, "%s: err = %d\n", __func__
, err
);
625 static int xtfpga_i2s_remove(struct platform_device
*pdev
)
627 struct xtfpga_i2s
*i2s
= dev_get_drvdata(&pdev
->dev
);
629 snd_soc_unregister_platform(&pdev
->dev
);
630 if (i2s
->regmap
&& !IS_ERR(i2s
->regmap
)) {
631 regmap_write(i2s
->regmap
, XTFPGA_I2S_CONFIG
, 0);
632 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_MASK
, 0);
633 regmap_write(i2s
->regmap
, XTFPGA_I2S_INT_STATUS
,
634 XTFPGA_I2S_INT_VALID
);
636 pm_runtime_disable(&pdev
->dev
);
637 if (!pm_runtime_status_suspended(&pdev
->dev
))
638 xtfpga_i2s_runtime_suspend(&pdev
->dev
);
643 static const struct of_device_id xtfpga_i2s_of_match
[] = {
644 { .compatible
= "cdns,xtfpga-i2s", },
647 MODULE_DEVICE_TABLE(of
, xtfpga_i2s_of_match
);
650 static const struct dev_pm_ops xtfpga_i2s_pm_ops
= {
651 SET_RUNTIME_PM_OPS(xtfpga_i2s_runtime_suspend
,
652 xtfpga_i2s_runtime_resume
, NULL
)
655 static struct platform_driver xtfpga_i2s_driver
= {
656 .probe
= xtfpga_i2s_probe
,
657 .remove
= xtfpga_i2s_remove
,
659 .name
= "xtfpga-i2s",
660 .of_match_table
= of_match_ptr(xtfpga_i2s_of_match
),
661 .pm
= &xtfpga_i2s_pm_ops
,
665 module_platform_driver(xtfpga_i2s_driver
);
667 MODULE_AUTHOR("Max Filippov <jcmvbkbc@gmail.com>");
668 MODULE_DESCRIPTION("xtfpga I2S controller driver");
669 MODULE_LICENSE("GPL v2");