summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/sound/pci/cs46xx
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/sound/pci/cs46xx')
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/Makefile10
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/cs46xx.c186
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_image.h3468
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.c3882
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.h210
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.c2017
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.h231
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos_scb_lib.c1784
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwc4630.h320
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcasync.h176
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcbinhack.h48
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.asp170
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.h68
-rw-r--r--ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcsnoop.h46
14 files changed, 0 insertions, 12616 deletions
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/Makefile b/ANDROID_3.4.5/sound/pci/cs46xx/Makefile
deleted file mode 100644
index 67e811ec..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# Makefile for ALSA
-# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
-#
-
-snd-cs46xx-y := cs46xx.o cs46xx_lib.o
-snd-cs46xx-$(CONFIG_SND_CS46XX_NEW_DSP) += dsp_spos.o dsp_spos_scb_lib.o
-
-# Toplevel Module Dependency
-obj-$(CONFIG_SND_CS46XX) += snd-cs46xx.o
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx.c b/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx.c
deleted file mode 100644
index 819d79d0..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx.c
+++ /dev/null
@@ -1,186 +0,0 @@
-/*
- * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards
- * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-/*
- NOTES:
- - sometimes the sound is metallic and sibilant, unloading and
- reloading the module may solve this.
-*/
-
-#include <linux/pci.h>
-#include <linux/time.h>
-#include <linux/init.h>
-#include <linux/module.h>
-#include <sound/core.h>
-#include <sound/cs46xx.h>
-#include <sound/initval.h>
-
-MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
-MODULE_DESCRIPTION("Cirrus Logic Sound Fusion CS46XX");
-MODULE_LICENSE("GPL");
-MODULE_SUPPORTED_DEVICE("{{Cirrus Logic,Sound Fusion (CS4280)},"
- "{Cirrus Logic,Sound Fusion (CS4610)},"
- "{Cirrus Logic,Sound Fusion (CS4612)},"
- "{Cirrus Logic,Sound Fusion (CS4615)},"
- "{Cirrus Logic,Sound Fusion (CS4622)},"
- "{Cirrus Logic,Sound Fusion (CS4624)},"
- "{Cirrus Logic,Sound Fusion (CS4630)}}");
-
-static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
-static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
-static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
-static bool external_amp[SNDRV_CARDS];
-static bool thinkpad[SNDRV_CARDS];
-static bool mmap_valid[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
-
-module_param_array(index, int, NULL, 0444);
-MODULE_PARM_DESC(index, "Index value for the CS46xx soundcard.");
-module_param_array(id, charp, NULL, 0444);
-MODULE_PARM_DESC(id, "ID string for the CS46xx soundcard.");
-module_param_array(enable, bool, NULL, 0444);
-MODULE_PARM_DESC(enable, "Enable CS46xx soundcard.");
-module_param_array(external_amp, bool, NULL, 0444);
-MODULE_PARM_DESC(external_amp, "Force to enable external amplifer.");
-module_param_array(thinkpad, bool, NULL, 0444);
-MODULE_PARM_DESC(thinkpad, "Force to enable Thinkpad's CLKRUN control.");
-module_param_array(mmap_valid, bool, NULL, 0444);
-MODULE_PARM_DESC(mmap_valid, "Support OSS mmap.");
-
-static DEFINE_PCI_DEVICE_TABLE(snd_cs46xx_ids) = {
- { PCI_VDEVICE(CIRRUS, 0x6001), 0, }, /* CS4280 */
- { PCI_VDEVICE(CIRRUS, 0x6003), 0, }, /* CS4612 */
- { PCI_VDEVICE(CIRRUS, 0x6004), 0, }, /* CS4615 */
- { 0, }
-};
-
-MODULE_DEVICE_TABLE(pci, snd_cs46xx_ids);
-
-static int __devinit snd_card_cs46xx_probe(struct pci_dev *pci,
- const struct pci_device_id *pci_id)
-{
- static int dev;
- struct snd_card *card;
- struct snd_cs46xx *chip;
- int err;
-
- if (dev >= SNDRV_CARDS)
- return -ENODEV;
- if (!enable[dev]) {
- dev++;
- return -ENOENT;
- }
-
- err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
- if (err < 0)
- return err;
- if ((err = snd_cs46xx_create(card, pci,
- external_amp[dev], thinkpad[dev],
- &chip)) < 0) {
- snd_card_free(card);
- return err;
- }
- card->private_data = chip;
- chip->accept_valid = mmap_valid[dev];
- if ((err = snd_cs46xx_pcm(chip, 0, NULL)) < 0) {
- snd_card_free(card);
- return err;
- }
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if ((err = snd_cs46xx_pcm_rear(chip,1, NULL)) < 0) {
- snd_card_free(card);
- return err;
- }
- if ((err = snd_cs46xx_pcm_iec958(chip,2,NULL)) < 0) {
- snd_card_free(card);
- return err;
- }
-#endif
- if ((err = snd_cs46xx_mixer(chip, 2)) < 0) {
- snd_card_free(card);
- return err;
- }
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (chip->nr_ac97_codecs ==2) {
- if ((err = snd_cs46xx_pcm_center_lfe(chip,3,NULL)) < 0) {
- snd_card_free(card);
- return err;
- }
- }
-#endif
- if ((err = snd_cs46xx_midi(chip, 0, NULL)) < 0) {
- snd_card_free(card);
- return err;
- }
- if ((err = snd_cs46xx_start_dsp(chip)) < 0) {
- snd_card_free(card);
- return err;
- }
-
-
- snd_cs46xx_gameport(chip);
-
- strcpy(card->driver, "CS46xx");
- strcpy(card->shortname, "Sound Fusion CS46xx");
- sprintf(card->longname, "%s at 0x%lx/0x%lx, irq %i",
- card->shortname,
- chip->ba0_addr,
- chip->ba1_addr,
- chip->irq);
-
- if ((err = snd_card_register(card)) < 0) {
- snd_card_free(card);
- return err;
- }
-
- pci_set_drvdata(pci, card);
- dev++;
- return 0;
-}
-
-static void __devexit snd_card_cs46xx_remove(struct pci_dev *pci)
-{
- snd_card_free(pci_get_drvdata(pci));
- pci_set_drvdata(pci, NULL);
-}
-
-static struct pci_driver driver = {
- .name = KBUILD_MODNAME,
- .id_table = snd_cs46xx_ids,
- .probe = snd_card_cs46xx_probe,
- .remove = __devexit_p(snd_card_cs46xx_remove),
-#ifdef CONFIG_PM
- .suspend = snd_cs46xx_suspend,
- .resume = snd_cs46xx_resume,
-#endif
-};
-
-static int __init alsa_card_cs46xx_init(void)
-{
- return pci_register_driver(&driver);
-}
-
-static void __exit alsa_card_cs46xx_exit(void)
-{
- pci_unregister_driver(&driver);
-}
-
-module_init(alsa_card_cs46xx_init)
-module_exit(alsa_card_cs46xx_exit)
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_image.h b/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_image.h
deleted file mode 100644
index dc93f62d..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_image.h
+++ /dev/null
@@ -1,3468 +0,0 @@
-struct BA1struct {
- struct {
- unsigned long offset;
- unsigned long size;
- } memory[BA1_MEMORY_COUNT];
- u32 map[BA1_DWORD_SIZE];
-};
-
-
-static struct BA1struct BA1Struct = {
-{{ 0x00000000, 0x00003000 },{ 0x00010000, 0x00003800 },{ 0x00020000, 0x00007000 }},
-{0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000163,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00200040,0x00008010,0x00000000,
-0x00000000,0x80000001,0x00000001,0x00060000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00900080,0x00000173,0x00000000,
-0x00000000,0x00000010,0x00800000,0x00900000,
-0xf2c0000f,0x00000200,0x00000000,0x00010600,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000163,0x330300c2,
-0x06000000,0x00000000,0x80008000,0x80008000,
-0x3fc0000f,0x00000301,0x00010400,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00b00000,0x00d0806d,0x330480c3,
-0x04800000,0x00000001,0x00800001,0x0000ffff,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x066a0600,0x06350070,0x0000929d,0x929d929d,
-0x00000000,0x0000735a,0x00000600,0x00000000,
-0x929d735a,0x8734abfe,0x00010000,0x735a735a,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x0000804f,0x000000c3,
-0x05000000,0x00a00010,0x00000000,0x80008000,
-0x00000000,0x00000000,0x00000700,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000080,0x00a00000,0x0000809a,0x000000c2,
-0x07400000,0x00000000,0x80008000,0xffffffff,
-0x00c80028,0x00005555,0x00000000,0x000107a0,
-0x00c80028,0x000000c2,0x06800000,0x00000000,
-0x06e00080,0x00300000,0x000080bb,0x000000c9,
-0x07a00000,0x04000000,0x80008000,0xffffffff,
-0x00c80028,0x00005555,0x00000000,0x00000780,
-0x00c80028,0x000000c5,0xff800000,0x00000000,
-0x00640080,0x00c00000,0x00008197,0x000000c9,
-0x07800000,0x04000000,0x80008000,0xffffffff,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x0000805e,0x000000c1,
-0x00000000,0x00800000,0x80008000,0x80008000,
-0x00020000,0x0000ffff,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x929d0600,0x929d929d,0x929d929d,0x929d0000,
-0x929d929d,0x929d929d,0x929d929d,0x929d929d,
-0x929d929d,0x00100635,0x060b013f,0x00000004,
-0x00000001,0x007a0002,0x00000000,0x066e0610,
-0x0105929d,0x929d929d,0x929d929d,0x929d929d,
-0x929d929d,0xa431ac75,0x0001735a,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0x735a0051,
-0x00000000,0x929d929d,0x929d929d,0x929d929d,
-0x929d929d,0x929d929d,0x929d929d,0x929d929d,
-0x929d929d,0x929d929d,0x00000000,0x06400136,
-0x0000270f,0x00010000,0x007a0000,0x00000000,
-0x068e0645,0x0105929d,0x929d929d,0x929d929d,
-0x929d929d,0x929d929d,0xa431ac75,0x0001735a,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0xa431ac75,0xa431ac75,0xa431ac75,0xa431ac75,
-0x735a0100,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00010004,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00001705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00009705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00011705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00019705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00021705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00029705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00031705,0x00001400,0x000a411e,0x00001003,
-0x00040730,0x00001002,0x000f619e,0x00001003,
-0x00039705,0x00001400,0x000a411e,0x00001003,
-0x000fe19e,0x00001003,0x0009c730,0x00001003,
-0x0008e19c,0x00001003,0x000083c1,0x00093040,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00009705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00011705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00019705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00021705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00029705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00031705,0x00001400,0x000a211e,0x00001003,
-0x00098730,0x00001002,0x000ee19e,0x00001003,
-0x00039705,0x00001400,0x000a211e,0x00001003,
-0x0000a730,0x00001008,0x000e2730,0x00001002,
-0x0000a731,0x00001002,0x0000a731,0x00001002,
-0x0000a731,0x00001002,0x0000a731,0x00001002,
-0x0000a731,0x00001002,0x0000a731,0x00001002,
-0x00000000,0x00000000,0x000f619c,0x00001003,
-0x0007f801,0x000c0000,0x00000037,0x00001000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x000c0000,0x00000000,0x00000000,
-0x0000373c,0x00001000,0x00000000,0x00000000,
-0x000ee19c,0x00001003,0x0007f801,0x000c0000,
-0x00000037,0x00001000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x0000273c,0x00001000,
-0x00000033,0x00001000,0x000e679e,0x00001003,
-0x00007705,0x00001400,0x000ac71e,0x00001003,
-0x00087fc1,0x000c3be0,0x0007f801,0x000c0000,
-0x00000037,0x00001000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x0000a730,0x00001003,
-0x00000033,0x00001000,0x0007f801,0x000c0000,
-0x00000037,0x00001000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x000c0000,
-0x00000032,0x00001000,0x0000273d,0x00001000,
-0x0004a730,0x00001003,0x00000f41,0x00097140,
-0x0000a841,0x0009b240,0x0000a0c1,0x0009f040,
-0x0001c641,0x00093540,0x0001cec1,0x0009b5c0,
-0x00000000,0x00000000,0x0001bf05,0x0003fc40,
-0x00002725,0x000aa400,0x00013705,0x00093a00,
-0x0000002e,0x0009d6c0,0x00038630,0x00001004,
-0x0004ef0a,0x000eb785,0x0003fc8a,0x00000000,
-0x00000000,0x000c70e0,0x0007d182,0x0002c640,
-0x00000630,0x00001004,0x000799b8,0x0002c6c0,
-0x00031705,0x00092240,0x00039f05,0x000932c0,
-0x0003520a,0x00000000,0x00040731,0x0000100b,
-0x00010705,0x000b20c0,0x00000000,0x000eba44,
-0x00032108,0x000c60c4,0x00065208,0x000c2917,
-0x000406b0,0x00001007,0x00012f05,0x00036880,
-0x0002818e,0x000c0000,0x0004410a,0x00000000,
-0x00040630,0x00001007,0x00029705,0x000c0000,
-0x00000000,0x00000000,0x00003fc1,0x0003fc40,
-0x000037c1,0x00091b40,0x00003fc1,0x000911c0,
-0x000037c1,0x000957c0,0x00003fc1,0x000951c0,
-0x000037c1,0x00000000,0x00003fc1,0x000991c0,
-0x000037c1,0x00000000,0x00003fc1,0x0009d1c0,
-0x000037c1,0x00000000,0x0001ccc1,0x000915c0,
-0x0001c441,0x0009d800,0x0009cdc1,0x00091240,
-0x0001c541,0x00091d00,0x0009cfc1,0x00095240,
-0x0001c741,0x00095c80,0x000e8ca9,0x00099240,
-0x000e85ad,0x00095640,0x00069ca9,0x00099d80,
-0x000e952d,0x00099640,0x000eaca9,0x0009d6c0,
-0x000ea5ad,0x00091a40,0x0006bca9,0x0009de80,
-0x000eb52d,0x00095a40,0x000ecca9,0x00099ac0,
-0x000ec5ad,0x0009da40,0x000edca9,0x0009d300,
-0x000a6e0a,0x00001000,0x000ed52d,0x00091e40,
-0x000eeca9,0x00095ec0,0x000ee5ad,0x00099e40,
-0x0006fca9,0x00002500,0x000fb208,0x000c59a0,
-0x000ef52d,0x0009de40,0x00068ca9,0x000912c1,
-0x000683ad,0x00095241,0x00020f05,0x000991c1,
-0x00000000,0x00000000,0x00086f88,0x00001000,
-0x0009cf81,0x000b5340,0x0009c701,0x000b92c0,
-0x0009de81,0x000bd300,0x0009d601,0x000b1700,
-0x0001fd81,0x000b9d80,0x0009f501,0x000b57c0,
-0x000a0f81,0x000bd740,0x00020701,0x000b5c80,
-0x000a1681,0x000b97c0,0x00021601,0x00002500,
-0x000a0701,0x000b9b40,0x000a0f81,0x000b1bc0,
-0x00021681,0x00002d00,0x00020f81,0x000bd800,
-0x000a0701,0x000b5bc0,0x00021601,0x00003500,
-0x000a0f81,0x000b5f40,0x000a0701,0x000bdbc0,
-0x00021681,0x00003d00,0x00020f81,0x000b1d00,
-0x000a0701,0x000b1fc0,0x00021601,0x00020500,
-0x00020f81,0x000b1341,0x000a0701,0x000b9fc0,
-0x00021681,0x00020d00,0x00020f81,0x000bde80,
-0x000a0701,0x000bdfc0,0x00021601,0x00021500,
-0x00020f81,0x000b9341,0x00020701,0x000b53c1,
-0x00021681,0x00021d00,0x000a0f81,0x000d0380,
-0x0000b601,0x000b15c0,0x00007b01,0x00000000,
-0x00007b81,0x000bd1c0,0x00007b01,0x00000000,
-0x00007b81,0x000b91c0,0x00007b01,0x000b57c0,
-0x00007b81,0x000b51c0,0x00007b01,0x000b1b40,
-0x00007b81,0x000b11c0,0x00087b01,0x000c3dc0,
-0x0007e488,0x000d7e45,0x00000000,0x000d7a44,
-0x0007e48a,0x00000000,0x00011f05,0x00084080,
-0x00000000,0x00000000,0x00001705,0x000b3540,
-0x00008a01,0x000bf040,0x00007081,0x000bb5c0,
-0x00055488,0x00000000,0x0000d482,0x0003fc40,
-0x0003fc88,0x00000000,0x0001e401,0x000b3a00,
-0x0001ec81,0x000bd6c0,0x0004ef08,0x000eb784,
-0x000c86b0,0x00001007,0x00008281,0x000bb240,
-0x0000b801,0x000b7140,0x00007888,0x00000000,
-0x0000073c,0x00001000,0x0007f188,0x000c0000,
-0x00000000,0x00000000,0x00055288,0x000c555c,
-0x0005528a,0x000c0000,0x0009fa88,0x000c5d00,
-0x0000fa88,0x00000000,0x00000032,0x00001000,
-0x0000073d,0x00001000,0x0007f188,0x000c0000,
-0x00000000,0x00000000,0x0008c01c,0x00001003,
-0x00002705,0x00001008,0x0008b201,0x000c1392,
-0x0000ba01,0x00000000,0x00008731,0x00001400,
-0x0004c108,0x000fe0c4,0x00057488,0x00000000,
-0x000a6388,0x00001001,0x0008b334,0x000bc141,
-0x0003020e,0x00000000,0x000886b0,0x00001008,
-0x00003625,0x000c5dfa,0x000a638a,0x00001001,
-0x0008020e,0x00001002,0x0008a6b0,0x00001008,
-0x0007f301,0x00000000,0x00000000,0x00000000,
-0x00002725,0x000a8c40,0x000000ae,0x00000000,
-0x000d8630,0x00001008,0x00000000,0x000c74e0,
-0x0007d182,0x0002d640,0x000a8630,0x00001008,
-0x000799b8,0x0002d6c0,0x0000748a,0x000c3ec5,
-0x0007420a,0x000c0000,0x00062208,0x000c4117,
-0x00070630,0x00001009,0x00000000,0x000c0000,
-0x0001022e,0x00000000,0x0003a630,0x00001009,
-0x00000000,0x000c0000,0x00000036,0x00001000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x0002a730,0x00001008,0x0007f801,0x000c0000,
-0x00000037,0x00001000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x0002a730,0x00001008,
-0x00000033,0x00001000,0x0002a705,0x00001008,
-0x00007a01,0x000c0000,0x000e6288,0x000d550a,
-0x0006428a,0x00000000,0x00060730,0x0000100a,
-0x00000000,0x000c0000,0x00000000,0x00000000,
-0x0007aab0,0x00034880,0x00078fb0,0x0000100b,
-0x00057488,0x00000000,0x00033b94,0x00081140,
-0x000183ae,0x00000000,0x000786b0,0x0000100b,
-0x00022f05,0x000c3545,0x0000eb8a,0x00000000,
-0x00042731,0x00001003,0x0007aab0,0x00034880,
-0x00048fb0,0x0000100a,0x00057488,0x00000000,
-0x00033b94,0x00081140,0x000183ae,0x00000000,
-0x000806b0,0x0000100b,0x00022f05,0x00000000,
-0x00007401,0x00091140,0x00048f05,0x000951c0,
-0x00042731,0x00001003,0x0000473d,0x00001000,
-0x000f19b0,0x000bbc47,0x00080000,0x000bffc7,
-0x000fe19e,0x00001003,0x00000000,0x00000000,
-0x0008e19c,0x00001003,0x000083c1,0x00093040,
-0x00000f41,0x00097140,0x0000a841,0x0009b240,
-0x0000a0c1,0x0009f040,0x0001c641,0x00093540,
-0x0001cec1,0x0009b5c0,0x00000000,0x000fdc44,
-0x00055208,0x00000000,0x00010705,0x000a2880,
-0x0000a23a,0x00093a00,0x0003fc8a,0x000df6c5,
-0x0004ef0a,0x000c0000,0x00012f05,0x00036880,
-0x00065308,0x000c2997,0x000d86b0,0x0000100a,
-0x0004410a,0x000d40c7,0x00000000,0x00000000,
-0x00080730,0x00001004,0x00056f0a,0x000ea105,
-0x00000000,0x00000000,0x0000473d,0x00001000,
-0x000f19b0,0x000bbc47,0x00080000,0x000bffc7,
-0x0000273d,0x00001000,0x00000000,0x000eba44,
-0x00048f05,0x0000f440,0x00007401,0x0000f7c0,
-0x00000734,0x00001000,0x00010705,0x000a6880,
-0x00006a88,0x000c75c4,0x00000000,0x000e5084,
-0x00000000,0x000eba44,0x00087401,0x000e4782,
-0x00000734,0x00001000,0x00010705,0x000a6880,
-0x00006a88,0x000c75c4,0x0007c108,0x000c0000,
-0x0007e721,0x000bed40,0x00005f25,0x000badc0,
-0x0003ba97,0x000beb80,0x00065590,0x000b2e00,
-0x00033217,0x00003ec0,0x00065590,0x000b8e40,
-0x0003ed80,0x000491c0,0x00073fb0,0x00074c80,
-0x000283a0,0x0000100c,0x000ee388,0x00042970,
-0x00008301,0x00021ef2,0x000b8f14,0x0000000f,
-0x000c4d8d,0x0000001b,0x000d6dc2,0x000e06c6,
-0x000032ac,0x000c3916,0x0004edc2,0x00074c80,
-0x00078898,0x00001000,0x00038894,0x00000032,
-0x000c4d8d,0x00092e1b,0x000d6dc2,0x000e06c6,
-0x0004edc2,0x000c1956,0x0000722c,0x00034a00,
-0x00041705,0x0009ed40,0x00058730,0x00001400,
-0x000d7488,0x000c3a00,0x00048f05,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000,
-0x00000000,0x00000000,0x00000000,0x00000000}
- };
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.c b/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.c
deleted file mode 100644
index 4fa53161..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.c
+++ /dev/null
@@ -1,3882 +0,0 @@
-/*
- * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
- * Abramo Bagnara <abramo@alsa-project.org>
- * Cirrus Logic, Inc.
- * Routines for control of Cirrus Logic CS461x chips
- *
- * KNOWN BUGS:
- * - Sometimes the SPDIF input DSP tasks get's unsynchronized
- * and the SPDIF get somewhat "distorcionated", or/and left right channel
- * are swapped. To get around this problem when it happens, mute and unmute
- * the SPDIF input mixer control.
- * - On the Hercules Game Theater XP the amplifier are sometimes turned
- * off on inadecuate moments which causes distorcions on sound.
- *
- * TODO:
- * - Secondary CODEC on some soundcards
- * - SPDIF input support for other sample rates then 48khz
- * - Posibility to mix the SPDIF output with analog sources.
- * - PCM channels for Center and LFE on secondary codec
- *
- * NOTE: with CONFIG_SND_CS46XX_NEW_DSP unset uses old DSP image (which
- * is default configuration), no SPDIF, no secondary codec, no
- * multi channel PCM. But known to work.
- *
- * FINALLY: A credit to the developers Tom and Jordan
- * at Cirrus for have helping me out with the DSP, however we
- * still don't have sufficient documentation and technical
- * references to be able to implement all fancy feutures
- * supported by the cs46xx DSP's.
- * Benny <benny@hostmobility.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-#include <linux/delay.h>
-#include <linux/pci.h>
-#include <linux/pm.h>
-#include <linux/init.h>
-#include <linux/interrupt.h>
-#include <linux/slab.h>
-#include <linux/gameport.h>
-#include <linux/mutex.h>
-#include <linux/export.h>
-
-
-#include <sound/core.h>
-#include <sound/control.h>
-#include <sound/info.h>
-#include <sound/pcm.h>
-#include <sound/pcm_params.h>
-#include <sound/cs46xx.h>
-
-#include <asm/io.h>
-
-#include "cs46xx_lib.h"
-#include "dsp_spos.h"
-
-static void amp_voyetra(struct snd_cs46xx *chip, int change);
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-static struct snd_pcm_ops snd_cs46xx_playback_rear_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops;
-#endif
-
-static struct snd_pcm_ops snd_cs46xx_playback_ops;
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops;
-static struct snd_pcm_ops snd_cs46xx_capture_ops;
-static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops;
-
-static unsigned short snd_cs46xx_codec_read(struct snd_cs46xx *chip,
- unsigned short reg,
- int codec_index)
-{
- int count;
- unsigned short result,tmp;
- u32 offset = 0;
-
- if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
- codec_index != CS46XX_SECONDARY_CODEC_INDEX))
- return -EINVAL;
-
- chip->active_ctrl(chip, 1);
-
- if (codec_index == CS46XX_SECONDARY_CODEC_INDEX)
- offset = CS46XX_SECONDARY_CODEC_OFFSET;
-
- /*
- * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
- * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
- * 3. Write ACCTL = Control Register = 460h for initiating the write7---55
- * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 17h
- * 5. if DCV not cleared, break and return error
- * 6. Read ACSTS = Status Register = 464h, check VSTS bit
- */
-
- snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
-
- tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL);
- if ((tmp & ACCTL_VFRM) == 0) {
- snd_printk(KERN_WARNING "cs46xx: ACCTL_VFRM not set 0x%x\n",tmp);
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, (tmp & (~ACCTL_ESYN)) | ACCTL_VFRM );
- msleep(50);
- tmp = snd_cs46xx_peekBA0(chip, BA0_ACCTL + offset);
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, tmp | ACCTL_ESYN | ACCTL_VFRM );
-
- }
-
- /*
- * Setup the AC97 control registers on the CS461x to send the
- * appropriate command to the AC97 to perform the read.
- * ACCAD = Command Address Register = 46Ch
- * ACCDA = Command Data Register = 470h
- * ACCTL = Control Register = 460h
- * set DCV - will clear when process completed
- * set CRW - Read command
- * set VFRM - valid frame enabled
- * set ESYN - ASYNC generation enabled
- * set RSTN - ARST# inactive, AC97 codec not reset
- */
-
- snd_cs46xx_pokeBA0(chip, BA0_ACCAD, reg);
- snd_cs46xx_pokeBA0(chip, BA0_ACCDA, 0);
- if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL,/* clear ACCTL_DCV */ ACCTL_CRW |
- ACCTL_VFRM | ACCTL_ESYN |
- ACCTL_RSTN);
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_CRW |
- ACCTL_VFRM | ACCTL_ESYN |
- ACCTL_RSTN);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
- ACCTL_CRW | ACCTL_VFRM | ACCTL_ESYN |
- ACCTL_RSTN);
- }
-
- /*
- * Wait for the read to occur.
- */
- for (count = 0; count < 1000; count++) {
- /*
- * First, we want to wait for a short time.
- */
- udelay(10);
- /*
- * Now, check to see if the read has completed.
- * ACCTL = 460h, DCV should be reset by now and 460h = 17h
- */
- if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV))
- goto ok1;
- }
-
- snd_printk(KERN_ERR "AC'97 read problem (ACCTL_DCV), reg = 0x%x\n", reg);
- result = 0xffff;
- goto end;
-
- ok1:
- /*
- * Wait for the valid status bit to go active.
- */
- for (count = 0; count < 100; count++) {
- /*
- * Read the AC97 status register.
- * ACSTS = Status Register = 464h
- * VSTS - Valid Status
- */
- if (snd_cs46xx_peekBA0(chip, BA0_ACSTS + offset) & ACSTS_VSTS)
- goto ok2;
- udelay(10);
- }
-
- snd_printk(KERN_ERR "AC'97 read problem (ACSTS_VSTS), codec_index %d, reg = 0x%x\n", codec_index, reg);
- result = 0xffff;
- goto end;
-
- ok2:
- /*
- * Read the data returned from the AC97 register.
- * ACSDA = Status Data Register = 474h
- */
-#if 0
- printk(KERN_DEBUG "e) reg = 0x%x, val = 0x%x, BA0_ACCAD = 0x%x\n", reg,
- snd_cs46xx_peekBA0(chip, BA0_ACSDA),
- snd_cs46xx_peekBA0(chip, BA0_ACCAD));
-#endif
-
- //snd_cs46xx_peekBA0(chip, BA0_ACCAD);
- result = snd_cs46xx_peekBA0(chip, BA0_ACSDA + offset);
- end:
- chip->active_ctrl(chip, -1);
- return result;
-}
-
-static unsigned short snd_cs46xx_ac97_read(struct snd_ac97 * ac97,
- unsigned short reg)
-{
- struct snd_cs46xx *chip = ac97->private_data;
- unsigned short val;
- int codec_index = ac97->num;
-
- if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
- codec_index != CS46XX_SECONDARY_CODEC_INDEX))
- return 0xffff;
-
- val = snd_cs46xx_codec_read(chip, reg, codec_index);
-
- return val;
-}
-
-
-static void snd_cs46xx_codec_write(struct snd_cs46xx *chip,
- unsigned short reg,
- unsigned short val,
- int codec_index)
-{
- int count;
-
- if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
- codec_index != CS46XX_SECONDARY_CODEC_INDEX))
- return;
-
- chip->active_ctrl(chip, 1);
-
- /*
- * 1. Write ACCAD = Command Address Register = 46Ch for AC97 register address
- * 2. Write ACCDA = Command Data Register = 470h for data to write to AC97
- * 3. Write ACCTL = Control Register = 460h for initiating the write
- * 4. Read ACCTL = 460h, DCV should be reset by now and 460h = 07h
- * 5. if DCV not cleared, break and return error
- */
-
- /*
- * Setup the AC97 control registers on the CS461x to send the
- * appropriate command to the AC97 to perform the read.
- * ACCAD = Command Address Register = 46Ch
- * ACCDA = Command Data Register = 470h
- * ACCTL = Control Register = 460h
- * set DCV - will clear when process completed
- * reset CRW - Write command
- * set VFRM - valid frame enabled
- * set ESYN - ASYNC generation enabled
- * set RSTN - ARST# inactive, AC97 codec not reset
- */
- snd_cs46xx_pokeBA0(chip, BA0_ACCAD , reg);
- snd_cs46xx_pokeBA0(chip, BA0_ACCDA , val);
- snd_cs46xx_peekBA0(chip, BA0_ACCTL);
-
- if (codec_index == CS46XX_PRIMARY_CODEC_INDEX) {
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, /* clear ACCTL_DCV */ ACCTL_VFRM |
- ACCTL_ESYN | ACCTL_RSTN);
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_VFRM |
- ACCTL_ESYN | ACCTL_RSTN);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_DCV | ACCTL_TC |
- ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
- }
-
- for (count = 0; count < 4000; count++) {
- /*
- * First, we want to wait for a short time.
- */
- udelay(10);
- /*
- * Now, check to see if the write has completed.
- * ACCTL = 460h, DCV should be reset by now and 460h = 07h
- */
- if (!(snd_cs46xx_peekBA0(chip, BA0_ACCTL) & ACCTL_DCV)) {
- goto end;
- }
- }
- snd_printk(KERN_ERR "AC'97 write problem, codec_index = %d, reg = 0x%x, val = 0x%x\n", codec_index, reg, val);
- end:
- chip->active_ctrl(chip, -1);
-}
-
-static void snd_cs46xx_ac97_write(struct snd_ac97 *ac97,
- unsigned short reg,
- unsigned short val)
-{
- struct snd_cs46xx *chip = ac97->private_data;
- int codec_index = ac97->num;
-
- if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
- codec_index != CS46XX_SECONDARY_CODEC_INDEX))
- return;
-
- snd_cs46xx_codec_write(chip, reg, val, codec_index);
-}
-
-
-/*
- * Chip initialization
- */
-
-int snd_cs46xx_download(struct snd_cs46xx *chip,
- u32 *src,
- unsigned long offset,
- unsigned long len)
-{
- void __iomem *dst;
- unsigned int bank = offset >> 16;
- offset = offset & 0xffff;
-
- if (snd_BUG_ON((offset & 3) || (len & 3)))
- return -EINVAL;
- dst = chip->region.idx[bank+1].remap_addr + offset;
- len /= sizeof(u32);
-
- /* writel already converts 32-bit value to right endianess */
- while (len-- > 0) {
- writel(*src++, dst);
- dst += sizeof(u32);
- }
- return 0;
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-
-#include "imgs/cwc4630.h"
-#include "imgs/cwcasync.h"
-#include "imgs/cwcsnoop.h"
-#include "imgs/cwcbinhack.h"
-#include "imgs/cwcdma.h"
-
-int snd_cs46xx_clear_BA1(struct snd_cs46xx *chip,
- unsigned long offset,
- unsigned long len)
-{
- void __iomem *dst;
- unsigned int bank = offset >> 16;
- offset = offset & 0xffff;
-
- if (snd_BUG_ON((offset & 3) || (len & 3)))
- return -EINVAL;
- dst = chip->region.idx[bank+1].remap_addr + offset;
- len /= sizeof(u32);
-
- /* writel already converts 32-bit value to right endianess */
- while (len-- > 0) {
- writel(0, dst);
- dst += sizeof(u32);
- }
- return 0;
-}
-
-#else /* old DSP image */
-
-#include "cs46xx_image.h"
-
-int snd_cs46xx_download_image(struct snd_cs46xx *chip)
-{
- int idx, err;
- unsigned long offset = 0;
-
- for (idx = 0; idx < BA1_MEMORY_COUNT; idx++) {
- if ((err = snd_cs46xx_download(chip,
- &BA1Struct.map[offset],
- BA1Struct.memory[idx].offset,
- BA1Struct.memory[idx].size)) < 0)
- return err;
- offset += BA1Struct.memory[idx].size >> 2;
- }
- return 0;
-}
-#endif /* CONFIG_SND_CS46XX_NEW_DSP */
-
-/*
- * Chip reset
- */
-
-static void snd_cs46xx_reset(struct snd_cs46xx *chip)
-{
- int idx;
-
- /*
- * Write the reset bit of the SP control register.
- */
- snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RSTSP);
-
- /*
- * Write the control register.
- */
- snd_cs46xx_poke(chip, BA1_SPCR, SPCR_DRQEN);
-
- /*
- * Clear the trap registers.
- */
- for (idx = 0; idx < 8; idx++) {
- snd_cs46xx_poke(chip, BA1_DREG, DREG_REGID_TRAP_SELECT + idx);
- snd_cs46xx_poke(chip, BA1_TWPR, 0xFFFF);
- }
- snd_cs46xx_poke(chip, BA1_DREG, 0);
-
- /*
- * Set the frame timer to reflect the number of cycles per frame.
- */
- snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
-}
-
-static int cs46xx_wait_for_fifo(struct snd_cs46xx * chip,int retry_timeout)
-{
- u32 i, status = 0;
- /*
- * Make sure the previous FIFO write operation has completed.
- */
- for(i = 0; i < 50; i++){
- status = snd_cs46xx_peekBA0(chip, BA0_SERBST);
-
- if( !(status & SERBST_WBSY) )
- break;
-
- mdelay(retry_timeout);
- }
-
- if(status & SERBST_WBSY) {
- snd_printk(KERN_ERR "cs46xx: failure waiting for "
- "FIFO command to complete\n");
- return -EINVAL;
- }
-
- return 0;
-}
-
-static void snd_cs46xx_clear_serial_FIFOs(struct snd_cs46xx *chip)
-{
- int idx, powerdown = 0;
- unsigned int tmp;
-
- /*
- * See if the devices are powered down. If so, we must power them up first
- * or they will not respond.
- */
- tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
- if (!(tmp & CLKCR1_SWCE)) {
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
- powerdown = 1;
- }
-
- /*
- * We want to clear out the serial port FIFOs so we don't end up playing
- * whatever random garbage happens to be in them. We fill the sample FIFOS
- * with zero (silence).
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0);
-
- /*
- * Fill all 256 sample FIFO locations.
- */
- for (idx = 0; idx < 0xFF; idx++) {
- /*
- * Make sure the previous FIFO write operation has completed.
- */
- if (cs46xx_wait_for_fifo(chip,1)) {
- snd_printdd ("failed waiting for FIFO at addr (%02X)\n",idx);
-
- if (powerdown)
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
-
- break;
- }
- /*
- * Write the serial port FIFO index.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
- /*
- * Tell the serial port to load the new value into the FIFO location.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
- }
- /*
- * Now, if we powered up the devices, then power them back down again.
- * This is kinda ugly, but should never happen.
- */
- if (powerdown)
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
-}
-
-static void snd_cs46xx_proc_start(struct snd_cs46xx *chip)
-{
- int cnt;
-
- /*
- * Set the frame timer to reflect the number of cycles per frame.
- */
- snd_cs46xx_poke(chip, BA1_FRMT, 0xadf);
- /*
- * Turn on the run, run at frame, and DMA enable bits in the local copy of
- * the SP control register.
- */
- snd_cs46xx_poke(chip, BA1_SPCR, SPCR_RUN | SPCR_RUNFR | SPCR_DRQEN);
- /*
- * Wait until the run at frame bit resets itself in the SP control
- * register.
- */
- for (cnt = 0; cnt < 25; cnt++) {
- udelay(50);
- if (!(snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR))
- break;
- }
-
- if (snd_cs46xx_peek(chip, BA1_SPCR) & SPCR_RUNFR)
- snd_printk(KERN_ERR "SPCR_RUNFR never reset\n");
-}
-
-static void snd_cs46xx_proc_stop(struct snd_cs46xx *chip)
-{
- /*
- * Turn off the run, run at frame, and DMA enable bits in the local copy of
- * the SP control register.
- */
- snd_cs46xx_poke(chip, BA1_SPCR, 0);
-}
-
-/*
- * Sample rate routines
- */
-
-#define GOF_PER_SEC 200
-
-static void snd_cs46xx_set_play_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
-{
- unsigned long flags;
- unsigned int tmp1, tmp2;
- unsigned int phiIncr;
- unsigned int correctionPerGOF, correctionPerSec;
-
- /*
- * Compute the values used to drive the actual sample rate conversion.
- * The following formulas are being computed, using inline assembly
- * since we need to use 64 bit arithmetic to compute the values:
- *
- * phiIncr = floor((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
- * GOF_PER_SEC)
- * ulCorrectionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -M
- * GOF_PER_SEC * correctionPerGOF
- *
- * i.e.
- *
- * phiIncr:other = dividend:remainder((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF:correctionPerSec =
- * dividend:remainder(ulOther / GOF_PER_SEC)
- */
- tmp1 = rate << 16;
- phiIncr = tmp1 / 48000;
- tmp1 -= phiIncr * 48000;
- tmp1 <<= 10;
- phiIncr <<= 10;
- tmp2 = tmp1 / 48000;
- phiIncr += tmp2;
- tmp1 -= tmp2 * 48000;
- correctionPerGOF = tmp1 / GOF_PER_SEC;
- tmp1 -= correctionPerGOF * GOF_PER_SEC;
- correctionPerSec = tmp1;
-
- /*
- * Fill in the SampleRateConverter control block.
- */
- spin_lock_irqsave(&chip->reg_lock, flags);
- snd_cs46xx_poke(chip, BA1_PSRC,
- ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
- snd_cs46xx_poke(chip, BA1_PPI, phiIncr);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-}
-
-static void snd_cs46xx_set_capture_sample_rate(struct snd_cs46xx *chip, unsigned int rate)
-{
- unsigned long flags;
- unsigned int phiIncr, coeffIncr, tmp1, tmp2;
- unsigned int correctionPerGOF, correctionPerSec, initialDelay;
- unsigned int frameGroupLength, cnt;
-
- /*
- * We can only decimate by up to a factor of 1/9th the hardware rate.
- * Correct the value if an attempt is made to stray outside that limit.
- */
- if ((rate * 9) < 48000)
- rate = 48000 / 9;
-
- /*
- * We can not capture at at rate greater than the Input Rate (48000).
- * Return an error if an attempt is made to stray outside that limit.
- */
- if (rate > 48000)
- rate = 48000;
-
- /*
- * Compute the values used to drive the actual sample rate conversion.
- * The following formulas are being computed, using inline assembly
- * since we need to use 64 bit arithmetic to compute the values:
- *
- * coeffIncr = -floor((Fs,out * 2^23) / Fs,in)
- * phiIncr = floor((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
- * GOF_PER_SEC)
- * correctionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -
- * GOF_PER_SEC * correctionPerGOF
- * initialDelay = ceil((24 * Fs,in) / Fs,out)
- *
- * i.e.
- *
- * coeffIncr = neg(dividend((Fs,out * 2^23) / Fs,in))
- * phiIncr:ulOther = dividend:remainder((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF:correctionPerSec =
- * dividend:remainder(ulOther / GOF_PER_SEC)
- * initialDelay = dividend(((24 * Fs,in) + Fs,out - 1) / Fs,out)
- */
-
- tmp1 = rate << 16;
- coeffIncr = tmp1 / 48000;
- tmp1 -= coeffIncr * 48000;
- tmp1 <<= 7;
- coeffIncr <<= 7;
- coeffIncr += tmp1 / 48000;
- coeffIncr ^= 0xFFFFFFFF;
- coeffIncr++;
- tmp1 = 48000 << 16;
- phiIncr = tmp1 / rate;
- tmp1 -= phiIncr * rate;
- tmp1 <<= 10;
- phiIncr <<= 10;
- tmp2 = tmp1 / rate;
- phiIncr += tmp2;
- tmp1 -= tmp2 * rate;
- correctionPerGOF = tmp1 / GOF_PER_SEC;
- tmp1 -= correctionPerGOF * GOF_PER_SEC;
- correctionPerSec = tmp1;
- initialDelay = ((48000 * 24) + rate - 1) / rate;
-
- /*
- * Fill in the VariDecimate control block.
- */
- spin_lock_irqsave(&chip->reg_lock, flags);
- snd_cs46xx_poke(chip, BA1_CSRC,
- ((correctionPerSec << 16) & 0xFFFF0000) | (correctionPerGOF & 0xFFFF));
- snd_cs46xx_poke(chip, BA1_CCI, coeffIncr);
- snd_cs46xx_poke(chip, BA1_CD,
- (((BA1_VARIDEC_BUF_1 + (initialDelay << 2)) << 16) & 0xFFFF0000) | 0x80);
- snd_cs46xx_poke(chip, BA1_CPI, phiIncr);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- /*
- * Figure out the frame group length for the write back task. Basically,
- * this is just the factors of 24000 (2^6*3*5^3) that are not present in
- * the output sample rate.
- */
- frameGroupLength = 1;
- for (cnt = 2; cnt <= 64; cnt *= 2) {
- if (((rate / cnt) * cnt) != rate)
- frameGroupLength *= 2;
- }
- if (((rate / 3) * 3) != rate) {
- frameGroupLength *= 3;
- }
- for (cnt = 5; cnt <= 125; cnt *= 5) {
- if (((rate / cnt) * cnt) != rate)
- frameGroupLength *= 5;
- }
-
- /*
- * Fill in the WriteBack control block.
- */
- spin_lock_irqsave(&chip->reg_lock, flags);
- snd_cs46xx_poke(chip, BA1_CFG1, frameGroupLength);
- snd_cs46xx_poke(chip, BA1_CFG2, (0x00800000 | frameGroupLength));
- snd_cs46xx_poke(chip, BA1_CCST, 0x0000FFFF);
- snd_cs46xx_poke(chip, BA1_CSPB, ((65536 * rate) / 24000));
- snd_cs46xx_poke(chip, (BA1_CSPB + 4), 0x0000FFFF);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-}
-
-/*
- * PCM part
- */
-
-static void snd_cs46xx_pb_trans_copy(struct snd_pcm_substream *substream,
- struct snd_pcm_indirect *rec, size_t bytes)
-{
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm * cpcm = runtime->private_data;
- memcpy(cpcm->hw_buf.area + rec->hw_data, runtime->dma_area + rec->sw_data, bytes);
-}
-
-static int snd_cs46xx_playback_transfer(struct snd_pcm_substream *substream)
-{
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm * cpcm = runtime->private_data;
- snd_pcm_indirect_playback_transfer(substream, &cpcm->pcm_rec, snd_cs46xx_pb_trans_copy);
- return 0;
-}
-
-static void snd_cs46xx_cp_trans_copy(struct snd_pcm_substream *substream,
- struct snd_pcm_indirect *rec, size_t bytes)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
- memcpy(runtime->dma_area + rec->sw_data,
- chip->capt.hw_buf.area + rec->hw_data, bytes);
-}
-
-static int snd_cs46xx_capture_transfer(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- snd_pcm_indirect_capture_transfer(substream, &chip->capt.pcm_rec, snd_cs46xx_cp_trans_copy);
- return 0;
-}
-
-static snd_pcm_uframes_t snd_cs46xx_playback_direct_pointer(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- size_t ptr;
- struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
-
- if (snd_BUG_ON(!cpcm->pcm_channel))
- return -ENXIO;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
-#else
- ptr = snd_cs46xx_peek(chip, BA1_PBA);
-#endif
- ptr -= cpcm->hw_buf.addr;
- return ptr >> cpcm->shift;
-}
-
-static snd_pcm_uframes_t snd_cs46xx_playback_indirect_pointer(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- size_t ptr;
- struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (snd_BUG_ON(!cpcm->pcm_channel))
- return -ENXIO;
- ptr = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 2) << 2);
-#else
- ptr = snd_cs46xx_peek(chip, BA1_PBA);
-#endif
- ptr -= cpcm->hw_buf.addr;
- return snd_pcm_indirect_playback_pointer(substream, &cpcm->pcm_rec, ptr);
-}
-
-static snd_pcm_uframes_t snd_cs46xx_capture_direct_pointer(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
- return ptr >> chip->capt.shift;
-}
-
-static snd_pcm_uframes_t snd_cs46xx_capture_indirect_pointer(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- size_t ptr = snd_cs46xx_peek(chip, BA1_CBA) - chip->capt.hw_buf.addr;
- return snd_pcm_indirect_capture_pointer(substream, &chip->capt.pcm_rec, ptr);
-}
-
-static int snd_cs46xx_playback_trigger(struct snd_pcm_substream *substream,
- int cmd)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- /*struct snd_pcm_runtime *runtime = substream->runtime;*/
- int result = 0;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- struct snd_cs46xx_pcm *cpcm = substream->runtime->private_data;
- if (! cpcm->pcm_channel) {
- return -ENXIO;
- }
-#endif
- switch (cmd) {
- case SNDRV_PCM_TRIGGER_START:
- case SNDRV_PCM_TRIGGER_RESUME:
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- /* magic value to unmute PCM stream playback volume */
- snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
- SCBVolumeCtrl) << 2, 0x80008000);
-
- if (cpcm->pcm_channel->unlinked)
- cs46xx_dsp_pcm_link(chip,cpcm->pcm_channel);
-
- if (substream->runtime->periods != CS46XX_FRAGS)
- snd_cs46xx_playback_transfer(substream);
-#else
- spin_lock(&chip->reg_lock);
- if (substream->runtime->periods != CS46XX_FRAGS)
- snd_cs46xx_playback_transfer(substream);
- { unsigned int tmp;
- tmp = snd_cs46xx_peek(chip, BA1_PCTL);
- tmp &= 0x0000ffff;
- snd_cs46xx_poke(chip, BA1_PCTL, chip->play_ctl | tmp);
- }
- spin_unlock(&chip->reg_lock);
-#endif
- break;
- case SNDRV_PCM_TRIGGER_STOP:
- case SNDRV_PCM_TRIGGER_SUSPEND:
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- /* magic mute channel */
- snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address +
- SCBVolumeCtrl) << 2, 0xffffffff);
-
- if (!cpcm->pcm_channel->unlinked)
- cs46xx_dsp_pcm_unlink(chip,cpcm->pcm_channel);
-#else
- spin_lock(&chip->reg_lock);
- { unsigned int tmp;
- tmp = snd_cs46xx_peek(chip, BA1_PCTL);
- tmp &= 0x0000ffff;
- snd_cs46xx_poke(chip, BA1_PCTL, tmp);
- }
- spin_unlock(&chip->reg_lock);
-#endif
- break;
- default:
- result = -EINVAL;
- break;
- }
-
- return result;
-}
-
-static int snd_cs46xx_capture_trigger(struct snd_pcm_substream *substream,
- int cmd)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- unsigned int tmp;
- int result = 0;
-
- spin_lock(&chip->reg_lock);
- switch (cmd) {
- case SNDRV_PCM_TRIGGER_START:
- case SNDRV_PCM_TRIGGER_RESUME:
- tmp = snd_cs46xx_peek(chip, BA1_CCTL);
- tmp &= 0xffff0000;
- snd_cs46xx_poke(chip, BA1_CCTL, chip->capt.ctl | tmp);
- break;
- case SNDRV_PCM_TRIGGER_STOP:
- case SNDRV_PCM_TRIGGER_SUSPEND:
- tmp = snd_cs46xx_peek(chip, BA1_CCTL);
- tmp &= 0xffff0000;
- snd_cs46xx_poke(chip, BA1_CCTL, tmp);
- break;
- default:
- result = -EINVAL;
- break;
- }
- spin_unlock(&chip->reg_lock);
-
- return result;
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-static int _cs46xx_adjust_sample_rate (struct snd_cs46xx *chip, struct snd_cs46xx_pcm *cpcm,
- int sample_rate)
-{
-
- /* If PCMReaderSCB and SrcTaskSCB not created yet ... */
- if ( cpcm->pcm_channel == NULL) {
- cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate,
- cpcm, cpcm->hw_buf.addr,cpcm->pcm_channel_id);
- if (cpcm->pcm_channel == NULL) {
- snd_printk(KERN_ERR "cs46xx: failed to create virtual PCM channel\n");
- return -ENOMEM;
- }
- cpcm->pcm_channel->sample_rate = sample_rate;
- } else
- /* if sample rate is changed */
- if ((int)cpcm->pcm_channel->sample_rate != sample_rate) {
- int unlinked = cpcm->pcm_channel->unlinked;
- cs46xx_dsp_destroy_pcm_channel (chip,cpcm->pcm_channel);
-
- if ( (cpcm->pcm_channel = cs46xx_dsp_create_pcm_channel (chip, sample_rate, cpcm,
- cpcm->hw_buf.addr,
- cpcm->pcm_channel_id)) == NULL) {
- snd_printk(KERN_ERR "cs46xx: failed to re-create virtual PCM channel\n");
- return -ENOMEM;
- }
-
- if (!unlinked) cs46xx_dsp_pcm_link (chip,cpcm->pcm_channel);
- cpcm->pcm_channel->sample_rate = sample_rate;
- }
-
- return 0;
-}
-#endif
-
-
-static int snd_cs46xx_playback_hw_params(struct snd_pcm_substream *substream,
- struct snd_pcm_hw_params *hw_params)
-{
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm *cpcm;
- int err;
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- int sample_rate = params_rate(hw_params);
- int period_size = params_period_bytes(hw_params);
-#endif
- cpcm = runtime->private_data;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (snd_BUG_ON(!sample_rate))
- return -ENXIO;
-
- mutex_lock(&chip->spos_mutex);
-
- if (_cs46xx_adjust_sample_rate (chip,cpcm,sample_rate)) {
- mutex_unlock(&chip->spos_mutex);
- return -ENXIO;
- }
-
- snd_BUG_ON(!cpcm->pcm_channel);
- if (!cpcm->pcm_channel) {
- mutex_unlock(&chip->spos_mutex);
- return -ENXIO;
- }
-
-
- if (cs46xx_dsp_pcm_channel_set_period (chip,cpcm->pcm_channel,period_size)) {
- mutex_unlock(&chip->spos_mutex);
- return -EINVAL;
- }
-
- snd_printdd ("period_size (%d), periods (%d) buffer_size(%d)\n",
- period_size, params_periods(hw_params),
- params_buffer_bytes(hw_params));
-#endif
-
- if (params_periods(hw_params) == CS46XX_FRAGS) {
- if (runtime->dma_area != cpcm->hw_buf.area)
- snd_pcm_lib_free_pages(substream);
- runtime->dma_area = cpcm->hw_buf.area;
- runtime->dma_addr = cpcm->hw_buf.addr;
- runtime->dma_bytes = cpcm->hw_buf.bytes;
-
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_ops;
- } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_rear_ops;
- } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_clfe_ops;
- } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_iec958_ops;
- } else {
- snd_BUG();
- }
-#else
- substream->ops = &snd_cs46xx_playback_ops;
-#endif
-
- } else {
- if (runtime->dma_area == cpcm->hw_buf.area) {
- runtime->dma_area = NULL;
- runtime->dma_addr = 0;
- runtime->dma_bytes = 0;
- }
- if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0) {
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- mutex_unlock(&chip->spos_mutex);
-#endif
- return err;
- }
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (cpcm->pcm_channel_id == DSP_PCM_MAIN_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_indirect_ops;
- } else if (cpcm->pcm_channel_id == DSP_PCM_REAR_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_indirect_rear_ops;
- } else if (cpcm->pcm_channel_id == DSP_PCM_CENTER_LFE_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_indirect_clfe_ops;
- } else if (cpcm->pcm_channel_id == DSP_IEC958_CHANNEL) {
- substream->ops = &snd_cs46xx_playback_indirect_iec958_ops;
- } else {
- snd_BUG();
- }
-#else
- substream->ops = &snd_cs46xx_playback_indirect_ops;
-#endif
-
- }
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- mutex_unlock(&chip->spos_mutex);
-#endif
-
- return 0;
-}
-
-static int snd_cs46xx_playback_hw_free(struct snd_pcm_substream *substream)
-{
- /*struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);*/
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm *cpcm;
-
- cpcm = runtime->private_data;
-
- /* if play_back open fails, then this function
- is called and cpcm can actually be NULL here */
- if (!cpcm) return -ENXIO;
-
- if (runtime->dma_area != cpcm->hw_buf.area)
- snd_pcm_lib_free_pages(substream);
-
- runtime->dma_area = NULL;
- runtime->dma_addr = 0;
- runtime->dma_bytes = 0;
-
- return 0;
-}
-
-static int snd_cs46xx_playback_prepare(struct snd_pcm_substream *substream)
-{
- unsigned int tmp;
- unsigned int pfie;
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm *cpcm;
-
- cpcm = runtime->private_data;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (snd_BUG_ON(!cpcm->pcm_channel))
- return -ENXIO;
-
- pfie = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2 );
- pfie &= ~0x0000f03f;
-#else
- /* old dsp */
- pfie = snd_cs46xx_peek(chip, BA1_PFIE);
- pfie &= ~0x0000f03f;
-#endif
-
- cpcm->shift = 2;
- /* if to convert from stereo to mono */
- if (runtime->channels == 1) {
- cpcm->shift--;
- pfie |= 0x00002000;
- }
- /* if to convert from 8 bit to 16 bit */
- if (snd_pcm_format_width(runtime->format) == 8) {
- cpcm->shift--;
- pfie |= 0x00001000;
- }
- /* if to convert to unsigned */
- if (snd_pcm_format_unsigned(runtime->format))
- pfie |= 0x00008000;
-
- /* Never convert byte order when sample stream is 8 bit */
- if (snd_pcm_format_width(runtime->format) != 8) {
- /* convert from big endian to little endian */
- if (snd_pcm_format_big_endian(runtime->format))
- pfie |= 0x00004000;
- }
-
- memset(&cpcm->pcm_rec, 0, sizeof(cpcm->pcm_rec));
- cpcm->pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
- cpcm->pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << cpcm->shift;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-
- tmp = snd_cs46xx_peek(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2);
- tmp &= ~0x000003ff;
- tmp |= (4 << cpcm->shift) - 1;
- /* playback transaction count register */
- snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address) << 2, tmp);
-
- /* playback format && interrupt enable */
- snd_cs46xx_poke(chip, (cpcm->pcm_channel->pcm_reader_scb->address + 1) << 2, pfie | cpcm->pcm_channel->pcm_slot);
-#else
- snd_cs46xx_poke(chip, BA1_PBA, cpcm->hw_buf.addr);
- tmp = snd_cs46xx_peek(chip, BA1_PDTC);
- tmp &= ~0x000003ff;
- tmp |= (4 << cpcm->shift) - 1;
- snd_cs46xx_poke(chip, BA1_PDTC, tmp);
- snd_cs46xx_poke(chip, BA1_PFIE, pfie);
- snd_cs46xx_set_play_sample_rate(chip, runtime->rate);
-#endif
-
- return 0;
-}
-
-static int snd_cs46xx_capture_hw_params(struct snd_pcm_substream *substream,
- struct snd_pcm_hw_params *hw_params)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
- int err;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- cs46xx_dsp_pcm_ostream_set_period (chip, params_period_bytes(hw_params));
-#endif
- if (runtime->periods == CS46XX_FRAGS) {
- if (runtime->dma_area != chip->capt.hw_buf.area)
- snd_pcm_lib_free_pages(substream);
- runtime->dma_area = chip->capt.hw_buf.area;
- runtime->dma_addr = chip->capt.hw_buf.addr;
- runtime->dma_bytes = chip->capt.hw_buf.bytes;
- substream->ops = &snd_cs46xx_capture_ops;
- } else {
- if (runtime->dma_area == chip->capt.hw_buf.area) {
- runtime->dma_area = NULL;
- runtime->dma_addr = 0;
- runtime->dma_bytes = 0;
- }
- if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
- return err;
- substream->ops = &snd_cs46xx_capture_indirect_ops;
- }
-
- return 0;
-}
-
-static int snd_cs46xx_capture_hw_free(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
-
- if (runtime->dma_area != chip->capt.hw_buf.area)
- snd_pcm_lib_free_pages(substream);
- runtime->dma_area = NULL;
- runtime->dma_addr = 0;
- runtime->dma_bytes = 0;
-
- return 0;
-}
-
-static int snd_cs46xx_capture_prepare(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
-
- snd_cs46xx_poke(chip, BA1_CBA, chip->capt.hw_buf.addr);
- chip->capt.shift = 2;
- memset(&chip->capt.pcm_rec, 0, sizeof(chip->capt.pcm_rec));
- chip->capt.pcm_rec.sw_buffer_size = snd_pcm_lib_buffer_bytes(substream);
- chip->capt.pcm_rec.hw_buffer_size = runtime->period_size * CS46XX_FRAGS << 2;
- snd_cs46xx_set_capture_sample_rate(chip, runtime->rate);
-
- return 0;
-}
-
-static irqreturn_t snd_cs46xx_interrupt(int irq, void *dev_id)
-{
- struct snd_cs46xx *chip = dev_id;
- u32 status1;
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- u32 status2;
- int i;
- struct snd_cs46xx_pcm *cpcm = NULL;
-#endif
-
- /*
- * Read the Interrupt Status Register to clear the interrupt
- */
- status1 = snd_cs46xx_peekBA0(chip, BA0_HISR);
- if ((status1 & 0x7fffffff) == 0) {
- snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
- return IRQ_NONE;
- }
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- status2 = snd_cs46xx_peekBA0(chip, BA0_HSR0);
-
- for (i = 0; i < DSP_MAX_PCM_CHANNELS; ++i) {
- if (i <= 15) {
- if ( status1 & (1 << i) ) {
- if (i == CS46XX_DSP_CAPTURE_CHANNEL) {
- if (chip->capt.substream)
- snd_pcm_period_elapsed(chip->capt.substream);
- } else {
- if (ins->pcm_channels[i].active &&
- ins->pcm_channels[i].private_data &&
- !ins->pcm_channels[i].unlinked) {
- cpcm = ins->pcm_channels[i].private_data;
- snd_pcm_period_elapsed(cpcm->substream);
- }
- }
- }
- } else {
- if ( status2 & (1 << (i - 16))) {
- if (ins->pcm_channels[i].active &&
- ins->pcm_channels[i].private_data &&
- !ins->pcm_channels[i].unlinked) {
- cpcm = ins->pcm_channels[i].private_data;
- snd_pcm_period_elapsed(cpcm->substream);
- }
- }
- }
- }
-
-#else
- /* old dsp */
- if ((status1 & HISR_VC0) && chip->playback_pcm) {
- if (chip->playback_pcm->substream)
- snd_pcm_period_elapsed(chip->playback_pcm->substream);
- }
- if ((status1 & HISR_VC1) && chip->pcm) {
- if (chip->capt.substream)
- snd_pcm_period_elapsed(chip->capt.substream);
- }
-#endif
-
- if ((status1 & HISR_MIDI) && chip->rmidi) {
- unsigned char c;
-
- spin_lock(&chip->reg_lock);
- while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_RBE) == 0) {
- c = snd_cs46xx_peekBA0(chip, BA0_MIDRP);
- if ((chip->midcr & MIDCR_RIE) == 0)
- continue;
- snd_rawmidi_receive(chip->midi_input, &c, 1);
- }
- while ((snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
- if ((chip->midcr & MIDCR_TIE) == 0)
- break;
- if (snd_rawmidi_transmit(chip->midi_output, &c, 1) != 1) {
- chip->midcr &= ~MIDCR_TIE;
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- break;
- }
- snd_cs46xx_pokeBA0(chip, BA0_MIDWP, c);
- }
- spin_unlock(&chip->reg_lock);
- }
- /*
- * EOI to the PCI part....reenables interrupts
- */
- snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_CHGM | HICR_IEV);
-
- return IRQ_HANDLED;
-}
-
-static struct snd_pcm_hardware snd_cs46xx_playback =
-{
- .info = (SNDRV_PCM_INFO_MMAP |
- SNDRV_PCM_INFO_INTERLEAVED |
- SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
- /*SNDRV_PCM_INFO_RESUME*/),
- .formats = (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_U8 |
- SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
- SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE),
- .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
- .rate_min = 5500,
- .rate_max = 48000,
- .channels_min = 1,
- .channels_max = 2,
- .buffer_bytes_max = (256 * 1024),
- .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
- .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
- .periods_min = CS46XX_FRAGS,
- .periods_max = 1024,
- .fifo_size = 0,
-};
-
-static struct snd_pcm_hardware snd_cs46xx_capture =
-{
- .info = (SNDRV_PCM_INFO_MMAP |
- SNDRV_PCM_INFO_INTERLEAVED |
- SNDRV_PCM_INFO_BLOCK_TRANSFER /*|*/
- /*SNDRV_PCM_INFO_RESUME*/),
- .formats = SNDRV_PCM_FMTBIT_S16_LE,
- .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
- .rate_min = 5500,
- .rate_max = 48000,
- .channels_min = 2,
- .channels_max = 2,
- .buffer_bytes_max = (256 * 1024),
- .period_bytes_min = CS46XX_MIN_PERIOD_SIZE,
- .period_bytes_max = CS46XX_MAX_PERIOD_SIZE,
- .periods_min = CS46XX_FRAGS,
- .periods_max = 1024,
- .fifo_size = 0,
-};
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-
-static unsigned int period_sizes[] = { 32, 64, 128, 256, 512, 1024, 2048 };
-
-static struct snd_pcm_hw_constraint_list hw_constraints_period_sizes = {
- .count = ARRAY_SIZE(period_sizes),
- .list = period_sizes,
- .mask = 0
-};
-
-#endif
-
-static void snd_cs46xx_pcm_free_substream(struct snd_pcm_runtime *runtime)
-{
- kfree(runtime->private_data);
-}
-
-static int _cs46xx_playback_open_channel (struct snd_pcm_substream *substream,int pcm_channel_id)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_cs46xx_pcm * cpcm;
- struct snd_pcm_runtime *runtime = substream->runtime;
-
- cpcm = kzalloc(sizeof(*cpcm), GFP_KERNEL);
- if (cpcm == NULL)
- return -ENOMEM;
- if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
- PAGE_SIZE, &cpcm->hw_buf) < 0) {
- kfree(cpcm);
- return -ENOMEM;
- }
-
- runtime->hw = snd_cs46xx_playback;
- runtime->private_data = cpcm;
- runtime->private_free = snd_cs46xx_pcm_free_substream;
-
- cpcm->substream = substream;
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- mutex_lock(&chip->spos_mutex);
- cpcm->pcm_channel = NULL;
- cpcm->pcm_channel_id = pcm_channel_id;
-
-
- snd_pcm_hw_constraint_list(runtime, 0,
- SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
- &hw_constraints_period_sizes);
-
- mutex_unlock(&chip->spos_mutex);
-#else
- chip->playback_pcm = cpcm; /* HACK */
-#endif
-
- if (chip->accept_valid)
- substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
- chip->active_ctrl(chip, 1);
-
- return 0;
-}
-
-static int snd_cs46xx_playback_open(struct snd_pcm_substream *substream)
-{
- snd_printdd("open front channel\n");
- return _cs46xx_playback_open_channel(substream,DSP_PCM_MAIN_CHANNEL);
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-static int snd_cs46xx_playback_open_rear(struct snd_pcm_substream *substream)
-{
- snd_printdd("open rear channel\n");
-
- return _cs46xx_playback_open_channel(substream,DSP_PCM_REAR_CHANNEL);
-}
-
-static int snd_cs46xx_playback_open_clfe(struct snd_pcm_substream *substream)
-{
- snd_printdd("open center - LFE channel\n");
-
- return _cs46xx_playback_open_channel(substream,DSP_PCM_CENTER_LFE_CHANNEL);
-}
-
-static int snd_cs46xx_playback_open_iec958(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
-
- snd_printdd("open raw iec958 channel\n");
-
- mutex_lock(&chip->spos_mutex);
- cs46xx_iec958_pre_open (chip);
- mutex_unlock(&chip->spos_mutex);
-
- return _cs46xx_playback_open_channel(substream,DSP_IEC958_CHANNEL);
-}
-
-static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream);
-
-static int snd_cs46xx_playback_close_iec958(struct snd_pcm_substream *substream)
-{
- int err;
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
-
- snd_printdd("close raw iec958 channel\n");
-
- err = snd_cs46xx_playback_close(substream);
-
- mutex_lock(&chip->spos_mutex);
- cs46xx_iec958_post_close (chip);
- mutex_unlock(&chip->spos_mutex);
-
- return err;
-}
-#endif
-
-static int snd_cs46xx_capture_open(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
-
- if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
- PAGE_SIZE, &chip->capt.hw_buf) < 0)
- return -ENOMEM;
- chip->capt.substream = substream;
- substream->runtime->hw = snd_cs46xx_capture;
-
- if (chip->accept_valid)
- substream->runtime->hw.info |= SNDRV_PCM_INFO_MMAP_VALID;
-
- chip->active_ctrl(chip, 1);
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_pcm_hw_constraint_list(substream->runtime, 0,
- SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
- &hw_constraints_period_sizes);
-#endif
- return 0;
-}
-
-static int snd_cs46xx_playback_close(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
- struct snd_pcm_runtime *runtime = substream->runtime;
- struct snd_cs46xx_pcm * cpcm;
-
- cpcm = runtime->private_data;
-
- /* when playback_open fails, then cpcm can be NULL */
- if (!cpcm) return -ENXIO;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- mutex_lock(&chip->spos_mutex);
- if (cpcm->pcm_channel) {
- cs46xx_dsp_destroy_pcm_channel(chip,cpcm->pcm_channel);
- cpcm->pcm_channel = NULL;
- }
- mutex_unlock(&chip->spos_mutex);
-#else
- chip->playback_pcm = NULL;
-#endif
-
- cpcm->substream = NULL;
- snd_dma_free_pages(&cpcm->hw_buf);
- chip->active_ctrl(chip, -1);
-
- return 0;
-}
-
-static int snd_cs46xx_capture_close(struct snd_pcm_substream *substream)
-{
- struct snd_cs46xx *chip = snd_pcm_substream_chip(substream);
-
- chip->capt.substream = NULL;
- snd_dma_free_pages(&chip->capt.hw_buf);
- chip->active_ctrl(chip, -1);
-
- return 0;
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-static struct snd_pcm_ops snd_cs46xx_playback_rear_ops = {
- .open = snd_cs46xx_playback_open_rear,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_direct_pointer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_rear_ops = {
- .open = snd_cs46xx_playback_open_rear,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_indirect_pointer,
- .ack = snd_cs46xx_playback_transfer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_clfe_ops = {
- .open = snd_cs46xx_playback_open_clfe,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_direct_pointer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_clfe_ops = {
- .open = snd_cs46xx_playback_open_clfe,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_indirect_pointer,
- .ack = snd_cs46xx_playback_transfer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_iec958_ops = {
- .open = snd_cs46xx_playback_open_iec958,
- .close = snd_cs46xx_playback_close_iec958,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_direct_pointer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_iec958_ops = {
- .open = snd_cs46xx_playback_open_iec958,
- .close = snd_cs46xx_playback_close_iec958,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_indirect_pointer,
- .ack = snd_cs46xx_playback_transfer,
-};
-
-#endif
-
-static struct snd_pcm_ops snd_cs46xx_playback_ops = {
- .open = snd_cs46xx_playback_open,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_direct_pointer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_playback_indirect_ops = {
- .open = snd_cs46xx_playback_open,
- .close = snd_cs46xx_playback_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_playback_hw_params,
- .hw_free = snd_cs46xx_playback_hw_free,
- .prepare = snd_cs46xx_playback_prepare,
- .trigger = snd_cs46xx_playback_trigger,
- .pointer = snd_cs46xx_playback_indirect_pointer,
- .ack = snd_cs46xx_playback_transfer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_capture_ops = {
- .open = snd_cs46xx_capture_open,
- .close = snd_cs46xx_capture_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_capture_hw_params,
- .hw_free = snd_cs46xx_capture_hw_free,
- .prepare = snd_cs46xx_capture_prepare,
- .trigger = snd_cs46xx_capture_trigger,
- .pointer = snd_cs46xx_capture_direct_pointer,
-};
-
-static struct snd_pcm_ops snd_cs46xx_capture_indirect_ops = {
- .open = snd_cs46xx_capture_open,
- .close = snd_cs46xx_capture_close,
- .ioctl = snd_pcm_lib_ioctl,
- .hw_params = snd_cs46xx_capture_hw_params,
- .hw_free = snd_cs46xx_capture_hw_free,
- .prepare = snd_cs46xx_capture_prepare,
- .trigger = snd_cs46xx_capture_trigger,
- .pointer = snd_cs46xx_capture_indirect_pointer,
- .ack = snd_cs46xx_capture_transfer,
-};
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-#define MAX_PLAYBACK_CHANNELS (DSP_MAX_PCM_CHANNELS - 1)
-#else
-#define MAX_PLAYBACK_CHANNELS 1
-#endif
-
-int __devinit snd_cs46xx_pcm(struct snd_cs46xx *chip, int device, struct snd_pcm ** rpcm)
-{
- struct snd_pcm *pcm;
- int err;
-
- if (rpcm)
- *rpcm = NULL;
- if ((err = snd_pcm_new(chip->card, "CS46xx", device, MAX_PLAYBACK_CHANNELS, 1, &pcm)) < 0)
- return err;
-
- pcm->private_data = chip;
-
- snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_ops);
- snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cs46xx_capture_ops);
-
- /* global setup */
- pcm->info_flags = 0;
- strcpy(pcm->name, "CS46xx");
- chip->pcm = pcm;
-
- snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
- snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
-
- if (rpcm)
- *rpcm = pcm;
-
- return 0;
-}
-
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-int __devinit snd_cs46xx_pcm_rear(struct snd_cs46xx *chip, int device, struct snd_pcm ** rpcm)
-{
- struct snd_pcm *pcm;
- int err;
-
- if (rpcm)
- *rpcm = NULL;
-
- if ((err = snd_pcm_new(chip->card, "CS46xx - Rear", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
- return err;
-
- pcm->private_data = chip;
-
- snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_rear_ops);
-
- /* global setup */
- pcm->info_flags = 0;
- strcpy(pcm->name, "CS46xx - Rear");
- chip->pcm_rear = pcm;
-
- snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
- snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
-
- if (rpcm)
- *rpcm = pcm;
-
- return 0;
-}
-
-int __devinit snd_cs46xx_pcm_center_lfe(struct snd_cs46xx *chip, int device, struct snd_pcm ** rpcm)
-{
- struct snd_pcm *pcm;
- int err;
-
- if (rpcm)
- *rpcm = NULL;
-
- if ((err = snd_pcm_new(chip->card, "CS46xx - Center LFE", device, MAX_PLAYBACK_CHANNELS, 0, &pcm)) < 0)
- return err;
-
- pcm->private_data = chip;
-
- snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_clfe_ops);
-
- /* global setup */
- pcm->info_flags = 0;
- strcpy(pcm->name, "CS46xx - Center LFE");
- chip->pcm_center_lfe = pcm;
-
- snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
- snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
-
- if (rpcm)
- *rpcm = pcm;
-
- return 0;
-}
-
-int __devinit snd_cs46xx_pcm_iec958(struct snd_cs46xx *chip, int device, struct snd_pcm ** rpcm)
-{
- struct snd_pcm *pcm;
- int err;
-
- if (rpcm)
- *rpcm = NULL;
-
- if ((err = snd_pcm_new(chip->card, "CS46xx - IEC958", device, 1, 0, &pcm)) < 0)
- return err;
-
- pcm->private_data = chip;
-
- snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cs46xx_playback_iec958_ops);
-
- /* global setup */
- pcm->info_flags = 0;
- strcpy(pcm->name, "CS46xx - IEC958");
- chip->pcm_rear = pcm;
-
- snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
- snd_dma_pci_data(chip->pci), 64*1024, 256*1024);
-
- if (rpcm)
- *rpcm = pcm;
-
- return 0;
-}
-#endif
-
-/*
- * Mixer routines
- */
-static void snd_cs46xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
-{
- struct snd_cs46xx *chip = bus->private_data;
-
- chip->ac97_bus = NULL;
-}
-
-static void snd_cs46xx_mixer_free_ac97(struct snd_ac97 *ac97)
-{
- struct snd_cs46xx *chip = ac97->private_data;
-
- if (snd_BUG_ON(ac97 != chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] &&
- ac97 != chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]))
- return;
-
- if (ac97 == chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]) {
- chip->ac97[CS46XX_PRIMARY_CODEC_INDEX] = NULL;
- chip->eapd_switch = NULL;
- }
- else
- chip->ac97[CS46XX_SECONDARY_CODEC_INDEX] = NULL;
-}
-
-static int snd_cs46xx_vol_info(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_info *uinfo)
-{
- uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
- uinfo->count = 2;
- uinfo->value.integer.min = 0;
- uinfo->value.integer.max = 0x7fff;
- return 0;
-}
-
-static int snd_cs46xx_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int reg = kcontrol->private_value;
- unsigned int val = snd_cs46xx_peek(chip, reg);
- ucontrol->value.integer.value[0] = 0xffff - (val >> 16);
- ucontrol->value.integer.value[1] = 0xffff - (val & 0xffff);
- return 0;
-}
-
-static int snd_cs46xx_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int reg = kcontrol->private_value;
- unsigned int val = ((0xffff - ucontrol->value.integer.value[0]) << 16 |
- (0xffff - ucontrol->value.integer.value[1]));
- unsigned int old = snd_cs46xx_peek(chip, reg);
- int change = (old != val);
-
- if (change) {
- snd_cs46xx_poke(chip, reg, val);
- }
-
- return change;
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-
-static int snd_cs46xx_vol_dac_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
-
- ucontrol->value.integer.value[0] = chip->dsp_spos_instance->dac_volume_left;
- ucontrol->value.integer.value[1] = chip->dsp_spos_instance->dac_volume_right;
-
- return 0;
-}
-
-static int snd_cs46xx_vol_dac_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int change = 0;
-
- if (chip->dsp_spos_instance->dac_volume_right != ucontrol->value.integer.value[0] ||
- chip->dsp_spos_instance->dac_volume_left != ucontrol->value.integer.value[1]) {
- cs46xx_dsp_set_dac_volume(chip,
- ucontrol->value.integer.value[0],
- ucontrol->value.integer.value[1]);
- change = 1;
- }
-
- return change;
-}
-
-#if 0
-static int snd_cs46xx_vol_iec958_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
-
- ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_input_volume_left;
- ucontrol->value.integer.value[1] = chip->dsp_spos_instance->spdif_input_volume_right;
- return 0;
-}
-
-static int snd_cs46xx_vol_iec958_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int change = 0;
-
- if (chip->dsp_spos_instance->spdif_input_volume_left != ucontrol->value.integer.value[0] ||
- chip->dsp_spos_instance->spdif_input_volume_right!= ucontrol->value.integer.value[1]) {
- cs46xx_dsp_set_iec958_volume (chip,
- ucontrol->value.integer.value[0],
- ucontrol->value.integer.value[1]);
- change = 1;
- }
-
- return change;
-}
-#endif
-
-#define snd_mixer_boolean_info snd_ctl_boolean_mono_info
-
-static int snd_cs46xx_iec958_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int reg = kcontrol->private_value;
-
- if (reg == CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT)
- ucontrol->value.integer.value[0] = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
- else
- ucontrol->value.integer.value[0] = chip->dsp_spos_instance->spdif_status_in;
-
- return 0;
-}
-
-static int snd_cs46xx_iec958_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int change, res;
-
- switch (kcontrol->private_value) {
- case CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT:
- mutex_lock(&chip->spos_mutex);
- change = (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED);
- if (ucontrol->value.integer.value[0] && !change)
- cs46xx_dsp_enable_spdif_out(chip);
- else if (change && !ucontrol->value.integer.value[0])
- cs46xx_dsp_disable_spdif_out(chip);
-
- res = (change != (chip->dsp_spos_instance->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED));
- mutex_unlock(&chip->spos_mutex);
- break;
- case CS46XX_MIXER_SPDIF_INPUT_ELEMENT:
- change = chip->dsp_spos_instance->spdif_status_in;
- if (ucontrol->value.integer.value[0] && !change) {
- cs46xx_dsp_enable_spdif_in(chip);
- /* restore volume */
- }
- else if (change && !ucontrol->value.integer.value[0])
- cs46xx_dsp_disable_spdif_in(chip);
-
- res = (change != chip->dsp_spos_instance->spdif_status_in);
- break;
- default:
- res = -EINVAL;
- snd_BUG(); /* should never happen ... */
- }
-
- return res;
-}
-
-static int snd_cs46xx_adc_capture_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (ins->adc_input != NULL)
- ucontrol->value.integer.value[0] = 1;
- else
- ucontrol->value.integer.value[0] = 0;
-
- return 0;
-}
-
-static int snd_cs46xx_adc_capture_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int change = 0;
-
- if (ucontrol->value.integer.value[0] && !ins->adc_input) {
- cs46xx_dsp_enable_adc_capture(chip);
- change = 1;
- } else if (!ucontrol->value.integer.value[0] && ins->adc_input) {
- cs46xx_dsp_disable_adc_capture(chip);
- change = 1;
- }
- return change;
-}
-
-static int snd_cs46xx_pcm_capture_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (ins->pcm_input != NULL)
- ucontrol->value.integer.value[0] = 1;
- else
- ucontrol->value.integer.value[0] = 0;
-
- return 0;
-}
-
-
-static int snd_cs46xx_pcm_capture_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int change = 0;
-
- if (ucontrol->value.integer.value[0] && !ins->pcm_input) {
- cs46xx_dsp_enable_pcm_capture(chip);
- change = 1;
- } else if (!ucontrol->value.integer.value[0] && ins->pcm_input) {
- cs46xx_dsp_disable_pcm_capture(chip);
- change = 1;
- }
-
- return change;
-}
-
-static int snd_herc_spdif_select_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
-
- int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
-
- if (val1 & EGPIODR_GPOE0)
- ucontrol->value.integer.value[0] = 1;
- else
- ucontrol->value.integer.value[0] = 0;
-
- return 0;
-}
-
-/*
- * Game Theatre XP card - EGPIO[0] is used to select SPDIF input optical or coaxial.
- */
-static int snd_herc_spdif_select_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
- int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
-
- if (ucontrol->value.integer.value[0]) {
- /* optical is default */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
- EGPIODR_GPOE0 | val1); /* enable EGPIO0 output */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
- EGPIOPTR_GPPT0 | val2); /* open-drain on output */
- } else {
- /* coaxial */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE0); /* disable */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT0); /* disable */
- }
-
- /* checking diff from the EGPIO direction register
- should be enough */
- return (val1 != (int)snd_cs46xx_peekBA0(chip, BA0_EGPIODR));
-}
-
-
-static int snd_cs46xx_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
-{
- uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
- uinfo->count = 1;
- return 0;
-}
-
-static int snd_cs46xx_spdif_default_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- mutex_lock(&chip->spos_mutex);
- ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_default >> 24) & 0xff);
- ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_default >> 16) & 0xff);
- ucontrol->value.iec958.status[2] = 0;
- ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_default) & 0xff);
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-static int snd_cs46xx_spdif_default_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- unsigned int val;
- int change;
-
- mutex_lock(&chip->spos_mutex);
- val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
- ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[2]) << 16) |
- ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
- /* left and right validity bit */
- (1 << 13) | (1 << 12);
-
-
- change = (unsigned int)ins->spdif_csuv_default != val;
- ins->spdif_csuv_default = val;
-
- if ( !(ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN) )
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
-
- mutex_unlock(&chip->spos_mutex);
-
- return change;
-}
-
-static int snd_cs46xx_spdif_mask_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- ucontrol->value.iec958.status[0] = 0xff;
- ucontrol->value.iec958.status[1] = 0xff;
- ucontrol->value.iec958.status[2] = 0x00;
- ucontrol->value.iec958.status[3] = 0xff;
- return 0;
-}
-
-static int snd_cs46xx_spdif_stream_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- mutex_lock(&chip->spos_mutex);
- ucontrol->value.iec958.status[0] = _wrap_all_bits((ins->spdif_csuv_stream >> 24) & 0xff);
- ucontrol->value.iec958.status[1] = _wrap_all_bits((ins->spdif_csuv_stream >> 16) & 0xff);
- ucontrol->value.iec958.status[2] = 0;
- ucontrol->value.iec958.status[3] = _wrap_all_bits((ins->spdif_csuv_stream) & 0xff);
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-static int snd_cs46xx_spdif_stream_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx * chip = snd_kcontrol_chip(kcontrol);
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- unsigned int val;
- int change;
-
- mutex_lock(&chip->spos_mutex);
- val = ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[0]) << 24) |
- ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[1]) << 16) |
- ((unsigned int)_wrap_all_bits(ucontrol->value.iec958.status[3])) |
- /* left and right validity bit */
- (1 << 13) | (1 << 12);
-
-
- change = ins->spdif_csuv_stream != val;
- ins->spdif_csuv_stream = val;
-
- if ( ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN )
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV,val);
-
- mutex_unlock(&chip->spos_mutex);
-
- return change;
-}
-
-#endif /* CONFIG_SND_CS46XX_NEW_DSP */
-
-
-static struct snd_kcontrol_new snd_cs46xx_controls[] __devinitdata = {
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "DAC Volume",
- .info = snd_cs46xx_vol_info,
-#ifndef CONFIG_SND_CS46XX_NEW_DSP
- .get = snd_cs46xx_vol_get,
- .put = snd_cs46xx_vol_put,
- .private_value = BA1_PVOL,
-#else
- .get = snd_cs46xx_vol_dac_get,
- .put = snd_cs46xx_vol_dac_put,
-#endif
-},
-
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "ADC Volume",
- .info = snd_cs46xx_vol_info,
- .get = snd_cs46xx_vol_get,
- .put = snd_cs46xx_vol_put,
-#ifndef CONFIG_SND_CS46XX_NEW_DSP
- .private_value = BA1_CVOL,
-#else
- .private_value = (VARIDECIMATE_SCB_ADDR + 0xE) << 2,
-#endif
-},
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "ADC Capture Switch",
- .info = snd_mixer_boolean_info,
- .get = snd_cs46xx_adc_capture_get,
- .put = snd_cs46xx_adc_capture_put
-},
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "DAC Capture Switch",
- .info = snd_mixer_boolean_info,
- .get = snd_cs46xx_pcm_capture_get,
- .put = snd_cs46xx_pcm_capture_put
-},
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
- .info = snd_mixer_boolean_info,
- .get = snd_cs46xx_iec958_get,
- .put = snd_cs46xx_iec958_put,
- .private_value = CS46XX_MIXER_SPDIF_OUTPUT_ELEMENT,
-},
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,SWITCH),
- .info = snd_mixer_boolean_info,
- .get = snd_cs46xx_iec958_get,
- .put = snd_cs46xx_iec958_put,
- .private_value = CS46XX_MIXER_SPDIF_INPUT_ELEMENT,
-},
-#if 0
-/* Input IEC958 volume does not work for the moment. (Benny) */
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = SNDRV_CTL_NAME_IEC958("Input ",NONE,VOLUME),
- .info = snd_cs46xx_vol_info,
- .get = snd_cs46xx_vol_iec958_get,
- .put = snd_cs46xx_vol_iec958_put,
- .private_value = (ASYNCRX_SCB_ADDR + 0xE) << 2,
-},
-#endif
-{
- .iface = SNDRV_CTL_ELEM_IFACE_PCM,
- .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
- .info = snd_cs46xx_spdif_info,
- .get = snd_cs46xx_spdif_default_get,
- .put = snd_cs46xx_spdif_default_put,
-},
-{
- .iface = SNDRV_CTL_ELEM_IFACE_PCM,
- .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,MASK),
- .info = snd_cs46xx_spdif_info,
- .get = snd_cs46xx_spdif_mask_get,
- .access = SNDRV_CTL_ELEM_ACCESS_READ
-},
-{
- .iface = SNDRV_CTL_ELEM_IFACE_PCM,
- .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
- .info = snd_cs46xx_spdif_info,
- .get = snd_cs46xx_spdif_stream_get,
- .put = snd_cs46xx_spdif_stream_put
-},
-
-#endif
-};
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-/* set primary cs4294 codec into Extended Audio Mode */
-static int snd_cs46xx_front_dup_get(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- unsigned short val;
- val = snd_ac97_read(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX], AC97_CSR_ACMODE);
- ucontrol->value.integer.value[0] = (val & 0x200) ? 0 : 1;
- return 0;
-}
-
-static int snd_cs46xx_front_dup_put(struct snd_kcontrol *kcontrol,
- struct snd_ctl_elem_value *ucontrol)
-{
- struct snd_cs46xx *chip = snd_kcontrol_chip(kcontrol);
- return snd_ac97_update_bits(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
- AC97_CSR_ACMODE, 0x200,
- ucontrol->value.integer.value[0] ? 0 : 0x200);
-}
-
-static struct snd_kcontrol_new snd_cs46xx_front_dup_ctl = {
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "Duplicate Front",
- .info = snd_mixer_boolean_info,
- .get = snd_cs46xx_front_dup_get,
- .put = snd_cs46xx_front_dup_put,
-};
-#endif
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-/* Only available on the Hercules Game Theater XP soundcard */
-static struct snd_kcontrol_new snd_hercules_controls[] = {
-{
- .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
- .name = "Optical/Coaxial SPDIF Input Switch",
- .info = snd_mixer_boolean_info,
- .get = snd_herc_spdif_select_get,
- .put = snd_herc_spdif_select_put,
-},
-};
-
-
-static void snd_cs46xx_codec_reset (struct snd_ac97 * ac97)
-{
- unsigned long end_time;
- int err;
-
- /* reset to defaults */
- snd_ac97_write(ac97, AC97_RESET, 0);
-
- /* set the desired CODEC mode */
- if (ac97->num == CS46XX_PRIMARY_CODEC_INDEX) {
- snd_printdd("cs46xx: CODEC1 mode %04x\n", 0x0);
- snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x0);
- } else if (ac97->num == CS46XX_SECONDARY_CODEC_INDEX) {
- snd_printdd("cs46xx: CODEC2 mode %04x\n", 0x3);
- snd_cs46xx_ac97_write(ac97, AC97_CSR_ACMODE, 0x3);
- } else {
- snd_BUG(); /* should never happen ... */
- }
-
- udelay(50);
-
- /* it's necessary to wait awhile until registers are accessible after RESET */
- /* because the PCM or MASTER volume registers can be modified, */
- /* the REC_GAIN register is used for tests */
- end_time = jiffies + HZ;
- do {
- unsigned short ext_mid;
-
- /* use preliminary reads to settle the communication */
- snd_ac97_read(ac97, AC97_RESET);
- snd_ac97_read(ac97, AC97_VENDOR_ID1);
- snd_ac97_read(ac97, AC97_VENDOR_ID2);
- /* modem? */
- ext_mid = snd_ac97_read(ac97, AC97_EXTENDED_MID);
- if (ext_mid != 0xffff && (ext_mid & 1) != 0)
- return;
-
- /* test if we can write to the record gain volume register */
- snd_ac97_write(ac97, AC97_REC_GAIN, 0x8a05);
- if ((err = snd_ac97_read(ac97, AC97_REC_GAIN)) == 0x8a05)
- return;
-
- msleep(10);
- } while (time_after_eq(end_time, jiffies));
-
- snd_printk(KERN_ERR "CS46xx secondary codec doesn't respond!\n");
-}
-#endif
-
-static int __devinit cs46xx_detect_codec(struct snd_cs46xx *chip, int codec)
-{
- int idx, err;
- struct snd_ac97_template ac97;
-
- memset(&ac97, 0, sizeof(ac97));
- ac97.private_data = chip;
- ac97.private_free = snd_cs46xx_mixer_free_ac97;
- ac97.num = codec;
- if (chip->amplifier_ctrl == amp_voyetra)
- ac97.scaps = AC97_SCAP_INV_EAPD;
-
- if (codec == CS46XX_SECONDARY_CODEC_INDEX) {
- snd_cs46xx_codec_write(chip, AC97_RESET, 0, codec);
- udelay(10);
- if (snd_cs46xx_codec_read(chip, AC97_RESET, codec) & 0x8000) {
- snd_printdd("snd_cs46xx: seconadry codec not present\n");
- return -ENXIO;
- }
- }
-
- snd_cs46xx_codec_write(chip, AC97_MASTER, 0x8000, codec);
- for (idx = 0; idx < 100; ++idx) {
- if (snd_cs46xx_codec_read(chip, AC97_MASTER, codec) == 0x8000) {
- err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97[codec]);
- return err;
- }
- msleep(10);
- }
- snd_printdd("snd_cs46xx: codec %d detection timeout\n", codec);
- return -ENXIO;
-}
-
-int __devinit snd_cs46xx_mixer(struct snd_cs46xx *chip, int spdif_device)
-{
- struct snd_card *card = chip->card;
- struct snd_ctl_elem_id id;
- int err;
- unsigned int idx;
- static struct snd_ac97_bus_ops ops = {
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- .reset = snd_cs46xx_codec_reset,
-#endif
- .write = snd_cs46xx_ac97_write,
- .read = snd_cs46xx_ac97_read,
- };
-
- /* detect primary codec */
- chip->nr_ac97_codecs = 0;
- snd_printdd("snd_cs46xx: detecting primary codec\n");
- if ((err = snd_ac97_bus(card, 0, &ops, chip, &chip->ac97_bus)) < 0)
- return err;
- chip->ac97_bus->private_free = snd_cs46xx_mixer_free_ac97_bus;
-
- if (cs46xx_detect_codec(chip, CS46XX_PRIMARY_CODEC_INDEX) < 0)
- return -ENXIO;
- chip->nr_ac97_codecs = 1;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_printdd("snd_cs46xx: detecting seconadry codec\n");
- /* try detect a secondary codec */
- if (! cs46xx_detect_codec(chip, CS46XX_SECONDARY_CODEC_INDEX))
- chip->nr_ac97_codecs = 2;
-#endif /* CONFIG_SND_CS46XX_NEW_DSP */
-
- /* add cs4630 mixer controls */
- for (idx = 0; idx < ARRAY_SIZE(snd_cs46xx_controls); idx++) {
- struct snd_kcontrol *kctl;
- kctl = snd_ctl_new1(&snd_cs46xx_controls[idx], chip);
- if (kctl && kctl->id.iface == SNDRV_CTL_ELEM_IFACE_PCM)
- kctl->id.device = spdif_device;
- if ((err = snd_ctl_add(card, kctl)) < 0)
- return err;
- }
-
- /* get EAPD mixer switch (for voyetra hack) */
- memset(&id, 0, sizeof(id));
- id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
- strcpy(id.name, "External Amplifier");
- chip->eapd_switch = snd_ctl_find_id(chip->card, &id);
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (chip->nr_ac97_codecs == 1) {
- unsigned int id2 = chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]->id & 0xffff;
- if (id2 == 0x592b || id2 == 0x592d) {
- err = snd_ctl_add(card, snd_ctl_new1(&snd_cs46xx_front_dup_ctl, chip));
- if (err < 0)
- return err;
- snd_ac97_write_cache(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX],
- AC97_CSR_ACMODE, 0x200);
- }
- }
- /* do soundcard specific mixer setup */
- if (chip->mixer_init) {
- snd_printdd ("calling chip->mixer_init(chip);\n");
- chip->mixer_init(chip);
- }
-#endif
-
- /* turn on amplifier */
- chip->amplifier_ctrl(chip, 1);
-
- return 0;
-}
-
-/*
- * RawMIDI interface
- */
-
-static void snd_cs46xx_midi_reset(struct snd_cs46xx *chip)
-{
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, MIDCR_MRST);
- udelay(100);
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
-}
-
-static int snd_cs46xx_midi_input_open(struct snd_rawmidi_substream *substream)
-{
- struct snd_cs46xx *chip = substream->rmidi->private_data;
-
- chip->active_ctrl(chip, 1);
- spin_lock_irq(&chip->reg_lock);
- chip->uartm |= CS46XX_MODE_INPUT;
- chip->midcr |= MIDCR_RXE;
- chip->midi_input = substream;
- if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
- snd_cs46xx_midi_reset(chip);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- spin_unlock_irq(&chip->reg_lock);
- return 0;
-}
-
-static int snd_cs46xx_midi_input_close(struct snd_rawmidi_substream *substream)
-{
- struct snd_cs46xx *chip = substream->rmidi->private_data;
-
- spin_lock_irq(&chip->reg_lock);
- chip->midcr &= ~(MIDCR_RXE | MIDCR_RIE);
- chip->midi_input = NULL;
- if (!(chip->uartm & CS46XX_MODE_OUTPUT)) {
- snd_cs46xx_midi_reset(chip);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- chip->uartm &= ~CS46XX_MODE_INPUT;
- spin_unlock_irq(&chip->reg_lock);
- chip->active_ctrl(chip, -1);
- return 0;
-}
-
-static int snd_cs46xx_midi_output_open(struct snd_rawmidi_substream *substream)
-{
- struct snd_cs46xx *chip = substream->rmidi->private_data;
-
- chip->active_ctrl(chip, 1);
-
- spin_lock_irq(&chip->reg_lock);
- chip->uartm |= CS46XX_MODE_OUTPUT;
- chip->midcr |= MIDCR_TXE;
- chip->midi_output = substream;
- if (!(chip->uartm & CS46XX_MODE_INPUT)) {
- snd_cs46xx_midi_reset(chip);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- spin_unlock_irq(&chip->reg_lock);
- return 0;
-}
-
-static int snd_cs46xx_midi_output_close(struct snd_rawmidi_substream *substream)
-{
- struct snd_cs46xx *chip = substream->rmidi->private_data;
-
- spin_lock_irq(&chip->reg_lock);
- chip->midcr &= ~(MIDCR_TXE | MIDCR_TIE);
- chip->midi_output = NULL;
- if (!(chip->uartm & CS46XX_MODE_INPUT)) {
- snd_cs46xx_midi_reset(chip);
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- chip->uartm &= ~CS46XX_MODE_OUTPUT;
- spin_unlock_irq(&chip->reg_lock);
- chip->active_ctrl(chip, -1);
- return 0;
-}
-
-static void snd_cs46xx_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
-{
- unsigned long flags;
- struct snd_cs46xx *chip = substream->rmidi->private_data;
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- if (up) {
- if ((chip->midcr & MIDCR_RIE) == 0) {
- chip->midcr |= MIDCR_RIE;
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- } else {
- if (chip->midcr & MIDCR_RIE) {
- chip->midcr &= ~MIDCR_RIE;
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- }
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-}
-
-static void snd_cs46xx_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
-{
- unsigned long flags;
- struct snd_cs46xx *chip = substream->rmidi->private_data;
- unsigned char byte;
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- if (up) {
- if ((chip->midcr & MIDCR_TIE) == 0) {
- chip->midcr |= MIDCR_TIE;
- /* fill UART FIFO buffer at first, and turn Tx interrupts only if necessary */
- while ((chip->midcr & MIDCR_TIE) &&
- (snd_cs46xx_peekBA0(chip, BA0_MIDSR) & MIDSR_TBF) == 0) {
- if (snd_rawmidi_transmit(substream, &byte, 1) != 1) {
- chip->midcr &= ~MIDCR_TIE;
- } else {
- snd_cs46xx_pokeBA0(chip, BA0_MIDWP, byte);
- }
- }
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- } else {
- if (chip->midcr & MIDCR_TIE) {
- chip->midcr &= ~MIDCR_TIE;
- snd_cs46xx_pokeBA0(chip, BA0_MIDCR, chip->midcr);
- }
- }
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-}
-
-static struct snd_rawmidi_ops snd_cs46xx_midi_output =
-{
- .open = snd_cs46xx_midi_output_open,
- .close = snd_cs46xx_midi_output_close,
- .trigger = snd_cs46xx_midi_output_trigger,
-};
-
-static struct snd_rawmidi_ops snd_cs46xx_midi_input =
-{
- .open = snd_cs46xx_midi_input_open,
- .close = snd_cs46xx_midi_input_close,
- .trigger = snd_cs46xx_midi_input_trigger,
-};
-
-int __devinit snd_cs46xx_midi(struct snd_cs46xx *chip, int device, struct snd_rawmidi **rrawmidi)
-{
- struct snd_rawmidi *rmidi;
- int err;
-
- if (rrawmidi)
- *rrawmidi = NULL;
- if ((err = snd_rawmidi_new(chip->card, "CS46XX", device, 1, 1, &rmidi)) < 0)
- return err;
- strcpy(rmidi->name, "CS46XX");
- snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_cs46xx_midi_output);
- snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_cs46xx_midi_input);
- rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | SNDRV_RAWMIDI_INFO_INPUT | SNDRV_RAWMIDI_INFO_DUPLEX;
- rmidi->private_data = chip;
- chip->rmidi = rmidi;
- if (rrawmidi)
- *rrawmidi = NULL;
- return 0;
-}
-
-
-/*
- * gameport interface
- */
-
-#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
-
-static void snd_cs46xx_gameport_trigger(struct gameport *gameport)
-{
- struct snd_cs46xx *chip = gameport_get_port_data(gameport);
-
- if (snd_BUG_ON(!chip))
- return;
- snd_cs46xx_pokeBA0(chip, BA0_JSPT, 0xFF); //outb(gameport->io, 0xFF);
-}
-
-static unsigned char snd_cs46xx_gameport_read(struct gameport *gameport)
-{
- struct snd_cs46xx *chip = gameport_get_port_data(gameport);
-
- if (snd_BUG_ON(!chip))
- return 0;
- return snd_cs46xx_peekBA0(chip, BA0_JSPT); //inb(gameport->io);
-}
-
-static int snd_cs46xx_gameport_cooked_read(struct gameport *gameport, int *axes, int *buttons)
-{
- struct snd_cs46xx *chip = gameport_get_port_data(gameport);
- unsigned js1, js2, jst;
-
- if (snd_BUG_ON(!chip))
- return 0;
-
- js1 = snd_cs46xx_peekBA0(chip, BA0_JSC1);
- js2 = snd_cs46xx_peekBA0(chip, BA0_JSC2);
- jst = snd_cs46xx_peekBA0(chip, BA0_JSPT);
-
- *buttons = (~jst >> 4) & 0x0F;
-
- axes[0] = ((js1 & JSC1_Y1V_MASK) >> JSC1_Y1V_SHIFT) & 0xFFFF;
- axes[1] = ((js1 & JSC1_X1V_MASK) >> JSC1_X1V_SHIFT) & 0xFFFF;
- axes[2] = ((js2 & JSC2_Y2V_MASK) >> JSC2_Y2V_SHIFT) & 0xFFFF;
- axes[3] = ((js2 & JSC2_X2V_MASK) >> JSC2_X2V_SHIFT) & 0xFFFF;
-
- for(jst=0;jst<4;++jst)
- if(axes[jst]==0xFFFF) axes[jst] = -1;
- return 0;
-}
-
-static int snd_cs46xx_gameport_open(struct gameport *gameport, int mode)
-{
- switch (mode) {
- case GAMEPORT_MODE_COOKED:
- return 0;
- case GAMEPORT_MODE_RAW:
- return 0;
- default:
- return -1;
- }
- return 0;
-}
-
-int __devinit snd_cs46xx_gameport(struct snd_cs46xx *chip)
-{
- struct gameport *gp;
-
- chip->gameport = gp = gameport_allocate_port();
- if (!gp) {
- printk(KERN_ERR "cs46xx: cannot allocate memory for gameport\n");
- return -ENOMEM;
- }
-
- gameport_set_name(gp, "CS46xx Gameport");
- gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
- gameport_set_dev_parent(gp, &chip->pci->dev);
- gameport_set_port_data(gp, chip);
-
- gp->open = snd_cs46xx_gameport_open;
- gp->read = snd_cs46xx_gameport_read;
- gp->trigger = snd_cs46xx_gameport_trigger;
- gp->cooked_read = snd_cs46xx_gameport_cooked_read;
-
- snd_cs46xx_pokeBA0(chip, BA0_JSIO, 0xFF); // ?
- snd_cs46xx_pokeBA0(chip, BA0_JSCTL, JSCTL_SP_MEDIUM_SLOW);
-
- gameport_register_port(gp);
-
- return 0;
-}
-
-static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip)
-{
- if (chip->gameport) {
- gameport_unregister_port(chip->gameport);
- chip->gameport = NULL;
- }
-}
-#else
-int __devinit snd_cs46xx_gameport(struct snd_cs46xx *chip) { return -ENOSYS; }
-static inline void snd_cs46xx_remove_gameport(struct snd_cs46xx *chip) { }
-#endif /* CONFIG_GAMEPORT */
-
-#ifdef CONFIG_PROC_FS
-/*
- * proc interface
- */
-
-static ssize_t snd_cs46xx_io_read(struct snd_info_entry *entry,
- void *file_private_data,
- struct file *file, char __user *buf,
- size_t count, loff_t pos)
-{
- struct snd_cs46xx_region *region = entry->private_data;
-
- if (copy_to_user_fromio(buf, region->remap_addr + pos, count))
- return -EFAULT;
- return count;
-}
-
-static struct snd_info_entry_ops snd_cs46xx_proc_io_ops = {
- .read = snd_cs46xx_io_read,
-};
-
-static int __devinit snd_cs46xx_proc_init(struct snd_card *card, struct snd_cs46xx *chip)
-{
- struct snd_info_entry *entry;
- int idx;
-
- for (idx = 0; idx < 5; idx++) {
- struct snd_cs46xx_region *region = &chip->region.idx[idx];
- if (! snd_card_proc_new(card, region->name, &entry)) {
- entry->content = SNDRV_INFO_CONTENT_DATA;
- entry->private_data = chip;
- entry->c.ops = &snd_cs46xx_proc_io_ops;
- entry->size = region->size;
- entry->mode = S_IFREG | S_IRUSR;
- }
- }
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- cs46xx_dsp_proc_init(card, chip);
-#endif
- return 0;
-}
-
-static int snd_cs46xx_proc_done(struct snd_cs46xx *chip)
-{
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- cs46xx_dsp_proc_done(chip);
-#endif
- return 0;
-}
-#else /* !CONFIG_PROC_FS */
-#define snd_cs46xx_proc_init(card, chip)
-#define snd_cs46xx_proc_done(chip)
-#endif
-
-/*
- * stop the h/w
- */
-static void snd_cs46xx_hw_stop(struct snd_cs46xx *chip)
-{
- unsigned int tmp;
-
- tmp = snd_cs46xx_peek(chip, BA1_PFIE);
- tmp &= ~0x0000f03f;
- tmp |= 0x00000010;
- snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt disable */
-
- tmp = snd_cs46xx_peek(chip, BA1_CIE);
- tmp &= ~0x0000003f;
- tmp |= 0x00000011;
- snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt disable */
-
- /*
- * Stop playback DMA.
- */
- tmp = snd_cs46xx_peek(chip, BA1_PCTL);
- snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
-
- /*
- * Stop capture DMA.
- */
- tmp = snd_cs46xx_peek(chip, BA1_CCTL);
- snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
-
- /*
- * Reset the processor.
- */
- snd_cs46xx_reset(chip);
-
- snd_cs46xx_proc_stop(chip);
-
- /*
- * Power down the PLL.
- */
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
-
- /*
- * Turn off the Processor by turning off the software clock enable flag in
- * the clock control register.
- */
- tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE;
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
-}
-
-
-static int snd_cs46xx_free(struct snd_cs46xx *chip)
-{
- int idx;
-
- if (snd_BUG_ON(!chip))
- return -EINVAL;
-
- if (chip->active_ctrl)
- chip->active_ctrl(chip, 1);
-
- snd_cs46xx_remove_gameport(chip);
-
- if (chip->amplifier_ctrl)
- chip->amplifier_ctrl(chip, -chip->amplifier); /* force to off */
-
- snd_cs46xx_proc_done(chip);
-
- if (chip->region.idx[0].resource)
- snd_cs46xx_hw_stop(chip);
-
- if (chip->irq >= 0)
- free_irq(chip->irq, chip);
-
- if (chip->active_ctrl)
- chip->active_ctrl(chip, -chip->amplifier);
-
- for (idx = 0; idx < 5; idx++) {
- struct snd_cs46xx_region *region = &chip->region.idx[idx];
- if (region->remap_addr)
- iounmap(region->remap_addr);
- release_and_free_resource(region->resource);
- }
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (chip->dsp_spos_instance) {
- cs46xx_dsp_spos_destroy(chip);
- chip->dsp_spos_instance = NULL;
- }
-#endif
-
-#ifdef CONFIG_PM
- kfree(chip->saved_regs);
-#endif
-
- pci_disable_device(chip->pci);
- kfree(chip);
- return 0;
-}
-
-static int snd_cs46xx_dev_free(struct snd_device *device)
-{
- struct snd_cs46xx *chip = device->device_data;
- return snd_cs46xx_free(chip);
-}
-
-/*
- * initialize chip
- */
-static int snd_cs46xx_chip_init(struct snd_cs46xx *chip)
-{
- int timeout;
-
- /*
- * First, blast the clock control register to zero so that the PLL starts
- * out in a known state, and blast the master serial port control register
- * to zero so that the serial ports also start out in a known state.
- */
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, 0);
- snd_cs46xx_pokeBA0(chip, BA0_SERMC1, 0);
-
- /*
- * If we are in AC97 mode, then we must set the part to a host controlled
- * AC-link. Otherwise, we won't be able to bring up the link.
- */
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0 |
- SERACC_TWO_CODECS); /* 2.00 dual codecs */
- /* snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_2_0); */ /* 2.00 codec */
-#else
- snd_cs46xx_pokeBA0(chip, BA0_SERACC, SERACC_HSP | SERACC_CHIP_TYPE_1_03); /* 1.03 codec */
-#endif
-
- /*
- * Drive the ARST# pin low for a minimum of 1uS (as defined in the AC97
- * spec) and then drive it high. This is done for non AC97 modes since
- * there might be logic external to the CS461x that uses the ARST# line
- * for a reset.
- */
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, 0);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, 0);
-#endif
- udelay(50);
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_RSTN);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_RSTN);
-#endif
-
- /*
- * The first thing we do here is to enable sync generation. As soon
- * as we start receiving bit clock, we'll start producing the SYNC
- * signal.
- */
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_ESYN | ACCTL_RSTN);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_ESYN | ACCTL_RSTN);
-#endif
-
- /*
- * Now wait for a short while to allow the AC97 part to start
- * generating bit clock (so we don't try to start the PLL without an
- * input clock).
- */
- mdelay(10);
-
- /*
- * Set the serial port timing configuration, so that
- * the clock control circuit gets its clock from the correct place.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97);
-
- /*
- * Write the selected clock control setup to the hardware. Do not turn on
- * SWCE yet (if requested), so that the devices clocked by the output of
- * PLL are not clocked until the PLL is stable.
- */
- snd_cs46xx_pokeBA0(chip, BA0_PLLCC, PLLCC_LPF_1050_2780_KHZ | PLLCC_CDR_73_104_MHZ);
- snd_cs46xx_pokeBA0(chip, BA0_PLLM, 0x3a);
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR2, CLKCR2_PDIVS_8);
-
- /*
- * Power up the PLL.
- */
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP);
-
- /*
- * Wait until the PLL has stabilized.
- */
- msleep(100);
-
- /*
- * Turn on clocking of the core so that we can setup the serial ports.
- */
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, CLKCR1_PLLP | CLKCR1_SWCE);
-
- /*
- * Enable FIFO Host Bypass
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBCF, SERBCF_HBP);
-
- /*
- * Fill the serial port FIFOs with silence.
- */
- snd_cs46xx_clear_serial_FIFOs(chip);
-
- /*
- * Set the serial port FIFO pointer to the first sample in the FIFO.
- */
- /* snd_cs46xx_pokeBA0(chip, BA0_SERBSP, 0); */
-
- /*
- * Write the serial port configuration to the part. The master
- * enable bit is not set until all other values have been written.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERC1, SERC1_SO1F_AC97 | SERC1_SO1EN);
- snd_cs46xx_pokeBA0(chip, BA0_SERC2, SERC2_SI1F_AC97 | SERC1_SO1EN);
- snd_cs46xx_pokeBA0(chip, BA0_SERMC1, SERMC1_PTC_AC97 | SERMC1_MSPE);
-
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_SERC7, SERC7_ASDI2EN);
- snd_cs46xx_pokeBA0(chip, BA0_SERC3, 0);
- snd_cs46xx_pokeBA0(chip, BA0_SERC4, 0);
- snd_cs46xx_pokeBA0(chip, BA0_SERC5, 0);
- snd_cs46xx_pokeBA0(chip, BA0_SERC6, 1);
-#endif
-
- mdelay(5);
-
-
- /*
- * Wait for the codec ready signal from the AC97 codec.
- */
- timeout = 150;
- while (timeout-- > 0) {
- /*
- * Read the AC97 status register to see if we've seen a CODEC READY
- * signal from the AC97 codec.
- */
- if (snd_cs46xx_peekBA0(chip, BA0_ACSTS) & ACSTS_CRDY)
- goto ok1;
- msleep(10);
- }
-
-
- snd_printk(KERN_ERR "create - never read codec ready from AC'97\n");
- snd_printk(KERN_ERR "it is not probably bug, try to use CS4236 driver\n");
- return -EIO;
- ok1:
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- {
- int count;
- for (count = 0; count < 150; count++) {
- /* First, we want to wait for a short time. */
- udelay(25);
-
- if (snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY)
- break;
- }
-
- /*
- * Make sure CODEC is READY.
- */
- if (!(snd_cs46xx_peekBA0(chip, BA0_ACSTS2) & ACSTS_CRDY))
- snd_printdd("cs46xx: never read card ready from secondary AC'97\n");
- }
-#endif
-
- /*
- * Assert the vaid frame signal so that we can start sending commands
- * to the AC97 codec.
- */
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- snd_cs46xx_pokeBA0(chip, BA0_ACCTL2, ACCTL_VFRM | ACCTL_ESYN | ACCTL_RSTN);
-#endif
-
-
- /*
- * Wait until we've sampled input slots 3 and 4 as valid, meaning that
- * the codec is pumping ADC data across the AC-link.
- */
- timeout = 150;
- while (timeout-- > 0) {
- /*
- * Read the input slot valid register and see if input slots 3 and
- * 4 are valid yet.
- */
- if ((snd_cs46xx_peekBA0(chip, BA0_ACISV) & (ACISV_ISV3 | ACISV_ISV4)) == (ACISV_ISV3 | ACISV_ISV4))
- goto ok2;
- msleep(10);
- }
-
-#ifndef CONFIG_SND_CS46XX_NEW_DSP
- snd_printk(KERN_ERR "create - never read ISV3 & ISV4 from AC'97\n");
- return -EIO;
-#else
- /* This may happen on a cold boot with a Terratec SiXPack 5.1.
- Reloading the driver may help, if there's other soundcards
- with the same problem I would like to know. (Benny) */
-
- snd_printk(KERN_ERR "ERROR: snd-cs46xx: never read ISV3 & ISV4 from AC'97\n");
- snd_printk(KERN_ERR " Try reloading the ALSA driver, if you find something\n");
- snd_printk(KERN_ERR " broken or not working on your soundcard upon\n");
- snd_printk(KERN_ERR " this message please report to alsa-devel@alsa-project.org\n");
-
- return -EIO;
-#endif
- ok2:
-
- /*
- * Now, assert valid frame and the slot 3 and 4 valid bits. This will
- * commense the transfer of digital audio data to the AC97 codec.
- */
-
- snd_cs46xx_pokeBA0(chip, BA0_ACOSV, ACOSV_SLV3 | ACOSV_SLV4);
-
-
- /*
- * Power down the DAC and ADC. We will power them up (if) when we need
- * them.
- */
- /* snd_cs46xx_pokeBA0(chip, BA0_AC97_POWERDOWN, 0x300); */
-
- /*
- * Turn off the Processor by turning off the software clock enable flag in
- * the clock control register.
- */
- /* tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1) & ~CLKCR1_SWCE; */
- /* snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp); */
-
- return 0;
-}
-
-/*
- * start and load DSP
- */
-
-static void cs46xx_enable_stream_irqs(struct snd_cs46xx *chip)
-{
- unsigned int tmp;
-
- snd_cs46xx_pokeBA0(chip, BA0_HICR, HICR_IEV | HICR_CHGM);
-
- tmp = snd_cs46xx_peek(chip, BA1_PFIE);
- tmp &= ~0x0000f03f;
- snd_cs46xx_poke(chip, BA1_PFIE, tmp); /* playback interrupt enable */
-
- tmp = snd_cs46xx_peek(chip, BA1_CIE);
- tmp &= ~0x0000003f;
- tmp |= 0x00000001;
- snd_cs46xx_poke(chip, BA1_CIE, tmp); /* capture interrupt enable */
-}
-
-int __devinit snd_cs46xx_start_dsp(struct snd_cs46xx *chip)
-{
- unsigned int tmp;
- /*
- * Reset the processor.
- */
- snd_cs46xx_reset(chip);
- /*
- * Download the image to the processor.
- */
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-#if 0
- if (cs46xx_dsp_load_module(chip, &cwcemb80_module) < 0) {
- snd_printk(KERN_ERR "image download error\n");
- return -EIO;
- }
-#endif
-
- if (cs46xx_dsp_load_module(chip, &cwc4630_module) < 0) {
- snd_printk(KERN_ERR "image download error [cwc4630]\n");
- return -EIO;
- }
-
- if (cs46xx_dsp_load_module(chip, &cwcasync_module) < 0) {
- snd_printk(KERN_ERR "image download error [cwcasync]\n");
- return -EIO;
- }
-
- if (cs46xx_dsp_load_module(chip, &cwcsnoop_module) < 0) {
- snd_printk(KERN_ERR "image download error [cwcsnoop]\n");
- return -EIO;
- }
-
- if (cs46xx_dsp_load_module(chip, &cwcbinhack_module) < 0) {
- snd_printk(KERN_ERR "image download error [cwcbinhack]\n");
- return -EIO;
- }
-
- if (cs46xx_dsp_load_module(chip, &cwcdma_module) < 0) {
- snd_printk(KERN_ERR "image download error [cwcdma]\n");
- return -EIO;
- }
-
- if (cs46xx_dsp_scb_and_task_init(chip) < 0)
- return -EIO;
-#else
- /* old image */
- if (snd_cs46xx_download_image(chip) < 0) {
- snd_printk(KERN_ERR "image download error\n");
- return -EIO;
- }
-
- /*
- * Stop playback DMA.
- */
- tmp = snd_cs46xx_peek(chip, BA1_PCTL);
- chip->play_ctl = tmp & 0xffff0000;
- snd_cs46xx_poke(chip, BA1_PCTL, tmp & 0x0000ffff);
-#endif
-
- /*
- * Stop capture DMA.
- */
- tmp = snd_cs46xx_peek(chip, BA1_CCTL);
- chip->capt.ctl = tmp & 0x0000ffff;
- snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
-
- mdelay(5);
-
- snd_cs46xx_set_play_sample_rate(chip, 8000);
- snd_cs46xx_set_capture_sample_rate(chip, 8000);
-
- snd_cs46xx_proc_start(chip);
-
- cs46xx_enable_stream_irqs(chip);
-
-#ifndef CONFIG_SND_CS46XX_NEW_DSP
- /* set the attenuation to 0dB */
- snd_cs46xx_poke(chip, BA1_PVOL, 0x80008000);
- snd_cs46xx_poke(chip, BA1_CVOL, 0x80008000);
-#endif
-
- return 0;
-}
-
-
-/*
- * AMP control - null AMP
- */
-
-static void amp_none(struct snd_cs46xx *chip, int change)
-{
-}
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-static int voyetra_setup_eapd_slot(struct snd_cs46xx *chip)
-{
-
- u32 idx, valid_slots,tmp,powerdown = 0;
- u16 modem_power,pin_config,logic_type;
-
- snd_printdd ("cs46xx: cs46xx_setup_eapd_slot()+\n");
-
- /*
- * See if the devices are powered down. If so, we must power them up first
- * or they will not respond.
- */
- tmp = snd_cs46xx_peekBA0(chip, BA0_CLKCR1);
-
- if (!(tmp & CLKCR1_SWCE)) {
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp | CLKCR1_SWCE);
- powerdown = 1;
- }
-
- /*
- * Clear PRA. The Bonzo chip will be used for GPIO not for modem
- * stuff.
- */
- if(chip->nr_ac97_codecs != 2) {
- snd_printk (KERN_ERR "cs46xx: cs46xx_setup_eapd_slot() - no secondary codec configured\n");
- return -EINVAL;
- }
-
- modem_power = snd_cs46xx_codec_read (chip,
- AC97_EXTENDED_MSTATUS,
- CS46XX_SECONDARY_CODEC_INDEX);
- modem_power &=0xFEFF;
-
- snd_cs46xx_codec_write(chip,
- AC97_EXTENDED_MSTATUS, modem_power,
- CS46XX_SECONDARY_CODEC_INDEX);
-
- /*
- * Set GPIO pin's 7 and 8 so that they are configured for output.
- */
- pin_config = snd_cs46xx_codec_read (chip,
- AC97_GPIO_CFG,
- CS46XX_SECONDARY_CODEC_INDEX);
- pin_config &=0x27F;
-
- snd_cs46xx_codec_write(chip,
- AC97_GPIO_CFG, pin_config,
- CS46XX_SECONDARY_CODEC_INDEX);
-
- /*
- * Set GPIO pin's 7 and 8 so that they are compatible with CMOS logic.
- */
-
- logic_type = snd_cs46xx_codec_read(chip, AC97_GPIO_POLARITY,
- CS46XX_SECONDARY_CODEC_INDEX);
- logic_type &=0x27F;
-
- snd_cs46xx_codec_write (chip, AC97_GPIO_POLARITY, logic_type,
- CS46XX_SECONDARY_CODEC_INDEX);
-
- valid_slots = snd_cs46xx_peekBA0(chip, BA0_ACOSV);
- valid_slots |= 0x200;
- snd_cs46xx_pokeBA0(chip, BA0_ACOSV, valid_slots);
-
- if ( cs46xx_wait_for_fifo(chip,1) ) {
- snd_printdd("FIFO is busy\n");
-
- return -EINVAL;
- }
-
- /*
- * Fill slots 12 with the correct value for the GPIO pins.
- */
- for(idx = 0x90; idx <= 0x9F; idx++) {
- /*
- * Initialize the fifo so that bits 7 and 8 are on.
- *
- * Remember that the GPIO pins in bonzo are shifted by 4 bits to
- * the left. 0x1800 corresponds to bits 7 and 8.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBWP, 0x1800);
-
- /*
- * Wait for command to complete
- */
- if ( cs46xx_wait_for_fifo(chip,200) ) {
- snd_printdd("failed waiting for FIFO at addr (%02X)\n",idx);
-
- return -EINVAL;
- }
-
- /*
- * Write the serial port FIFO index.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBAD, idx);
-
- /*
- * Tell the serial port to load the new value into the FIFO location.
- */
- snd_cs46xx_pokeBA0(chip, BA0_SERBCM, SERBCM_WRC);
- }
-
- /* wait for last command to complete */
- cs46xx_wait_for_fifo(chip,200);
-
- /*
- * Now, if we powered up the devices, then power them back down again.
- * This is kinda ugly, but should never happen.
- */
- if (powerdown)
- snd_cs46xx_pokeBA0(chip, BA0_CLKCR1, tmp);
-
- return 0;
-}
-#endif
-
-/*
- * Crystal EAPD mode
- */
-
-static void amp_voyetra(struct snd_cs46xx *chip, int change)
-{
- /* Manage the EAPD bit on the Crystal 4297
- and the Analog AD1885 */
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- int old = chip->amplifier;
-#endif
- int oval, val;
-
- chip->amplifier += change;
- oval = snd_cs46xx_codec_read(chip, AC97_POWERDOWN,
- CS46XX_PRIMARY_CODEC_INDEX);
- val = oval;
- if (chip->amplifier) {
- /* Turn the EAPD amp on */
- val |= 0x8000;
- } else {
- /* Turn the EAPD amp off */
- val &= ~0x8000;
- }
- if (val != oval) {
- snd_cs46xx_codec_write(chip, AC97_POWERDOWN, val,
- CS46XX_PRIMARY_CODEC_INDEX);
- if (chip->eapd_switch)
- snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
- &chip->eapd_switch->id);
- }
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (chip->amplifier && !old) {
- voyetra_setup_eapd_slot(chip);
- }
-#endif
-}
-
-static void hercules_init(struct snd_cs46xx *chip)
-{
- /* default: AMP off, and SPDIF input optical */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
-}
-
-
-/*
- * Game Theatre XP card - EGPIO[2] is used to enable the external amp.
- */
-static void amp_hercules(struct snd_cs46xx *chip, int change)
-{
- int old = chip->amplifier;
- int val1 = snd_cs46xx_peekBA0(chip, BA0_EGPIODR);
- int val2 = snd_cs46xx_peekBA0(chip, BA0_EGPIOPTR);
-
- chip->amplifier += change;
- if (chip->amplifier && !old) {
- snd_printdd ("Hercules amplifier ON\n");
-
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR,
- EGPIODR_GPOE2 | val1); /* enable EGPIO2 output */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR,
- EGPIOPTR_GPPT2 | val2); /* open-drain on output */
- } else if (old && !chip->amplifier) {
- snd_printdd ("Hercules amplifier OFF\n");
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, val1 & ~EGPIODR_GPOE2); /* disable */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, val2 & ~EGPIOPTR_GPPT2); /* disable */
- }
-}
-
-static void voyetra_mixer_init (struct snd_cs46xx *chip)
-{
- snd_printdd ("initializing Voyetra mixer\n");
-
- /* Enable SPDIF out */
- snd_cs46xx_pokeBA0(chip, BA0_EGPIODR, EGPIODR_GPOE0);
- snd_cs46xx_pokeBA0(chip, BA0_EGPIOPTR, EGPIODR_GPOE0);
-}
-
-static void hercules_mixer_init (struct snd_cs46xx *chip)
-{
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- unsigned int idx;
- int err;
- struct snd_card *card = chip->card;
-#endif
-
- /* set EGPIO to default */
- hercules_init(chip);
-
- snd_printdd ("initializing Hercules mixer\n");
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- if (chip->in_suspend)
- return;
-
- for (idx = 0 ; idx < ARRAY_SIZE(snd_hercules_controls); idx++) {
- struct snd_kcontrol *kctl;
-
- kctl = snd_ctl_new1(&snd_hercules_controls[idx], chip);
- if ((err = snd_ctl_add(card, kctl)) < 0) {
- printk (KERN_ERR "cs46xx: failed to initialize Hercules mixer (%d)\n",err);
- break;
- }
- }
-#endif
-}
-
-
-#if 0
-/*
- * Untested
- */
-
-static void amp_voyetra_4294(struct snd_cs46xx *chip, int change)
-{
- chip->amplifier += change;
-
- if (chip->amplifier) {
- /* Switch the GPIO pins 7 and 8 to open drain */
- snd_cs46xx_codec_write(chip, 0x4C,
- snd_cs46xx_codec_read(chip, 0x4C) & 0xFE7F);
- snd_cs46xx_codec_write(chip, 0x4E,
- snd_cs46xx_codec_read(chip, 0x4E) | 0x0180);
- /* Now wake the AMP (this might be backwards) */
- snd_cs46xx_codec_write(chip, 0x54,
- snd_cs46xx_codec_read(chip, 0x54) & ~0x0180);
- } else {
- snd_cs46xx_codec_write(chip, 0x54,
- snd_cs46xx_codec_read(chip, 0x54) | 0x0180);
- }
-}
-#endif
-
-
-/*
- * Handle the CLKRUN on a thinkpad. We must disable CLKRUN support
- * whenever we need to beat on the chip.
- *
- * The original idea and code for this hack comes from David Kaiser at
- * Linuxcare. Perhaps one day Crystal will document their chips well
- * enough to make them useful.
- */
-
-static void clkrun_hack(struct snd_cs46xx *chip, int change)
-{
- u16 control, nval;
-
- if (!chip->acpi_port)
- return;
-
- chip->amplifier += change;
-
- /* Read ACPI port */
- nval = control = inw(chip->acpi_port + 0x10);
-
- /* Flip CLKRUN off while running */
- if (! chip->amplifier)
- nval |= 0x2000;
- else
- nval &= ~0x2000;
- if (nval != control)
- outw(nval, chip->acpi_port + 0x10);
-}
-
-
-/*
- * detect intel piix4
- */
-static void clkrun_init(struct snd_cs46xx *chip)
-{
- struct pci_dev *pdev;
- u8 pp;
-
- chip->acpi_port = 0;
-
- pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
- PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
- if (pdev == NULL)
- return; /* Not a thinkpad thats for sure */
-
- /* Find the control port */
- pci_read_config_byte(pdev, 0x41, &pp);
- chip->acpi_port = pp << 8;
- pci_dev_put(pdev);
-}
-
-
-/*
- * Card subid table
- */
-
-struct cs_card_type
-{
- u16 vendor;
- u16 id;
- char *name;
- void (*init)(struct snd_cs46xx *);
- void (*amp)(struct snd_cs46xx *, int);
- void (*active)(struct snd_cs46xx *, int);
- void (*mixer_init)(struct snd_cs46xx *);
-};
-
-static struct cs_card_type __devinitdata cards[] = {
- {
- .vendor = 0x1489,
- .id = 0x7001,
- .name = "Genius Soundmaker 128 value",
- /* nothing special */
- },
- {
- .vendor = 0x5053,
- .id = 0x3357,
- .name = "Voyetra",
- .amp = amp_voyetra,
- .mixer_init = voyetra_mixer_init,
- },
- {
- .vendor = 0x1071,
- .id = 0x6003,
- .name = "Mitac MI6020/21",
- .amp = amp_voyetra,
- },
- /* Hercules Game Theatre XP */
- {
- .vendor = 0x14af, /* Guillemot Corporation */
- .id = 0x0050,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
- },
- {
- .vendor = 0x1681,
- .id = 0x0050,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
- },
- {
- .vendor = 0x1681,
- .id = 0x0051,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
-
- },
- {
- .vendor = 0x1681,
- .id = 0x0052,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
- },
- {
- .vendor = 0x1681,
- .id = 0x0053,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
- },
- {
- .vendor = 0x1681,
- .id = 0x0054,
- .name = "Hercules Game Theatre XP",
- .amp = amp_hercules,
- .mixer_init = hercules_mixer_init,
- },
- /* Herculess Fortissimo */
- {
- .vendor = 0x1681,
- .id = 0xa010,
- .name = "Hercules Gamesurround Fortissimo II",
- },
- {
- .vendor = 0x1681,
- .id = 0xa011,
- .name = "Hercules Gamesurround Fortissimo III 7.1",
- },
- /* Teratec */
- {
- .vendor = 0x153b,
- .id = 0x112e,
- .name = "Terratec DMX XFire 1024",
- },
- {
- .vendor = 0x153b,
- .id = 0x1136,
- .name = "Terratec SiXPack 5.1",
- },
- /* Not sure if the 570 needs the clkrun hack */
- {
- .vendor = PCI_VENDOR_ID_IBM,
- .id = 0x0132,
- .name = "Thinkpad 570",
- .init = clkrun_init,
- .active = clkrun_hack,
- },
- {
- .vendor = PCI_VENDOR_ID_IBM,
- .id = 0x0153,
- .name = "Thinkpad 600X/A20/T20",
- .init = clkrun_init,
- .active = clkrun_hack,
- },
- {
- .vendor = PCI_VENDOR_ID_IBM,
- .id = 0x1010,
- .name = "Thinkpad 600E (unsupported)",
- },
- {} /* terminator */
-};
-
-
-/*
- * APM support
- */
-#ifdef CONFIG_PM
-static unsigned int saved_regs[] = {
- BA0_ACOSV,
- /*BA0_ASER_FADDR,*/
- BA0_ASER_MASTER,
- BA1_PVOL,
- BA1_CVOL,
-};
-
-int snd_cs46xx_suspend(struct pci_dev *pci, pm_message_t state)
-{
- struct snd_card *card = pci_get_drvdata(pci);
- struct snd_cs46xx *chip = card->private_data;
- int i, amp_saved;
-
- snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
- chip->in_suspend = 1;
- snd_pcm_suspend_all(chip->pcm);
- // chip->ac97_powerdown = snd_cs46xx_codec_read(chip, AC97_POWER_CONTROL);
- // chip->ac97_general_purpose = snd_cs46xx_codec_read(chip, BA0_AC97_GENERAL_PURPOSE);
-
- snd_ac97_suspend(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
- snd_ac97_suspend(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
-
- /* save some registers */
- for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
- chip->saved_regs[i] = snd_cs46xx_peekBA0(chip, saved_regs[i]);
-
- amp_saved = chip->amplifier;
- /* turn off amp */
- chip->amplifier_ctrl(chip, -chip->amplifier);
- snd_cs46xx_hw_stop(chip);
- /* disable CLKRUN */
- chip->active_ctrl(chip, -chip->amplifier);
- chip->amplifier = amp_saved; /* restore the status */
-
- pci_disable_device(pci);
- pci_save_state(pci);
- pci_set_power_state(pci, pci_choose_state(pci, state));
- return 0;
-}
-
-int snd_cs46xx_resume(struct pci_dev *pci)
-{
- struct snd_card *card = pci_get_drvdata(pci);
- struct snd_cs46xx *chip = card->private_data;
- int amp_saved;
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- int i;
-#endif
- unsigned int tmp;
-
- pci_set_power_state(pci, PCI_D0);
- pci_restore_state(pci);
- if (pci_enable_device(pci) < 0) {
- printk(KERN_ERR "cs46xx: pci_enable_device failed, "
- "disabling device\n");
- snd_card_disconnect(card);
- return -EIO;
- }
- pci_set_master(pci);
-
- amp_saved = chip->amplifier;
- chip->amplifier = 0;
- chip->active_ctrl(chip, 1); /* force to on */
-
- snd_cs46xx_chip_init(chip);
-
- snd_cs46xx_reset(chip);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- cs46xx_dsp_resume(chip);
- /* restore some registers */
- for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
- snd_cs46xx_pokeBA0(chip, saved_regs[i], chip->saved_regs[i]);
-#else
- snd_cs46xx_download_image(chip);
-#endif
-
-#if 0
- snd_cs46xx_codec_write(chip, BA0_AC97_GENERAL_PURPOSE,
- chip->ac97_general_purpose);
- snd_cs46xx_codec_write(chip, AC97_POWER_CONTROL,
- chip->ac97_powerdown);
- mdelay(10);
- snd_cs46xx_codec_write(chip, BA0_AC97_POWERDOWN,
- chip->ac97_powerdown);
- mdelay(5);
-#endif
-
- snd_ac97_resume(chip->ac97[CS46XX_PRIMARY_CODEC_INDEX]);
- snd_ac97_resume(chip->ac97[CS46XX_SECONDARY_CODEC_INDEX]);
-
- /*
- * Stop capture DMA.
- */
- tmp = snd_cs46xx_peek(chip, BA1_CCTL);
- chip->capt.ctl = tmp & 0x0000ffff;
- snd_cs46xx_poke(chip, BA1_CCTL, tmp & 0xffff0000);
-
- mdelay(5);
-
- /* reset playback/capture */
- snd_cs46xx_set_play_sample_rate(chip, 8000);
- snd_cs46xx_set_capture_sample_rate(chip, 8000);
- snd_cs46xx_proc_start(chip);
-
- cs46xx_enable_stream_irqs(chip);
-
- if (amp_saved)
- chip->amplifier_ctrl(chip, 1); /* turn amp on */
- else
- chip->active_ctrl(chip, -1); /* disable CLKRUN */
- chip->amplifier = amp_saved;
- chip->in_suspend = 0;
- snd_power_change_state(card, SNDRV_CTL_POWER_D0);
- return 0;
-}
-#endif /* CONFIG_PM */
-
-
-/*
- */
-
-int __devinit snd_cs46xx_create(struct snd_card *card,
- struct pci_dev * pci,
- int external_amp, int thinkpad,
- struct snd_cs46xx ** rchip)
-{
- struct snd_cs46xx *chip;
- int err, idx;
- struct snd_cs46xx_region *region;
- struct cs_card_type *cp;
- u16 ss_card, ss_vendor;
- static struct snd_device_ops ops = {
- .dev_free = snd_cs46xx_dev_free,
- };
-
- *rchip = NULL;
-
- /* enable PCI device */
- if ((err = pci_enable_device(pci)) < 0)
- return err;
-
- chip = kzalloc(sizeof(*chip), GFP_KERNEL);
- if (chip == NULL) {
- pci_disable_device(pci);
- return -ENOMEM;
- }
- spin_lock_init(&chip->reg_lock);
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- mutex_init(&chip->spos_mutex);
-#endif
- chip->card = card;
- chip->pci = pci;
- chip->irq = -1;
- chip->ba0_addr = pci_resource_start(pci, 0);
- chip->ba1_addr = pci_resource_start(pci, 1);
- if (chip->ba0_addr == 0 || chip->ba0_addr == (unsigned long)~0 ||
- chip->ba1_addr == 0 || chip->ba1_addr == (unsigned long)~0) {
- snd_printk(KERN_ERR "wrong address(es) - ba0 = 0x%lx, ba1 = 0x%lx\n",
- chip->ba0_addr, chip->ba1_addr);
- snd_cs46xx_free(chip);
- return -ENOMEM;
- }
-
- region = &chip->region.name.ba0;
- strcpy(region->name, "CS46xx_BA0");
- region->base = chip->ba0_addr;
- region->size = CS46XX_BA0_SIZE;
-
- region = &chip->region.name.data0;
- strcpy(region->name, "CS46xx_BA1_data0");
- region->base = chip->ba1_addr + BA1_SP_DMEM0;
- region->size = CS46XX_BA1_DATA0_SIZE;
-
- region = &chip->region.name.data1;
- strcpy(region->name, "CS46xx_BA1_data1");
- region->base = chip->ba1_addr + BA1_SP_DMEM1;
- region->size = CS46XX_BA1_DATA1_SIZE;
-
- region = &chip->region.name.pmem;
- strcpy(region->name, "CS46xx_BA1_pmem");
- region->base = chip->ba1_addr + BA1_SP_PMEM;
- region->size = CS46XX_BA1_PRG_SIZE;
-
- region = &chip->region.name.reg;
- strcpy(region->name, "CS46xx_BA1_reg");
- region->base = chip->ba1_addr + BA1_SP_REG;
- region->size = CS46XX_BA1_REG_SIZE;
-
- /* set up amp and clkrun hack */
- pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &ss_vendor);
- pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &ss_card);
-
- for (cp = &cards[0]; cp->name; cp++) {
- if (cp->vendor == ss_vendor && cp->id == ss_card) {
- snd_printdd ("hack for %s enabled\n", cp->name);
-
- chip->amplifier_ctrl = cp->amp;
- chip->active_ctrl = cp->active;
- chip->mixer_init = cp->mixer_init;
-
- if (cp->init)
- cp->init(chip);
- break;
- }
- }
-
- if (external_amp) {
- snd_printk(KERN_INFO "Crystal EAPD support forced on.\n");
- chip->amplifier_ctrl = amp_voyetra;
- }
-
- if (thinkpad) {
- snd_printk(KERN_INFO "Activating CLKRUN hack for Thinkpad.\n");
- chip->active_ctrl = clkrun_hack;
- clkrun_init(chip);
- }
-
- if (chip->amplifier_ctrl == NULL)
- chip->amplifier_ctrl = amp_none;
- if (chip->active_ctrl == NULL)
- chip->active_ctrl = amp_none;
-
- chip->active_ctrl(chip, 1); /* enable CLKRUN */
-
- pci_set_master(pci);
-
- for (idx = 0; idx < 5; idx++) {
- region = &chip->region.idx[idx];
- if ((region->resource = request_mem_region(region->base, region->size,
- region->name)) == NULL) {
- snd_printk(KERN_ERR "unable to request memory region 0x%lx-0x%lx\n",
- region->base, region->base + region->size - 1);
- snd_cs46xx_free(chip);
- return -EBUSY;
- }
- region->remap_addr = ioremap_nocache(region->base, region->size);
- if (region->remap_addr == NULL) {
- snd_printk(KERN_ERR "%s ioremap problem\n", region->name);
- snd_cs46xx_free(chip);
- return -ENOMEM;
- }
- }
-
- if (request_irq(pci->irq, snd_cs46xx_interrupt, IRQF_SHARED,
- KBUILD_MODNAME, chip)) {
- snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
- snd_cs46xx_free(chip);
- return -EBUSY;
- }
- chip->irq = pci->irq;
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
- chip->dsp_spos_instance = cs46xx_dsp_spos_create(chip);
- if (chip->dsp_spos_instance == NULL) {
- snd_cs46xx_free(chip);
- return -ENOMEM;
- }
-#endif
-
- err = snd_cs46xx_chip_init(chip);
- if (err < 0) {
- snd_cs46xx_free(chip);
- return err;
- }
-
- if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
- snd_cs46xx_free(chip);
- return err;
- }
-
- snd_cs46xx_proc_init(card, chip);
-
-#ifdef CONFIG_PM
- chip->saved_regs = kmalloc(sizeof(*chip->saved_regs) *
- ARRAY_SIZE(saved_regs), GFP_KERNEL);
- if (!chip->saved_regs) {
- snd_cs46xx_free(chip);
- return -ENOMEM;
- }
-#endif
-
- chip->active_ctrl(chip, -1); /* disable CLKRUN */
-
- snd_card_set_dev(card, &pci->dev);
-
- *rchip = chip;
- return 0;
-}
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.h b/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.h
deleted file mode 100644
index b5189495..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/cs46xx_lib.h
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
- * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards
- * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-#ifndef __CS46XX_LIB_H__
-#define __CS46XX_LIB_H__
-
-/*
- * constants
- */
-
-#define CS46XX_BA0_SIZE 0x1000
-#define CS46XX_BA1_DATA0_SIZE 0x3000
-#define CS46XX_BA1_DATA1_SIZE 0x3800
-#define CS46XX_BA1_PRG_SIZE 0x7000
-#define CS46XX_BA1_REG_SIZE 0x0100
-
-
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP
-#define CS46XX_MIN_PERIOD_SIZE 64
-#define CS46XX_MAX_PERIOD_SIZE 1024*1024
-#else
-#define CS46XX_MIN_PERIOD_SIZE 2048
-#define CS46XX_MAX_PERIOD_SIZE 2048
-#endif
-
-#define CS46XX_FRAGS 2
-/* #define CS46XX_BUFFER_SIZE CS46XX_MAX_PERIOD_SIZE * CS46XX_FRAGS */
-
-#define SCB_NO_PARENT 0
-#define SCB_ON_PARENT_NEXT_SCB 1
-#define SCB_ON_PARENT_SUBLIST_SCB 2
-
-/* 3*1024 parameter, 3.5*1024 sample, 2*3.5*1024 code */
-#define BA1_DWORD_SIZE (13 * 1024 + 512)
-#define BA1_MEMORY_COUNT 3
-
-/*
- * common I/O routines
- */
-
-static inline void snd_cs46xx_poke(struct snd_cs46xx *chip, unsigned long reg, unsigned int val)
-{
- unsigned int bank = reg >> 16;
- unsigned int offset = reg & 0xffff;
-
- /*
- if (bank == 0)
- printk(KERN_DEBUG "snd_cs46xx_poke: %04X - %08X\n",
- reg >> 2,val);
- */
- writel(val, chip->region.idx[bank+1].remap_addr + offset);
-}
-
-static inline unsigned int snd_cs46xx_peek(struct snd_cs46xx *chip, unsigned long reg)
-{
- unsigned int bank = reg >> 16;
- unsigned int offset = reg & 0xffff;
- return readl(chip->region.idx[bank+1].remap_addr + offset);
-}
-
-static inline void snd_cs46xx_pokeBA0(struct snd_cs46xx *chip, unsigned long offset, unsigned int val)
-{
- writel(val, chip->region.name.ba0.remap_addr + offset);
-}
-
-static inline unsigned int snd_cs46xx_peekBA0(struct snd_cs46xx *chip, unsigned long offset)
-{
- return readl(chip->region.name.ba0.remap_addr + offset);
-}
-
-struct dsp_spos_instance *cs46xx_dsp_spos_create (struct snd_cs46xx * chip);
-void cs46xx_dsp_spos_destroy (struct snd_cs46xx * chip);
-int cs46xx_dsp_load_module (struct snd_cs46xx * chip, struct dsp_module_desc * module);
-#ifdef CONFIG_PM
-int cs46xx_dsp_resume(struct snd_cs46xx * chip);
-#endif
-struct dsp_symbol_entry *cs46xx_dsp_lookup_symbol (struct snd_cs46xx * chip, char * symbol_name,
- int symbol_type);
-#ifdef CONFIG_PROC_FS
-int cs46xx_dsp_proc_init (struct snd_card *card, struct snd_cs46xx *chip);
-int cs46xx_dsp_proc_done (struct snd_cs46xx *chip);
-#else
-#define cs46xx_dsp_proc_init(card, chip)
-#define cs46xx_dsp_proc_done(chip)
-#endif
-int cs46xx_dsp_scb_and_task_init (struct snd_cs46xx *chip);
-int snd_cs46xx_download (struct snd_cs46xx *chip, u32 *src, unsigned long offset,
- unsigned long len);
-int snd_cs46xx_clear_BA1(struct snd_cs46xx *chip, unsigned long offset, unsigned long len);
-int cs46xx_dsp_enable_spdif_out (struct snd_cs46xx *chip);
-int cs46xx_dsp_enable_spdif_hw (struct snd_cs46xx *chip);
-int cs46xx_dsp_disable_spdif_out (struct snd_cs46xx *chip);
-int cs46xx_dsp_enable_spdif_in (struct snd_cs46xx *chip);
-int cs46xx_dsp_disable_spdif_in (struct snd_cs46xx *chip);
-int cs46xx_dsp_enable_pcm_capture (struct snd_cs46xx *chip);
-int cs46xx_dsp_disable_pcm_capture (struct snd_cs46xx *chip);
-int cs46xx_dsp_enable_adc_capture (struct snd_cs46xx *chip);
-int cs46xx_dsp_disable_adc_capture (struct snd_cs46xx *chip);
-int cs46xx_poke_via_dsp (struct snd_cs46xx *chip, u32 address, u32 data);
-struct dsp_scb_descriptor * cs46xx_dsp_create_scb (struct snd_cs46xx *chip, char * name,
- u32 * scb_data, u32 dest);
-#ifdef CONFIG_PROC_FS
-void cs46xx_dsp_proc_free_scb_desc (struct dsp_scb_descriptor * scb);
-void cs46xx_dsp_proc_register_scb_desc (struct snd_cs46xx *chip,
- struct dsp_scb_descriptor * scb);
-#else
-#define cs46xx_dsp_proc_free_scb_desc(scb)
-#define cs46xx_dsp_proc_register_scb_desc(chip, scb)
-#endif
-struct dsp_scb_descriptor * cs46xx_dsp_create_timing_master_scb (struct snd_cs46xx *chip);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_codec_out_scb(struct snd_cs46xx * chip,
- char * codec_name, u16 channel_disp, u16 fifo_addr,
- u16 child_scb_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_codec_in_scb(struct snd_cs46xx * chip, char * codec_name,
- u16 channel_disp, u16 fifo_addr,
- u16 sample_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-void cs46xx_dsp_remove_scb (struct snd_cs46xx *chip,
- struct dsp_scb_descriptor * scb);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_codec_in_scb(struct snd_cs46xx * chip, char * codec_name,
- u16 channel_disp, u16 fifo_addr,
- u16 sample_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_src_task_scb(struct snd_cs46xx * chip, char * scb_name,
- int sample_rate, u16 src_buffer_addr,
- u16 src_delay_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type, int pass_through);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_mix_only_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 mix_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_vari_decimate_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 vari_buffer_addr0, u16 vari_buffer_addr1, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_asynch_fg_rx_scb(struct snd_cs46xx * chip, char * scb_name,
- u32 dest, u16 hfg_scb_address, u16 asynch_buffer_address,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_spio_write_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_mix_to_ostream_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 mix_buffer_addr, u16 writeback_spb, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_magic_snoop_scb(struct snd_cs46xx * chip, char * scb_name,
- u32 dest, u16 snoop_buffer_address,
- struct dsp_scb_descriptor * snoop_scb,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type);
-struct dsp_pcm_channel_descriptor *
-cs46xx_dsp_create_pcm_channel (struct snd_cs46xx * chip, u32 sample_rate,
- void * private_data, u32 hw_dma_addr,
- int pcm_channel_id);
-void cs46xx_dsp_destroy_pcm_channel (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel);
-int cs46xx_dsp_pcm_unlink (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel);
-int cs46xx_dsp_pcm_link (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel);
-struct dsp_scb_descriptor *
-cs46xx_add_record_source (struct snd_cs46xx *chip, struct dsp_scb_descriptor * source,
- u16 addr, char * scb_name);
-int cs46xx_src_unlink(struct snd_cs46xx *chip, struct dsp_scb_descriptor * src);
-int cs46xx_src_link(struct snd_cs46xx *chip, struct dsp_scb_descriptor * src);
-int cs46xx_iec958_pre_open (struct snd_cs46xx *chip);
-int cs46xx_iec958_post_close (struct snd_cs46xx *chip);
-int cs46xx_dsp_pcm_channel_set_period (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel,
- int period_size);
-int cs46xx_dsp_pcm_ostream_set_period (struct snd_cs46xx * chip, int period_size);
-int cs46xx_dsp_set_dac_volume (struct snd_cs46xx * chip, u16 left, u16 right);
-int cs46xx_dsp_set_iec958_volume (struct snd_cs46xx * chip, u16 left, u16 right);
-#endif /* __CS46XX_LIB_H__ */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.c b/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.c
deleted file mode 100644
index e3772871..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.c
+++ /dev/null
@@ -1,2017 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-/*
- * 2002-07 Benny Sjostrand benny@hostmobility.com
- */
-
-
-#include <asm/io.h>
-#include <linux/delay.h>
-#include <linux/pm.h>
-#include <linux/init.h>
-#include <linux/slab.h>
-#include <linux/vmalloc.h>
-#include <linux/mutex.h>
-
-#include <sound/core.h>
-#include <sound/control.h>
-#include <sound/info.h>
-#include <sound/asoundef.h>
-#include <sound/cs46xx.h>
-
-#include "cs46xx_lib.h"
-#include "dsp_spos.h"
-
-static int cs46xx_dsp_async_init (struct snd_cs46xx *chip,
- struct dsp_scb_descriptor * fg_entry);
-
-static enum wide_opcode wide_opcodes[] = {
- WIDE_FOR_BEGIN_LOOP,
- WIDE_FOR_BEGIN_LOOP2,
- WIDE_COND_GOTO_ADDR,
- WIDE_COND_GOTO_CALL,
- WIDE_TBEQ_COND_GOTO_ADDR,
- WIDE_TBEQ_COND_CALL_ADDR,
- WIDE_TBEQ_NCOND_GOTO_ADDR,
- WIDE_TBEQ_NCOND_CALL_ADDR,
- WIDE_TBEQ_COND_GOTO1_ADDR,
- WIDE_TBEQ_COND_CALL1_ADDR,
- WIDE_TBEQ_NCOND_GOTOI_ADDR,
- WIDE_TBEQ_NCOND_CALL1_ADDR
-};
-
-static int shadow_and_reallocate_code (struct snd_cs46xx * chip, u32 * data, u32 size,
- u32 overlay_begin_address)
-{
- unsigned int i = 0, j, nreallocated = 0;
- u32 hival,loval,address;
- u32 mop_operands,mop_type,wide_op;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(size %2))
- return -EINVAL;
-
- while (i < size) {
- loval = data[i++];
- hival = data[i++];
-
- if (ins->code.offset > 0) {
- mop_operands = (hival >> 6) & 0x03fff;
- mop_type = mop_operands >> 10;
-
- /* check for wide type instruction */
- if (mop_type == 0 &&
- (mop_operands & WIDE_LADD_INSTR_MASK) == 0 &&
- (mop_operands & WIDE_INSTR_MASK) != 0) {
- wide_op = loval & 0x7f;
- for (j = 0;j < ARRAY_SIZE(wide_opcodes); ++j) {
- if (wide_opcodes[j] == wide_op) {
- /* need to reallocate instruction */
- address = (hival & 0x00FFF) << 5;
- address |= loval >> 15;
-
- snd_printdd("handle_wideop[1]: %05x:%05x addr %04x\n",hival,loval,address);
-
- if ( !(address & 0x8000) ) {
- address += (ins->code.offset / 2) - overlay_begin_address;
- } else {
- snd_printdd("handle_wideop[1]: ROM symbol not reallocated\n");
- }
-
- hival &= 0xFF000;
- loval &= 0x07FFF;
-
- hival |= ( (address >> 5) & 0x00FFF);
- loval |= ( (address << 15) & 0xF8000);
-
- address = (hival & 0x00FFF) << 5;
- address |= loval >> 15;
-
- snd_printdd("handle_wideop:[2] %05x:%05x addr %04x\n",hival,loval,address);
- nreallocated ++;
- } /* wide_opcodes[j] == wide_op */
- } /* for */
- } /* mod_type == 0 ... */
- } /* ins->code.offset > 0 */
-
- ins->code.data[ins->code.size++] = loval;
- ins->code.data[ins->code.size++] = hival;
- }
-
- snd_printdd("dsp_spos: %d instructions reallocated\n",nreallocated);
- return nreallocated;
-}
-
-static struct dsp_segment_desc * get_segment_desc (struct dsp_module_desc * module, int seg_type)
-{
- int i;
- for (i = 0;i < module->nsegments; ++i) {
- if (module->segments[i].segment_type == seg_type) {
- return (module->segments + i);
- }
- }
-
- return NULL;
-};
-
-static int find_free_symbol_index (struct dsp_spos_instance * ins)
-{
- int index = ins->symbol_table.nsymbols,i;
-
- for (i = ins->symbol_table.highest_frag_index; i < ins->symbol_table.nsymbols; ++i) {
- if (ins->symbol_table.symbols[i].deleted) {
- index = i;
- break;
- }
- }
-
- return index;
-}
-
-static int add_symbols (struct snd_cs46xx * chip, struct dsp_module_desc * module)
-{
- int i;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (module->symbol_table.nsymbols > 0) {
- if (!strcmp(module->symbol_table.symbols[0].symbol_name, "OVERLAYBEGINADDRESS") &&
- module->symbol_table.symbols[0].symbol_type == SYMBOL_CONSTANT ) {
- module->overlay_begin_address = module->symbol_table.symbols[0].address;
- }
- }
-
- for (i = 0;i < module->symbol_table.nsymbols; ++i) {
- if (ins->symbol_table.nsymbols == (DSP_MAX_SYMBOLS - 1)) {
- snd_printk(KERN_ERR "dsp_spos: symbol table is full\n");
- return -ENOMEM;
- }
-
-
- if (cs46xx_dsp_lookup_symbol(chip,
- module->symbol_table.symbols[i].symbol_name,
- module->symbol_table.symbols[i].symbol_type) == NULL) {
-
- ins->symbol_table.symbols[ins->symbol_table.nsymbols] = module->symbol_table.symbols[i];
- ins->symbol_table.symbols[ins->symbol_table.nsymbols].address += ((ins->code.offset / 2) - module->overlay_begin_address);
- ins->symbol_table.symbols[ins->symbol_table.nsymbols].module = module;
- ins->symbol_table.symbols[ins->symbol_table.nsymbols].deleted = 0;
-
- if (ins->symbol_table.nsymbols > ins->symbol_table.highest_frag_index)
- ins->symbol_table.highest_frag_index = ins->symbol_table.nsymbols;
-
- ins->symbol_table.nsymbols++;
- } else {
- /* if (0) printk ("dsp_spos: symbol <%s> duplicated, probably nothing wrong with that (Cirrus?)\n",
- module->symbol_table.symbols[i].symbol_name); */
- }
- }
-
- return 0;
-}
-
-static struct dsp_symbol_entry *
-add_symbol (struct snd_cs46xx * chip, char * symbol_name, u32 address, int type)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_symbol_entry * symbol = NULL;
- int index;
-
- if (ins->symbol_table.nsymbols == (DSP_MAX_SYMBOLS - 1)) {
- snd_printk(KERN_ERR "dsp_spos: symbol table is full\n");
- return NULL;
- }
-
- if (cs46xx_dsp_lookup_symbol(chip,
- symbol_name,
- type) != NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol <%s> duplicated\n", symbol_name);
- return NULL;
- }
-
- index = find_free_symbol_index (ins);
-
- strcpy (ins->symbol_table.symbols[index].symbol_name, symbol_name);
- ins->symbol_table.symbols[index].address = address;
- ins->symbol_table.symbols[index].symbol_type = type;
- ins->symbol_table.symbols[index].module = NULL;
- ins->symbol_table.symbols[index].deleted = 0;
- symbol = (ins->symbol_table.symbols + index);
-
- if (index > ins->symbol_table.highest_frag_index)
- ins->symbol_table.highest_frag_index = index;
-
- if (index == ins->symbol_table.nsymbols)
- ins->symbol_table.nsymbols++; /* no frag. in list */
-
- return symbol;
-}
-
-struct dsp_spos_instance *cs46xx_dsp_spos_create (struct snd_cs46xx * chip)
-{
- struct dsp_spos_instance * ins = kzalloc(sizeof(struct dsp_spos_instance), GFP_KERNEL);
-
- if (ins == NULL)
- return NULL;
-
- /* better to use vmalloc for this big table */
- ins->symbol_table.symbols = vmalloc(sizeof(struct dsp_symbol_entry) *
- DSP_MAX_SYMBOLS);
- ins->code.data = kmalloc(DSP_CODE_BYTE_SIZE, GFP_KERNEL);
- ins->modules = kmalloc(sizeof(struct dsp_module_desc) * DSP_MAX_MODULES, GFP_KERNEL);
- if (!ins->symbol_table.symbols || !ins->code.data || !ins->modules) {
- cs46xx_dsp_spos_destroy(chip);
- goto error;
- }
- ins->symbol_table.nsymbols = 0;
- ins->symbol_table.highest_frag_index = 0;
- ins->code.offset = 0;
- ins->code.size = 0;
- ins->nscb = 0;
- ins->ntask = 0;
- ins->nmodules = 0;
-
- /* default SPDIF input sample rate
- to 48000 khz */
- ins->spdif_in_sample_rate = 48000;
-
- /* maximize volume */
- ins->dac_volume_right = 0x8000;
- ins->dac_volume_left = 0x8000;
- ins->spdif_input_volume_right = 0x8000;
- ins->spdif_input_volume_left = 0x8000;
-
- /* set left and right validity bits and
- default channel status */
- ins->spdif_csuv_default =
- ins->spdif_csuv_stream =
- /* byte 0 */ ((unsigned int)_wrap_all_bits( (SNDRV_PCM_DEFAULT_CON_SPDIF & 0xff)) << 24) |
- /* byte 1 */ ((unsigned int)_wrap_all_bits( ((SNDRV_PCM_DEFAULT_CON_SPDIF >> 8) & 0xff)) << 16) |
- /* byte 3 */ (unsigned int)_wrap_all_bits( (SNDRV_PCM_DEFAULT_CON_SPDIF >> 24) & 0xff) |
- /* left and right validity bits */ (1 << 13) | (1 << 12);
-
- return ins;
-
-error:
- kfree(ins->modules);
- kfree(ins->code.data);
- vfree(ins->symbol_table.symbols);
- kfree(ins);
- return NULL;
-}
-
-void cs46xx_dsp_spos_destroy (struct snd_cs46xx * chip)
-{
- int i;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(!ins))
- return;
-
- mutex_lock(&chip->spos_mutex);
- for (i = 0; i < ins->nscb; ++i) {
- if (ins->scbs[i].deleted) continue;
-
- cs46xx_dsp_proc_free_scb_desc ( (ins->scbs + i) );
-#ifdef CONFIG_PM
- kfree(ins->scbs[i].data);
-#endif
- }
-
- kfree(ins->code.data);
- vfree(ins->symbol_table.symbols);
- kfree(ins->modules);
- kfree(ins);
- mutex_unlock(&chip->spos_mutex);
-}
-
-static int dsp_load_parameter(struct snd_cs46xx *chip,
- struct dsp_segment_desc *parameter)
-{
- u32 doffset, dsize;
-
- if (!parameter) {
- snd_printdd("dsp_spos: module got no parameter segment\n");
- return 0;
- }
-
- doffset = (parameter->offset * 4 + DSP_PARAMETER_BYTE_OFFSET);
- dsize = parameter->size * 4;
-
- snd_printdd("dsp_spos: "
- "downloading parameter data to chip (%08x-%08x)\n",
- doffset,doffset + dsize);
- if (snd_cs46xx_download (chip, parameter->data, doffset, dsize)) {
- snd_printk(KERN_ERR "dsp_spos: "
- "failed to download parameter data to DSP\n");
- return -EINVAL;
- }
- return 0;
-}
-
-static int dsp_load_sample(struct snd_cs46xx *chip,
- struct dsp_segment_desc *sample)
-{
- u32 doffset, dsize;
-
- if (!sample) {
- snd_printdd("dsp_spos: module got no sample segment\n");
- return 0;
- }
-
- doffset = (sample->offset * 4 + DSP_SAMPLE_BYTE_OFFSET);
- dsize = sample->size * 4;
-
- snd_printdd("dsp_spos: downloading sample data to chip (%08x-%08x)\n",
- doffset,doffset + dsize);
-
- if (snd_cs46xx_download (chip,sample->data,doffset,dsize)) {
- snd_printk(KERN_ERR "dsp_spos: failed to sample data to DSP\n");
- return -EINVAL;
- }
- return 0;
-}
-
-int cs46xx_dsp_load_module (struct snd_cs46xx * chip, struct dsp_module_desc * module)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_segment_desc * code = get_segment_desc (module,SEGTYPE_SP_PROGRAM);
- u32 doffset, dsize;
- int err;
-
- if (ins->nmodules == DSP_MAX_MODULES - 1) {
- snd_printk(KERN_ERR "dsp_spos: to many modules loaded into DSP\n");
- return -ENOMEM;
- }
-
- snd_printdd("dsp_spos: loading module %s into DSP\n", module->module_name);
-
- if (ins->nmodules == 0) {
- snd_printdd("dsp_spos: clearing parameter area\n");
- snd_cs46xx_clear_BA1(chip, DSP_PARAMETER_BYTE_OFFSET, DSP_PARAMETER_BYTE_SIZE);
- }
-
- err = dsp_load_parameter(chip, get_segment_desc(module,
- SEGTYPE_SP_PARAMETER));
- if (err < 0)
- return err;
-
- if (ins->nmodules == 0) {
- snd_printdd("dsp_spos: clearing sample area\n");
- snd_cs46xx_clear_BA1(chip, DSP_SAMPLE_BYTE_OFFSET, DSP_SAMPLE_BYTE_SIZE);
- }
-
- err = dsp_load_sample(chip, get_segment_desc(module,
- SEGTYPE_SP_SAMPLE));
- if (err < 0)
- return err;
-
- if (ins->nmodules == 0) {
- snd_printdd("dsp_spos: clearing code area\n");
- snd_cs46xx_clear_BA1(chip, DSP_CODE_BYTE_OFFSET, DSP_CODE_BYTE_SIZE);
- }
-
- if (code == NULL) {
- snd_printdd("dsp_spos: module got no code segment\n");
- } else {
- if (ins->code.offset + code->size > DSP_CODE_BYTE_SIZE) {
- snd_printk(KERN_ERR "dsp_spos: no space available in DSP\n");
- return -ENOMEM;
- }
-
- module->load_address = ins->code.offset;
- module->overlay_begin_address = 0x000;
-
- /* if module has a code segment it must have
- symbol table */
- if (snd_BUG_ON(!module->symbol_table.symbols))
- return -ENOMEM;
- if (add_symbols(chip,module)) {
- snd_printk(KERN_ERR "dsp_spos: failed to load symbol table\n");
- return -ENOMEM;
- }
-
- doffset = (code->offset * 4 + ins->code.offset * 4 + DSP_CODE_BYTE_OFFSET);
- dsize = code->size * 4;
- snd_printdd("dsp_spos: downloading code to chip (%08x-%08x)\n",
- doffset,doffset + dsize);
-
- module->nfixups = shadow_and_reallocate_code(chip,code->data,code->size,module->overlay_begin_address);
-
- if (snd_cs46xx_download (chip,(ins->code.data + ins->code.offset),doffset,dsize)) {
- snd_printk(KERN_ERR "dsp_spos: failed to download code to DSP\n");
- return -EINVAL;
- }
-
- ins->code.offset += code->size;
- }
-
- /* NOTE: module segments and symbol table must be
- statically allocated. Case that module data is
- not generated by the ospparser */
- ins->modules[ins->nmodules] = *module;
- ins->nmodules++;
-
- return 0;
-}
-
-struct dsp_symbol_entry *
-cs46xx_dsp_lookup_symbol (struct snd_cs46xx * chip, char * symbol_name, int symbol_type)
-{
- int i;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- for ( i = 0; i < ins->symbol_table.nsymbols; ++i ) {
-
- if (ins->symbol_table.symbols[i].deleted)
- continue;
-
- if (!strcmp(ins->symbol_table.symbols[i].symbol_name,symbol_name) &&
- ins->symbol_table.symbols[i].symbol_type == symbol_type) {
- return (ins->symbol_table.symbols + i);
- }
- }
-
-#if 0
- printk ("dsp_spos: symbol <%s> type %02x not found\n",
- symbol_name,symbol_type);
-#endif
-
- return NULL;
-}
-
-
-#ifdef CONFIG_PROC_FS
-static struct dsp_symbol_entry *
-cs46xx_dsp_lookup_symbol_addr (struct snd_cs46xx * chip, u32 address, int symbol_type)
-{
- int i;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- for ( i = 0; i < ins->symbol_table.nsymbols; ++i ) {
-
- if (ins->symbol_table.symbols[i].deleted)
- continue;
-
- if (ins->symbol_table.symbols[i].address == address &&
- ins->symbol_table.symbols[i].symbol_type == symbol_type) {
- return (ins->symbol_table.symbols + i);
- }
- }
-
-
- return NULL;
-}
-
-
-static void cs46xx_dsp_proc_symbol_table_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i;
-
- snd_iprintf(buffer, "SYMBOLS:\n");
- for ( i = 0; i < ins->symbol_table.nsymbols; ++i ) {
- char *module_str = "system";
-
- if (ins->symbol_table.symbols[i].deleted)
- continue;
-
- if (ins->symbol_table.symbols[i].module != NULL) {
- module_str = ins->symbol_table.symbols[i].module->module_name;
- }
-
-
- snd_iprintf(buffer, "%04X <%02X> %s [%s]\n",
- ins->symbol_table.symbols[i].address,
- ins->symbol_table.symbols[i].symbol_type,
- ins->symbol_table.symbols[i].symbol_name,
- module_str);
- }
-}
-
-
-static void cs46xx_dsp_proc_modules_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i,j;
-
- mutex_lock(&chip->spos_mutex);
- snd_iprintf(buffer, "MODULES:\n");
- for ( i = 0; i < ins->nmodules; ++i ) {
- snd_iprintf(buffer, "\n%s:\n", ins->modules[i].module_name);
- snd_iprintf(buffer, " %d symbols\n", ins->modules[i].symbol_table.nsymbols);
- snd_iprintf(buffer, " %d fixups\n", ins->modules[i].nfixups);
-
- for (j = 0; j < ins->modules[i].nsegments; ++ j) {
- struct dsp_segment_desc * desc = (ins->modules[i].segments + j);
- snd_iprintf(buffer, " segment %02x offset %08x size %08x\n",
- desc->segment_type,desc->offset, desc->size);
- }
- }
- mutex_unlock(&chip->spos_mutex);
-}
-
-static void cs46xx_dsp_proc_task_tree_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i, j, col;
- void __iomem *dst = chip->region.idx[1].remap_addr + DSP_PARAMETER_BYTE_OFFSET;
-
- mutex_lock(&chip->spos_mutex);
- snd_iprintf(buffer, "TASK TREES:\n");
- for ( i = 0; i < ins->ntask; ++i) {
- snd_iprintf(buffer,"\n%04x %s:\n",ins->tasks[i].address,ins->tasks[i].task_name);
-
- for (col = 0,j = 0;j < ins->tasks[i].size; j++,col++) {
- u32 val;
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
- val = readl(dst + (ins->tasks[i].address + j) * sizeof(u32));
- snd_iprintf(buffer,"%08x ",val);
- }
- }
-
- snd_iprintf(buffer,"\n");
- mutex_unlock(&chip->spos_mutex);
-}
-
-static void cs46xx_dsp_proc_scb_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i;
-
- mutex_lock(&chip->spos_mutex);
- snd_iprintf(buffer, "SCB's:\n");
- for ( i = 0; i < ins->nscb; ++i) {
- if (ins->scbs[i].deleted)
- continue;
- snd_iprintf(buffer,"\n%04x %s:\n\n",ins->scbs[i].address,ins->scbs[i].scb_name);
-
- if (ins->scbs[i].parent_scb_ptr != NULL) {
- snd_iprintf(buffer,"parent [%s:%04x] ",
- ins->scbs[i].parent_scb_ptr->scb_name,
- ins->scbs[i].parent_scb_ptr->address);
- } else snd_iprintf(buffer,"parent [none] ");
-
- snd_iprintf(buffer,"sub_list_ptr [%s:%04x]\nnext_scb_ptr [%s:%04x] task_entry [%s:%04x]\n",
- ins->scbs[i].sub_list_ptr->scb_name,
- ins->scbs[i].sub_list_ptr->address,
- ins->scbs[i].next_scb_ptr->scb_name,
- ins->scbs[i].next_scb_ptr->address,
- ins->scbs[i].task_entry->symbol_name,
- ins->scbs[i].task_entry->address);
- }
-
- snd_iprintf(buffer,"\n");
- mutex_unlock(&chip->spos_mutex);
-}
-
-static void cs46xx_dsp_proc_parameter_dump_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- /*struct dsp_spos_instance * ins = chip->dsp_spos_instance; */
- unsigned int i, col = 0;
- void __iomem *dst = chip->region.idx[1].remap_addr + DSP_PARAMETER_BYTE_OFFSET;
- struct dsp_symbol_entry * symbol;
-
- for (i = 0;i < DSP_PARAMETER_BYTE_SIZE; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if ( (symbol = cs46xx_dsp_lookup_symbol_addr (chip,i / sizeof(u32), SYMBOL_PARAMETER)) != NULL) {
- col = 0;
- snd_iprintf (buffer,"\n%s:\n",symbol->symbol_name);
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ", i / (unsigned int)sizeof(u32));
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-}
-
-static void cs46xx_dsp_proc_sample_dump_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct snd_cs46xx *chip = entry->private_data;
- int i,col = 0;
- void __iomem *dst = chip->region.idx[2].remap_addr;
-
- snd_iprintf(buffer,"PCMREADER:\n");
- for (i = PCM_READER_BUF1;i < PCM_READER_BUF1 + 0x30; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
- snd_iprintf(buffer,"\nMIX_SAMPLE_BUF1:\n");
-
- col = 0;
- for (i = MIX_SAMPLE_BUF1;i < MIX_SAMPLE_BUF1 + 0x40; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
- snd_iprintf(buffer,"\nSRC_TASK_SCB1:\n");
- col = 0;
- for (i = 0x2480 ; i < 0x2480 + 0x40 ; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
-
- snd_iprintf(buffer,"\nSPDIFO_BUFFER:\n");
- col = 0;
- for (i = SPDIFO_IP_OUTPUT_BUFFER1;i < SPDIFO_IP_OUTPUT_BUFFER1 + 0x30; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
- snd_iprintf(buffer,"\n...\n");
- col = 0;
-
- for (i = SPDIFO_IP_OUTPUT_BUFFER1+0xD0;i < SPDIFO_IP_OUTPUT_BUFFER1 + 0x110; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
-
- snd_iprintf(buffer,"\nOUTPUT_SNOOP:\n");
- col = 0;
- for (i = OUTPUT_SNOOP_BUFFER;i < OUTPUT_SNOOP_BUFFER + 0x40; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-
- snd_iprintf(buffer,"\nCODEC_INPUT_BUF1: \n");
- col = 0;
- for (i = CODEC_INPUT_BUF1;i < CODEC_INPUT_BUF1 + 0x40; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-#if 0
- snd_iprintf(buffer,"\nWRITE_BACK_BUF1: \n");
- col = 0;
- for (i = WRITE_BACK_BUF1;i < WRITE_BACK_BUF1 + 0x40; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
-#endif
-
- snd_iprintf(buffer,"\nSPDIFI_IP_OUTPUT_BUFFER1: \n");
- col = 0;
- for (i = SPDIFI_IP_OUTPUT_BUFFER1;i < SPDIFI_IP_OUTPUT_BUFFER1 + 0x80; i += sizeof(u32),col ++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
-
- if (col == 0) {
- snd_iprintf(buffer, "%04X ",i);
- }
-
- snd_iprintf(buffer,"%08X ",readl(dst + i));
- }
- snd_iprintf(buffer,"\n");
-}
-
-int cs46xx_dsp_proc_init (struct snd_card *card, struct snd_cs46xx *chip)
-{
- struct snd_info_entry *entry;
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i;
-
- ins->snd_card = card;
-
- if ((entry = snd_info_create_card_entry(card, "dsp", card->proc_root)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->mode = S_IFDIR | S_IRUGO | S_IXUGO;
-
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
-
- ins->proc_dsp_dir = entry;
-
- if (!ins->proc_dsp_dir)
- return -ENOMEM;
-
- if ((entry = snd_info_create_card_entry(card, "spos_symbols", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_symbol_table_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_sym_info_entry = entry;
-
- if ((entry = snd_info_create_card_entry(card, "spos_modules", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_modules_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_modules_info_entry = entry;
-
- if ((entry = snd_info_create_card_entry(card, "parameter", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_parameter_dump_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_parameter_dump_info_entry = entry;
-
- if ((entry = snd_info_create_card_entry(card, "sample", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_sample_dump_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_sample_dump_info_entry = entry;
-
- if ((entry = snd_info_create_card_entry(card, "task_tree", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_task_tree_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_task_info_entry = entry;
-
- if ((entry = snd_info_create_card_entry(card, "scb_info", ins->proc_dsp_dir)) != NULL) {
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = chip;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
- entry->c.text.read = cs46xx_dsp_proc_scb_read;
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- entry = NULL;
- }
- }
- ins->proc_scb_info_entry = entry;
-
- mutex_lock(&chip->spos_mutex);
- /* register/update SCB's entries on proc */
- for (i = 0; i < ins->nscb; ++i) {
- if (ins->scbs[i].deleted) continue;
-
- cs46xx_dsp_proc_register_scb_desc (chip, (ins->scbs + i));
- }
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_proc_done (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i;
-
- snd_info_free_entry(ins->proc_sym_info_entry);
- ins->proc_sym_info_entry = NULL;
-
- snd_info_free_entry(ins->proc_modules_info_entry);
- ins->proc_modules_info_entry = NULL;
-
- snd_info_free_entry(ins->proc_parameter_dump_info_entry);
- ins->proc_parameter_dump_info_entry = NULL;
-
- snd_info_free_entry(ins->proc_sample_dump_info_entry);
- ins->proc_sample_dump_info_entry = NULL;
-
- snd_info_free_entry(ins->proc_scb_info_entry);
- ins->proc_scb_info_entry = NULL;
-
- snd_info_free_entry(ins->proc_task_info_entry);
- ins->proc_task_info_entry = NULL;
-
- mutex_lock(&chip->spos_mutex);
- for (i = 0; i < ins->nscb; ++i) {
- if (ins->scbs[i].deleted) continue;
- cs46xx_dsp_proc_free_scb_desc ( (ins->scbs + i) );
- }
- mutex_unlock(&chip->spos_mutex);
-
- snd_info_free_entry(ins->proc_dsp_dir);
- ins->proc_dsp_dir = NULL;
-
- return 0;
-}
-#endif /* CONFIG_PROC_FS */
-
-static int debug_tree;
-static void _dsp_create_task_tree (struct snd_cs46xx *chip, u32 * task_data,
- u32 dest, int size)
-{
- void __iomem *spdst = chip->region.idx[1].remap_addr +
- DSP_PARAMETER_BYTE_OFFSET + dest * sizeof(u32);
- int i;
-
- for (i = 0; i < size; ++i) {
- if (debug_tree) printk ("addr %p, val %08x\n",spdst,task_data[i]);
- writel(task_data[i],spdst);
- spdst += sizeof(u32);
- }
-}
-
-static int debug_scb;
-static void _dsp_create_scb (struct snd_cs46xx *chip, u32 * scb_data, u32 dest)
-{
- void __iomem *spdst = chip->region.idx[1].remap_addr +
- DSP_PARAMETER_BYTE_OFFSET + dest * sizeof(u32);
- int i;
-
- for (i = 0; i < 0x10; ++i) {
- if (debug_scb) printk ("addr %p, val %08x\n",spdst,scb_data[i]);
- writel(scb_data[i],spdst);
- spdst += sizeof(u32);
- }
-}
-
-static int find_free_scb_index (struct dsp_spos_instance * ins)
-{
- int index = ins->nscb, i;
-
- for (i = ins->scb_highest_frag_index; i < ins->nscb; ++i) {
- if (ins->scbs[i].deleted) {
- index = i;
- break;
- }
- }
-
- return index;
-}
-
-static struct dsp_scb_descriptor * _map_scb (struct snd_cs46xx *chip, char * name, u32 dest)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * desc = NULL;
- int index;
-
- if (ins->nscb == DSP_MAX_SCB_DESC - 1) {
- snd_printk(KERN_ERR "dsp_spos: got no place for other SCB\n");
- return NULL;
- }
-
- index = find_free_scb_index (ins);
-
- memset(&ins->scbs[index], 0, sizeof(ins->scbs[index]));
- strcpy(ins->scbs[index].scb_name, name);
- ins->scbs[index].address = dest;
- ins->scbs[index].index = index;
- ins->scbs[index].ref_count = 1;
-
- desc = (ins->scbs + index);
- ins->scbs[index].scb_symbol = add_symbol (chip, name, dest, SYMBOL_PARAMETER);
-
- if (index > ins->scb_highest_frag_index)
- ins->scb_highest_frag_index = index;
-
- if (index == ins->nscb)
- ins->nscb++;
-
- return desc;
-}
-
-static struct dsp_task_descriptor *
-_map_task_tree (struct snd_cs46xx *chip, char * name, u32 dest, u32 size)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_task_descriptor * desc = NULL;
-
- if (ins->ntask == DSP_MAX_TASK_DESC - 1) {
- snd_printk(KERN_ERR "dsp_spos: got no place for other TASK\n");
- return NULL;
- }
-
- if (name)
- strcpy(ins->tasks[ins->ntask].task_name, name);
- else
- strcpy(ins->tasks[ins->ntask].task_name, "(NULL)");
- ins->tasks[ins->ntask].address = dest;
- ins->tasks[ins->ntask].size = size;
-
- /* quick find in list */
- ins->tasks[ins->ntask].index = ins->ntask;
- desc = (ins->tasks + ins->ntask);
- ins->ntask++;
-
- if (name)
- add_symbol (chip,name,dest,SYMBOL_PARAMETER);
- return desc;
-}
-
-#define SCB_BYTES (0x10 * 4)
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data, u32 dest)
-{
- struct dsp_scb_descriptor * desc;
-
-#ifdef CONFIG_PM
- /* copy the data for resume */
- scb_data = kmemdup(scb_data, SCB_BYTES, GFP_KERNEL);
- if (!scb_data)
- return NULL;
-#endif
-
- desc = _map_scb (chip,name,dest);
- if (desc) {
- desc->data = scb_data;
- _dsp_create_scb(chip,scb_data,dest);
- } else {
- snd_printk(KERN_ERR "dsp_spos: failed to map SCB\n");
-#ifdef CONFIG_PM
- kfree(scb_data);
-#endif
- }
-
- return desc;
-}
-
-
-static struct dsp_task_descriptor *
-cs46xx_dsp_create_task_tree (struct snd_cs46xx *chip, char * name, u32 * task_data,
- u32 dest, int size)
-{
- struct dsp_task_descriptor * desc;
-
- desc = _map_task_tree (chip,name,dest,size);
- if (desc) {
- desc->data = task_data;
- _dsp_create_task_tree(chip,task_data,dest,size);
- } else {
- snd_printk(KERN_ERR "dsp_spos: failed to map TASK\n");
- }
-
- return desc;
-}
-
-int cs46xx_dsp_scb_and_task_init (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_symbol_entry * fg_task_tree_header_code;
- struct dsp_symbol_entry * task_tree_header_code;
- struct dsp_symbol_entry * task_tree_thread;
- struct dsp_symbol_entry * null_algorithm;
- struct dsp_symbol_entry * magic_snoop_task;
-
- struct dsp_scb_descriptor * timing_master_scb;
- struct dsp_scb_descriptor * codec_out_scb;
- struct dsp_scb_descriptor * codec_in_scb;
- struct dsp_scb_descriptor * src_task_scb;
- struct dsp_scb_descriptor * master_mix_scb;
- struct dsp_scb_descriptor * rear_mix_scb;
- struct dsp_scb_descriptor * record_mix_scb;
- struct dsp_scb_descriptor * write_back_scb;
- struct dsp_scb_descriptor * vari_decimate_scb;
- struct dsp_scb_descriptor * rear_codec_out_scb;
- struct dsp_scb_descriptor * clfe_codec_out_scb;
- struct dsp_scb_descriptor * magic_snoop_scb;
-
- int fifo_addr, fifo_span, valid_slots;
-
- static struct dsp_spos_control_block sposcb = {
- /* 0 */ HFG_TREE_SCB,HFG_STACK,
- /* 1 */ SPOSCB_ADDR,BG_TREE_SCB_ADDR,
- /* 2 */ DSP_SPOS_DC,0,
- /* 3 */ DSP_SPOS_DC,DSP_SPOS_DC,
- /* 4 */ 0,0,
- /* 5 */ DSP_SPOS_UU,0,
- /* 6 */ FG_TASK_HEADER_ADDR,0,
- /* 7 */ 0,0,
- /* 8 */ DSP_SPOS_UU,DSP_SPOS_DC,
- /* 9 */ 0,
- /* A */ 0,HFG_FIRST_EXECUTE_MODE,
- /* B */ DSP_SPOS_UU,DSP_SPOS_UU,
- /* C */ DSP_SPOS_DC_DC,
- /* D */ DSP_SPOS_DC_DC,
- /* E */ DSP_SPOS_DC_DC,
- /* F */ DSP_SPOS_DC_DC
- };
-
- cs46xx_dsp_create_task_tree(chip, "sposCB", (u32 *)&sposcb, SPOSCB_ADDR, 0x10);
-
- null_algorithm = cs46xx_dsp_lookup_symbol(chip, "NULLALGORITHM", SYMBOL_CODE);
- if (null_algorithm == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol NULLALGORITHM not found\n");
- return -EIO;
- }
-
- fg_task_tree_header_code = cs46xx_dsp_lookup_symbol(chip, "FGTASKTREEHEADERCODE", SYMBOL_CODE);
- if (fg_task_tree_header_code == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol FGTASKTREEHEADERCODE not found\n");
- return -EIO;
- }
-
- task_tree_header_code = cs46xx_dsp_lookup_symbol(chip, "TASKTREEHEADERCODE", SYMBOL_CODE);
- if (task_tree_header_code == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol TASKTREEHEADERCODE not found\n");
- return -EIO;
- }
-
- task_tree_thread = cs46xx_dsp_lookup_symbol(chip, "TASKTREETHREAD", SYMBOL_CODE);
- if (task_tree_thread == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol TASKTREETHREAD not found\n");
- return -EIO;
- }
-
- magic_snoop_task = cs46xx_dsp_lookup_symbol(chip, "MAGICSNOOPTASK", SYMBOL_CODE);
- if (magic_snoop_task == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol MAGICSNOOPTASK not found\n");
- return -EIO;
- }
-
- {
- /* create the null SCB */
- static struct dsp_generic_scb null_scb = {
- { 0, 0, 0, 0 },
- { 0, 0, 0, 0, 0 },
- NULL_SCB_ADDR, NULL_SCB_ADDR,
- 0, 0, 0, 0, 0,
- {
- 0,0,
- 0,0,
- }
- };
-
- null_scb.entry_point = null_algorithm->address;
- ins->the_null_scb = cs46xx_dsp_create_scb(chip, "nullSCB", (u32 *)&null_scb, NULL_SCB_ADDR);
- ins->the_null_scb->task_entry = null_algorithm;
- ins->the_null_scb->sub_list_ptr = ins->the_null_scb;
- ins->the_null_scb->next_scb_ptr = ins->the_null_scb;
- ins->the_null_scb->parent_scb_ptr = NULL;
- cs46xx_dsp_proc_register_scb_desc (chip,ins->the_null_scb);
- }
-
- {
- /* setup foreground task tree */
- static struct dsp_task_tree_control_block fg_task_tree_hdr = {
- { FG_TASK_HEADER_ADDR | (DSP_SPOS_DC << 0x10),
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- 0x0000,DSP_SPOS_DC,
- DSP_SPOS_DC, DSP_SPOS_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC,DSP_SPOS_DC },
-
- {
- BG_TREE_SCB_ADDR,TIMINGMASTER_SCB_ADDR,
- 0,
- FG_TASK_HEADER_ADDR + TCBData,
- },
-
- {
- 4,0,
- 1,0,
- 2,SPOSCB_ADDR + HFGFlags,
- 0,0,
- FG_TASK_HEADER_ADDR + TCBContextBlk,FG_STACK
- },
-
- {
- DSP_SPOS_DC,0,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DCDC,
- DSP_SPOS_UU,1,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC
- },
- {
- FG_INTERVAL_TIMER_PERIOD,DSP_SPOS_UU,
- 0,0
- }
- };
-
- fg_task_tree_hdr.links.entry_point = fg_task_tree_header_code->address;
- fg_task_tree_hdr.context_blk.stack0 = task_tree_thread->address;
- cs46xx_dsp_create_task_tree(chip,"FGtaskTreeHdr",(u32 *)&fg_task_tree_hdr,FG_TASK_HEADER_ADDR,0x35);
- }
-
-
- {
- /* setup foreground task tree */
- static struct dsp_task_tree_control_block bg_task_tree_hdr = {
- { DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC, DSP_SPOS_DC,
- DSP_SPOS_DC, DSP_SPOS_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC_DC,
- DSP_SPOS_DC,DSP_SPOS_DC },
-
- {
- NULL_SCB_ADDR,NULL_SCB_ADDR, /* Set up the background to do nothing */
- 0,
- BG_TREE_SCB_ADDR + TCBData,
- },
-
- {
- 9999,0,
- 0,1,
- 0,SPOSCB_ADDR + HFGFlags,
- 0,0,
- BG_TREE_SCB_ADDR + TCBContextBlk,BG_STACK
- },
-
- {
- DSP_SPOS_DC,0,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DC,DSP_SPOS_DC,
- DSP_SPOS_DCDC,
- DSP_SPOS_UU,1,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC,
- DSP_SPOS_DCDC
- },
- {
- BG_INTERVAL_TIMER_PERIOD,DSP_SPOS_UU,
- 0,0
- }
- };
-
- bg_task_tree_hdr.links.entry_point = task_tree_header_code->address;
- bg_task_tree_hdr.context_blk.stack0 = task_tree_thread->address;
- cs46xx_dsp_create_task_tree(chip,"BGtaskTreeHdr",(u32 *)&bg_task_tree_hdr,BG_TREE_SCB_ADDR,0x35);
- }
-
- /* create timing master SCB */
- timing_master_scb = cs46xx_dsp_create_timing_master_scb(chip);
-
- /* create the CODEC output task */
- codec_out_scb = cs46xx_dsp_create_codec_out_scb(chip,"CodecOutSCB_I",0x0010,0x0000,
- MASTERMIX_SCB_ADDR,
- CODECOUT_SCB_ADDR,timing_master_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
-
- if (!codec_out_scb) goto _fail_end;
- /* create the master mix SCB */
- master_mix_scb = cs46xx_dsp_create_mix_only_scb(chip,"MasterMixSCB",
- MIX_SAMPLE_BUF1,MASTERMIX_SCB_ADDR,
- codec_out_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
- ins->master_mix_scb = master_mix_scb;
-
- if (!master_mix_scb) goto _fail_end;
-
- /* create codec in */
- codec_in_scb = cs46xx_dsp_create_codec_in_scb(chip,"CodecInSCB",0x0010,0x00A0,
- CODEC_INPUT_BUF1,
- CODECIN_SCB_ADDR,codec_out_scb,
- SCB_ON_PARENT_NEXT_SCB);
- if (!codec_in_scb) goto _fail_end;
- ins->codec_in_scb = codec_in_scb;
-
- /* create write back scb */
- write_back_scb = cs46xx_dsp_create_mix_to_ostream_scb(chip,"WriteBackSCB",
- WRITE_BACK_BUF1,WRITE_BACK_SPB,
- WRITEBACK_SCB_ADDR,
- timing_master_scb,
- SCB_ON_PARENT_NEXT_SCB);
- if (!write_back_scb) goto _fail_end;
-
- {
- static struct dsp_mix2_ostream_spb mix2_ostream_spb = {
- 0x00020000,
- 0x0000ffff
- };
-
- if (!cs46xx_dsp_create_task_tree(chip, NULL,
- (u32 *)&mix2_ostream_spb,
- WRITE_BACK_SPB, 2))
- goto _fail_end;
- }
-
- /* input sample converter */
- vari_decimate_scb = cs46xx_dsp_create_vari_decimate_scb(chip,"VariDecimateSCB",
- VARI_DECIMATE_BUF0,
- VARI_DECIMATE_BUF1,
- VARIDECIMATE_SCB_ADDR,
- write_back_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
- if (!vari_decimate_scb) goto _fail_end;
-
- /* create the record mixer SCB */
- record_mix_scb = cs46xx_dsp_create_mix_only_scb(chip,"RecordMixerSCB",
- MIX_SAMPLE_BUF2,
- RECORD_MIXER_SCB_ADDR,
- vari_decimate_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
- ins->record_mixer_scb = record_mix_scb;
-
- if (!record_mix_scb) goto _fail_end;
-
- valid_slots = snd_cs46xx_peekBA0(chip, BA0_ACOSV);
-
- if (snd_BUG_ON(chip->nr_ac97_codecs != 1 && chip->nr_ac97_codecs != 2))
- goto _fail_end;
-
- if (chip->nr_ac97_codecs == 1) {
- /* output on slot 5 and 11
- on primary CODEC */
- fifo_addr = 0x20;
- fifo_span = 0x60;
-
- /* enable slot 5 and 11 */
- valid_slots |= ACOSV_SLV5 | ACOSV_SLV11;
- } else {
- /* output on slot 7 and 8
- on secondary CODEC */
- fifo_addr = 0x40;
- fifo_span = 0x10;
-
- /* enable slot 7 and 8 */
- valid_slots |= ACOSV_SLV7 | ACOSV_SLV8;
- }
- /* create CODEC tasklet for rear speakers output*/
- rear_codec_out_scb = cs46xx_dsp_create_codec_out_scb(chip,"CodecOutSCB_Rear",fifo_span,fifo_addr,
- REAR_MIXER_SCB_ADDR,
- REAR_CODECOUT_SCB_ADDR,codec_in_scb,
- SCB_ON_PARENT_NEXT_SCB);
- if (!rear_codec_out_scb) goto _fail_end;
-
-
- /* create the rear PCM channel mixer SCB */
- rear_mix_scb = cs46xx_dsp_create_mix_only_scb(chip,"RearMixerSCB",
- MIX_SAMPLE_BUF3,
- REAR_MIXER_SCB_ADDR,
- rear_codec_out_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
- ins->rear_mix_scb = rear_mix_scb;
- if (!rear_mix_scb) goto _fail_end;
-
- if (chip->nr_ac97_codecs == 2) {
- /* create CODEC tasklet for rear Center/LFE output
- slot 6 and 9 on seconadry CODEC */
- clfe_codec_out_scb = cs46xx_dsp_create_codec_out_scb(chip,"CodecOutSCB_CLFE",0x0030,0x0030,
- CLFE_MIXER_SCB_ADDR,
- CLFE_CODEC_SCB_ADDR,
- rear_codec_out_scb,
- SCB_ON_PARENT_NEXT_SCB);
- if (!clfe_codec_out_scb) goto _fail_end;
-
-
- /* create the rear PCM channel mixer SCB */
- ins->center_lfe_mix_scb = cs46xx_dsp_create_mix_only_scb(chip,"CLFEMixerSCB",
- MIX_SAMPLE_BUF4,
- CLFE_MIXER_SCB_ADDR,
- clfe_codec_out_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
- if (!ins->center_lfe_mix_scb) goto _fail_end;
-
- /* enable slot 6 and 9 */
- valid_slots |= ACOSV_SLV6 | ACOSV_SLV9;
- } else {
- clfe_codec_out_scb = rear_codec_out_scb;
- ins->center_lfe_mix_scb = rear_mix_scb;
- }
-
- /* enable slots depending on CODEC configuration */
- snd_cs46xx_pokeBA0(chip, BA0_ACOSV, valid_slots);
-
- /* the magic snooper */
- magic_snoop_scb = cs46xx_dsp_create_magic_snoop_scb (chip,"MagicSnoopSCB_I",OUTPUTSNOOP_SCB_ADDR,
- OUTPUT_SNOOP_BUFFER,
- codec_out_scb,
- clfe_codec_out_scb,
- SCB_ON_PARENT_NEXT_SCB);
-
-
- if (!magic_snoop_scb) goto _fail_end;
- ins->ref_snoop_scb = magic_snoop_scb;
-
- /* SP IO access */
- if (!cs46xx_dsp_create_spio_write_scb(chip,"SPIOWriteSCB",SPIOWRITE_SCB_ADDR,
- magic_snoop_scb,
- SCB_ON_PARENT_NEXT_SCB))
- goto _fail_end;
-
- /* SPDIF input sampel rate converter */
- src_task_scb = cs46xx_dsp_create_src_task_scb(chip,"SrcTaskSCB_SPDIFI",
- ins->spdif_in_sample_rate,
- SRC_OUTPUT_BUF1,
- SRC_DELAY_BUF1,SRCTASK_SCB_ADDR,
- master_mix_scb,
- SCB_ON_PARENT_SUBLIST_SCB,1);
-
- if (!src_task_scb) goto _fail_end;
- cs46xx_src_unlink(chip,src_task_scb);
-
- /* NOTE: when we now how to detect the SPDIF input
- sample rate we will use this SRC to adjust it */
- ins->spdif_in_src = src_task_scb;
-
- cs46xx_dsp_async_init(chip,timing_master_scb);
- return 0;
-
- _fail_end:
- snd_printk(KERN_ERR "dsp_spos: failed to setup SCB's in DSP\n");
- return -EINVAL;
-}
-
-static int cs46xx_dsp_async_init (struct snd_cs46xx *chip,
- struct dsp_scb_descriptor * fg_entry)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_symbol_entry * s16_async_codec_input_task;
- struct dsp_symbol_entry * spdifo_task;
- struct dsp_symbol_entry * spdifi_task;
- struct dsp_scb_descriptor * spdifi_scb_desc, * spdifo_scb_desc, * async_codec_scb_desc;
-
- s16_async_codec_input_task = cs46xx_dsp_lookup_symbol(chip, "S16_ASYNCCODECINPUTTASK", SYMBOL_CODE);
- if (s16_async_codec_input_task == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol S16_ASYNCCODECINPUTTASK not found\n");
- return -EIO;
- }
- spdifo_task = cs46xx_dsp_lookup_symbol(chip, "SPDIFOTASK", SYMBOL_CODE);
- if (spdifo_task == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol SPDIFOTASK not found\n");
- return -EIO;
- }
-
- spdifi_task = cs46xx_dsp_lookup_symbol(chip, "SPDIFITASK", SYMBOL_CODE);
- if (spdifi_task == NULL) {
- snd_printk(KERN_ERR "dsp_spos: symbol SPDIFITASK not found\n");
- return -EIO;
- }
-
- {
- /* 0xBC0 */
- struct dsp_spdifoscb spdifo_scb = {
- /* 0 */ DSP_SPOS_UUUU,
- {
- /* 1 */ 0xb0,
- /* 2 */ 0,
- /* 3 */ 0,
- /* 4 */ 0,
- },
- /* NOTE: the SPDIF output task read samples in mono
- format, the AsynchFGTxSCB task writes to buffer
- in stereo format
- */
- /* 5 */ RSCONFIG_SAMPLE_16MONO + RSCONFIG_MODULO_256,
- /* 6 */ ( SPDIFO_IP_OUTPUT_BUFFER1 << 0x10 ) | 0xFFFC,
- /* 7 */ 0,0,
- /* 8 */ 0,
- /* 9 */ FG_TASK_HEADER_ADDR, NULL_SCB_ADDR,
- /* A */ spdifo_task->address,
- SPDIFO_SCB_INST + SPDIFOFIFOPointer,
- {
- /* B */ 0x0040, /*DSP_SPOS_UUUU,*/
- /* C */ 0x20ff, /*DSP_SPOS_UUUU,*/
- },
- /* D */ 0x804c,0, /* SPDIFOFIFOPointer:SPDIFOStatRegAddr; */
- /* E */ 0x0108,0x0001, /* SPDIFOStMoFormat:SPDIFOFIFOBaseAddr; */
- /* F */ DSP_SPOS_UUUU /* SPDIFOFree; */
- };
-
- /* 0xBB0 */
- struct dsp_spdifiscb spdifi_scb = {
- /* 0 */ DSP_SPOS_UULO,DSP_SPOS_UUHI,
- /* 1 */ 0,
- /* 2 */ 0,
- /* 3 */ 1,4000, /* SPDIFICountLimit SPDIFICount */
- /* 4 */ DSP_SPOS_UUUU, /* SPDIFIStatusData */
- /* 5 */ 0,DSP_SPOS_UUHI, /* StatusData, Free4 */
- /* 6 */ DSP_SPOS_UUUU, /* Free3 */
- /* 7 */ DSP_SPOS_UU,DSP_SPOS_DC, /* Free2 BitCount*/
- /* 8 */ DSP_SPOS_UUUU, /* TempStatus */
- /* 9 */ SPDIFO_SCB_INST, NULL_SCB_ADDR,
- /* A */ spdifi_task->address,
- SPDIFI_SCB_INST + SPDIFIFIFOPointer,
- /* NOTE: The SPDIF input task write the sample in mono
- format from the HW FIFO, the AsynchFGRxSCB task reads
- them in stereo
- */
- /* B */ RSCONFIG_SAMPLE_16MONO + RSCONFIG_MODULO_128,
- /* C */ (SPDIFI_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC,
- /* D */ 0x8048,0,
- /* E */ 0x01f0,0x0001,
- /* F */ DSP_SPOS_UUUU /* SPDIN_STATUS monitor */
- };
-
- /* 0xBA0 */
- struct dsp_async_codec_input_scb async_codec_input_scb = {
- /* 0 */ DSP_SPOS_UUUU,
- /* 1 */ 0,
- /* 2 */ 0,
- /* 3 */ 1,4000,
- /* 4 */ 0x0118,0x0001,
- /* 5 */ RSCONFIG_SAMPLE_16MONO + RSCONFIG_MODULO_64,
- /* 6 */ (ASYNC_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC,
- /* 7 */ DSP_SPOS_UU,0x3,
- /* 8 */ DSP_SPOS_UUUU,
- /* 9 */ SPDIFI_SCB_INST,NULL_SCB_ADDR,
- /* A */ s16_async_codec_input_task->address,
- HFG_TREE_SCB + AsyncCIOFIFOPointer,
-
- /* B */ RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_64,
- /* C */ (ASYNC_IP_OUTPUT_BUFFER1 << 0x10), /*(ASYNC_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC,*/
-
-#ifdef UseASER1Input
- /* short AsyncCIFIFOPointer:AsyncCIStatRegAddr;
- Init. 0000:8042: for ASER1
- 0000:8044: for ASER2 */
- /* D */ 0x8042,0,
-
- /* short AsyncCIStMoFormat:AsyncCIFIFOBaseAddr;
- Init 1 stero:8050 ASER1
- Init 0 mono:8070 ASER2
- Init 1 Stereo : 0100 ASER1 (Set by script) */
- /* E */ 0x0100,0x0001,
-
-#endif
-
-#ifdef UseASER2Input
- /* short AsyncCIFIFOPointer:AsyncCIStatRegAddr;
- Init. 0000:8042: for ASER1
- 0000:8044: for ASER2 */
- /* D */ 0x8044,0,
-
- /* short AsyncCIStMoFormat:AsyncCIFIFOBaseAddr;
- Init 1 stero:8050 ASER1
- Init 0 mono:8070 ASER2
- Init 1 Stereo : 0100 ASER1 (Set by script) */
- /* E */ 0x0110,0x0001,
-
-#endif
-
- /* short AsyncCIOutputBufModulo:AsyncCIFree;
- AsyncCIOutputBufModulo: The modulo size for
- the output buffer of this task */
- /* F */ 0, /* DSP_SPOS_UUUU */
- };
-
- spdifo_scb_desc = cs46xx_dsp_create_scb(chip,"SPDIFOSCB",(u32 *)&spdifo_scb,SPDIFO_SCB_INST);
-
- if (snd_BUG_ON(!spdifo_scb_desc))
- return -EIO;
- spdifi_scb_desc = cs46xx_dsp_create_scb(chip,"SPDIFISCB",(u32 *)&spdifi_scb,SPDIFI_SCB_INST);
- if (snd_BUG_ON(!spdifi_scb_desc))
- return -EIO;
- async_codec_scb_desc = cs46xx_dsp_create_scb(chip,"AsynCodecInputSCB",(u32 *)&async_codec_input_scb, HFG_TREE_SCB);
- if (snd_BUG_ON(!async_codec_scb_desc))
- return -EIO;
-
- async_codec_scb_desc->parent_scb_ptr = NULL;
- async_codec_scb_desc->next_scb_ptr = spdifi_scb_desc;
- async_codec_scb_desc->sub_list_ptr = ins->the_null_scb;
- async_codec_scb_desc->task_entry = s16_async_codec_input_task;
-
- spdifi_scb_desc->parent_scb_ptr = async_codec_scb_desc;
- spdifi_scb_desc->next_scb_ptr = spdifo_scb_desc;
- spdifi_scb_desc->sub_list_ptr = ins->the_null_scb;
- spdifi_scb_desc->task_entry = spdifi_task;
-
- spdifo_scb_desc->parent_scb_ptr = spdifi_scb_desc;
- spdifo_scb_desc->next_scb_ptr = fg_entry;
- spdifo_scb_desc->sub_list_ptr = ins->the_null_scb;
- spdifo_scb_desc->task_entry = spdifo_task;
-
- /* this one is faked, as the parnet of SPDIFO task
- is the FG task tree */
- fg_entry->parent_scb_ptr = spdifo_scb_desc;
-
- /* for proc fs */
- cs46xx_dsp_proc_register_scb_desc (chip,spdifo_scb_desc);
- cs46xx_dsp_proc_register_scb_desc (chip,spdifi_scb_desc);
- cs46xx_dsp_proc_register_scb_desc (chip,async_codec_scb_desc);
-
- /* Async MASTER ENABLE, affects both SPDIF input and output */
- snd_cs46xx_pokeBA0(chip, BA0_ASER_MASTER, 0x1 );
- }
-
- return 0;
-}
-
-static void cs46xx_dsp_disable_spdif_hw (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- /* set SPDIF output FIFO slot */
- snd_cs46xx_pokeBA0(chip, BA0_ASER_FADDR, 0);
-
- /* SPDIF output MASTER ENABLE */
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CONTROL, 0);
-
- /* right and left validate bit */
- /*cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, ins->spdif_csuv_default);*/
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, 0x0);
-
- /* clear fifo pointer */
- cs46xx_poke_via_dsp (chip,SP_SPDIN_FIFOPTR, 0x0);
-
- /* monitor state */
- ins->spdif_status_out &= ~DSP_SPDIF_STATUS_HW_ENABLED;
-}
-
-int cs46xx_dsp_enable_spdif_hw (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- /* if hw-ctrl already enabled, turn off to reset logic ... */
- cs46xx_dsp_disable_spdif_hw (chip);
- udelay(50);
-
- /* set SPDIF output FIFO slot */
- snd_cs46xx_pokeBA0(chip, BA0_ASER_FADDR, ( 0x8000 | ((SP_SPDOUT_FIFO >> 4) << 4) ));
-
- /* SPDIF output MASTER ENABLE */
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CONTROL, 0x80000000);
-
- /* right and left validate bit */
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, ins->spdif_csuv_default);
-
- /* monitor state */
- ins->spdif_status_out |= DSP_SPDIF_STATUS_HW_ENABLED;
-
- return 0;
-}
-
-int cs46xx_dsp_enable_spdif_in (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- /* turn on amplifier */
- chip->active_ctrl(chip, 1);
- chip->amplifier_ctrl(chip, 1);
-
- if (snd_BUG_ON(ins->asynch_rx_scb))
- return -EINVAL;
- if (snd_BUG_ON(!ins->spdif_in_src))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
-
- if ( ! (ins->spdif_status_out & DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED) ) {
- /* time countdown enable */
- cs46xx_poke_via_dsp (chip,SP_ASER_COUNTDOWN, 0x80000005);
- /* NOTE: 80000005 value is just magic. With all values
- that I've tested this one seem to give the best result.
- Got no explication why. (Benny) */
-
- /* SPDIF input MASTER ENABLE */
- cs46xx_poke_via_dsp (chip,SP_SPDIN_CONTROL, 0x800003ff);
-
- ins->spdif_status_out |= DSP_SPDIF_STATUS_INPUT_CTRL_ENABLED;
- }
-
- /* create and start the asynchronous receiver SCB */
- ins->asynch_rx_scb = cs46xx_dsp_create_asynch_fg_rx_scb(chip,"AsynchFGRxSCB",
- ASYNCRX_SCB_ADDR,
- SPDIFI_SCB_INST,
- SPDIFI_IP_OUTPUT_BUFFER1,
- ins->spdif_in_src,
- SCB_ON_PARENT_SUBLIST_SCB);
-
- spin_lock_irq(&chip->reg_lock);
-
- /* reset SPDIF input sample buffer pointer */
- /*snd_cs46xx_poke (chip, (SPDIFI_SCB_INST + 0x0c) << 2,
- (SPDIFI_IP_OUTPUT_BUFFER1 << 0x10) | 0xFFFC);*/
-
- /* reset FIFO ptr */
- /*cs46xx_poke_via_dsp (chip,SP_SPDIN_FIFOPTR, 0x0);*/
- cs46xx_src_link(chip,ins->spdif_in_src);
-
- /* unmute SRC volume */
- cs46xx_dsp_scb_set_volume (chip,ins->spdif_in_src,0x7fff,0x7fff);
-
- spin_unlock_irq(&chip->reg_lock);
-
- /* set SPDIF input sample rate and unmute
- NOTE: only 48khz support for SPDIF input this time */
- /* cs46xx_dsp_set_src_sample_rate(chip,ins->spdif_in_src,48000); */
-
- /* monitor state */
- ins->spdif_status_in = 1;
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_disable_spdif_in (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(!ins->asynch_rx_scb))
- return -EINVAL;
- if (snd_BUG_ON(!ins->spdif_in_src))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
-
- /* Remove the asynchronous receiver SCB */
- cs46xx_dsp_remove_scb (chip,ins->asynch_rx_scb);
- ins->asynch_rx_scb = NULL;
-
- cs46xx_src_unlink(chip,ins->spdif_in_src);
-
- /* monitor state */
- ins->spdif_status_in = 0;
- mutex_unlock(&chip->spos_mutex);
-
- /* restore amplifier */
- chip->active_ctrl(chip, -1);
- chip->amplifier_ctrl(chip, -1);
-
- return 0;
-}
-
-int cs46xx_dsp_enable_pcm_capture (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(ins->pcm_input))
- return -EINVAL;
- if (snd_BUG_ON(!ins->ref_snoop_scb))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
- ins->pcm_input = cs46xx_add_record_source(chip,ins->ref_snoop_scb,PCMSERIALIN_PCM_SCB_ADDR,
- "PCMSerialInput_Wave");
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_disable_pcm_capture (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(!ins->pcm_input))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
- cs46xx_dsp_remove_scb (chip,ins->pcm_input);
- ins->pcm_input = NULL;
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_enable_adc_capture (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(ins->adc_input))
- return -EINVAL;
- if (snd_BUG_ON(!ins->codec_in_scb))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
- ins->adc_input = cs46xx_add_record_source(chip,ins->codec_in_scb,PCMSERIALIN_SCB_ADDR,
- "PCMSerialInput_ADC");
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_disable_adc_capture (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(!ins->adc_input))
- return -EINVAL;
-
- mutex_lock(&chip->spos_mutex);
- cs46xx_dsp_remove_scb (chip,ins->adc_input);
- ins->adc_input = NULL;
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_poke_via_dsp (struct snd_cs46xx *chip, u32 address, u32 data)
-{
- u32 temp;
- int i;
-
- /* santiy check the parameters. (These numbers are not 100% correct. They are
- a rough guess from looking at the controller spec.) */
- if (address < 0x8000 || address >= 0x9000)
- return -EINVAL;
-
- /* initialize the SP_IO_WRITE SCB with the data. */
- temp = ( address << 16 ) | ( address & 0x0000FFFF); /* offset 0 <-- address2 : address1 */
-
- snd_cs46xx_poke(chip,( SPIOWRITE_SCB_ADDR << 2), temp);
- snd_cs46xx_poke(chip,((SPIOWRITE_SCB_ADDR + 1) << 2), data); /* offset 1 <-- data1 */
- snd_cs46xx_poke(chip,((SPIOWRITE_SCB_ADDR + 2) << 2), data); /* offset 1 <-- data2 */
-
- /* Poke this location to tell the task to start */
- snd_cs46xx_poke(chip,((SPIOWRITE_SCB_ADDR + 6) << 2), SPIOWRITE_SCB_ADDR << 0x10);
-
- /* Verify that the task ran */
- for (i=0; i<25; i++) {
- udelay(125);
-
- temp = snd_cs46xx_peek(chip,((SPIOWRITE_SCB_ADDR + 6) << 2));
- if (temp == 0x00000000)
- break;
- }
-
- if (i == 25) {
- snd_printk(KERN_ERR "dsp_spos: SPIOWriteTask not responding\n");
- return -EBUSY;
- }
-
- return 0;
-}
-
-int cs46xx_dsp_set_dac_volume (struct snd_cs46xx * chip, u16 left, u16 right)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb;
-
- mutex_lock(&chip->spos_mutex);
-
- /* main output */
- scb = ins->master_mix_scb->sub_list_ptr;
- while (scb != ins->the_null_scb) {
- cs46xx_dsp_scb_set_volume (chip,scb,left,right);
- scb = scb->next_scb_ptr;
- }
-
- /* rear output */
- scb = ins->rear_mix_scb->sub_list_ptr;
- while (scb != ins->the_null_scb) {
- cs46xx_dsp_scb_set_volume (chip,scb,left,right);
- scb = scb->next_scb_ptr;
- }
-
- ins->dac_volume_left = left;
- ins->dac_volume_right = right;
-
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-int cs46xx_dsp_set_iec958_volume (struct snd_cs46xx * chip, u16 left, u16 right)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- mutex_lock(&chip->spos_mutex);
-
- if (ins->asynch_rx_scb != NULL)
- cs46xx_dsp_scb_set_volume (chip,ins->asynch_rx_scb,
- left,right);
-
- ins->spdif_input_volume_left = left;
- ins->spdif_input_volume_right = right;
-
- mutex_unlock(&chip->spos_mutex);
-
- return 0;
-}
-
-#ifdef CONFIG_PM
-int cs46xx_dsp_resume(struct snd_cs46xx * chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int i, err;
-
- /* clear parameter, sample and code areas */
- snd_cs46xx_clear_BA1(chip, DSP_PARAMETER_BYTE_OFFSET,
- DSP_PARAMETER_BYTE_SIZE);
- snd_cs46xx_clear_BA1(chip, DSP_SAMPLE_BYTE_OFFSET,
- DSP_SAMPLE_BYTE_SIZE);
- snd_cs46xx_clear_BA1(chip, DSP_CODE_BYTE_OFFSET, DSP_CODE_BYTE_SIZE);
-
- for (i = 0; i < ins->nmodules; i++) {
- struct dsp_module_desc *module = &ins->modules[i];
- struct dsp_segment_desc *seg;
- u32 doffset, dsize;
-
- seg = get_segment_desc(module, SEGTYPE_SP_PARAMETER);
- err = dsp_load_parameter(chip, seg);
- if (err < 0)
- return err;
-
- seg = get_segment_desc(module, SEGTYPE_SP_SAMPLE);
- err = dsp_load_sample(chip, seg);
- if (err < 0)
- return err;
-
- seg = get_segment_desc(module, SEGTYPE_SP_PROGRAM);
- if (!seg)
- continue;
-
- doffset = seg->offset * 4 + module->load_address * 4
- + DSP_CODE_BYTE_OFFSET;
- dsize = seg->size * 4;
- err = snd_cs46xx_download(chip,
- ins->code.data + module->load_address,
- doffset, dsize);
- if (err < 0)
- return err;
- }
-
- for (i = 0; i < ins->ntask; i++) {
- struct dsp_task_descriptor *t = &ins->tasks[i];
- _dsp_create_task_tree(chip, t->data, t->address, t->size);
- }
-
- for (i = 0; i < ins->nscb; i++) {
- struct dsp_scb_descriptor *s = &ins->scbs[i];
- if (s->deleted)
- continue;
- _dsp_create_scb(chip, s->data, s->address);
- }
- for (i = 0; i < ins->nscb; i++) {
- struct dsp_scb_descriptor *s = &ins->scbs[i];
- if (s->deleted)
- continue;
- if (s->updated)
- cs46xx_dsp_spos_update_scb(chip, s);
- if (s->volume_set)
- cs46xx_dsp_scb_set_volume(chip, s,
- s->volume[0], s->volume[1]);
- }
- if (ins->spdif_status_out & DSP_SPDIF_STATUS_HW_ENABLED) {
- cs46xx_dsp_enable_spdif_hw(chip);
- snd_cs46xx_poke(chip, (ins->ref_snoop_scb->address + 2) << 2,
- (OUTPUT_SNOOP_BUFFER + 0x10) << 0x10);
- if (ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN)
- cs46xx_poke_via_dsp(chip, SP_SPDOUT_CSUV,
- ins->spdif_csuv_stream);
- }
- if (chip->dsp_spos_instance->spdif_status_in) {
- cs46xx_poke_via_dsp(chip, SP_ASER_COUNTDOWN, 0x80000005);
- cs46xx_poke_via_dsp(chip, SP_SPDIN_CONTROL, 0x800003ff);
- }
- return 0;
-}
-#endif
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.h b/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.h
deleted file mode 100644
index ca47a811..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos.h
+++ /dev/null
@@ -1,231 +0,0 @@
-/*
- * The driver for the Cirrus Logic's Sound Fusion CS46XX based soundcards
- * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-/*
- * 2002-07 Benny Sjostrand benny@hostmobility.com
- */
-
-#ifdef CONFIG_SND_CS46XX_NEW_DSP /* hack ... */
-#ifndef __DSP_SPOS_H__
-#define __DSP_SPOS_H__
-
-#define DSP_MAX_SYMBOLS 1024
-#define DSP_MAX_MODULES 64
-
-#define DSP_CODE_BYTE_SIZE 0x00007000UL
-#define DSP_PARAMETER_BYTE_SIZE 0x00003000UL
-#define DSP_SAMPLE_BYTE_SIZE 0x00003800UL
-#define DSP_PARAMETER_BYTE_OFFSET 0x00000000UL
-#define DSP_SAMPLE_BYTE_OFFSET 0x00010000UL
-#define DSP_CODE_BYTE_OFFSET 0x00020000UL
-
-#define WIDE_INSTR_MASK 0x0040
-#define WIDE_LADD_INSTR_MASK 0x0380
-
-/* this instruction types
- needs to be reallocated when load
- code into DSP */
-enum wide_opcode {
- WIDE_FOR_BEGIN_LOOP = 0x20,
- WIDE_FOR_BEGIN_LOOP2,
-
- WIDE_COND_GOTO_ADDR = 0x30,
- WIDE_COND_GOTO_CALL,
-
- WIDE_TBEQ_COND_GOTO_ADDR = 0x70,
- WIDE_TBEQ_COND_CALL_ADDR,
- WIDE_TBEQ_NCOND_GOTO_ADDR,
- WIDE_TBEQ_NCOND_CALL_ADDR,
- WIDE_TBEQ_COND_GOTO1_ADDR,
- WIDE_TBEQ_COND_CALL1_ADDR,
- WIDE_TBEQ_NCOND_GOTOI_ADDR,
- WIDE_TBEQ_NCOND_CALL1_ADDR,
-};
-
-/* SAMPLE segment */
-#define VARI_DECIMATE_BUF1 0x0000
-#define WRITE_BACK_BUF1 0x0400
-#define CODEC_INPUT_BUF1 0x0500
-#define PCM_READER_BUF1 0x0600
-#define SRC_DELAY_BUF1 0x0680
-#define VARI_DECIMATE_BUF0 0x0780
-#define SRC_OUTPUT_BUF1 0x07A0
-#define ASYNC_IP_OUTPUT_BUFFER1 0x0A00
-#define OUTPUT_SNOOP_BUFFER 0x0B00
-#define SPDIFI_IP_OUTPUT_BUFFER1 0x0E00
-#define SPDIFO_IP_OUTPUT_BUFFER1 0x1000
-#define MIX_SAMPLE_BUF1 0x1400
-#define MIX_SAMPLE_BUF2 0x2E80
-#define MIX_SAMPLE_BUF3 0x2F00
-#define MIX_SAMPLE_BUF4 0x2F80
-#define MIX_SAMPLE_BUF5 0x3000
-
-/* Task stack address */
-#define HFG_STACK 0x066A
-#define FG_STACK 0x066E
-#define BG_STACK 0x068E
-
-/* SCB's addresses */
-#define SPOSCB_ADDR 0x070
-#define BG_TREE_SCB_ADDR 0x635
-#define NULL_SCB_ADDR 0x000
-#define TIMINGMASTER_SCB_ADDR 0x010
-#define CODECOUT_SCB_ADDR 0x020
-#define PCMREADER_SCB_ADDR 0x030
-#define WRITEBACK_SCB_ADDR 0x040
-#define CODECIN_SCB_ADDR 0x080
-#define MASTERMIX_SCB_ADDR 0x090
-#define SRCTASK_SCB_ADDR 0x0A0
-#define VARIDECIMATE_SCB_ADDR 0x0B0
-#define PCMSERIALIN_SCB_ADDR 0x0C0
-#define FG_TASK_HEADER_ADDR 0x600
-#define ASYNCTX_SCB_ADDR 0x0E0
-#define ASYNCRX_SCB_ADDR 0x0F0
-#define SRCTASKII_SCB_ADDR 0x100
-#define OUTPUTSNOOP_SCB_ADDR 0x110
-#define PCMSERIALINII_SCB_ADDR 0x120
-#define SPIOWRITE_SCB_ADDR 0x130
-#define REAR_CODECOUT_SCB_ADDR 0x140
-#define OUTPUTSNOOPII_SCB_ADDR 0x150
-#define PCMSERIALIN_PCM_SCB_ADDR 0x160
-#define RECORD_MIXER_SCB_ADDR 0x170
-#define REAR_MIXER_SCB_ADDR 0x180
-#define CLFE_MIXER_SCB_ADDR 0x190
-#define CLFE_CODEC_SCB_ADDR 0x1A0
-
-/* hyperforground SCB's*/
-#define HFG_TREE_SCB 0xBA0
-#define SPDIFI_SCB_INST 0xBB0
-#define SPDIFO_SCB_INST 0xBC0
-#define WRITE_BACK_SPB 0x0D0
-
-/* offsets */
-#define AsyncCIOFIFOPointer 0xd
-#define SPDIFOFIFOPointer 0xd
-#define SPDIFIFIFOPointer 0xd
-#define TCBData 0xb
-#define HFGFlags 0xa
-#define TCBContextBlk 0x10
-#define AFGTxAccumPhi 0x4
-#define SCBsubListPtr 0x9
-#define SCBfuncEntryPtr 0xA
-#define SRCCorPerGof 0x2
-#define SRCPhiIncr6Int26Frac 0xd
-#define SCBVolumeCtrl 0xe
-
-/* conf */
-#define UseASER1Input 1
-
-
-
-/*
- * The following defines are for the flags in the rsConfig01/23 registers of
- * the SP.
- */
-
-#define RSCONFIG_MODULO_SIZE_MASK 0x0000000FL
-#define RSCONFIG_MODULO_16 0x00000001L
-#define RSCONFIG_MODULO_32 0x00000002L
-#define RSCONFIG_MODULO_64 0x00000003L
-#define RSCONFIG_MODULO_128 0x00000004L
-#define RSCONFIG_MODULO_256 0x00000005L
-#define RSCONFIG_MODULO_512 0x00000006L
-#define RSCONFIG_MODULO_1024 0x00000007L
-#define RSCONFIG_MODULO_4 0x00000008L
-#define RSCONFIG_MODULO_8 0x00000009L
-#define RSCONFIG_SAMPLE_SIZE_MASK 0x000000C0L
-#define RSCONFIG_SAMPLE_8MONO 0x00000000L
-#define RSCONFIG_SAMPLE_8STEREO 0x00000040L
-#define RSCONFIG_SAMPLE_16MONO 0x00000080L
-#define RSCONFIG_SAMPLE_16STEREO 0x000000C0L
-#define RSCONFIG_UNDERRUN_ZERO 0x00004000L
-#define RSCONFIG_DMA_TO_HOST 0x00008000L
-#define RSCONFIG_STREAM_NUM_MASK 0x00FF0000L
-#define RSCONFIG_MAX_DMA_SIZE_MASK 0x1F000000L
-#define RSCONFIG_DMA_ENABLE 0x20000000L
-#define RSCONFIG_PRIORITY_MASK 0xC0000000L
-#define RSCONFIG_PRIORITY_HIGH 0x00000000L
-#define RSCONFIG_PRIORITY_MEDIUM_HIGH 0x40000000L
-#define RSCONFIG_PRIORITY_MEDIUM_LOW 0x80000000L
-#define RSCONFIG_PRIORITY_LOW 0xC0000000L
-#define RSCONFIG_STREAM_NUM_SHIFT 16L
-#define RSCONFIG_MAX_DMA_SIZE_SHIFT 24L
-
-/* SP constants */
-#define FG_INTERVAL_TIMER_PERIOD 0x0051
-#define BG_INTERVAL_TIMER_PERIOD 0x0100
-
-
-/* Only SP accessible registers */
-#define SP_ASER_COUNTDOWN 0x8040
-#define SP_SPDOUT_FIFO 0x0108
-#define SP_SPDIN_MI_FIFO 0x01E0
-#define SP_SPDIN_D_FIFO 0x01F0
-#define SP_SPDIN_STATUS 0x8048
-#define SP_SPDIN_CONTROL 0x8049
-#define SP_SPDIN_FIFOPTR 0x804A
-#define SP_SPDOUT_STATUS 0x804C
-#define SP_SPDOUT_CONTROL 0x804D
-#define SP_SPDOUT_CSUV 0x808E
-
-static inline u8 _wrap_all_bits (u8 val)
-{
- u8 wrapped;
-
- /* wrap all 8 bits */
- wrapped =
- ((val & 0x1 ) << 7) |
- ((val & 0x2 ) << 5) |
- ((val & 0x4 ) << 3) |
- ((val & 0x8 ) << 1) |
- ((val & 0x10) >> 1) |
- ((val & 0x20) >> 3) |
- ((val & 0x40) >> 5) |
- ((val & 0x80) >> 7);
-
- return wrapped;
-}
-
-static inline void cs46xx_dsp_spos_update_scb (struct snd_cs46xx * chip,
- struct dsp_scb_descriptor * scb)
-{
- /* update nextSCB and subListPtr in SCB */
- snd_cs46xx_poke(chip,
- (scb->address + SCBsubListPtr) << 2,
- (scb->sub_list_ptr->address << 0x10) |
- (scb->next_scb_ptr->address));
- scb->updated = 1;
-}
-
-static inline void cs46xx_dsp_scb_set_volume (struct snd_cs46xx * chip,
- struct dsp_scb_descriptor * scb,
- u16 left, u16 right)
-{
- unsigned int val = ((0xffff - left) << 16 | (0xffff - right));
-
- snd_cs46xx_poke(chip, (scb->address + SCBVolumeCtrl) << 2, val);
- snd_cs46xx_poke(chip, (scb->address + SCBVolumeCtrl + 1) << 2, val);
- scb->volume_set = 1;
- scb->volume[0] = left;
- scb->volume[1] = right;
-}
-#endif /* __DSP_SPOS_H__ */
-#endif /* CONFIG_SND_CS46XX_NEW_DSP */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos_scb_lib.c b/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos_scb_lib.c
deleted file mode 100644
index 00b148a1..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/dsp_spos_scb_lib.c
+++ /dev/null
@@ -1,1784 +0,0 @@
-/*
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
-/*
- * 2002-07 Benny Sjostrand benny@hostmobility.com
- */
-
-
-#include <asm/io.h>
-#include <linux/delay.h>
-#include <linux/pm.h>
-#include <linux/init.h>
-#include <linux/slab.h>
-#include <linux/mutex.h>
-
-#include <sound/core.h>
-#include <sound/control.h>
-#include <sound/info.h>
-#include <sound/cs46xx.h>
-
-#include "cs46xx_lib.h"
-#include "dsp_spos.h"
-
-struct proc_scb_info {
- struct dsp_scb_descriptor * scb_desc;
- struct snd_cs46xx *chip;
-};
-
-static void remove_symbol (struct snd_cs46xx * chip, struct dsp_symbol_entry * symbol)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- int symbol_index = (int)(symbol - ins->symbol_table.symbols);
-
- if (snd_BUG_ON(ins->symbol_table.nsymbols <= 0))
- return;
- if (snd_BUG_ON(symbol_index < 0 ||
- symbol_index >= ins->symbol_table.nsymbols))
- return;
-
- ins->symbol_table.symbols[symbol_index].deleted = 1;
-
- if (symbol_index < ins->symbol_table.highest_frag_index) {
- ins->symbol_table.highest_frag_index = symbol_index;
- }
-
- if (symbol_index == ins->symbol_table.nsymbols - 1)
- ins->symbol_table.nsymbols --;
-
- if (ins->symbol_table.highest_frag_index > ins->symbol_table.nsymbols) {
- ins->symbol_table.highest_frag_index = ins->symbol_table.nsymbols;
- }
-
-}
-
-#ifdef CONFIG_PROC_FS
-static void cs46xx_dsp_proc_scb_info_read (struct snd_info_entry *entry,
- struct snd_info_buffer *buffer)
-{
- struct proc_scb_info * scb_info = entry->private_data;
- struct dsp_scb_descriptor * scb = scb_info->scb_desc;
- struct dsp_spos_instance * ins;
- struct snd_cs46xx *chip = scb_info->chip;
- int j,col;
- void __iomem *dst = chip->region.idx[1].remap_addr + DSP_PARAMETER_BYTE_OFFSET;
-
- ins = chip->dsp_spos_instance;
-
- mutex_lock(&chip->spos_mutex);
- snd_iprintf(buffer,"%04x %s:\n",scb->address,scb->scb_name);
-
- for (col = 0,j = 0;j < 0x10; j++,col++) {
- if (col == 4) {
- snd_iprintf(buffer,"\n");
- col = 0;
- }
- snd_iprintf(buffer,"%08x ",readl(dst + (scb->address + j) * sizeof(u32)));
- }
-
- snd_iprintf(buffer,"\n");
-
- if (scb->parent_scb_ptr != NULL) {
- snd_iprintf(buffer,"parent [%s:%04x] ",
- scb->parent_scb_ptr->scb_name,
- scb->parent_scb_ptr->address);
- } else snd_iprintf(buffer,"parent [none] ");
-
- snd_iprintf(buffer,"sub_list_ptr [%s:%04x]\nnext_scb_ptr [%s:%04x] task_entry [%s:%04x]\n",
- scb->sub_list_ptr->scb_name,
- scb->sub_list_ptr->address,
- scb->next_scb_ptr->scb_name,
- scb->next_scb_ptr->address,
- scb->task_entry->symbol_name,
- scb->task_entry->address);
-
- snd_iprintf(buffer,"index [%d] ref_count [%d]\n",scb->index,scb->ref_count);
- mutex_unlock(&chip->spos_mutex);
-}
-#endif
-
-static void _dsp_unlink_scb (struct snd_cs46xx *chip, struct dsp_scb_descriptor * scb)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if ( scb->parent_scb_ptr ) {
- /* unlink parent SCB */
- if (snd_BUG_ON(scb->parent_scb_ptr->sub_list_ptr != scb &&
- scb->parent_scb_ptr->next_scb_ptr != scb))
- return;
-
- if (scb->parent_scb_ptr->sub_list_ptr == scb) {
-
- if (scb->next_scb_ptr == ins->the_null_scb) {
- /* last and only node in parent sublist */
- scb->parent_scb_ptr->sub_list_ptr = scb->sub_list_ptr;
-
- if (scb->sub_list_ptr != ins->the_null_scb) {
- scb->sub_list_ptr->parent_scb_ptr = scb->parent_scb_ptr;
- }
- scb->sub_list_ptr = ins->the_null_scb;
- } else {
- /* first node in parent sublist */
- scb->parent_scb_ptr->sub_list_ptr = scb->next_scb_ptr;
-
- if (scb->next_scb_ptr != ins->the_null_scb) {
- /* update next node parent ptr. */
- scb->next_scb_ptr->parent_scb_ptr = scb->parent_scb_ptr;
- }
- scb->next_scb_ptr = ins->the_null_scb;
- }
- } else {
- scb->parent_scb_ptr->next_scb_ptr = scb->next_scb_ptr;
-
- if (scb->next_scb_ptr != ins->the_null_scb) {
- /* update next node parent ptr. */
- scb->next_scb_ptr->parent_scb_ptr = scb->parent_scb_ptr;
- }
- scb->next_scb_ptr = ins->the_null_scb;
- }
-
- /* update parent first entry in DSP RAM */
- cs46xx_dsp_spos_update_scb(chip,scb->parent_scb_ptr);
-
- /* then update entry in DSP RAM */
- cs46xx_dsp_spos_update_scb(chip,scb);
-
- scb->parent_scb_ptr = NULL;
- }
-}
-
-static void _dsp_clear_sample_buffer (struct snd_cs46xx *chip, u32 sample_buffer_addr,
- int dword_count)
-{
- void __iomem *dst = chip->region.idx[2].remap_addr + sample_buffer_addr;
- int i;
-
- for (i = 0; i < dword_count ; ++i ) {
- writel(0, dst);
- dst += 4;
- }
-}
-
-void cs46xx_dsp_remove_scb (struct snd_cs46xx *chip, struct dsp_scb_descriptor * scb)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- unsigned long flags;
-
- /* check integrety */
- if (snd_BUG_ON(scb->index < 0 ||
- scb->index >= ins->nscb ||
- (ins->scbs + scb->index) != scb))
- return;
-
-#if 0
- /* can't remove a SCB with childs before
- removing childs first */
- if (snd_BUG_ON(scb->sub_list_ptr != ins->the_null_scb ||
- scb->next_scb_ptr != ins->the_null_scb))
- goto _end;
-#endif
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- _dsp_unlink_scb (chip,scb);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- cs46xx_dsp_proc_free_scb_desc(scb);
- if (snd_BUG_ON(!scb->scb_symbol))
- return;
- remove_symbol (chip,scb->scb_symbol);
-
- ins->scbs[scb->index].deleted = 1;
-#ifdef CONFIG_PM
- kfree(ins->scbs[scb->index].data);
- ins->scbs[scb->index].data = NULL;
-#endif
-
- if (scb->index < ins->scb_highest_frag_index)
- ins->scb_highest_frag_index = scb->index;
-
- if (scb->index == ins->nscb - 1) {
- ins->nscb --;
- }
-
- if (ins->scb_highest_frag_index > ins->nscb) {
- ins->scb_highest_frag_index = ins->nscb;
- }
-
-#if 0
- /* !!!! THIS IS A PIECE OF SHIT MADE BY ME !!! */
- for(i = scb->index + 1;i < ins->nscb; ++i) {
- ins->scbs[i - 1].index = i - 1;
- }
-#endif
-}
-
-
-#ifdef CONFIG_PROC_FS
-void cs46xx_dsp_proc_free_scb_desc (struct dsp_scb_descriptor * scb)
-{
- if (scb->proc_info) {
- struct proc_scb_info * scb_info = scb->proc_info->private_data;
-
- snd_printdd("cs46xx_dsp_proc_free_scb_desc: freeing %s\n",scb->scb_name);
-
- snd_info_free_entry(scb->proc_info);
- scb->proc_info = NULL;
-
- kfree (scb_info);
- }
-}
-
-void cs46xx_dsp_proc_register_scb_desc (struct snd_cs46xx *chip,
- struct dsp_scb_descriptor * scb)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct snd_info_entry * entry;
- struct proc_scb_info * scb_info;
-
- /* register to proc */
- if (ins->snd_card != NULL && ins->proc_dsp_dir != NULL &&
- scb->proc_info == NULL) {
-
- if ((entry = snd_info_create_card_entry(ins->snd_card, scb->scb_name,
- ins->proc_dsp_dir)) != NULL) {
- scb_info = kmalloc(sizeof(struct proc_scb_info), GFP_KERNEL);
- if (!scb_info) {
- snd_info_free_entry(entry);
- entry = NULL;
- goto out;
- }
-
- scb_info->chip = chip;
- scb_info->scb_desc = scb;
-
- entry->content = SNDRV_INFO_CONTENT_TEXT;
- entry->private_data = scb_info;
- entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
-
- entry->c.text.read = cs46xx_dsp_proc_scb_info_read;
-
- if (snd_info_register(entry) < 0) {
- snd_info_free_entry(entry);
- kfree (scb_info);
- entry = NULL;
- }
- }
-out:
- scb->proc_info = entry;
- }
-}
-#endif /* CONFIG_PROC_FS */
-
-static struct dsp_scb_descriptor *
-_dsp_create_generic_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data, u32 dest,
- struct dsp_symbol_entry * task_entry,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb;
-
- unsigned long flags;
-
- if (snd_BUG_ON(!ins->the_null_scb))
- return NULL;
-
- /* fill the data that will be wroten to DSP */
- scb_data[SCBsubListPtr] =
- (ins->the_null_scb->address << 0x10) | ins->the_null_scb->address;
-
- scb_data[SCBfuncEntryPtr] &= 0xFFFF0000;
- scb_data[SCBfuncEntryPtr] |= task_entry->address;
-
- snd_printdd("dsp_spos: creating SCB <%s>\n",name);
-
- scb = cs46xx_dsp_create_scb(chip,name,scb_data,dest);
-
-
- scb->sub_list_ptr = ins->the_null_scb;
- scb->next_scb_ptr = ins->the_null_scb;
-
- scb->parent_scb_ptr = parent_scb;
- scb->task_entry = task_entry;
-
-
- /* update parent SCB */
- if (scb->parent_scb_ptr) {
-#if 0
- printk ("scb->parent_scb_ptr = %s\n",scb->parent_scb_ptr->scb_name);
- printk ("scb->parent_scb_ptr->next_scb_ptr = %s\n",scb->parent_scb_ptr->next_scb_ptr->scb_name);
- printk ("scb->parent_scb_ptr->sub_list_ptr = %s\n",scb->parent_scb_ptr->sub_list_ptr->scb_name);
-#endif
- /* link to parent SCB */
- if (scb_child_type == SCB_ON_PARENT_NEXT_SCB) {
- if (snd_BUG_ON(scb->parent_scb_ptr->next_scb_ptr !=
- ins->the_null_scb))
- return NULL;
-
- scb->parent_scb_ptr->next_scb_ptr = scb;
-
- } else if (scb_child_type == SCB_ON_PARENT_SUBLIST_SCB) {
- if (snd_BUG_ON(scb->parent_scb_ptr->sub_list_ptr !=
- ins->the_null_scb))
- return NULL;
-
- scb->parent_scb_ptr->sub_list_ptr = scb;
- } else {
- snd_BUG();
- }
-
- spin_lock_irqsave(&chip->reg_lock, flags);
-
- /* update entry in DSP RAM */
- cs46xx_dsp_spos_update_scb(chip,scb->parent_scb_ptr);
-
- spin_unlock_irqrestore(&chip->reg_lock, flags);
- }
-
-
- cs46xx_dsp_proc_register_scb_desc (chip,scb);
-
- return scb;
-}
-
-static struct dsp_scb_descriptor *
-cs46xx_dsp_create_generic_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data,
- u32 dest, char * task_entry_name,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_symbol_entry * task_entry;
-
- task_entry = cs46xx_dsp_lookup_symbol (chip,task_entry_name,
- SYMBOL_CODE);
-
- if (task_entry == NULL) {
- snd_printk (KERN_ERR "dsp_spos: symbol %s not found\n",task_entry_name);
- return NULL;
- }
-
- return _dsp_create_generic_scb (chip,name,scb_data,dest,task_entry,
- parent_scb,scb_child_type);
-}
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_timing_master_scb (struct snd_cs46xx *chip)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_timing_master_scb timing_master_scb = {
- { 0,
- 0,
- 0,
- 0
- },
- { 0,
- 0,
- 0,
- 0,
- 0
- },
- 0,0,
- 0,NULL_SCB_ADDR,
- 0,0, /* extraSampleAccum:TMreserved */
- 0,0, /* codecFIFOptr:codecFIFOsyncd */
- 0x0001,0x8000, /* fracSampAccumQm1:TMfrmsLeftInGroup */
- 0x0001,0x0000, /* fracSampCorrectionQm1:TMfrmGroupLength */
- 0x00060000 /* nSampPerFrmQ15 */
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,"TimingMasterSCBInst",(u32 *)&timing_master_scb,
- TIMINGMASTER_SCB_ADDR,
- "TIMINGMASTER",NULL,SCB_NO_PARENT);
-
- return scb;
-}
-
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_codec_out_scb(struct snd_cs46xx * chip, char * codec_name,
- u16 channel_disp, u16 fifo_addr, u16 child_scb_addr,
- u32 dest, struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_codec_output_scb codec_out_scb = {
- { 0,
- 0,
- 0,
- 0
- },
- {
- 0,
- 0,
- 0,
- 0,
- 0
- },
- 0,0,
- 0,NULL_SCB_ADDR,
- 0, /* COstrmRsConfig */
- 0, /* COstrmBufPtr */
- channel_disp,fifo_addr, /* leftChanBaseIOaddr:rightChanIOdisp */
- 0x0000,0x0080, /* (!AC97!) COexpVolChangeRate:COscaleShiftCount */
- 0,child_scb_addr /* COreserved - need child scb to work with rom code */
- };
-
-
- scb = cs46xx_dsp_create_generic_scb(chip,codec_name,(u32 *)&codec_out_scb,
- dest,"S16_CODECOUTPUTTASK",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_codec_in_scb(struct snd_cs46xx * chip, char * codec_name,
- u16 channel_disp, u16 fifo_addr, u16 sample_buffer_addr,
- u32 dest, struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
-
- struct dsp_scb_descriptor * scb;
- struct dsp_codec_input_scb codec_input_scb = {
- { 0,
- 0,
- 0,
- 0
- },
- {
- 0,
- 0,
- 0,
- 0,
- 0
- },
-
-#if 0 /* cs4620 */
- SyncIOSCB,NULL_SCB_ADDR
-#else
- 0 , 0,
-#endif
- 0,0,
-
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_64, /* strmRsConfig */
- sample_buffer_addr << 0x10, /* strmBufPtr; defined as a dword ptr, used as a byte ptr */
- channel_disp,fifo_addr, /* (!AC97!) leftChanBaseINaddr=AC97primary
- link input slot 3 :rightChanINdisp=""slot 4 */
- 0x0000,0x0000, /* (!AC97!) ????:scaleShiftCount; no shift needed
- because AC97 is already 20 bits */
- 0x80008000 /* ??clw cwcgame.scb has 0 */
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,codec_name,(u32 *)&codec_input_scb,
- dest,"S16_CODECINPUTTASK",parent_scb,
- scb_child_type);
- return scb;
-}
-
-
-static struct dsp_scb_descriptor *
-cs46xx_dsp_create_pcm_reader_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 sample_buffer_addr, u32 dest,
- int virtual_channel, u32 playback_hw_addr,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb;
-
- struct dsp_generic_scb pcm_reader_scb = {
-
- /*
- Play DMA Task xfers data from host buffer to SP buffer
- init/runtime variables:
- PlayAC: Play Audio Data Conversion - SCB loc: 2nd dword, mask: 0x0000F000L
- DATA_FMT_16BIT_ST_LTLEND(0x00000000L) from 16-bit stereo, little-endian
- DATA_FMT_8_BIT_ST_SIGNED(0x00001000L) from 8-bit stereo, signed
- DATA_FMT_16BIT_MN_LTLEND(0x00002000L) from 16-bit mono, little-endian
- DATA_FMT_8_BIT_MN_SIGNED(0x00003000L) from 8-bit mono, signed
- DATA_FMT_16BIT_ST_BIGEND(0x00004000L) from 16-bit stereo, big-endian
- DATA_FMT_16BIT_MN_BIGEND(0x00006000L) from 16-bit mono, big-endian
- DATA_FMT_8_BIT_ST_UNSIGNED(0x00009000L) from 8-bit stereo, unsigned
- DATA_FMT_8_BIT_MN_UNSIGNED(0x0000b000L) from 8-bit mono, unsigned
- ? Other combinations possible from:
- DMA_RQ_C2_AUDIO_CONVERT_MASK 0x0000F000L
- DMA_RQ_C2_AC_NONE 0x00000000L
- DMA_RQ_C2_AC_8_TO_16_BIT 0x00001000L
- DMA_RQ_C2_AC_MONO_TO_STEREO 0x00002000L
- DMA_RQ_C2_AC_ENDIAN_CONVERT 0x00004000L
- DMA_RQ_C2_AC_SIGNED_CONVERT 0x00008000L
-
- HostBuffAddr: Host Buffer Physical Byte Address - SCB loc:3rd dword, Mask: 0xFFFFFFFFL
- aligned to dword boundary
- */
- /* Basic (non scatter/gather) DMA requestor (4 ints) */
- { DMA_RQ_C1_SOURCE_ON_HOST + /* source buffer is on the host */
- DMA_RQ_C1_SOURCE_MOD1024 + /* source buffer is 1024 dwords (4096 bytes) */
- DMA_RQ_C1_DEST_MOD32 + /* dest buffer(PCMreaderBuf) is 32 dwords*/
- DMA_RQ_C1_WRITEBACK_SRC_FLAG + /* ?? */
- DMA_RQ_C1_WRITEBACK_DEST_FLAG + /* ?? */
- 15, /* DwordCount-1: picked 16 for DwordCount because Jim */
- /* Barnette said that is what we should use since */
- /* we are not running in optimized mode? */
- DMA_RQ_C2_AC_NONE +
- DMA_RQ_C2_SIGNAL_SOURCE_PINGPONG + /* set play interrupt (bit0) in HISR when source */
- /* buffer (on host) crosses half-way point */
- virtual_channel, /* Play DMA channel arbitrarily set to 0 */
- playback_hw_addr, /* HostBuffAddr (source) */
- DMA_RQ_SD_SP_SAMPLE_ADDR + /* destination buffer is in SP Sample Memory */
- sample_buffer_addr /* SP Buffer Address (destination) */
- },
- /* Scatter/gather DMA requestor extension (5 ints) */
- {
- 0,
- 0,
- 0,
- 0,
- 0
- },
- /* Sublist pointer & next stream control block (SCB) link. */
- NULL_SCB_ADDR,NULL_SCB_ADDR,
- /* Pointer to this tasks parameter block & stream function pointer */
- 0,NULL_SCB_ADDR,
- /* rsConfig register for stream buffer (rsDMA reg. is loaded from basicReq.daw */
- /* for incoming streams, or basicReq.saw, for outgoing streams) */
- RSCONFIG_DMA_ENABLE + /* enable DMA */
- (19 << RSCONFIG_MAX_DMA_SIZE_SHIFT) + /* MAX_DMA_SIZE picked to be 19 since SPUD */
- /* uses it for some reason */
- ((dest >> 4) << RSCONFIG_STREAM_NUM_SHIFT) + /* stream number = SCBaddr/16 */
- RSCONFIG_SAMPLE_16STEREO +
- RSCONFIG_MODULO_32, /* dest buffer(PCMreaderBuf) is 32 dwords (256 bytes) */
- /* Stream sample pointer & MAC-unit mode for this stream */
- (sample_buffer_addr << 0x10),
- /* Fractional increment per output sample in the input sample buffer */
- 0,
- {
- /* Standard stereo volume control
- default muted */
- 0xffff,0xffff,
- 0xffff,0xffff
- }
- };
-
- if (ins->null_algorithm == NULL) {
- ins->null_algorithm = cs46xx_dsp_lookup_symbol (chip,"NULLALGORITHM",
- SYMBOL_CODE);
-
- if (ins->null_algorithm == NULL) {
- snd_printk (KERN_ERR "dsp_spos: symbol NULLALGORITHM not found\n");
- return NULL;
- }
- }
-
- scb = _dsp_create_generic_scb(chip,scb_name,(u32 *)&pcm_reader_scb,
- dest,ins->null_algorithm,parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-#define GOF_PER_SEC 200
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_src_task_scb(struct snd_cs46xx * chip, char * scb_name,
- int rate,
- u16 src_buffer_addr,
- u16 src_delay_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type,
- int pass_through)
-{
-
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb;
- unsigned int tmp1, tmp2;
- unsigned int phiIncr;
- unsigned int correctionPerGOF, correctionPerSec;
-
- snd_printdd( "dsp_spos: setting %s rate to %u\n",scb_name,rate);
-
- /*
- * Compute the values used to drive the actual sample rate conversion.
- * The following formulas are being computed, using inline assembly
- * since we need to use 64 bit arithmetic to compute the values:
- *
- * phiIncr = floor((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF = floor((Fs,in * 2^26 - Fs,out * phiIncr) /
- * GOF_PER_SEC)
- * ulCorrectionPerSec = Fs,in * 2^26 - Fs,out * phiIncr -M
- * GOF_PER_SEC * correctionPerGOF
- *
- * i.e.
- *
- * phiIncr:other = dividend:remainder((Fs,in * 2^26) / Fs,out)
- * correctionPerGOF:correctionPerSec =
- * dividend:remainder(ulOther / GOF_PER_SEC)
- */
- tmp1 = rate << 16;
- phiIncr = tmp1 / 48000;
- tmp1 -= phiIncr * 48000;
- tmp1 <<= 10;
- phiIncr <<= 10;
- tmp2 = tmp1 / 48000;
- phiIncr += tmp2;
- tmp1 -= tmp2 * 48000;
- correctionPerGOF = tmp1 / GOF_PER_SEC;
- tmp1 -= correctionPerGOF * GOF_PER_SEC;
- correctionPerSec = tmp1;
-
- {
- struct dsp_src_task_scb src_task_scb = {
- 0x0028,0x00c8,
- 0x5555,0x0000,
- 0x0000,0x0000,
- src_buffer_addr,1,
- correctionPerGOF,correctionPerSec,
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_32,
- 0x0000,src_delay_buffer_addr,
- 0x0,
- 0x080,(src_delay_buffer_addr + (24 * 4)),
- 0,0, /* next_scb, sub_list_ptr */
- 0,0, /* entry, this_spb */
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_8,
- src_buffer_addr << 0x10,
- phiIncr,
- {
- 0xffff - ins->dac_volume_right,0xffff - ins->dac_volume_left,
- 0xffff - ins->dac_volume_right,0xffff - ins->dac_volume_left
- }
- };
-
- if (ins->s16_up == NULL) {
- ins->s16_up = cs46xx_dsp_lookup_symbol (chip,"S16_UPSRC",
- SYMBOL_CODE);
-
- if (ins->s16_up == NULL) {
- snd_printk (KERN_ERR "dsp_spos: symbol S16_UPSRC not found\n");
- return NULL;
- }
- }
-
- /* clear buffers */
- _dsp_clear_sample_buffer (chip,src_buffer_addr,8);
- _dsp_clear_sample_buffer (chip,src_delay_buffer_addr,32);
-
- if (pass_through) {
- /* wont work with any other rate than
- the native DSP rate */
- snd_BUG_ON(rate != 48000);
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&src_task_scb,
- dest,"DMAREADER",parent_scb,
- scb_child_type);
- } else {
- scb = _dsp_create_generic_scb(chip,scb_name,(u32 *)&src_task_scb,
- dest,ins->s16_up,parent_scb,
- scb_child_type);
- }
-
-
- }
-
- return scb;
-}
-
-#if 0 /* not used */
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_filter_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type) {
- struct dsp_scb_descriptor * scb;
-
- struct dsp_filter_scb filter_scb = {
- .a0_right = 0x41a9,
- .a0_left = 0x41a9,
- .a1_right = 0xb8e4,
- .a1_left = 0xb8e4,
- .a2_right = 0x3e55,
- .a2_left = 0x3e55,
-
- .filter_unused3 = 0x0000,
- .filter_unused2 = 0x0000,
-
- .output_buf_ptr = buffer_addr,
- .init = 0x000,
-
- .prev_sample_output1 = 0x00000000,
- .prev_sample_output2 = 0x00000000,
-
- .prev_sample_input1 = 0x00000000,
- .prev_sample_input2 = 0x00000000,
-
- .next_scb_ptr = 0x0000,
- .sub_list_ptr = 0x0000,
-
- .entry_point = 0x0000,
- .spb_ptr = 0x0000,
-
- .b0_right = 0x0e38,
- .b0_left = 0x0e38,
- .b1_right = 0x1c71,
- .b1_left = 0x1c71,
- .b2_right = 0x0e38,
- .b2_left = 0x0e38,
- };
-
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&filter_scb,
- dest,"FILTERTASK",parent_scb,
- scb_child_type);
-
- return scb;
-}
-#endif /* not used */
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_mix_only_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 mix_buffer_addr, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_mix_only_scb master_mix_scb = {
- /* 0 */ { 0,
- /* 1 */ 0,
- /* 2 */ mix_buffer_addr,
- /* 3 */ 0
- /* */ },
- {
- /* 4 */ 0,
- /* 5 */ 0,
- /* 6 */ 0,
- /* 7 */ 0,
- /* 8 */ 0x00000080
- },
- /* 9 */ 0,0,
- /* A */ 0,0,
- /* B */ RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_32,
- /* C */ (mix_buffer_addr + (16 * 4)) << 0x10,
- /* D */ 0,
- {
- /* E */ 0x8000,0x8000,
- /* F */ 0x8000,0x8000
- }
- };
-
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&master_mix_scb,
- dest,"S16_MIX",parent_scb,
- scb_child_type);
- return scb;
-}
-
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_mix_to_ostream_scb(struct snd_cs46xx * chip, char * scb_name,
- u16 mix_buffer_addr, u16 writeback_spb, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_mix2_ostream_scb mix2_ostream_scb = {
- /* Basic (non scatter/gather) DMA requestor (4 ints) */
- {
- DMA_RQ_C1_SOURCE_MOD64 +
- DMA_RQ_C1_DEST_ON_HOST +
- DMA_RQ_C1_DEST_MOD1024 +
- DMA_RQ_C1_WRITEBACK_SRC_FLAG +
- DMA_RQ_C1_WRITEBACK_DEST_FLAG +
- 15,
-
- DMA_RQ_C2_AC_NONE +
- DMA_RQ_C2_SIGNAL_DEST_PINGPONG +
-
- CS46XX_DSP_CAPTURE_CHANNEL,
- DMA_RQ_SD_SP_SAMPLE_ADDR +
- mix_buffer_addr,
- 0x0
- },
-
- { 0, 0, 0, 0, 0, },
- 0,0,
- 0,writeback_spb,
-
- RSCONFIG_DMA_ENABLE +
- (19 << RSCONFIG_MAX_DMA_SIZE_SHIFT) +
-
- ((dest >> 4) << RSCONFIG_STREAM_NUM_SHIFT) +
- RSCONFIG_DMA_TO_HOST +
- RSCONFIG_SAMPLE_16STEREO +
- RSCONFIG_MODULO_64,
- (mix_buffer_addr + (32 * 4)) << 0x10,
- 1,0,
- 0x0001,0x0080,
- 0xFFFF,0
- };
-
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&mix2_ostream_scb,
-
- dest,"S16_MIX_TO_OSTREAM",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_vari_decimate_scb(struct snd_cs46xx * chip,char * scb_name,
- u16 vari_buffer_addr0,
- u16 vari_buffer_addr1,
- u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
-
- struct dsp_scb_descriptor * scb;
-
- struct dsp_vari_decimate_scb vari_decimate_scb = {
- 0x0028,0x00c8,
- 0x5555,0x0000,
- 0x0000,0x0000,
- vari_buffer_addr0,vari_buffer_addr1,
-
- 0x0028,0x00c8,
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_256,
-
- 0xFF800000,
- 0,
- 0x0080,vari_buffer_addr1 + (25 * 4),
-
- 0,0,
- 0,0,
-
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_8,
- vari_buffer_addr0 << 0x10,
- 0x04000000,
- {
- 0x8000,0x8000,
- 0xFFFF,0xFFFF
- }
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&vari_decimate_scb,
- dest,"VARIDECIMATE",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-
-static struct dsp_scb_descriptor *
-cs46xx_dsp_create_pcm_serial_input_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- struct dsp_scb_descriptor * input_scb,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
-
- struct dsp_scb_descriptor * scb;
-
-
- struct dsp_pcm_serial_input_scb pcm_serial_input_scb = {
- { 0,
- 0,
- 0,
- 0
- },
- {
- 0,
- 0,
- 0,
- 0,
- 0
- },
-
- 0,0,
- 0,0,
-
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_16,
- 0,
- /* 0xD */ 0,input_scb->address,
- {
- /* 0xE */ 0x8000,0x8000,
- /* 0xF */ 0x8000,0x8000
- }
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&pcm_serial_input_scb,
- dest,"PCMSERIALINPUTTASK",parent_scb,
- scb_child_type);
- return scb;
-}
-
-
-static struct dsp_scb_descriptor *
-cs46xx_dsp_create_asynch_fg_tx_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- u16 hfg_scb_address,
- u16 asynch_buffer_address,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
-
- struct dsp_scb_descriptor * scb;
-
- struct dsp_asynch_fg_tx_scb asynch_fg_tx_scb = {
- 0xfc00,0x03ff, /* Prototype sample buffer size of 256 dwords */
- 0x0058,0x0028, /* Min Delta 7 dwords == 28 bytes */
- /* : Max delta 25 dwords == 100 bytes */
- 0,hfg_scb_address, /* Point to HFG task SCB */
- 0,0, /* Initialize current Delta and Consumer ptr adjustment count */
- 0, /* Initialize accumulated Phi to 0 */
- 0,0x2aab, /* Const 1/3 */
-
- {
- 0, /* Define the unused elements */
- 0,
- 0
- },
-
- 0,0,
- 0,dest + AFGTxAccumPhi,
-
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_256, /* Stereo, 256 dword */
- (asynch_buffer_address) << 0x10, /* This should be automagically synchronized
- to the producer pointer */
-
- /* There is no correct initial value, it will depend upon the detected
- rate etc */
- 0x18000000, /* Phi increment for approx 32k operation */
- 0x8000,0x8000, /* Volume controls are unused at this time */
- 0x8000,0x8000
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&asynch_fg_tx_scb,
- dest,"ASYNCHFGTXCODE",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_asynch_fg_rx_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- u16 hfg_scb_address,
- u16 asynch_buffer_address,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb;
-
- struct dsp_asynch_fg_rx_scb asynch_fg_rx_scb = {
- 0xfe00,0x01ff, /* Prototype sample buffer size of 128 dwords */
- 0x0064,0x001c, /* Min Delta 7 dwords == 28 bytes */
- /* : Max delta 25 dwords == 100 bytes */
- 0,hfg_scb_address, /* Point to HFG task SCB */
- 0,0, /* Initialize current Delta and Consumer ptr adjustment count */
- {
- 0, /* Define the unused elements */
- 0,
- 0,
- 0,
- 0
- },
-
- 0,0,
- 0,dest,
-
- RSCONFIG_MODULO_128 |
- RSCONFIG_SAMPLE_16STEREO, /* Stereo, 128 dword */
- ( (asynch_buffer_address + (16 * 4)) << 0x10), /* This should be automagically
- synchrinized to the producer pointer */
-
- /* There is no correct initial value, it will depend upon the detected
- rate etc */
- 0x18000000,
-
- /* Set IEC958 input volume */
- 0xffff - ins->spdif_input_volume_right,0xffff - ins->spdif_input_volume_left,
- 0xffff - ins->spdif_input_volume_right,0xffff - ins->spdif_input_volume_left,
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&asynch_fg_rx_scb,
- dest,"ASYNCHFGRXCODE",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-
-#if 0 /* not used */
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_output_snoop_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- u16 snoop_buffer_address,
- struct dsp_scb_descriptor * snoop_scb,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
-
- struct dsp_scb_descriptor * scb;
-
- struct dsp_output_snoop_scb output_snoop_scb = {
- { 0, /* not used. Zero */
- 0,
- 0,
- 0,
- },
- {
- 0, /* not used. Zero */
- 0,
- 0,
- 0,
- 0
- },
-
- 0,0,
- 0,0,
-
- RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_64,
- snoop_buffer_address << 0x10,
- 0,0,
- 0,
- 0,snoop_scb->address
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&output_snoop_scb,
- dest,"OUTPUTSNOOP",parent_scb,
- scb_child_type);
- return scb;
-}
-#endif /* not used */
-
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_spio_write_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_spio_write_scb spio_write_scb = {
- 0,0, /* SPIOWAddress2:SPIOWAddress1; */
- 0, /* SPIOWData1; */
- 0, /* SPIOWData2; */
- 0,0, /* SPIOWAddress4:SPIOWAddress3; */
- 0, /* SPIOWData3; */
- 0, /* SPIOWData4; */
- 0,0, /* SPIOWDataPtr:Unused1; */
- { 0,0 }, /* Unused2[2]; */
-
- 0,0, /* SPIOWChildPtr:SPIOWSiblingPtr; */
- 0,0, /* SPIOWThisPtr:SPIOWEntryPoint; */
-
- {
- 0,
- 0,
- 0,
- 0,
- 0 /* Unused3[5]; */
- }
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&spio_write_scb,
- dest,"SPIOWRITE",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-struct dsp_scb_descriptor *
-cs46xx_dsp_create_magic_snoop_scb(struct snd_cs46xx * chip, char * scb_name, u32 dest,
- u16 snoop_buffer_address,
- struct dsp_scb_descriptor * snoop_scb,
- struct dsp_scb_descriptor * parent_scb,
- int scb_child_type)
-{
- struct dsp_scb_descriptor * scb;
-
- struct dsp_magic_snoop_task magic_snoop_scb = {
- /* 0 */ 0, /* i0 */
- /* 1 */ 0, /* i1 */
- /* 2 */ snoop_buffer_address << 0x10,
- /* 3 */ 0,snoop_scb->address,
- /* 4 */ 0, /* i3 */
- /* 5 */ 0, /* i4 */
- /* 6 */ 0, /* i5 */
- /* 7 */ 0, /* i6 */
- /* 8 */ 0, /* i7 */
- /* 9 */ 0,0, /* next_scb, sub_list_ptr */
- /* A */ 0,0, /* entry_point, this_ptr */
- /* B */ RSCONFIG_SAMPLE_16STEREO + RSCONFIG_MODULO_64,
- /* C */ snoop_buffer_address << 0x10,
- /* D */ 0,
- /* E */ { 0x8000,0x8000,
- /* F */ 0xffff,0xffff
- }
- };
-
- scb = cs46xx_dsp_create_generic_scb(chip,scb_name,(u32 *)&magic_snoop_scb,
- dest,"MAGICSNOOPTASK",parent_scb,
- scb_child_type);
-
- return scb;
-}
-
-static struct dsp_scb_descriptor *
-find_next_free_scb (struct snd_cs46xx * chip, struct dsp_scb_descriptor * from)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * scb = from;
-
- while (scb->next_scb_ptr != ins->the_null_scb) {
- if (snd_BUG_ON(!scb->next_scb_ptr))
- return NULL;
-
- scb = scb->next_scb_ptr;
- }
-
- return scb;
-}
-
-static u32 pcm_reader_buffer_addr[DSP_MAX_PCM_CHANNELS] = {
- 0x0600, /* 1 */
- 0x1500, /* 2 */
- 0x1580, /* 3 */
- 0x1600, /* 4 */
- 0x1680, /* 5 */
- 0x1700, /* 6 */
- 0x1780, /* 7 */
- 0x1800, /* 8 */
- 0x1880, /* 9 */
- 0x1900, /* 10 */
- 0x1980, /* 11 */
- 0x1A00, /* 12 */
- 0x1A80, /* 13 */
- 0x1B00, /* 14 */
- 0x1B80, /* 15 */
- 0x1C00, /* 16 */
- 0x1C80, /* 17 */
- 0x1D00, /* 18 */
- 0x1D80, /* 19 */
- 0x1E00, /* 20 */
- 0x1E80, /* 21 */
- 0x1F00, /* 22 */
- 0x1F80, /* 23 */
- 0x2000, /* 24 */
- 0x2080, /* 25 */
- 0x2100, /* 26 */
- 0x2180, /* 27 */
- 0x2200, /* 28 */
- 0x2280, /* 29 */
- 0x2300, /* 30 */
- 0x2380, /* 31 */
- 0x2400, /* 32 */
-};
-
-static u32 src_output_buffer_addr[DSP_MAX_SRC_NR] = {
- 0x2B80,
- 0x2BA0,
- 0x2BC0,
- 0x2BE0,
- 0x2D00,
- 0x2D20,
- 0x2D40,
- 0x2D60,
- 0x2D80,
- 0x2DA0,
- 0x2DC0,
- 0x2DE0,
- 0x2E00,
- 0x2E20
-};
-
-static u32 src_delay_buffer_addr[DSP_MAX_SRC_NR] = {
- 0x2480,
- 0x2500,
- 0x2580,
- 0x2600,
- 0x2680,
- 0x2700,
- 0x2780,
- 0x2800,
- 0x2880,
- 0x2900,
- 0x2980,
- 0x2A00,
- 0x2A80,
- 0x2B00
-};
-
-struct dsp_pcm_channel_descriptor *
-cs46xx_dsp_create_pcm_channel (struct snd_cs46xx * chip,
- u32 sample_rate, void * private_data,
- u32 hw_dma_addr,
- int pcm_channel_id)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * src_scb = NULL, * pcm_scb, * mixer_scb = NULL;
- struct dsp_scb_descriptor * src_parent_scb = NULL;
-
- /* struct dsp_scb_descriptor * pcm_parent_scb; */
- char scb_name[DSP_MAX_SCB_NAME];
- int i, pcm_index = -1, insert_point, src_index = -1, pass_through = 0;
- unsigned long flags;
-
- switch (pcm_channel_id) {
- case DSP_PCM_MAIN_CHANNEL:
- mixer_scb = ins->master_mix_scb;
- break;
- case DSP_PCM_REAR_CHANNEL:
- mixer_scb = ins->rear_mix_scb;
- break;
- case DSP_PCM_CENTER_LFE_CHANNEL:
- mixer_scb = ins->center_lfe_mix_scb;
- break;
- case DSP_PCM_S71_CHANNEL:
- /* TODO */
- snd_BUG();
- break;
- case DSP_IEC958_CHANNEL:
- if (snd_BUG_ON(!ins->asynch_tx_scb))
- return NULL;
- mixer_scb = ins->asynch_tx_scb;
-
- /* if sample rate is set to 48khz we pass
- the Sample Rate Converted (which could
- alter the raw data stream ...) */
- if (sample_rate == 48000) {
- snd_printdd ("IEC958 pass through\n");
- /* Hack to bypass creating a new SRC */
- pass_through = 1;
- }
- break;
- default:
- snd_BUG();
- return NULL;
- }
- /* default sample rate is 44100 */
- if (!sample_rate) sample_rate = 44100;
-
- /* search for a already created SRC SCB with the same sample rate */
- for (i = 0; i < DSP_MAX_PCM_CHANNELS &&
- (pcm_index == -1 || src_scb == NULL); ++i) {
-
- /* virtual channel reserved
- for capture */
- if (i == CS46XX_DSP_CAPTURE_CHANNEL) continue;
-
- if (ins->pcm_channels[i].active) {
- if (!src_scb &&
- ins->pcm_channels[i].sample_rate == sample_rate &&
- ins->pcm_channels[i].mixer_scb == mixer_scb) {
- src_scb = ins->pcm_channels[i].src_scb;
- ins->pcm_channels[i].src_scb->ref_count ++;
- src_index = ins->pcm_channels[i].src_slot;
- }
- } else if (pcm_index == -1) {
- pcm_index = i;
- }
- }
-
- if (pcm_index == -1) {
- snd_printk (KERN_ERR "dsp_spos: no free PCM channel\n");
- return NULL;
- }
-
- if (src_scb == NULL) {
- if (ins->nsrc_scb >= DSP_MAX_SRC_NR) {
- snd_printk(KERN_ERR "dsp_spos: to many SRC instances\n!");
- return NULL;
- }
-
- /* find a free slot */
- for (i = 0; i < DSP_MAX_SRC_NR; ++i) {
- if (ins->src_scb_slots[i] == 0) {
- src_index = i;
- ins->src_scb_slots[i] = 1;
- break;
- }
- }
- if (snd_BUG_ON(src_index == -1))
- return NULL;
-
- /* we need to create a new SRC SCB */
- if (mixer_scb->sub_list_ptr == ins->the_null_scb) {
- src_parent_scb = mixer_scb;
- insert_point = SCB_ON_PARENT_SUBLIST_SCB;
- } else {
- src_parent_scb = find_next_free_scb(chip,mixer_scb->sub_list_ptr);
- insert_point = SCB_ON_PARENT_NEXT_SCB;
- }
-
- snprintf (scb_name,DSP_MAX_SCB_NAME,"SrcTask_SCB%d",src_index);
-
- snd_printdd( "dsp_spos: creating SRC \"%s\"\n",scb_name);
- src_scb = cs46xx_dsp_create_src_task_scb(chip,scb_name,
- sample_rate,
- src_output_buffer_addr[src_index],
- src_delay_buffer_addr[src_index],
- /* 0x400 - 0x600 source SCBs */
- 0x400 + (src_index * 0x10) ,
- src_parent_scb,
- insert_point,
- pass_through);
-
- if (!src_scb) {
- snd_printk (KERN_ERR "dsp_spos: failed to create SRCtaskSCB\n");
- return NULL;
- }
-
- /* cs46xx_dsp_set_src_sample_rate(chip,src_scb,sample_rate); */
-
- ins->nsrc_scb ++;
- }
-
-
- snprintf (scb_name,DSP_MAX_SCB_NAME,"PCMReader_SCB%d",pcm_index);
-
- snd_printdd( "dsp_spos: creating PCM \"%s\" (%d)\n",scb_name,
- pcm_channel_id);
-
- pcm_scb = cs46xx_dsp_create_pcm_reader_scb(chip,scb_name,
- pcm_reader_buffer_addr[pcm_index],
- /* 0x200 - 400 PCMreader SCBs */
- (pcm_index * 0x10) + 0x200,
- pcm_index, /* virtual channel 0-31 */
- hw_dma_addr, /* pcm hw addr */
- NULL, /* parent SCB ptr */
- 0 /* insert point */
- );
-
- if (!pcm_scb) {
- snd_printk (KERN_ERR "dsp_spos: failed to create PCMreaderSCB\n");
- return NULL;
- }
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- ins->pcm_channels[pcm_index].sample_rate = sample_rate;
- ins->pcm_channels[pcm_index].pcm_reader_scb = pcm_scb;
- ins->pcm_channels[pcm_index].src_scb = src_scb;
- ins->pcm_channels[pcm_index].unlinked = 1;
- ins->pcm_channels[pcm_index].private_data = private_data;
- ins->pcm_channels[pcm_index].src_slot = src_index;
- ins->pcm_channels[pcm_index].active = 1;
- ins->pcm_channels[pcm_index].pcm_slot = pcm_index;
- ins->pcm_channels[pcm_index].mixer_scb = mixer_scb;
- ins->npcm_channels ++;
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- return (ins->pcm_channels + pcm_index);
-}
-
-int cs46xx_dsp_pcm_channel_set_period (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel,
- int period_size)
-{
- u32 temp = snd_cs46xx_peek (chip,pcm_channel->pcm_reader_scb->address << 2);
- temp &= ~DMA_RQ_C1_SOURCE_SIZE_MASK;
-
- switch (period_size) {
- case 2048:
- temp |= DMA_RQ_C1_SOURCE_MOD1024;
- break;
- case 1024:
- temp |= DMA_RQ_C1_SOURCE_MOD512;
- break;
- case 512:
- temp |= DMA_RQ_C1_SOURCE_MOD256;
- break;
- case 256:
- temp |= DMA_RQ_C1_SOURCE_MOD128;
- break;
- case 128:
- temp |= DMA_RQ_C1_SOURCE_MOD64;
- break;
- case 64:
- temp |= DMA_RQ_C1_SOURCE_MOD32;
- break;
- case 32:
- temp |= DMA_RQ_C1_SOURCE_MOD16;
- break;
- default:
- snd_printdd ("period size (%d) not supported by HW\n", period_size);
- return -EINVAL;
- }
-
- snd_cs46xx_poke (chip,pcm_channel->pcm_reader_scb->address << 2,temp);
-
- return 0;
-}
-
-int cs46xx_dsp_pcm_ostream_set_period (struct snd_cs46xx * chip,
- int period_size)
-{
- u32 temp = snd_cs46xx_peek (chip,WRITEBACK_SCB_ADDR << 2);
- temp &= ~DMA_RQ_C1_DEST_SIZE_MASK;
-
- switch (period_size) {
- case 2048:
- temp |= DMA_RQ_C1_DEST_MOD1024;
- break;
- case 1024:
- temp |= DMA_RQ_C1_DEST_MOD512;
- break;
- case 512:
- temp |= DMA_RQ_C1_DEST_MOD256;
- break;
- case 256:
- temp |= DMA_RQ_C1_DEST_MOD128;
- break;
- case 128:
- temp |= DMA_RQ_C1_DEST_MOD64;
- break;
- case 64:
- temp |= DMA_RQ_C1_DEST_MOD32;
- break;
- case 32:
- temp |= DMA_RQ_C1_DEST_MOD16;
- break;
- default:
- snd_printdd ("period size (%d) not supported by HW\n", period_size);
- return -EINVAL;
- }
-
- snd_cs46xx_poke (chip,WRITEBACK_SCB_ADDR << 2,temp);
-
- return 0;
-}
-
-void cs46xx_dsp_destroy_pcm_channel (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- unsigned long flags;
-
- if (snd_BUG_ON(!pcm_channel->active ||
- ins->npcm_channels <= 0 ||
- pcm_channel->src_scb->ref_count <= 0))
- return;
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- pcm_channel->unlinked = 1;
- pcm_channel->active = 0;
- pcm_channel->private_data = NULL;
- pcm_channel->src_scb->ref_count --;
- ins->npcm_channels --;
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- cs46xx_dsp_remove_scb(chip,pcm_channel->pcm_reader_scb);
-
- if (!pcm_channel->src_scb->ref_count) {
- cs46xx_dsp_remove_scb(chip,pcm_channel->src_scb);
-
- if (snd_BUG_ON(pcm_channel->src_slot < 0 ||
- pcm_channel->src_slot >= DSP_MAX_SRC_NR))
- return;
-
- ins->src_scb_slots[pcm_channel->src_slot] = 0;
- ins->nsrc_scb --;
- }
-}
-
-int cs46xx_dsp_pcm_unlink (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel)
-{
- unsigned long flags;
-
- if (snd_BUG_ON(!pcm_channel->active ||
- chip->dsp_spos_instance->npcm_channels <= 0))
- return -EIO;
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- if (pcm_channel->unlinked) {
- spin_unlock_irqrestore(&chip->reg_lock, flags);
- return -EIO;
- }
-
- pcm_channel->unlinked = 1;
-
- _dsp_unlink_scb (chip,pcm_channel->pcm_reader_scb);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- return 0;
-}
-
-int cs46xx_dsp_pcm_link (struct snd_cs46xx * chip,
- struct dsp_pcm_channel_descriptor * pcm_channel)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * parent_scb;
- struct dsp_scb_descriptor * src_scb = pcm_channel->src_scb;
- unsigned long flags;
-
- spin_lock_irqsave(&chip->reg_lock, flags);
-
- if (pcm_channel->unlinked == 0) {
- spin_unlock_irqrestore(&chip->reg_lock, flags);
- return -EIO;
- }
-
- parent_scb = src_scb;
-
- if (src_scb->sub_list_ptr != ins->the_null_scb) {
- src_scb->sub_list_ptr->parent_scb_ptr = pcm_channel->pcm_reader_scb;
- pcm_channel->pcm_reader_scb->next_scb_ptr = src_scb->sub_list_ptr;
- }
-
- src_scb->sub_list_ptr = pcm_channel->pcm_reader_scb;
-
- snd_BUG_ON(pcm_channel->pcm_reader_scb->parent_scb_ptr);
- pcm_channel->pcm_reader_scb->parent_scb_ptr = parent_scb;
-
- /* update SCB entry in DSP RAM */
- cs46xx_dsp_spos_update_scb(chip,pcm_channel->pcm_reader_scb);
-
- /* update parent SCB entry */
- cs46xx_dsp_spos_update_scb(chip,parent_scb);
-
- pcm_channel->unlinked = 0;
- spin_unlock_irqrestore(&chip->reg_lock, flags);
- return 0;
-}
-
-struct dsp_scb_descriptor *
-cs46xx_add_record_source (struct snd_cs46xx *chip, struct dsp_scb_descriptor * source,
- u16 addr, char * scb_name)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * parent;
- struct dsp_scb_descriptor * pcm_input;
- int insert_point;
-
- if (snd_BUG_ON(!ins->record_mixer_scb))
- return NULL;
-
- if (ins->record_mixer_scb->sub_list_ptr != ins->the_null_scb) {
- parent = find_next_free_scb (chip,ins->record_mixer_scb->sub_list_ptr);
- insert_point = SCB_ON_PARENT_NEXT_SCB;
- } else {
- parent = ins->record_mixer_scb;
- insert_point = SCB_ON_PARENT_SUBLIST_SCB;
- }
-
- pcm_input = cs46xx_dsp_create_pcm_serial_input_scb(chip,scb_name,addr,
- source, parent,
- insert_point);
-
- return pcm_input;
-}
-
-int cs46xx_src_unlink(struct snd_cs46xx *chip, struct dsp_scb_descriptor * src)
-{
- unsigned long flags;
-
- if (snd_BUG_ON(!src->parent_scb_ptr))
- return -EINVAL;
-
- /* mute SCB */
- cs46xx_dsp_scb_set_volume (chip,src,0,0);
-
- spin_lock_irqsave(&chip->reg_lock, flags);
- _dsp_unlink_scb (chip,src);
- spin_unlock_irqrestore(&chip->reg_lock, flags);
-
- return 0;
-}
-
-int cs46xx_src_link(struct snd_cs46xx *chip, struct dsp_scb_descriptor * src)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
- struct dsp_scb_descriptor * parent_scb;
-
- if (snd_BUG_ON(src->parent_scb_ptr))
- return -EINVAL;
- if (snd_BUG_ON(!ins->master_mix_scb))
- return -EINVAL;
-
- if (ins->master_mix_scb->sub_list_ptr != ins->the_null_scb) {
- parent_scb = find_next_free_scb (chip,ins->master_mix_scb->sub_list_ptr);
- parent_scb->next_scb_ptr = src;
- } else {
- parent_scb = ins->master_mix_scb;
- parent_scb->sub_list_ptr = src;
- }
-
- src->parent_scb_ptr = parent_scb;
-
- /* update entry in DSP RAM */
- cs46xx_dsp_spos_update_scb(chip,parent_scb);
-
- return 0;
-}
-
-int cs46xx_dsp_enable_spdif_out (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if ( ! (ins->spdif_status_out & DSP_SPDIF_STATUS_HW_ENABLED) ) {
- cs46xx_dsp_enable_spdif_hw (chip);
- }
-
- /* dont touch anything if SPDIF is open */
- if ( ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN) {
- /* when cs46xx_iec958_post_close(...) is called it
- will call this function if necessary depending on
- this bit */
- ins->spdif_status_out |= DSP_SPDIF_STATUS_OUTPUT_ENABLED;
-
- return -EBUSY;
- }
-
- if (snd_BUG_ON(ins->asynch_tx_scb))
- return -EINVAL;
- if (snd_BUG_ON(ins->master_mix_scb->next_scb_ptr !=
- ins->the_null_scb))
- return -EINVAL;
-
- /* reset output snooper sample buffer pointer */
- snd_cs46xx_poke (chip, (ins->ref_snoop_scb->address + 2) << 2,
- (OUTPUT_SNOOP_BUFFER + 0x10) << 0x10 );
-
- /* The asynch. transfer task */
- ins->asynch_tx_scb = cs46xx_dsp_create_asynch_fg_tx_scb(chip,"AsynchFGTxSCB",ASYNCTX_SCB_ADDR,
- SPDIFO_SCB_INST,
- SPDIFO_IP_OUTPUT_BUFFER1,
- ins->master_mix_scb,
- SCB_ON_PARENT_NEXT_SCB);
- if (!ins->asynch_tx_scb) return -ENOMEM;
-
- ins->spdif_pcm_input_scb = cs46xx_dsp_create_pcm_serial_input_scb(chip,"PCMSerialInput_II",
- PCMSERIALINII_SCB_ADDR,
- ins->ref_snoop_scb,
- ins->asynch_tx_scb,
- SCB_ON_PARENT_SUBLIST_SCB);
-
-
- if (!ins->spdif_pcm_input_scb) return -ENOMEM;
-
- /* monitor state */
- ins->spdif_status_out |= DSP_SPDIF_STATUS_OUTPUT_ENABLED;
-
- return 0;
-}
-
-int cs46xx_dsp_disable_spdif_out (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- /* dont touch anything if SPDIF is open */
- if ( ins->spdif_status_out & DSP_SPDIF_STATUS_PLAYBACK_OPEN) {
- ins->spdif_status_out &= ~DSP_SPDIF_STATUS_OUTPUT_ENABLED;
- return -EBUSY;
- }
-
- /* check integrety */
- if (snd_BUG_ON(!ins->asynch_tx_scb))
- return -EINVAL;
- if (snd_BUG_ON(!ins->spdif_pcm_input_scb))
- return -EINVAL;
- if (snd_BUG_ON(ins->master_mix_scb->next_scb_ptr != ins->asynch_tx_scb))
- return -EINVAL;
- if (snd_BUG_ON(ins->asynch_tx_scb->parent_scb_ptr !=
- ins->master_mix_scb))
- return -EINVAL;
-
- cs46xx_dsp_remove_scb (chip,ins->spdif_pcm_input_scb);
- cs46xx_dsp_remove_scb (chip,ins->asynch_tx_scb);
-
- ins->spdif_pcm_input_scb = NULL;
- ins->asynch_tx_scb = NULL;
-
- /* clear buffer to prevent any undesired noise */
- _dsp_clear_sample_buffer(chip,SPDIFO_IP_OUTPUT_BUFFER1,256);
-
- /* monitor state */
- ins->spdif_status_out &= ~DSP_SPDIF_STATUS_OUTPUT_ENABLED;
-
-
- return 0;
-}
-
-int cs46xx_iec958_pre_open (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if ( ins->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED ) {
- /* remove AsynchFGTxSCB and and PCMSerialInput_II */
- cs46xx_dsp_disable_spdif_out (chip);
-
- /* save state */
- ins->spdif_status_out |= DSP_SPDIF_STATUS_OUTPUT_ENABLED;
- }
-
- /* if not enabled already */
- if ( !(ins->spdif_status_out & DSP_SPDIF_STATUS_HW_ENABLED) ) {
- cs46xx_dsp_enable_spdif_hw (chip);
- }
-
- /* Create the asynch. transfer task for playback */
- ins->asynch_tx_scb = cs46xx_dsp_create_asynch_fg_tx_scb(chip,"AsynchFGTxSCB",ASYNCTX_SCB_ADDR,
- SPDIFO_SCB_INST,
- SPDIFO_IP_OUTPUT_BUFFER1,
- ins->master_mix_scb,
- SCB_ON_PARENT_NEXT_SCB);
-
-
- /* set spdif channel status value for streaming */
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, ins->spdif_csuv_stream);
-
- ins->spdif_status_out |= DSP_SPDIF_STATUS_PLAYBACK_OPEN;
-
- return 0;
-}
-
-int cs46xx_iec958_post_close (struct snd_cs46xx *chip)
-{
- struct dsp_spos_instance * ins = chip->dsp_spos_instance;
-
- if (snd_BUG_ON(!ins->asynch_tx_scb))
- return -EINVAL;
-
- ins->spdif_status_out &= ~DSP_SPDIF_STATUS_PLAYBACK_OPEN;
-
- /* restore settings */
- cs46xx_poke_via_dsp (chip,SP_SPDOUT_CSUV, ins->spdif_csuv_default);
-
- /* deallocate stuff */
- if (ins->spdif_pcm_input_scb != NULL) {
- cs46xx_dsp_remove_scb (chip,ins->spdif_pcm_input_scb);
- ins->spdif_pcm_input_scb = NULL;
- }
-
- cs46xx_dsp_remove_scb (chip,ins->asynch_tx_scb);
- ins->asynch_tx_scb = NULL;
-
- /* clear buffer to prevent any undesired noise */
- _dsp_clear_sample_buffer(chip,SPDIFO_IP_OUTPUT_BUFFER1,256);
-
- /* restore state */
- if ( ins->spdif_status_out & DSP_SPDIF_STATUS_OUTPUT_ENABLED ) {
- cs46xx_dsp_enable_spdif_out (chip);
- }
-
- return 0;
-}
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwc4630.h b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwc4630.h
deleted file mode 100644
index 37c4f131..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwc4630.h
+++ /dev/null
@@ -1,320 +0,0 @@
-/* generated from cwc4630.osp DO NOT MODIFY */
-
-#ifndef __HEADER_cwc4630_H__
-#define __HEADER_cwc4630_H__
-
-static struct dsp_symbol_entry cwc4630_symbols[] = {
- { 0x0000, "BEGINADDRESS",0x00 },
- { 0x8000, "EXECCHILD",0x03 },
- { 0x8001, "EXECCHILD_98",0x03 },
- { 0x8003, "EXECCHILD_PUSH1IND",0x03 },
- { 0x8008, "EXECSIBLING",0x03 },
- { 0x800a, "EXECSIBLING_298",0x03 },
- { 0x800b, "EXECSIBLING_2IND1",0x03 },
- { 0x8010, "TIMINGMASTER",0x03 },
- { 0x804f, "S16_CODECINPUTTASK",0x03 },
- { 0x805e, "PCMSERIALINPUTTASK",0x03 },
- { 0x806d, "S16_MIX_TO_OSTREAM",0x03 },
- { 0x809a, "S16_MIX",0x03 },
- { 0x80bb, "S16_UPSRC",0x03 },
- { 0x813b, "MIX3_EXP",0x03 },
- { 0x8164, "DECIMATEBYPOW2",0x03 },
- { 0x8197, "VARIDECIMATE",0x03 },
- { 0x81f2, "_3DINPUTTASK",0x03 },
- { 0x820a, "_3DPRLGCINPTASK",0x03 },
- { 0x8227, "_3DSTEREOINPUTTASK",0x03 },
- { 0x8242, "_3DOUTPUTTASK",0x03 },
- { 0x82c4, "HRTF_MORPH_TASK",0x03 },
- { 0x82c6, "WAIT4DATA",0x03 },
- { 0x82fa, "PROLOGIC",0x03 },
- { 0x8496, "DECORRELATOR",0x03 },
- { 0x84a4, "STEREO2MONO",0x03 },
- { 0x0070, "SPOSCB",0x02 },
- { 0x0107, "TASKTREETHREAD",0x03 },
- { 0x013c, "TASKTREEHEADERCODE",0x03 },
- { 0x0145, "FGTASKTREEHEADERCODE",0x03 },
- { 0x0169, "NULLALGORITHM",0x03 },
- { 0x016d, "HFGEXECCHILD",0x03 },
- { 0x016e, "HFGEXECCHILD_98",0x03 },
- { 0x0170, "HFGEXECCHILD_PUSH1IND",0x03 },
- { 0x0173, "HFGEXECSIBLING",0x03 },
- { 0x0175, "HFGEXECSIBLING_298",0x03 },
- { 0x0176, "HFGEXECSIBLING_2IND1",0x03 },
- { 0x0179, "S16_CODECOUTPUTTASK",0x03 },
- { 0x0194, "#CODE_END",0x00 },
-}; /* cwc4630 symbols */
-
-static u32 cwc4630_code[] = {
-/* BEGINADDRESS */
-/* 0000 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 0002 */ 0x00001705,0x00001400,0x000a411e,0x00001003,
-/* 0004 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 0006 */ 0x00009705,0x00001400,0x000a411e,0x00001003,
-/* 0008 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 000A */ 0x00011705,0x00001400,0x000a411e,0x00001003,
-/* 000C */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 000E */ 0x00019705,0x00001400,0x000a411e,0x00001003,
-/* 0010 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 0012 */ 0x00021705,0x00001400,0x000a411e,0x00001003,
-/* 0014 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 0016 */ 0x00029705,0x00001400,0x000a411e,0x00001003,
-/* 0018 */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 001A */ 0x00031705,0x00001400,0x000a411e,0x00001003,
-/* 001C */ 0x00040730,0x00001002,0x000f619e,0x00001003,
-/* 001E */ 0x00039705,0x00001400,0x000a411e,0x00001003,
-/* 0020 */ 0x000fe19e,0x00001003,0x0009c730,0x00001003,
-/* 0022 */ 0x0008e19c,0x00001003,0x000083c1,0x00093040,
-/* 0024 */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 0026 */ 0x00009705,0x00001400,0x000a211e,0x00001003,
-/* 0028 */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 002A */ 0x00011705,0x00001400,0x000a211e,0x00001003,
-/* 002C */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 002E */ 0x00019705,0x00001400,0x000a211e,0x00001003,
-/* 0030 */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 0032 */ 0x00021705,0x00001400,0x000a211e,0x00001003,
-/* 0034 */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 0036 */ 0x00029705,0x00001400,0x000a211e,0x00001003,
-/* 0038 */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 003A */ 0x00031705,0x00001400,0x000a211e,0x00001003,
-/* 003C */ 0x00098730,0x00001002,0x000ee19e,0x00001003,
-/* 003E */ 0x00039705,0x00001400,0x000a211e,0x00001003,
-/* 0040 */ 0x0001a730,0x00001008,0x000e2730,0x00001002,
-/* 0042 */ 0x0000a731,0x00001002,0x0000a731,0x00001002,
-/* 0044 */ 0x0000a731,0x00001002,0x0000a731,0x00001002,
-/* 0046 */ 0x0000a731,0x00001002,0x0000a731,0x00001002,
-/* 0048 */ 0x00000000,0x00000000,0x000f619c,0x00001003,
-/* 004A */ 0x0007f801,0x000c0000,0x00000037,0x00001000,
-/* 004C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 004E */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0050 */ 0x00000000,0x000c0000,0x00000000,0x00000000,
-/* 0052 */ 0x0000373c,0x00001000,0x00000000,0x00000000,
-/* 0054 */ 0x000ee19c,0x00001003,0x0007f801,0x000c0000,
-/* 0056 */ 0x00000037,0x00001000,0x00000000,0x00000000,
-/* 0058 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 005A */ 0x00000000,0x00000000,0x0000273c,0x00001000,
-/* 005C */ 0x00000033,0x00001000,0x000e679e,0x00001003,
-/* 005E */ 0x00007705,0x00001400,0x000ac71e,0x00001003,
-/* 0060 */ 0x00087fc1,0x000c3be0,0x0007f801,0x000c0000,
-/* 0062 */ 0x00000037,0x00001000,0x00000000,0x00000000,
-/* 0064 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0066 */ 0x00000000,0x00000000,0x0000a730,0x00001003,
-/* 0068 */ 0x00000033,0x00001000,0x0007f801,0x000c0000,
-/* 006A */ 0x00000037,0x00001000,0x00000000,0x00000000,
-/* 006C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 006E */ 0x00000000,0x00000000,0x00000000,0x000c0000,
-/* 0070 */ 0x00000032,0x00001000,0x0000273d,0x00001000,
-/* 0072 */ 0x0004a730,0x00001003,0x00000f41,0x00097140,
-/* 0074 */ 0x0000a841,0x0009b240,0x0000a0c1,0x0009f040,
-/* 0076 */ 0x0001c641,0x00093540,0x0001cec1,0x0009b5c0,
-/* 0078 */ 0x00000000,0x00000000,0x0001bf05,0x0003fc40,
-/* 007A */ 0x00002725,0x000aa400,0x00013705,0x00093a00,
-/* 007C */ 0x0000002e,0x0009d6c0,0x0002ef8a,0x00000000,
-/* 007E */ 0x00040630,0x00001004,0x0004ef0a,0x000eb785,
-/* 0080 */ 0x0003fc8a,0x00000000,0x00000000,0x000c70e0,
-/* 0082 */ 0x0007d182,0x0002c640,0x00008630,0x00001004,
-/* 0084 */ 0x000799b8,0x0002c6c0,0x00031705,0x00092240,
-/* 0086 */ 0x00039f05,0x000932c0,0x0003520a,0x00000000,
-/* 0088 */ 0x00070731,0x0000100b,0x00010705,0x000b20c0,
-/* 008A */ 0x00000000,0x000eba44,0x00032108,0x000c60c4,
-/* 008C */ 0x00065208,0x000c2917,0x000486b0,0x00001007,
-/* 008E */ 0x00012f05,0x00036880,0x0002818e,0x000c0000,
-/* 0090 */ 0x0004410a,0x00000000,0x00048630,0x00001007,
-/* 0092 */ 0x00029705,0x000c0000,0x00000000,0x00000000,
-/* 0094 */ 0x00003fc1,0x0003fc40,0x000037c1,0x00091b40,
-/* 0096 */ 0x00003fc1,0x000911c0,0x000037c1,0x000957c0,
-/* 0098 */ 0x00003fc1,0x000951c0,0x000037c1,0x00000000,
-/* 009A */ 0x00003fc1,0x000991c0,0x000037c1,0x00000000,
-/* 009C */ 0x00003fc1,0x0009d1c0,0x000037c1,0x00000000,
-/* 009E */ 0x0001ccc1,0x000915c0,0x0001c441,0x0009d800,
-/* 00A0 */ 0x0009cdc1,0x00091240,0x0001c541,0x00091d00,
-/* 00A2 */ 0x0009cfc1,0x00095240,0x0001c741,0x00095c80,
-/* 00A4 */ 0x000e8ca9,0x00099240,0x000e85ad,0x00095640,
-/* 00A6 */ 0x00069ca9,0x00099d80,0x000e952d,0x00099640,
-/* 00A8 */ 0x000eaca9,0x0009d6c0,0x000ea5ad,0x00091a40,
-/* 00AA */ 0x0006bca9,0x0009de80,0x000eb52d,0x00095a40,
-/* 00AC */ 0x000ecca9,0x00099ac0,0x000ec5ad,0x0009da40,
-/* 00AE */ 0x000edca9,0x0009d300,0x000a6e0a,0x00001000,
-/* 00B0 */ 0x000ed52d,0x00091e40,0x000eeca9,0x00095ec0,
-/* 00B2 */ 0x000ee5ad,0x00099e40,0x0006fca9,0x00002500,
-/* 00B4 */ 0x000fb208,0x000c59a0,0x000ef52d,0x0009de40,
-/* 00B6 */ 0x00068ca9,0x000912c1,0x000683ad,0x00095241,
-/* 00B8 */ 0x00020f05,0x000991c1,0x00000000,0x00000000,
-/* 00BA */ 0x00086f88,0x00001000,0x0009cf81,0x000b5340,
-/* 00BC */ 0x0009c701,0x000b92c0,0x0009de81,0x000bd300,
-/* 00BE */ 0x0009d601,0x000b1700,0x0001fd81,0x000b9d80,
-/* 00C0 */ 0x0009f501,0x000b57c0,0x000a0f81,0x000bd740,
-/* 00C2 */ 0x00020701,0x000b5c80,0x000a1681,0x000b97c0,
-/* 00C4 */ 0x00021601,0x00002500,0x000a0701,0x000b9b40,
-/* 00C6 */ 0x000a0f81,0x000b1bc0,0x00021681,0x00002d00,
-/* 00C8 */ 0x00020f81,0x000bd800,0x000a0701,0x000b5bc0,
-/* 00CA */ 0x00021601,0x00003500,0x000a0f81,0x000b5f40,
-/* 00CC */ 0x000a0701,0x000bdbc0,0x00021681,0x00003d00,
-/* 00CE */ 0x00020f81,0x000b1d00,0x000a0701,0x000b1fc0,
-/* 00D0 */ 0x00021601,0x00020500,0x00020f81,0x000b1341,
-/* 00D2 */ 0x000a0701,0x000b9fc0,0x00021681,0x00020d00,
-/* 00D4 */ 0x00020f81,0x000bde80,0x000a0701,0x000bdfc0,
-/* 00D6 */ 0x00021601,0x00021500,0x00020f81,0x000b9341,
-/* 00D8 */ 0x00020701,0x000b53c1,0x00021681,0x00021d00,
-/* 00DA */ 0x000a0f81,0x000d0380,0x0000b601,0x000b15c0,
-/* 00DC */ 0x00007b01,0x00000000,0x00007b81,0x000bd1c0,
-/* 00DE */ 0x00007b01,0x00000000,0x00007b81,0x000b91c0,
-/* 00E0 */ 0x00007b01,0x000b57c0,0x00007b81,0x000b51c0,
-/* 00E2 */ 0x00007b01,0x000b1b40,0x00007b81,0x000b11c0,
-/* 00E4 */ 0x00087b01,0x000c3dc0,0x0007e488,0x000d7e45,
-/* 00E6 */ 0x00000000,0x000d7a44,0x0007e48a,0x00000000,
-/* 00E8 */ 0x00011f05,0x00084080,0x00000000,0x00000000,
-/* 00EA */ 0x00001705,0x000b3540,0x00008a01,0x000bf040,
-/* 00EC */ 0x00007081,0x000bb5c0,0x00055488,0x00000000,
-/* 00EE */ 0x0000d482,0x0003fc40,0x0003fc88,0x00000000,
-/* 00F0 */ 0x0001e401,0x000b3a00,0x0001ec81,0x000bd6c0,
-/* 00F2 */ 0x0002ef88,0x000e7784,0x00056f08,0x00000000,
-/* 00F4 */ 0x000d86b0,0x00001007,0x00008281,0x000bb240,
-/* 00F6 */ 0x0000b801,0x000b7140,0x00007888,0x00000000,
-/* 00F8 */ 0x0000073c,0x00001000,0x0007f188,0x000c0000,
-/* 00FA */ 0x00000000,0x00000000,0x00055288,0x000c555c,
-/* 00FC */ 0x0005528a,0x000c0000,0x0009fa88,0x000c5d00,
-/* 00FE */ 0x0000fa88,0x00000000,0x00000032,0x00001000,
-/* 0100 */ 0x0000073d,0x00001000,0x0007f188,0x000c0000,
-/* 0102 */ 0x00000000,0x00000000,0x0008c01c,0x00001003,
-/* 0104 */ 0x00002705,0x00001008,0x0008b201,0x000c1392,
-/* 0106 */ 0x0000ba01,0x00000000,
-/* TASKTREETHREAD */
-/* 0107 */ 0x00008731,0x00001400,0x0004c108,0x000fe0c4,
-/* 0109 */ 0x00057488,0x00000000,0x000a6388,0x00001001,
-/* 010B */ 0x0008b334,0x000bc141,0x0003020e,0x00000000,
-/* 010D */ 0x000986b0,0x00001008,0x00003625,0x000c5dfa,
-/* 010F */ 0x000a638a,0x00001001,0x0008020e,0x00001002,
-/* 0111 */ 0x0009a6b0,0x00001008,0x0007f301,0x00000000,
-/* 0113 */ 0x00000000,0x00000000,0x00002725,0x000a8c40,
-/* 0115 */ 0x000000ae,0x00000000,0x000e8630,0x00001008,
-/* 0117 */ 0x00000000,0x000c74e0,0x0007d182,0x0002d640,
-/* 0119 */ 0x000b8630,0x00001008,0x000799b8,0x0002d6c0,
-/* 011B */ 0x0000748a,0x000c3ec5,0x0007420a,0x000c0000,
-/* 011D */ 0x00062208,0x000c4117,0x000a0630,0x00001009,
-/* 011F */ 0x00000000,0x000c0000,0x0001022e,0x00000000,
-/* 0121 */ 0x0006a630,0x00001009,0x00000032,0x00001000,
-/* 0123 */ 0x000ca21c,0x00001003,0x00005a02,0x00000000,
-/* 0125 */ 0x0001a630,0x00001009,0x00000000,0x000c0000,
-/* 0127 */ 0x00000036,0x00001000,0x00000000,0x00000000,
-/* 0129 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 012B */ 0x00000000,0x00000000,0x0003a730,0x00001008,
-/* 012D */ 0x0007f801,0x000c0000,0x00000037,0x00001000,
-/* 012F */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0131 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0133 */ 0x0003a730,0x00001008,0x00000033,0x00001000,
-/* 0135 */ 0x0003a705,0x00001008,0x00007a01,0x000c0000,
-/* 0137 */ 0x000e6288,0x000d550a,0x0006428a,0x00000000,
-/* 0139 */ 0x00090730,0x0000100a,0x00000000,0x000c0000,
-/* 013B */ 0x00000000,0x00000000,
-/* TASKTREEHEADERCODE */
-/* 013C */ 0x0007aab0,0x00034880,0x000a8fb0,0x0000100b,
-/* 013E */ 0x00057488,0x00000000,0x00033b94,0x00081140,
-/* 0140 */ 0x000183ae,0x00000000,0x000a86b0,0x0000100b,
-/* 0142 */ 0x00022f05,0x000c3545,0x0000eb8a,0x00000000,
-/* 0144 */ 0x00042731,0x00001003,
-/* FGTASKTREEHEADERCODE */
-/* 0145 */ 0x0007aab0,0x00034880,0x00078fb0,0x0000100a,
-/* 0147 */ 0x00057488,0x00000000,0x00033b94,0x00081140,
-/* 0149 */ 0x000183ae,0x00000000,0x000b06b0,0x0000100b,
-/* 014B */ 0x00022f05,0x00000000,0x00007401,0x00091140,
-/* 014D */ 0x00048f05,0x000951c0,0x00042731,0x00001003,
-/* 014F */ 0x0000473d,0x00001000,0x000f19b0,0x000bbc47,
-/* 0151 */ 0x00080000,0x000bffc7,0x000fe19e,0x00001003,
-/* 0153 */ 0x00000000,0x00000000,0x0008e19c,0x00001003,
-/* 0155 */ 0x000083c1,0x00093040,0x00000f41,0x00097140,
-/* 0157 */ 0x0000a841,0x0009b240,0x0000a0c1,0x0009f040,
-/* 0159 */ 0x0001c641,0x00093540,0x0001cec1,0x0009b5c0,
-/* 015B */ 0x00000000,0x000fdc44,0x00055208,0x00000000,
-/* 015D */ 0x00010705,0x000a2880,0x0000a23a,0x00093a00,
-/* 015F */ 0x0003fc8a,0x000df6c5,0x0004ef0a,0x000c0000,
-/* 0161 */ 0x00012f05,0x00036880,0x00065308,0x000c2997,
-/* 0163 */ 0x000086b0,0x0000100b,0x0004410a,0x000d40c7,
-/* 0165 */ 0x00000000,0x00000000,0x00088730,0x00001004,
-/* 0167 */ 0x00056f0a,0x000ea105,0x00000000,0x00000000,
-/* NULLALGORITHM */
-/* 0169 */ 0x0000473d,0x00001000,0x000f19b0,0x000bbc47,
-/* 016B */ 0x00080000,0x000bffc7,0x0000273d,0x00001000,
-/* HFGEXECCHILD */
-/* 016D */ 0x00000000,0x000eba44,
-/* HFGEXECCHILD_98 */
-/* 016E */ 0x00048f05,0x0000f440,0x00007401,0x0000f7c0,
-/* HFGEXECCHILD_PUSH1IND */
-/* 0170 */ 0x00000734,0x00001000,0x00010705,0x000a6880,
-/* 0172 */ 0x00006a88,0x000c75c4,
-/* HFGEXECSIBLING */
-/* 0173 */ 0x00000000,0x000e5084,0x00000000,0x000eba44,
-/* HFGEXECSIBLING_298 */
-/* 0175 */ 0x00087401,0x000e4782,
-/* HFGEXECSIBLING_2IND1 */
-/* 0176 */ 0x00000734,0x00001000,0x00010705,0x000a6880,
-/* 0178 */ 0x00006a88,0x000c75c4,
-/* S16_CODECOUTPUTTASK */
-/* 0179 */ 0x0007c108,0x000c0000,0x0007e721,0x000bed40,
-/* 017B */ 0x00005f25,0x000badc0,0x0003ba97,0x000beb80,
-/* 017D */ 0x00065590,0x000b2e00,0x00033217,0x00003ec0,
-/* 017F */ 0x00065590,0x000b8e40,0x0003ed80,0x000491c0,
-/* 0181 */ 0x00073fb0,0x00074c80,0x000583a0,0x0000100c,
-/* 0183 */ 0x000ee388,0x00042970,0x00008301,0x00021ef2,
-/* 0185 */ 0x000b8f14,0x0000000f,0x000c4d8d,0x0000001b,
-/* 0187 */ 0x000d6dc2,0x000e06c6,0x000032ac,0x000c3916,
-/* 0189 */ 0x0004edc2,0x00074c80,0x00078898,0x00001000,
-/* 018B */ 0x00038894,0x00000032,0x000c4d8d,0x00092e1b,
-/* 018D */ 0x000d6dc2,0x000e06c6,0x0004edc2,0x000c1956,
-/* 018F */ 0x0000722c,0x00034a00,0x00041705,0x0009ed40,
-/* 0191 */ 0x00058730,0x00001400,0x000d7488,0x000c3a00,
-/* 0193 */ 0x00048f05,0x00000000
-};
-/* #CODE_END */
-
-static u32 cwc4630_parameter[] = {
-/* 0000 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0004 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0008 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 000C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0010 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0014 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0018 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 001C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0020 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0024 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0028 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 002C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0030 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0034 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0038 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 003C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0040 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0044 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0048 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 004C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0050 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0054 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0058 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 005C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0060 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0064 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0068 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 006C */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0070 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0074 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 0078 */ 0x00000000,0x00000000,0x00000000,0x00000000,
-/* 007C */ 0x00000000,0x00000000,0x00000000,0x00000000
-}; /* #PARAMETER_END */
-
-
-static struct dsp_segment_desc cwc4630_segments[] = {
- { SEGTYPE_SP_PROGRAM, 0x00000000, 0x00000328, cwc4630_code },
- { SEGTYPE_SP_PARAMETER, 0x00000000, 0x00000080, cwc4630_parameter },
-};
-
-static struct dsp_module_desc cwc4630_module = {
- "cwc4630",
- {
- 38,
- cwc4630_symbols
- },
- 2,
- cwc4630_segments,
-};
-
-#endif /* __HEADER_cwc4630_H__ */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcasync.h b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcasync.h
deleted file mode 100644
index 70e63e13..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcasync.h
+++ /dev/null
@@ -1,176 +0,0 @@
-/* generated from cwcasync.osp DO NOT MODIFY */
-
-#ifndef __HEADER_cwcasync_H__
-#define __HEADER_cwcasync_H__
-
-static struct dsp_symbol_entry cwcasync_symbols[] = {
- { 0x8000, "EXECCHILD",0x03 },
- { 0x8001, "EXECCHILD_98",0x03 },
- { 0x8003, "EXECCHILD_PUSH1IND",0x03 },
- { 0x8008, "EXECSIBLING",0x03 },
- { 0x800a, "EXECSIBLING_298",0x03 },
- { 0x800b, "EXECSIBLING_2IND1",0x03 },
- { 0x8010, "TIMINGMASTER",0x03 },
- { 0x804f, "S16_CODECINPUTTASK",0x03 },
- { 0x805e, "PCMSERIALINPUTTASK",0x03 },
- { 0x806d, "S16_MIX_TO_OSTREAM",0x03 },
- { 0x809a, "S16_MIX",0x03 },
- { 0x80bb, "S16_UPSRC",0x03 },
- { 0x813b, "MIX3_EXP",0x03 },
- { 0x8164, "DECIMATEBYPOW2",0x03 },
- { 0x8197, "VARIDECIMATE",0x03 },
- { 0x81f2, "_3DINPUTTASK",0x03 },
- { 0x820a, "_3DPRLGCINPTASK",0x03 },
- { 0x8227, "_3DSTEREOINPUTTASK",0x03 },
- { 0x8242, "_3DOUTPUTTASK",0x03 },
- { 0x82c4, "HRTF_MORPH_TASK",0x03 },
- { 0x82c6, "WAIT4DATA",0x03 },
- { 0x82fa, "PROLOGIC",0x03 },
- { 0x8496, "DECORRELATOR",0x03 },
- { 0x84a4, "STEREO2MONO",0x03 },
- { 0x0000, "OVERLAYBEGINADDRESS",0x00 },
- { 0x0000, "SPIOWRITE",0x03 },
- { 0x000d, "S16_ASYNCCODECINPUTTASK",0x03 },
- { 0x0043, "SPDIFITASK",0x03 },
- { 0x007b, "SPDIFOTASK",0x03 },
- { 0x0097, "ASYNCHFGTXCODE",0x03 },
- { 0x00be, "ASYNCHFGRXCODE",0x03 },
- { 0x00db, "#CODE_END",0x00 },
-}; /* cwcasync symbols */
-
-static u32 cwcasync_code[] = {
-/* OVERLAYBEGINADDRESS */
-/* 0000 */ 0x00002731,0x00001400,0x00003725,0x000a8440,
-/* 0002 */ 0x000000ae,0x00000000,0x00060630,0x00001000,
-/* 0004 */ 0x00000000,0x000c7560,0x00075282,0x0002d640,
-/* 0006 */ 0x00021705,0x00000000,0x00072ab8,0x0002d6c0,
-/* 0008 */ 0x00020630,0x00001000,0x000c74c2,0x000d4b82,
-/* 000A */ 0x000475c2,0x00000000,0x0003430a,0x000c0000,
-/* 000C */ 0x00042730,0x00001400,
-/* S16_ASYNCCODECINPUTTASK */
-/* 000D */ 0x0006a108,0x000cf2c4,0x0004f4c0,0x00000000,
-/* 000F */ 0x000fa418,0x0000101f,0x0005d402,0x0001c500,
-/* 0011 */ 0x000f0630,0x00001000,0x00004418,0x00001380,
-/* 0013 */ 0x000e243d,0x000d394a,0x00049705,0x00000000,
-/* 0015 */ 0x0007d530,0x000b4240,0x000e00f2,0x00001000,
-/* 0017 */ 0x00009134,0x000ca20a,0x00004c90,0x00001000,
-/* 0019 */ 0x0005d705,0x00000000,0x00004f25,0x00098240,
-/* 001B */ 0x00004725,0x00000000,0x0000e48a,0x00000000,
-/* 001D */ 0x00027295,0x0009c2c0,0x0003df25,0x00000000,
-/* 001F */ 0x000e8030,0x00001001,0x0005f718,0x000ac600,
-/* 0021 */ 0x0007cf30,0x000c2a01,0x00082630,0x00001001,
-/* 0023 */ 0x000504a0,0x00001001,0x00029314,0x000bcb80,
-/* 0025 */ 0x0003cf25,0x000b0e00,0x0004f5c0,0x00000000,
-/* 0027 */ 0x00049118,0x000d888a,0x0007dd02,0x000c6efa,
-/* 0029 */ 0x00000000,0x00000000,0x0004f5c0,0x00069c80,
-/* 002B */ 0x0000d402,0x00000000,0x000e8630,0x00001001,
-/* 002D */ 0x00079130,0x00000000,0x00049118,0x00090e00,
-/* 002F */ 0x0006c10a,0x00000000,0x00000000,0x000c0000,
-/* 0031 */ 0x0007cf30,0x00030580,0x00005725,0x00000000,
-/* 0033 */ 0x000d84a0,0x00001001,0x00029314,0x000b4780,
-/* 0035 */ 0x0003cf25,0x000b8600,0x00000000,0x00000000,
-/* 0037 */ 0x00000000,0x000c0000,0x00000000,0x00042c80,
-/* 0039 */ 0x0001dec1,0x000e488c,0x00031114,0x00000000,
-/* 003B */ 0x0004f5c2,0x00000000,0x0003640a,0x00000000,
-/* 003D */ 0x00000000,0x000e5084,0x00000000,0x000eb844,
-/* 003F */ 0x00007001,0x00000000,0x00000734,0x00001000,
-/* 0041 */ 0x00010705,0x000a6880,0x00006a88,0x000c75c4,
-/* SPDIFITASK */
-/* 0043 */ 0x0006a108,0x000cf2c4,0x0004f4c0,0x000d5384,
-/* 0045 */ 0x0007e48a,0x00000000,0x00067718,0x00001000,
-/* 0047 */ 0x0007a418,0x00001000,0x0007221a,0x00000000,
-/* 0049 */ 0x0005d402,0x00014500,0x000b8630,0x00001002,
-/* 004B */ 0x00004418,0x00001780,0x000e243d,0x000d394a,
-/* 004D */ 0x00049705,0x00000000,0x0007d530,0x000b4240,
-/* 004F */ 0x000ac0f2,0x00001002,0x00014414,0x00000000,
-/* 0051 */ 0x00004c90,0x00001000,0x0005d705,0x00000000,
-/* 0053 */ 0x00004f25,0x00098240,0x00004725,0x00000000,
-/* 0055 */ 0x0000e48a,0x00000000,0x00027295,0x0009c2c0,
-/* 0057 */ 0x0007df25,0x00000000,0x000ac030,0x00001003,
-/* 0059 */ 0x0005f718,0x000fe798,0x00029314,0x000bcb80,
-/* 005B */ 0x00000930,0x000b0e00,0x0004f5c0,0x000de204,
-/* 005D */ 0x000884a0,0x00001003,0x0007cf25,0x000e3560,
-/* 005F */ 0x00049118,0x00000000,0x00049118,0x000d888a,
-/* 0061 */ 0x0007dd02,0x000c6efa,0x0000c434,0x00030040,
-/* 0063 */ 0x000fda82,0x000c2312,0x000fdc0e,0x00001001,
-/* 0065 */ 0x00083402,0x000c2b92,0x000706b0,0x00001003,
-/* 0067 */ 0x00075a82,0x00000000,0x0000d625,0x000b0940,
-/* 0069 */ 0x0000840e,0x00001002,0x0000aabc,0x000c511e,
-/* 006B */ 0x00078730,0x00001003,0x0000aaf4,0x000e910a,
-/* 006D */ 0x0004628a,0x00000000,0x00006aca,0x00000000,
-/* 006F */ 0x00000930,0x00000000,0x0004f5c0,0x00069c80,
-/* 0071 */ 0x00046ac0,0x00000000,0x0003c40a,0x000fc898,
-/* 0073 */ 0x00049118,0x00090e00,0x0006c10a,0x00000000,
-/* 0075 */ 0x00000000,0x000e5084,0x00000000,0x000eb844,
-/* 0077 */ 0x00007001,0x00000000,0x00000734,0x00001000,
-/* 0079 */ 0x00010705,0x000a6880,0x00006a88,0x000c75c4,
-/* SPDIFOTASK */
-/* 007B */ 0x0006a108,0x000c0000,0x0004f4c0,0x000c3245,
-/* 007D */ 0x0000a418,0x00001000,0x0003a20a,0x00000000,
-/* 007F */ 0x00004418,0x00001380,0x000e243d,0x000d394a,
-/* 0081 */ 0x000c9705,0x000def92,0x0008c030,0x00001004,
-/* 0083 */ 0x0005f718,0x000fe798,0x00000000,0x000c0000,
-/* 0085 */ 0x00005725,0x00000000,0x000704a0,0x00001004,
-/* 0087 */ 0x00029314,0x000b4780,0x0003cf25,0x000b8600,
-/* 0089 */ 0x00000000,0x00000000,0x00000000,0x000c0000,
-/* 008B */ 0x00000000,0x00042c80,0x0001dec1,0x000e488c,
-/* 008D */ 0x00031114,0x00000000,0x0004f5c2,0x00000000,
-/* 008F */ 0x0004a918,0x00098600,0x0006c28a,0x00000000,
-/* 0091 */ 0x00000000,0x000e5084,0x00000000,0x000eb844,
-/* 0093 */ 0x00007001,0x00000000,0x00000734,0x00001000,
-/* 0095 */ 0x00010705,0x000a6880,0x00006a88,0x000c75c4,
-/* ASYNCHFGTXCODE */
-/* 0097 */ 0x0002a880,0x000b4e40,0x00042214,0x000e5548,
-/* 0099 */ 0x000542bf,0x00000000,0x00000000,0x000481c0,
-/* 009B */ 0x00000000,0x00000000,0x00000000,0x00000030,
-/* 009D */ 0x0000072d,0x000fbf8a,0x00077f94,0x000ea7df,
-/* 009F */ 0x0002ac95,0x000d3145,0x00002731,0x00001400,
-/* 00A1 */ 0x00006288,0x000c71c4,0x00014108,0x000e6044,
-/* 00A3 */ 0x00035408,0x00000000,0x00025418,0x000a0ec0,
-/* 00A5 */ 0x0001443d,0x000ca21e,0x00046595,0x000d730c,
-/* 00A7 */ 0x0006538e,0x00000000,0x00064630,0x00001005,
-/* 00A9 */ 0x000e7b0e,0x000df782,0x000746b0,0x00001005,
-/* 00AB */ 0x00036f05,0x000c0000,0x00043695,0x000d598c,
-/* 00AD */ 0x0005331a,0x000f2185,0x00000000,0x00000000,
-/* 00AF */ 0x000007ae,0x000bdb00,0x00040630,0x00001400,
-/* 00B1 */ 0x0005e708,0x000c0000,0x0007ef30,0x000b1c00,
-/* 00B3 */ 0x000d86a0,0x00001005,0x00066408,0x000c0000,
-/* 00B5 */ 0x00000000,0x00000000,0x00021843,0x00000000,
-/* 00B7 */ 0x00000cac,0x00062c00,0x00001dac,0x00063400,
-/* 00B9 */ 0x00002cac,0x0006cc80,0x000db943,0x000e5ca1,
-/* 00BB */ 0x00000000,0x00000000,0x0006680a,0x000f3205,
-/* 00BD */ 0x00042730,0x00001400,
-/* ASYNCHFGRXCODE */
-/* 00BE */ 0x00014108,0x000f2204,0x00025418,0x000a2ec0,
-/* 00C0 */ 0x00015dbd,0x00038100,0x00015dbc,0x00000000,
-/* 00C2 */ 0x0005e415,0x00034880,0x0001258a,0x000d730c,
-/* 00C4 */ 0x0006538e,0x000baa40,0x00060630,0x00001006,
-/* 00C6 */ 0x00067b0e,0x000ac380,0x0003ef05,0x00000000,
-/* 00C8 */ 0x0000f734,0x0001c300,0x000586b0,0x00001400,
-/* 00CA */ 0x000b6f05,0x000c3a00,0x00048f05,0x00000000,
-/* 00CC */ 0x0005b695,0x0008c380,0x0002058e,0x00000000,
-/* 00CE */ 0x000500b0,0x00001400,0x0002b318,0x000e998d,
-/* 00D0 */ 0x0006430a,0x00000000,0x00000000,0x000ef384,
-/* 00D2 */ 0x00004725,0x000c0000,0x00000000,0x000f3204,
-/* 00D4 */ 0x00004f25,0x000c0000,0x00080000,0x000e5ca1,
-/* 00D6 */ 0x000cb943,0x000e5ca1,0x0004b943,0x00000000,
-/* 00D8 */ 0x00040730,0x00001400,0x000cb943,0x000e5ca1,
-/* 00DA */ 0x0004b943,0x00000000
-};
-/* #CODE_END */
-
-static struct dsp_segment_desc cwcasync_segments[] = {
- { SEGTYPE_SP_PROGRAM, 0x00000000, 0x000001b6, cwcasync_code },
-};
-
-static struct dsp_module_desc cwcasync_module = {
- "cwcasync",
- {
- 32,
- cwcasync_symbols
- },
- 1,
- cwcasync_segments,
-};
-
-#endif /* __HEADER_cwcasync_H__ */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcbinhack.h b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcbinhack.h
deleted file mode 100644
index f4d93689..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcbinhack.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/* generated by Benny
- MODIFY ON YOUR OWN RISK */
-
-#ifndef __HEADER_cwcbinhack_H__
-#define __HEADER_cwcbinhack_H__
-
-static struct dsp_symbol_entry cwcbinhack_symbols[] = {
- { 0x02c8, "OVERLAYBEGINADDRESS",0x00 },
- { 0x02c8, "MAGICSNOOPTASK",0x03 },
- { 0x0308, "#CODE_END",0x00 },
-}; /* cwcbinhack symbols */
-
-static u32 cwcbinhack_code[] = {
- /* 0x02c8 */
- 0x0007bfb0,0x000bc240,0x00000c2e,0x000c6084, /* 1 */
- 0x000b8630,0x00001016,0x00006408,0x000efb84, /* 2 */
- 0x00016008,0x00000000,0x0001c088,0x000c0000, /* 3 */
- 0x000fc908,0x000e3392,0x0005f488,0x000efb84, /* 4 */
- 0x0001d402,0x000b2e00,0x0003d418,0x00001000, /* 5 */
- 0x0008d574,0x000c4293,0x00065625,0x000ea30e, /* 6 */
- 0x00096c01,0x000c6f92,0x0001a58a,0x000c6085, /* 7 */
- 0x00002f43,0x00000000,0x000e03a0,0x00001016, /* 8 */
- 0x0005e608,0x000c0000,0x00000000,0x00000000, /* 9 */
- 0x000ca108,0x000dcca1,0x00003bac,0x000c3205, /* 10 */
- 0x00073843,0x00000000,0x00010730,0x00001017, /* 11 */
- 0x0001600a,0x000c0000,0x00057488,0x00000000, /* 12 */
- 0x00000000,0x000e5084,0x00000000,0x000eba44, /* 13 */
- 0x00087401,0x000e4782,0x00000734,0x00001000, /* 14 */
- 0x00010705,0x000a6880,0x00006a88,0x000c75c4, /* 15 */
- 0x00000000,0x00000000,0x00000000,0x00000000, /* 16 */
-};
-/* #CODE_END */
-
-static struct dsp_segment_desc cwcbinhack_segments[] = {
- { SEGTYPE_SP_PROGRAM, 0x00000000, 64, cwcbinhack_code },
-};
-
-static struct dsp_module_desc cwcbinhack_module = {
- "cwcbinhack",
- {
- 3,
- cwcbinhack_symbols
- },
- 1,
- cwcbinhack_segments,
-};
-
-#endif /* __HEADER_cwcbinhack_H__ */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.asp b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.asp
deleted file mode 100644
index a65e1193..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.asp
+++ /dev/null
@@ -1,170 +0,0 @@
-//
-// Copyright(c) by Benny Sjostrand (benny@hostmobility.com)
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-//
-
-
-//
-// This code runs inside the DSP (cs4610, cs4612, cs4624, or cs4630),
-// to compile it you need a tool named SPASM 3.0 and DSP code owned by
-// Cirrus Logic(R). The SPASM program will generate a object file (cwcdma.osp),
-// the "ospparser" tool will genereate the cwcdma.h file it's included from
-// the cs46xx_lib.c file.
-//
-//
-// The purpose of this code is very simple: make it possible to tranfser
-// the samples 'as they are' with no alteration from a PCMreader
-// SCB (DMA from host) to any other SCB. This is useful for AC3 through SPDIF.
-// SRC (source rate converters) task always alters the samples in somehow,
-// however it's from 48khz -> 48khz.
-// The alterations are not audible, but AC3 wont work.
-//
-// ...
-// |
-// +---------------+
-// | AsynchFGTxSCB |
-// +---------------+
-// |
-// subListPtr
-// |
-// +--------------+
-// | DMAReader |
-// +--------------+
-// |
-// subListPtr
-// |
-// +-------------+
-// | PCMReader |
-// +-------------+
-// (DMA from host)
-//
-
-struct dmaSCB
- {
- long dma_reserved1[3];
-
- short dma_reserved2:dma_outBufPtr;
-
- short dma_unused1:dma_unused2;
-
- long dma_reserved3[4];
-
- short dma_subListPtr:dma_nextSCB;
- short dma_SPBptr:dma_entryPoint;
-
- long dma_strmRsConfig;
- long dma_strmBufPtr;
-
- long dma_reserved4;
-
- VolumeControl s2m_volume;
- };
-
-#export DMAReader
-void DMAReader()
-{
- execChild();
- r2 = r0->dma_subListPtr;
- r1 = r0->nextSCB;
-
- rsConfig01 = r2->strmRsConfig;
- // Load rsConfig for input buffer
-
- rsDMA01 = r2->basicReq.daw, , tb = Z(0 - rf);
- // Load rsDMA in case input buffer is a DMA buffer Test to see if there is any data to transfer
-
- if (tb) goto execSibling_2ind1 after {
- r5 = rf + (-1);
- r6 = r1->dma_entryPoint; // r6 = entry point of sibling task
- r1 = r1->dma_SPBptr, // r1 = pointer to sibling task's SPB
- , ind = r6; // Load entry point of sibling task
- }
-
- rsConfig23 = r0->dma_strmRsConfig;
- // Load rsConfig for output buffer (never a DMA buffer)
-
- r4 = r0->dma_outBufPtr;
-
- rsa0 = r2->strmBufPtr;
- // rsa0 = input buffer pointer
-
- for (i = r5; i >= 0; --i)
- after {
- rsa2 = r4;
- // rsa2 = output buffer pointer
-
- nop;
- nop;
- }
- //*****************************
- // TODO: cycles to this point *
- //*****************************
- {
- acc0 = (rsd0 = *rsa0++1);
- // get sample
-
- nop; // Those "nop"'s are really uggly, but there's
- nop; // something with DSP's pipelines which I don't
- nop; // understand, resulting this code to fail without
- // having those "nop"'s (Benny)
-
- rsa0?reqDMA = r2;
- // Trigger DMA transfer on input stream,
- // if needed to replenish input buffer
-
- nop;
- // Yet another magic "nop" to make stuff work
-
- ,,r98 = acc0 $+>> 0;
- // store sample in ALU
-
- nop;
- // latency on load register.
- // (this one is understandable)
-
- *rsa2++1 = r98;
- // store sample in output buffer
-
- nop; // The same story
- nop; // as above again ...
- nop;
- }
- // TODO: cycles per loop iteration
-
- r2->strmBufPtr = rsa0,, ;
- // Update the modified buffer pointers
-
- r4 = rsa2;
- // Load output pointer position into r4
-
- r2 = r0->nextSCB;
- // Sibling task
-
- goto execSibling_2ind1 // takes 6 cycles
- after {
- r98 = r2->thisSPB:entryPoint;
- // Load child routine entry and data address
-
- r1 = r9;
- // r9 is r2->thisSPB
-
- r0->dma_outBufPtr = r4,,
- // Store updated output buffer pointer
-
- ind = r8;
- // r8 is r2->entryPoint
- }
-}
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.h b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.h
deleted file mode 100644
index 7ff0d458..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcdma.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* generated from cwcdma.osp DO NOT MODIFY */
-
-#ifndef __HEADER_cwcdma_H__
-#define __HEADER_cwcdma_H__
-
-static struct dsp_symbol_entry cwcdma_symbols[] = {
- { 0x8000, "EXECCHILD",0x03 },
- { 0x8001, "EXECCHILD_98",0x03 },
- { 0x8003, "EXECCHILD_PUSH1IND",0x03 },
- { 0x8008, "EXECSIBLING",0x03 },
- { 0x800a, "EXECSIBLING_298",0x03 },
- { 0x800b, "EXECSIBLING_2IND1",0x03 },
- { 0x8010, "TIMINGMASTER",0x03 },
- { 0x804f, "S16_CODECINPUTTASK",0x03 },
- { 0x805e, "PCMSERIALINPUTTASK",0x03 },
- { 0x806d, "S16_MIX_TO_OSTREAM",0x03 },
- { 0x809a, "S16_MIX",0x03 },
- { 0x80bb, "S16_UPSRC",0x03 },
- { 0x813b, "MIX3_EXP",0x03 },
- { 0x8164, "DECIMATEBYPOW2",0x03 },
- { 0x8197, "VARIDECIMATE",0x03 },
- { 0x81f2, "_3DINPUTTASK",0x03 },
- { 0x820a, "_3DPRLGCINPTASK",0x03 },
- { 0x8227, "_3DSTEREOINPUTTASK",0x03 },
- { 0x8242, "_3DOUTPUTTASK",0x03 },
- { 0x82c4, "HRTF_MORPH_TASK",0x03 },
- { 0x82c6, "WAIT4DATA",0x03 },
- { 0x82fa, "PROLOGIC",0x03 },
- { 0x8496, "DECORRELATOR",0x03 },
- { 0x84a4, "STEREO2MONO",0x03 },
- { 0x0000, "OVERLAYBEGINADDRESS",0x00 },
- { 0x0000, "DMAREADER",0x03 },
- { 0x0018, "#CODE_END",0x00 },
-}; /* cwcdma symbols */
-
-static u32 cwcdma_code[] = {
-/* OVERLAYBEGINADDRESS */
-/* 0000 */ 0x00002731,0x00001400,0x0004c108,0x000e5044,
-/* 0002 */ 0x0005f608,0x00000000,0x000007ae,0x000be300,
-/* 0004 */ 0x00058630,0x00001400,0x0007afb0,0x000e9584,
-/* 0006 */ 0x00007301,0x000a9840,0x0005e708,0x000cd104,
-/* 0008 */ 0x00067008,0x00000000,0x000902a0,0x00001000,
-/* 000A */ 0x00012a01,0x000c0000,0x00000000,0x00000000,
-/* 000C */ 0x00021843,0x000c0000,0x00000000,0x000c0000,
-/* 000E */ 0x0000e101,0x000c0000,0x00000cac,0x00000000,
-/* 0010 */ 0x00080000,0x000e5ca1,0x00000000,0x000c0000,
-/* 0012 */ 0x00000000,0x00000000,0x00000000,0x00092c00,
-/* 0014 */ 0x000122c1,0x000e5084,0x00058730,0x00001400,
-/* 0016 */ 0x000d7488,0x000e4782,0x00007401,0x0001c100
-};
-
-/* #CODE_END */
-
-static struct dsp_segment_desc cwcdma_segments[] = {
- { SEGTYPE_SP_PROGRAM, 0x00000000, 0x00000030, cwcdma_code },
-};
-
-static struct dsp_module_desc cwcdma_module = {
- "cwcdma",
- {
- 27,
- cwcdma_symbols
- },
- 1,
- cwcdma_segments,
-};
-
-#endif /* __HEADER_cwcdma_H__ */
diff --git a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcsnoop.h b/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcsnoop.h
deleted file mode 100644
index 6929d0a5..00000000
--- a/ANDROID_3.4.5/sound/pci/cs46xx/imgs/cwcsnoop.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* generated from cwcsnoop.osp DO NOT MODIFY */
-
-#ifndef __HEADER_cwcsnoop_H__
-#define __HEADER_cwcsnoop_H__
-
-static struct dsp_symbol_entry cwcsnoop_symbols[] = {
- { 0x0500, "OVERLAYBEGINADDRESS",0x00 },
- { 0x0500, "OUTPUTSNOOP",0x03 },
- { 0x051f, "#CODE_END",0x00 },
-}; /* cwcsnoop symbols */
-
-static u32 cwcsnoop_code[] = {
-/* 0000 */ 0x0007bfb0,0x000b4e40,0x0007c088,0x000c0617,
-/* 0002 */ 0x00049705,0x00000000,0x00080630,0x00001028,
-/* 0004 */ 0x00076408,0x000efb84,0x00066008,0x00000000,
-/* 0006 */ 0x0007c908,0x000c0000,0x00046725,0x000efa44,
-/* 0008 */ 0x0005f708,0x00000000,0x0001d402,0x000b2e00,
-/* 000A */ 0x0003d418,0x00001000,0x0008d574,0x000c4293,
-/* 000C */ 0x00065625,0x000ea30e,0x00096c01,0x000c6f92,
-/* 000E */ 0x0006a58a,0x000f6085,0x00002f43,0x00000000,
-/* 0010 */ 0x000a83a0,0x00001028,0x0005e608,0x000c0000,
-/* 0012 */ 0x00000000,0x00000000,0x000ca108,0x000dcca1,
-/* 0014 */ 0x00003bac,0x000fb205,0x00073843,0x00000000,
-/* 0016 */ 0x000d8730,0x00001028,0x0006600a,0x000c0000,
-/* 0018 */ 0x00057488,0x00000000,0x00000000,0x000e5084,
-/* 001A */ 0x00000000,0x000eba44,0x00087401,0x000e4782,
-/* 001C */ 0x00000734,0x00001000,0x00010705,0x000a6880,
-/* 001E */ 0x00006a88,0x000c75c4
-};
-/* #CODE_END */
-
-static struct dsp_segment_desc cwcsnoop_segments[] = {
- { SEGTYPE_SP_PROGRAM, 0x00000000, 0x0000003e, cwcsnoop_code },
-};
-
-static struct dsp_module_desc cwcsnoop_module = {
- "cwcsnoop",
- {
- 3,
- cwcsnoop_symbols
- },
- 1,
- cwcsnoop_segments,
-};
-
-#endif /* __HEADER_cwcsnoop_H__ */