diff options
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/Kconfig | 18 | ||||
-rw-r--r-- | sound/pci/asihpi/asihpi.c | 328 | ||||
-rw-r--r-- | sound/pci/asihpi/hpi6000.c | 39 | ||||
-rw-r--r-- | sound/pci/asihpi/hpi6205.c | 95 | ||||
-rw-r--r-- | sound/pci/asihpi/hpi_internal.h | 19 | ||||
-rw-r--r-- | sound/pci/asihpi/hpicmn.c | 10 | ||||
-rw-r--r-- | sound/pci/asihpi/hpicmn.h | 2 | ||||
-rw-r--r-- | sound/pci/asihpi/hpifunc.c | 27 | ||||
-rw-r--r-- | sound/pci/asihpi/hpimsgx.c | 31 | ||||
-rw-r--r-- | sound/pci/asihpi/hpioctl.c | 63 | ||||
-rw-r--r-- | sound/pci/au88x0/au8810.h | 2 | ||||
-rw-r--r-- | sound/pci/au88x0/au8820.h | 2 | ||||
-rw-r--r-- | sound/pci/au88x0/au8830.h | 2 | ||||
-rw-r--r-- | sound/pci/au88x0/au88x0_pcm.c | 13 | ||||
-rw-r--r-- | sound/pci/emu10k1/emufx.c | 5 | ||||
-rw-r--r-- | sound/pci/emu10k1/emumixer.c | 10 | ||||
-rw-r--r-- | sound/pci/es1968.c | 78 | ||||
-rw-r--r-- | sound/pci/fm801.c | 371 | ||||
-rw-r--r-- | sound/pci/intel8x0m.c | 4 |
19 files changed, 461 insertions, 658 deletions
diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig index 8d2856fb4d9..e90d103e177 100644 --- a/sound/pci/Kconfig +++ b/sound/pci/Kconfig | |||
@@ -534,6 +534,14 @@ config SND_ES1968_INPUT | |||
534 | If you say N the buttons will directly control the master volume. | 534 | If you say N the buttons will directly control the master volume. |
535 | It is recommended to say Y. | 535 | It is recommended to say Y. |
536 | 536 | ||
537 | config SND_ES1968_RADIO | ||
538 | bool "Enable TEA5757 radio tuner support for es1968" | ||
539 | depends on SND_ES1968 | ||
540 | depends on VIDEO_V4L2=y || VIDEO_V4L2=SND_ES1968 | ||
541 | help | ||
542 | Say Y here to include support for TEA5757 radio tuner integrated on | ||
543 | some MediaForte cards (e.g. SF64-PCE2). | ||
544 | |||
537 | config SND_FM801 | 545 | config SND_FM801 |
538 | tristate "ForteMedia FM801" | 546 | tristate "ForteMedia FM801" |
539 | select SND_OPL3_LIB | 547 | select SND_OPL3_LIB |
@@ -552,13 +560,13 @@ config SND_FM801_TEA575X_BOOL | |||
552 | depends on VIDEO_V4L2=y || VIDEO_V4L2=SND_FM801 | 560 | depends on VIDEO_V4L2=y || VIDEO_V4L2=SND_FM801 |
553 | help | 561 | help |
554 | Say Y here to include support for soundcards based on the ForteMedia | 562 | Say Y here to include support for soundcards based on the ForteMedia |
555 | FM801 chip with a TEA5757 tuner connected to GPIO1-3 pins (Media | 563 | FM801 chip with a TEA5757 tuner (MediaForte SF256-PCS, SF256-PCP and |
556 | Forte SF256-PCS-02) into the snd-fm801 driver. | 564 | SF64-PCR) into the snd-fm801 driver. |
557 | 565 | ||
558 | config SND_FM801_TEA575X | 566 | config SND_TEA575X |
559 | tristate | 567 | tristate |
560 | depends on SND_FM801_TEA575X_BOOL | 568 | depends on SND_FM801_TEA575X_BOOL || SND_ES1968_RADIO |
561 | default SND_FM801 | 569 | default SND_FM801 || SND_ES1968 |
562 | 570 | ||
563 | source "sound/pci/hda/Kconfig" | 571 | source "sound/pci/hda/Kconfig" |
564 | 572 | ||
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index f8ccc9677c6..2ca6f4f85b4 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c | |||
@@ -42,10 +42,29 @@ | |||
42 | #include <sound/tlv.h> | 42 | #include <sound/tlv.h> |
43 | #include <sound/hwdep.h> | 43 | #include <sound/hwdep.h> |
44 | 44 | ||
45 | |||
45 | MODULE_LICENSE("GPL"); | 46 | MODULE_LICENSE("GPL"); |
46 | MODULE_AUTHOR("AudioScience inc. <support@audioscience.com>"); | 47 | MODULE_AUTHOR("AudioScience inc. <support@audioscience.com>"); |
47 | MODULE_DESCRIPTION("AudioScience ALSA ASI5000 ASI6000 ASI87xx ASI89xx"); | 48 | MODULE_DESCRIPTION("AudioScience ALSA ASI5000 ASI6000 ASI87xx ASI89xx"); |
48 | 49 | ||
50 | #if defined CONFIG_SND_DEBUG | ||
51 | /* copied from pcm_lib.c, hope later patch will make that version public | ||
52 | and this copy can be removed */ | ||
53 | static void pcm_debug_name(struct snd_pcm_substream *substream, | ||
54 | char *name, size_t len) | ||
55 | { | ||
56 | snprintf(name, len, "pcmC%dD%d%c:%d", | ||
57 | substream->pcm->card->number, | ||
58 | substream->pcm->device, | ||
59 | substream->stream ? 'c' : 'p', | ||
60 | substream->number); | ||
61 | } | ||
62 | #define DEBUG_NAME(substream, name) char name[16]; pcm_debug_name(substream, name, sizeof(name)) | ||
63 | #else | ||
64 | #define pcm_debug_name(s, n, l) do { } while (0) | ||
65 | #define DEBUG_NAME(name, substream) do { } while (0) | ||
66 | #endif | ||
67 | |||
49 | #if defined CONFIG_SND_DEBUG_VERBOSE | 68 | #if defined CONFIG_SND_DEBUG_VERBOSE |
50 | /** | 69 | /** |
51 | * snd_printddd - very verbose debug printk | 70 | * snd_printddd - very verbose debug printk |
@@ -58,7 +77,7 @@ MODULE_DESCRIPTION("AudioScience ALSA ASI5000 ASI6000 ASI87xx ASI89xx"); | |||
58 | #define snd_printddd(format, args...) \ | 77 | #define snd_printddd(format, args...) \ |
59 | __snd_printk(3, __FILE__, __LINE__, format, ##args) | 78 | __snd_printk(3, __FILE__, __LINE__, format, ##args) |
60 | #else | 79 | #else |
61 | #define snd_printddd(format, args...) do { } while (0) | 80 | #define snd_printddd(format, args...) do { } while (0) |
62 | #endif | 81 | #endif |
63 | 82 | ||
64 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* index 0-MAX */ | 83 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* index 0-MAX */ |
@@ -101,13 +120,6 @@ static int adapter_fs = DEFAULT_SAMPLERATE; | |||
101 | #define PERIOD_BYTES_MIN 2048 | 120 | #define PERIOD_BYTES_MIN 2048 |
102 | #define BUFFER_BYTES_MAX (512 * 1024) | 121 | #define BUFFER_BYTES_MAX (512 * 1024) |
103 | 122 | ||
104 | /* convert stream to character */ | ||
105 | #define SCHR(s) ((s == SNDRV_PCM_STREAM_PLAYBACK) ? 'P' : 'C') | ||
106 | |||
107 | /*#define TIMER_MILLISECONDS 20 | ||
108 | #define FORCE_TIMER_JIFFIES ((TIMER_MILLISECONDS * HZ + 999)/1000) | ||
109 | */ | ||
110 | |||
111 | #define MAX_CLOCKSOURCES (HPI_SAMPLECLOCK_SOURCE_LAST + 1 + 7) | 123 | #define MAX_CLOCKSOURCES (HPI_SAMPLECLOCK_SOURCE_LAST + 1 + 7) |
112 | 124 | ||
113 | struct clk_source { | 125 | struct clk_source { |
@@ -136,7 +148,7 @@ struct snd_card_asihpi { | |||
136 | u32 h_mixer; | 148 | u32 h_mixer; |
137 | struct clk_cache cc; | 149 | struct clk_cache cc; |
138 | 150 | ||
139 | u16 support_mmap; | 151 | u16 can_dma; |
140 | u16 support_grouping; | 152 | u16 support_grouping; |
141 | u16 support_mrx; | 153 | u16 support_mrx; |
142 | u16 update_interval_frames; | 154 | u16 update_interval_frames; |
@@ -155,6 +167,7 @@ struct snd_card_asihpi_pcm { | |||
155 | unsigned int pcm_buf_host_rw_ofs; /* Host R/W pos */ | 167 | unsigned int pcm_buf_host_rw_ofs; /* Host R/W pos */ |
156 | unsigned int pcm_buf_dma_ofs; /* DMA R/W offset in buffer */ | 168 | unsigned int pcm_buf_dma_ofs; /* DMA R/W offset in buffer */ |
157 | unsigned int pcm_buf_elapsed_dma_ofs; /* DMA R/W offset in buffer */ | 169 | unsigned int pcm_buf_elapsed_dma_ofs; /* DMA R/W offset in buffer */ |
170 | unsigned int drained_count; | ||
158 | struct snd_pcm_substream *substream; | 171 | struct snd_pcm_substream *substream; |
159 | u32 h_stream; | 172 | u32 h_stream; |
160 | struct hpi_format format; | 173 | struct hpi_format format; |
@@ -288,19 +301,26 @@ static u16 handle_error(u16 err, int line, char *filename) | |||
288 | #define hpi_handle_error(x) handle_error(x, __LINE__, __FILE__) | 301 | #define hpi_handle_error(x) handle_error(x, __LINE__, __FILE__) |
289 | 302 | ||
290 | /***************************** GENERAL PCM ****************/ | 303 | /***************************** GENERAL PCM ****************/ |
291 | static void print_hwparams(struct snd_pcm_hw_params *p) | 304 | |
305 | static void print_hwparams(struct snd_pcm_substream *substream, | ||
306 | struct snd_pcm_hw_params *p) | ||
292 | { | 307 | { |
293 | snd_printd("HWPARAMS \n"); | 308 | DEBUG_NAME(substream, name); |
294 | snd_printd("samplerate %d \n", params_rate(p)); | 309 | snd_printd("%s HWPARAMS\n", name); |
295 | snd_printd("Channels %d \n", params_channels(p)); | 310 | snd_printd(" samplerate %d Hz\n", params_rate(p)); |
296 | snd_printd("Format %d \n", params_format(p)); | 311 | snd_printd(" channels %d\n", params_channels(p)); |
297 | snd_printd("subformat %d \n", params_subformat(p)); | 312 | snd_printd(" format %d\n", params_format(p)); |
298 | snd_printd("Buffer bytes %d \n", params_buffer_bytes(p)); | 313 | snd_printd(" subformat %d\n", params_subformat(p)); |
299 | snd_printd("Period bytes %d \n", params_period_bytes(p)); | 314 | snd_printd(" buffer %d B\n", params_buffer_bytes(p)); |
300 | snd_printd("access %d \n", params_access(p)); | 315 | snd_printd(" period %d B\n", params_period_bytes(p)); |
301 | snd_printd("period_size %d \n", params_period_size(p)); | 316 | snd_printd(" access %d\n", params_access(p)); |
302 | snd_printd("periods %d \n", params_periods(p)); | 317 | snd_printd(" period_size %d\n", params_period_size(p)); |
303 | snd_printd("buffer_size %d \n", params_buffer_size(p)); | 318 | snd_printd(" periods %d\n", params_periods(p)); |
319 | snd_printd(" buffer_size %d\n", params_buffer_size(p)); | ||
320 | snd_printd(" %d B/s\n", params_rate(p) * | ||
321 | params_channels(p) * | ||
322 | snd_pcm_format_width(params_format(p)) / 8); | ||
323 | |||
304 | } | 324 | } |
305 | 325 | ||
306 | static snd_pcm_format_t hpi_to_alsa_formats[] = { | 326 | static snd_pcm_format_t hpi_to_alsa_formats[] = { |
@@ -451,7 +471,7 @@ static int snd_card_asihpi_pcm_hw_params(struct snd_pcm_substream *substream, | |||
451 | int width; | 471 | int width; |
452 | unsigned int bytes_per_sec; | 472 | unsigned int bytes_per_sec; |
453 | 473 | ||
454 | print_hwparams(params); | 474 | print_hwparams(substream, params); |
455 | err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); | 475 | err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); |
456 | if (err < 0) | 476 | if (err < 0) |
457 | return err; | 477 | return err; |
@@ -459,10 +479,6 @@ static int snd_card_asihpi_pcm_hw_params(struct snd_pcm_substream *substream, | |||
459 | if (err) | 479 | if (err) |
460 | return err; | 480 | return err; |
461 | 481 | ||
462 | snd_printdd("format %d, %d chans, %d_hz\n", | ||
463 | format, params_channels(params), | ||
464 | params_rate(params)); | ||
465 | |||
466 | hpi_handle_error(hpi_format_create(&dpcm->format, | 482 | hpi_handle_error(hpi_format_create(&dpcm->format, |
467 | params_channels(params), | 483 | params_channels(params), |
468 | format, params_rate(params), 0, 0)); | 484 | format, params_rate(params), 0, 0)); |
@@ -477,8 +493,7 @@ static int snd_card_asihpi_pcm_hw_params(struct snd_pcm_substream *substream, | |||
477 | } | 493 | } |
478 | 494 | ||
479 | dpcm->hpi_buffer_attached = 0; | 495 | dpcm->hpi_buffer_attached = 0; |
480 | if (card->support_mmap) { | 496 | if (card->can_dma) { |
481 | |||
482 | err = hpi_stream_host_buffer_attach(dpcm->h_stream, | 497 | err = hpi_stream_host_buffer_attach(dpcm->h_stream, |
483 | params_buffer_bytes(params), runtime->dma_addr); | 498 | params_buffer_bytes(params), runtime->dma_addr); |
484 | if (err == 0) { | 499 | if (err == 0) { |
@@ -509,8 +524,6 @@ static int snd_card_asihpi_pcm_hw_params(struct snd_pcm_substream *substream, | |||
509 | dpcm->bytes_per_sec = bytes_per_sec; | 524 | dpcm->bytes_per_sec = bytes_per_sec; |
510 | dpcm->buffer_bytes = params_buffer_bytes(params); | 525 | dpcm->buffer_bytes = params_buffer_bytes(params); |
511 | dpcm->period_bytes = params_period_bytes(params); | 526 | dpcm->period_bytes = params_period_bytes(params); |
512 | snd_printdd("buffer_bytes=%d, period_bytes=%d, bps=%d\n", | ||
513 | dpcm->buffer_bytes, dpcm->period_bytes, bytes_per_sec); | ||
514 | 527 | ||
515 | return 0; | 528 | return 0; |
516 | } | 529 | } |
@@ -564,9 +577,10 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream, | |||
564 | struct snd_card_asihpi *card = snd_pcm_substream_chip(substream); | 577 | struct snd_card_asihpi *card = snd_pcm_substream_chip(substream); |
565 | struct snd_pcm_substream *s; | 578 | struct snd_pcm_substream *s; |
566 | u16 e; | 579 | u16 e; |
580 | DEBUG_NAME(substream, name); | ||
581 | |||
582 | snd_printdd("%s trigger\n", name); | ||
567 | 583 | ||
568 | snd_printdd("%c%d trigger\n", | ||
569 | SCHR(substream->stream), substream->number); | ||
570 | switch (cmd) { | 584 | switch (cmd) { |
571 | case SNDRV_PCM_TRIGGER_START: | 585 | case SNDRV_PCM_TRIGGER_START: |
572 | snd_pcm_group_for_each_entry(s, substream) { | 586 | snd_pcm_group_for_each_entry(s, substream) { |
@@ -580,8 +594,8 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream, | |||
580 | if (substream->stream != s->stream) | 594 | if (substream->stream != s->stream) |
581 | continue; | 595 | continue; |
582 | 596 | ||
583 | if ((s->stream == SNDRV_PCM_STREAM_PLAYBACK) && | 597 | ds->drained_count = 0; |
584 | (card->support_mmap)) { | 598 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
585 | /* How do I know how much valid data is present | 599 | /* How do I know how much valid data is present |
586 | * in buffer? Must be at least one period! | 600 | * in buffer? Must be at least one period! |
587 | * Guessing 2 periods, but if | 601 | * Guessing 2 periods, but if |
@@ -599,9 +613,7 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream, | |||
599 | } | 613 | } |
600 | 614 | ||
601 | if (card->support_grouping) { | 615 | if (card->support_grouping) { |
602 | snd_printdd("\t%c%d group\n", | 616 | snd_printdd("%d group\n", s->number); |
603 | SCHR(s->stream), | ||
604 | s->number); | ||
605 | e = hpi_stream_group_add( | 617 | e = hpi_stream_group_add( |
606 | dpcm->h_stream, | 618 | dpcm->h_stream, |
607 | ds->h_stream); | 619 | ds->h_stream); |
@@ -618,7 +630,7 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream, | |||
618 | /* start the master stream */ | 630 | /* start the master stream */ |
619 | snd_card_asihpi_pcm_timer_start(substream); | 631 | snd_card_asihpi_pcm_timer_start(substream); |
620 | if ((substream->stream == SNDRV_PCM_STREAM_CAPTURE) || | 632 | if ((substream->stream == SNDRV_PCM_STREAM_CAPTURE) || |
621 | !card->support_mmap) | 633 | !card->can_dma) |
622 | hpi_handle_error(hpi_stream_start(dpcm->h_stream)); | 634 | hpi_handle_error(hpi_stream_start(dpcm->h_stream)); |
623 | break; | 635 | break; |
624 | 636 | ||
@@ -636,9 +648,7 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream, | |||
636 | s->runtime->status->state = SNDRV_PCM_STATE_SETUP; | 648 | s->runtime->status->state = SNDRV_PCM_STATE_SETUP; |
637 | 649 | ||
638 | if (card->support_grouping) { | 650 | if (card->support_grouping) { |
639 | snd_printdd("\t%c%d group\n", | 651 | snd_printdd("%d group\n", s->number); |
640 | SCHR(s->stream), | ||
641 | s->number); | ||
642 | snd_pcm_trigger_done(s, substream); | 652 | snd_pcm_trigger_done(s, substream); |
643 | } else | 653 | } else |
644 | break; | 654 | break; |
@@ -732,9 +742,9 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
732 | int loops = 0; | 742 | int loops = 0; |
733 | u16 state; | 743 | u16 state; |
734 | u32 buffer_size, bytes_avail, samples_played, on_card_bytes; | 744 | u32 buffer_size, bytes_avail, samples_played, on_card_bytes; |
745 | DEBUG_NAME(substream, name); | ||
735 | 746 | ||
736 | snd_printdd("%c%d snd_card_asihpi_timer_function\n", | 747 | snd_printdd("%s snd_card_asihpi_timer_function\n", name); |
737 | SCHR(substream->stream), substream->number); | ||
738 | 748 | ||
739 | /* find minimum newdata and buffer pos in group */ | 749 | /* find minimum newdata and buffer pos in group */ |
740 | snd_pcm_group_for_each_entry(s, substream) { | 750 | snd_pcm_group_for_each_entry(s, substream) { |
@@ -756,6 +766,9 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
756 | /* number of bytes in on-card buffer */ | 766 | /* number of bytes in on-card buffer */ |
757 | runtime->delay = on_card_bytes; | 767 | runtime->delay = on_card_bytes; |
758 | 768 | ||
769 | if (!card->can_dma) | ||
770 | on_card_bytes = bytes_avail; | ||
771 | |||
759 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 772 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
760 | pcm_buf_dma_ofs = ds->pcm_buf_host_rw_ofs - bytes_avail; | 773 | pcm_buf_dma_ofs = ds->pcm_buf_host_rw_ofs - bytes_avail; |
761 | if (state == HPI_STATE_STOPPED) { | 774 | if (state == HPI_STATE_STOPPED) { |
@@ -763,12 +776,18 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
763 | (on_card_bytes < ds->pcm_buf_host_rw_ofs)) { | 776 | (on_card_bytes < ds->pcm_buf_host_rw_ofs)) { |
764 | hpi_handle_error(hpi_stream_start(ds->h_stream)); | 777 | hpi_handle_error(hpi_stream_start(ds->h_stream)); |
765 | snd_printdd("P%d start\n", s->number); | 778 | snd_printdd("P%d start\n", s->number); |
779 | ds->drained_count = 0; | ||
766 | } | 780 | } |
767 | } else if (state == HPI_STATE_DRAINED) { | 781 | } else if (state == HPI_STATE_DRAINED) { |
768 | snd_printd(KERN_WARNING "P%d drained\n", | 782 | snd_printd(KERN_WARNING "P%d drained\n", |
769 | s->number); | 783 | s->number); |
770 | /*snd_pcm_stop(s, SNDRV_PCM_STATE_XRUN); | 784 | ds->drained_count++; |
771 | continue; */ | 785 | if (ds->drained_count > 2) { |
786 | snd_pcm_stop(s, SNDRV_PCM_STATE_XRUN); | ||
787 | continue; | ||
788 | } | ||
789 | } else { | ||
790 | ds->drained_count = 0; | ||
772 | } | 791 | } |
773 | } else | 792 | } else |
774 | pcm_buf_dma_ofs = bytes_avail + ds->pcm_buf_host_rw_ofs; | 793 | pcm_buf_dma_ofs = bytes_avail + ds->pcm_buf_host_rw_ofs; |
@@ -786,16 +805,18 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
786 | newdata); | 805 | newdata); |
787 | } | 806 | } |
788 | 807 | ||
789 | snd_printdd("hw_ptr x%04lX, appl_ptr x%04lX\n", | 808 | snd_printdd("hw_ptr 0x%04lX, appl_ptr 0x%04lX\n", |
790 | (unsigned long)frames_to_bytes(runtime, | 809 | (unsigned long)frames_to_bytes(runtime, |
791 | runtime->status->hw_ptr), | 810 | runtime->status->hw_ptr), |
792 | (unsigned long)frames_to_bytes(runtime, | 811 | (unsigned long)frames_to_bytes(runtime, |
793 | runtime->control->appl_ptr)); | 812 | runtime->control->appl_ptr)); |
794 | 813 | ||
795 | snd_printdd("%d %c%d S=%d, rw=%04X, dma=x%04X, left=x%04X," | 814 | snd_printdd("%d S=%d, " |
796 | " aux=x%04X space=x%04X\n", | 815 | "rw=0x%04X, dma=0x%04X, left=0x%04X, " |
797 | loops, SCHR(s->stream), s->number, | 816 | "aux=0x%04X space=0x%04X\n", |
798 | state, ds->pcm_buf_host_rw_ofs, pcm_buf_dma_ofs, (int)bytes_avail, | 817 | s->number, state, |
818 | ds->pcm_buf_host_rw_ofs, pcm_buf_dma_ofs, | ||
819 | (int)bytes_avail, | ||
799 | (int)on_card_bytes, buffer_size-bytes_avail); | 820 | (int)on_card_bytes, buffer_size-bytes_avail); |
800 | loops++; | 821 | loops++; |
801 | } | 822 | } |
@@ -814,7 +835,7 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
814 | 835 | ||
815 | next_jiffies = max(next_jiffies, 1U); | 836 | next_jiffies = max(next_jiffies, 1U); |
816 | dpcm->timer.expires = jiffies + next_jiffies; | 837 | dpcm->timer.expires = jiffies + next_jiffies; |
817 | snd_printdd("jif %d buf pos x%04X newdata x%04X xfer x%04X\n", | 838 | snd_printdd("jif %d buf pos 0x%04X newdata 0x%04X xfer 0x%04X\n", |
818 | next_jiffies, pcm_buf_dma_ofs, newdata, xfercount); | 839 | next_jiffies, pcm_buf_dma_ofs, newdata, xfercount); |
819 | 840 | ||
820 | snd_pcm_group_for_each_entry(s, substream) { | 841 | snd_pcm_group_for_each_entry(s, substream) { |
@@ -826,30 +847,63 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
826 | 847 | ||
827 | ds->pcm_buf_dma_ofs = pcm_buf_dma_ofs; | 848 | ds->pcm_buf_dma_ofs = pcm_buf_dma_ofs; |
828 | 849 | ||
829 | if (xfercount && (on_card_bytes <= ds->period_bytes)) { | 850 | if (xfercount && |
830 | if (card->support_mmap) { | 851 | /* Limit use of on card fifo for playback */ |
831 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 852 | ((on_card_bytes <= ds->period_bytes) || |
832 | snd_printddd("P%d write x%04x\n", | 853 | (s->stream == SNDRV_PCM_STREAM_CAPTURE))) |
854 | |||
855 | { | ||
856 | |||
857 | unsigned int buf_ofs = ds->pcm_buf_host_rw_ofs % ds->buffer_bytes; | ||
858 | unsigned int xfer1, xfer2; | ||
859 | char *pd = &s->runtime->dma_area[buf_ofs]; | ||
860 | |||
861 | if (card->can_dma) { /* buffer wrap is handled at lower level */ | ||
862 | xfer1 = xfercount; | ||
863 | xfer2 = 0; | ||
864 | } else { | ||
865 | xfer1 = min(xfercount, ds->buffer_bytes - buf_ofs); | ||
866 | xfer2 = xfercount - xfer1; | ||
867 | } | ||
868 | |||
869 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { | ||
870 | snd_printddd("P%d write1 0x%04X 0x%04X\n", | ||
871 | s->number, xfer1, buf_ofs); | ||
872 | hpi_handle_error( | ||
873 | hpi_outstream_write_buf( | ||
874 | ds->h_stream, pd, xfer1, | ||
875 | &ds->format)); | ||
876 | |||
877 | if (xfer2) { | ||
878 | pd = s->runtime->dma_area; | ||
879 | |||
880 | snd_printddd("P%d write2 0x%04X 0x%04X\n", | ||
833 | s->number, | 881 | s->number, |
834 | ds->period_bytes); | 882 | xfercount - xfer1, buf_ofs); |
835 | hpi_handle_error( | 883 | hpi_handle_error( |
836 | hpi_outstream_write_buf( | 884 | hpi_outstream_write_buf( |
837 | ds->h_stream, | 885 | ds->h_stream, pd, |
838 | &s->runtime-> | 886 | xfercount - xfer1, |
839 | dma_area[0], | ||
840 | xfercount, | ||
841 | &ds->format)); | 887 | &ds->format)); |
842 | } else { | 888 | } |
843 | snd_printddd("C%d read x%04x\n", | 889 | } else { |
844 | s->number, | 890 | snd_printddd("C%d read1 0x%04x\n", |
845 | xfercount); | 891 | s->number, xfer1); |
892 | hpi_handle_error( | ||
893 | hpi_instream_read_buf( | ||
894 | ds->h_stream, | ||
895 | pd, xfer1)); | ||
896 | if (xfer2) { | ||
897 | pd = s->runtime->dma_area; | ||
898 | snd_printddd("C%d read2 0x%04x\n", | ||
899 | s->number, xfer2); | ||
846 | hpi_handle_error( | 900 | hpi_handle_error( |
847 | hpi_instream_read_buf( | 901 | hpi_instream_read_buf( |
848 | ds->h_stream, | 902 | ds->h_stream, |
849 | NULL, xfercount)); | 903 | pd, xfer2)); |
850 | } | 904 | } |
851 | ds->pcm_buf_host_rw_ofs = ds->pcm_buf_host_rw_ofs + xfercount; | 905 | } |
852 | } /* else R/W will be handled by read/write callbacks */ | 906 | ds->pcm_buf_host_rw_ofs = ds->pcm_buf_host_rw_ofs + xfercount; |
853 | ds->pcm_buf_elapsed_dma_ofs = pcm_buf_dma_ofs; | 907 | ds->pcm_buf_elapsed_dma_ofs = pcm_buf_dma_ofs; |
854 | snd_pcm_period_elapsed(s); | 908 | snd_pcm_period_elapsed(s); |
855 | } | 909 | } |
@@ -863,7 +917,7 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
863 | static int snd_card_asihpi_playback_ioctl(struct snd_pcm_substream *substream, | 917 | static int snd_card_asihpi_playback_ioctl(struct snd_pcm_substream *substream, |
864 | unsigned int cmd, void *arg) | 918 | unsigned int cmd, void *arg) |
865 | { | 919 | { |
866 | snd_printdd(KERN_INFO "Playback ioctl %d\n", cmd); | 920 | snd_printddd(KERN_INFO "P%d ioctl %d\n", substream->number, cmd); |
867 | return snd_pcm_lib_ioctl(substream, cmd, arg); | 921 | return snd_pcm_lib_ioctl(substream, cmd, arg); |
868 | } | 922 | } |
869 | 923 | ||
@@ -873,7 +927,7 @@ static int snd_card_asihpi_playback_prepare(struct snd_pcm_substream * | |||
873 | struct snd_pcm_runtime *runtime = substream->runtime; | 927 | struct snd_pcm_runtime *runtime = substream->runtime; |
874 | struct snd_card_asihpi_pcm *dpcm = runtime->private_data; | 928 | struct snd_card_asihpi_pcm *dpcm = runtime->private_data; |
875 | 929 | ||
876 | snd_printdd("playback prepare %d\n", substream->number); | 930 | snd_printdd("P%d prepare\n", substream->number); |
877 | 931 | ||
878 | hpi_handle_error(hpi_outstream_reset(dpcm->h_stream)); | 932 | hpi_handle_error(hpi_outstream_reset(dpcm->h_stream)); |
879 | dpcm->pcm_buf_host_rw_ofs = 0; | 933 | dpcm->pcm_buf_host_rw_ofs = 0; |
@@ -890,7 +944,7 @@ snd_card_asihpi_playback_pointer(struct snd_pcm_substream *substream) | |||
890 | snd_pcm_uframes_t ptr; | 944 | snd_pcm_uframes_t ptr; |
891 | 945 | ||
892 | ptr = bytes_to_frames(runtime, dpcm->pcm_buf_dma_ofs % dpcm->buffer_bytes); | 946 | ptr = bytes_to_frames(runtime, dpcm->pcm_buf_dma_ofs % dpcm->buffer_bytes); |
893 | snd_printddd("playback_pointer=x%04lx\n", (unsigned long)ptr); | 947 | snd_printddd("P%d pointer = 0x%04lx\n", substream->number, (unsigned long)ptr); |
894 | return ptr; | 948 | return ptr; |
895 | } | 949 | } |
896 | 950 | ||
@@ -986,11 +1040,9 @@ static int snd_card_asihpi_playback_open(struct snd_pcm_substream *substream) | |||
986 | SNDRV_PCM_INFO_DOUBLE | | 1040 | SNDRV_PCM_INFO_DOUBLE | |
987 | SNDRV_PCM_INFO_BATCH | | 1041 | SNDRV_PCM_INFO_BATCH | |
988 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 1042 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
989 | SNDRV_PCM_INFO_PAUSE; | 1043 | SNDRV_PCM_INFO_PAUSE | |
990 | 1044 | SNDRV_PCM_INFO_MMAP | | |
991 | if (card->support_mmap) | 1045 | SNDRV_PCM_INFO_MMAP_VALID; |
992 | snd_card_asihpi_playback.info |= SNDRV_PCM_INFO_MMAP | | ||
993 | SNDRV_PCM_INFO_MMAP_VALID; | ||
994 | 1046 | ||
995 | if (card->support_grouping) | 1047 | if (card->support_grouping) |
996 | snd_card_asihpi_playback.info |= SNDRV_PCM_INFO_SYNC_START; | 1048 | snd_card_asihpi_playback.info |= SNDRV_PCM_INFO_SYNC_START; |
@@ -998,7 +1050,7 @@ static int snd_card_asihpi_playback_open(struct snd_pcm_substream *substream) | |||
998 | /* struct is copied, so can create initializer dynamically */ | 1050 | /* struct is copied, so can create initializer dynamically */ |
999 | runtime->hw = snd_card_asihpi_playback; | 1051 | runtime->hw = snd_card_asihpi_playback; |
1000 | 1052 | ||
1001 | if (card->support_mmap) | 1053 | if (card->can_dma) |
1002 | err = snd_pcm_hw_constraint_pow2(runtime, 0, | 1054 | err = snd_pcm_hw_constraint_pow2(runtime, 0, |
1003 | SNDRV_PCM_HW_PARAM_BUFFER_BYTES); | 1055 | SNDRV_PCM_HW_PARAM_BUFFER_BYTES); |
1004 | if (err < 0) | 1056 | if (err < 0) |
@@ -1028,58 +1080,6 @@ static int snd_card_asihpi_playback_close(struct snd_pcm_substream *substream) | |||
1028 | return 0; | 1080 | return 0; |
1029 | } | 1081 | } |
1030 | 1082 | ||
1031 | static int snd_card_asihpi_playback_copy(struct snd_pcm_substream *substream, | ||
1032 | int channel, | ||
1033 | snd_pcm_uframes_t pos, | ||
1034 | void __user *src, | ||
1035 | snd_pcm_uframes_t count) | ||
1036 | { | ||
1037 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
1038 | struct snd_card_asihpi_pcm *dpcm = runtime->private_data; | ||
1039 | unsigned int len; | ||
1040 | |||
1041 | len = frames_to_bytes(runtime, count); | ||
1042 | |||
1043 | if (copy_from_user(runtime->dma_area, src, len)) | ||
1044 | return -EFAULT; | ||
1045 | |||
1046 | snd_printddd("playback copy%d %u bytes\n", | ||
1047 | substream->number, len); | ||
1048 | |||
1049 | hpi_handle_error(hpi_outstream_write_buf(dpcm->h_stream, | ||
1050 | runtime->dma_area, len, &dpcm->format)); | ||
1051 | |||
1052 | dpcm->pcm_buf_host_rw_ofs += len; | ||
1053 | |||
1054 | return 0; | ||
1055 | } | ||
1056 | |||
1057 | static int snd_card_asihpi_playback_silence(struct snd_pcm_substream * | ||
1058 | substream, int channel, | ||
1059 | snd_pcm_uframes_t pos, | ||
1060 | snd_pcm_uframes_t count) | ||
1061 | { | ||
1062 | /* Usually writes silence to DMA buffer, which should be overwritten | ||
1063 | by real audio later. Our fifos cannot be overwritten, and are not | ||
1064 | free-running DMAs. Silence is output on fifo underflow. | ||
1065 | This callback is still required to allow the copy callback to be used. | ||
1066 | */ | ||
1067 | return 0; | ||
1068 | } | ||
1069 | |||
1070 | static struct snd_pcm_ops snd_card_asihpi_playback_ops = { | ||
1071 | .open = snd_card_asihpi_playback_open, | ||
1072 | .close = snd_card_asihpi_playback_close, | ||
1073 | .ioctl = snd_card_asihpi_playback_ioctl, | ||
1074 | .hw_params = snd_card_asihpi_pcm_hw_params, | ||
1075 | .hw_free = snd_card_asihpi_hw_free, | ||
1076 | .prepare = snd_card_asihpi_playback_prepare, | ||
1077 | .trigger = snd_card_asihpi_trigger, | ||
1078 | .pointer = snd_card_asihpi_playback_pointer, | ||
1079 | .copy = snd_card_asihpi_playback_copy, | ||
1080 | .silence = snd_card_asihpi_playback_silence, | ||
1081 | }; | ||
1082 | |||
1083 | static struct snd_pcm_ops snd_card_asihpi_playback_mmap_ops = { | 1083 | static struct snd_pcm_ops snd_card_asihpi_playback_mmap_ops = { |
1084 | .open = snd_card_asihpi_playback_open, | 1084 | .open = snd_card_asihpi_playback_open, |
1085 | .close = snd_card_asihpi_playback_close, | 1085 | .close = snd_card_asihpi_playback_close, |
@@ -1211,18 +1211,16 @@ static int snd_card_asihpi_capture_open(struct snd_pcm_substream *substream) | |||
1211 | snd_card_asihpi_capture_format(card, dpcm->h_stream, | 1211 | snd_card_asihpi_capture_format(card, dpcm->h_stream, |
1212 | &snd_card_asihpi_capture); | 1212 | &snd_card_asihpi_capture); |
1213 | snd_card_asihpi_pcm_samplerates(card, &snd_card_asihpi_capture); | 1213 | snd_card_asihpi_pcm_samplerates(card, &snd_card_asihpi_capture); |
1214 | snd_card_asihpi_capture.info = SNDRV_PCM_INFO_INTERLEAVED; | 1214 | snd_card_asihpi_capture.info = SNDRV_PCM_INFO_INTERLEAVED | |
1215 | 1215 | SNDRV_PCM_INFO_MMAP | | |
1216 | if (card->support_mmap) | 1216 | SNDRV_PCM_INFO_MMAP_VALID; |
1217 | snd_card_asihpi_capture.info |= SNDRV_PCM_INFO_MMAP | | ||
1218 | SNDRV_PCM_INFO_MMAP_VALID; | ||
1219 | 1217 | ||
1220 | if (card->support_grouping) | 1218 | if (card->support_grouping) |
1221 | snd_card_asihpi_capture.info |= SNDRV_PCM_INFO_SYNC_START; | 1219 | snd_card_asihpi_capture.info |= SNDRV_PCM_INFO_SYNC_START; |
1222 | 1220 | ||
1223 | runtime->hw = snd_card_asihpi_capture; | 1221 | runtime->hw = snd_card_asihpi_capture; |
1224 | 1222 | ||
1225 | if (card->support_mmap) | 1223 | if (card->can_dma) |
1226 | err = snd_pcm_hw_constraint_pow2(runtime, 0, | 1224 | err = snd_pcm_hw_constraint_pow2(runtime, 0, |
1227 | SNDRV_PCM_HW_PARAM_BUFFER_BYTES); | 1225 | SNDRV_PCM_HW_PARAM_BUFFER_BYTES); |
1228 | if (err < 0) | 1226 | if (err < 0) |
@@ -1246,28 +1244,6 @@ static int snd_card_asihpi_capture_close(struct snd_pcm_substream *substream) | |||
1246 | return 0; | 1244 | return 0; |
1247 | } | 1245 | } |
1248 | 1246 | ||
1249 | static int snd_card_asihpi_capture_copy(struct snd_pcm_substream *substream, | ||
1250 | int channel, snd_pcm_uframes_t pos, | ||
1251 | void __user *dst, snd_pcm_uframes_t count) | ||
1252 | { | ||
1253 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
1254 | struct snd_card_asihpi_pcm *dpcm = runtime->private_data; | ||
1255 | u32 len; | ||
1256 | |||
1257 | len = frames_to_bytes(runtime, count); | ||
1258 | |||
1259 | snd_printddd("capture copy%d %d bytes\n", substream->number, len); | ||
1260 | hpi_handle_error(hpi_instream_read_buf(dpcm->h_stream, | ||
1261 | runtime->dma_area, len)); | ||
1262 | |||
1263 | dpcm->pcm_buf_host_rw_ofs = dpcm->pcm_buf_host_rw_ofs + len; | ||
1264 | |||
1265 | if (copy_to_user(dst, runtime->dma_area, len)) | ||
1266 | return -EFAULT; | ||
1267 | |||
1268 | return 0; | ||
1269 | } | ||
1270 | |||
1271 | static struct snd_pcm_ops snd_card_asihpi_capture_mmap_ops = { | 1247 | static struct snd_pcm_ops snd_card_asihpi_capture_mmap_ops = { |
1272 | .open = snd_card_asihpi_capture_open, | 1248 | .open = snd_card_asihpi_capture_open, |
1273 | .close = snd_card_asihpi_capture_close, | 1249 | .close = snd_card_asihpi_capture_close, |
@@ -1279,18 +1255,6 @@ static struct snd_pcm_ops snd_card_asihpi_capture_mmap_ops = { | |||
1279 | .pointer = snd_card_asihpi_capture_pointer, | 1255 | .pointer = snd_card_asihpi_capture_pointer, |
1280 | }; | 1256 | }; |
1281 | 1257 | ||
1282 | static struct snd_pcm_ops snd_card_asihpi_capture_ops = { | ||
1283 | .open = snd_card_asihpi_capture_open, | ||
1284 | .close = snd_card_asihpi_capture_close, | ||
1285 | .ioctl = snd_card_asihpi_capture_ioctl, | ||
1286 | .hw_params = snd_card_asihpi_pcm_hw_params, | ||
1287 | .hw_free = snd_card_asihpi_hw_free, | ||
1288 | .prepare = snd_card_asihpi_capture_prepare, | ||
1289 | .trigger = snd_card_asihpi_trigger, | ||
1290 | .pointer = snd_card_asihpi_capture_pointer, | ||
1291 | .copy = snd_card_asihpi_capture_copy | ||
1292 | }; | ||
1293 | |||
1294 | static int __devinit snd_card_asihpi_pcm_new(struct snd_card_asihpi *asihpi, | 1258 | static int __devinit snd_card_asihpi_pcm_new(struct snd_card_asihpi *asihpi, |
1295 | int device, int substreams) | 1259 | int device, int substreams) |
1296 | { | 1260 | { |
@@ -1303,17 +1267,10 @@ static int __devinit snd_card_asihpi_pcm_new(struct snd_card_asihpi *asihpi, | |||
1303 | if (err < 0) | 1267 | if (err < 0) |
1304 | return err; | 1268 | return err; |
1305 | /* pointer to ops struct is stored, dont change ops afterwards! */ | 1269 | /* pointer to ops struct is stored, dont change ops afterwards! */ |
1306 | if (asihpi->support_mmap) { | ||
1307 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, | 1270 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, |
1308 | &snd_card_asihpi_playback_mmap_ops); | 1271 | &snd_card_asihpi_playback_mmap_ops); |
1309 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, | 1272 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, |
1310 | &snd_card_asihpi_capture_mmap_ops); | 1273 | &snd_card_asihpi_capture_mmap_ops); |
1311 | } else { | ||
1312 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, | ||
1313 | &snd_card_asihpi_playback_ops); | ||
1314 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, | ||
1315 | &snd_card_asihpi_capture_ops); | ||
1316 | } | ||
1317 | 1274 | ||
1318 | pcm->private_data = asihpi; | 1275 | pcm->private_data = asihpi; |
1319 | pcm->info_flags = 0; | 1276 | pcm->info_flags = 0; |
@@ -1413,14 +1370,16 @@ static void asihpi_ctl_init(struct snd_kcontrol_new *snd_control, | |||
1413 | struct hpi_control *hpi_ctl, | 1370 | struct hpi_control *hpi_ctl, |
1414 | char *name) | 1371 | char *name) |
1415 | { | 1372 | { |
1416 | char *dir = ""; | 1373 | char *dir; |
1417 | memset(snd_control, 0, sizeof(*snd_control)); | 1374 | memset(snd_control, 0, sizeof(*snd_control)); |
1418 | snd_control->name = hpi_ctl->name; | 1375 | snd_control->name = hpi_ctl->name; |
1419 | snd_control->private_value = hpi_ctl->h_control; | 1376 | snd_control->private_value = hpi_ctl->h_control; |
1420 | snd_control->iface = SNDRV_CTL_ELEM_IFACE_MIXER; | 1377 | snd_control->iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
1421 | snd_control->index = 0; | 1378 | snd_control->index = 0; |
1422 | 1379 | ||
1423 | if (hpi_ctl->dst_node_type + HPI_DESTNODE_NONE == HPI_DESTNODE_ISTREAM) | 1380 | if (hpi_ctl->src_node_type + HPI_SOURCENODE_NONE == HPI_SOURCENODE_CLOCK_SOURCE) |
1381 | dir = ""; /* clock is neither capture nor playback */ | ||
1382 | else if (hpi_ctl->dst_node_type + HPI_DESTNODE_NONE == HPI_DESTNODE_ISTREAM) | ||
1424 | dir = "Capture "; /* On or towards a PCM capture destination*/ | 1383 | dir = "Capture "; /* On or towards a PCM capture destination*/ |
1425 | else if ((hpi_ctl->src_node_type + HPI_SOURCENODE_NONE != HPI_SOURCENODE_OSTREAM) && | 1384 | else if ((hpi_ctl->src_node_type + HPI_SOURCENODE_NONE != HPI_SOURCENODE_OSTREAM) && |
1426 | (!hpi_ctl->dst_node_type)) | 1385 | (!hpi_ctl->dst_node_type)) |
@@ -1433,7 +1392,7 @@ static void asihpi_ctl_init(struct snd_kcontrol_new *snd_control, | |||
1433 | dir = "Playback "; /* PCM Playback source, or output node */ | 1392 | dir = "Playback "; /* PCM Playback source, or output node */ |
1434 | 1393 | ||
1435 | if (hpi_ctl->src_node_type && hpi_ctl->dst_node_type) | 1394 | if (hpi_ctl->src_node_type && hpi_ctl->dst_node_type) |
1436 | sprintf(hpi_ctl->name, "%s%d %s%d %s%s", | 1395 | sprintf(hpi_ctl->name, "%s %d %s %d %s%s", |
1437 | asihpi_src_names[hpi_ctl->src_node_type], | 1396 | asihpi_src_names[hpi_ctl->src_node_type], |
1438 | hpi_ctl->src_node_index, | 1397 | hpi_ctl->src_node_index, |
1439 | asihpi_dst_names[hpi_ctl->dst_node_type], | 1398 | asihpi_dst_names[hpi_ctl->dst_node_type], |
@@ -2875,14 +2834,14 @@ static int __devinit snd_asihpi_probe(struct pci_dev *pci_dev, | |||
2875 | if (err) | 2834 | if (err) |
2876 | asihpi->update_interval_frames = 512; | 2835 | asihpi->update_interval_frames = 512; |
2877 | 2836 | ||
2878 | if (!asihpi->support_mmap) | 2837 | if (!asihpi->can_dma) |
2879 | asihpi->update_interval_frames *= 2; | 2838 | asihpi->update_interval_frames *= 2; |
2880 | 2839 | ||
2881 | hpi_handle_error(hpi_instream_open(asihpi->adapter_index, | 2840 | hpi_handle_error(hpi_instream_open(asihpi->adapter_index, |
2882 | 0, &h_stream)); | 2841 | 0, &h_stream)); |
2883 | 2842 | ||
2884 | err = hpi_instream_host_buffer_free(h_stream); | 2843 | err = hpi_instream_host_buffer_free(h_stream); |
2885 | asihpi->support_mmap = (!err); | 2844 | asihpi->can_dma = (!err); |
2886 | 2845 | ||
2887 | hpi_handle_error(hpi_instream_close(h_stream)); | 2846 | hpi_handle_error(hpi_instream_close(h_stream)); |
2888 | 2847 | ||
@@ -2894,8 +2853,8 @@ static int __devinit snd_asihpi_probe(struct pci_dev *pci_dev, | |||
2894 | asihpi->out_max_chans = 2; | 2853 | asihpi->out_max_chans = 2; |
2895 | } | 2854 | } |
2896 | 2855 | ||
2897 | snd_printk(KERN_INFO "supports mmap:%d grouping:%d mrx:%d\n", | 2856 | snd_printk(KERN_INFO "has dma:%d, grouping:%d, mrx:%d\n", |
2898 | asihpi->support_mmap, | 2857 | asihpi->can_dma, |
2899 | asihpi->support_grouping, | 2858 | asihpi->support_grouping, |
2900 | asihpi->support_mrx | 2859 | asihpi->support_mrx |
2901 | ); | 2860 | ); |
@@ -2925,10 +2884,7 @@ static int __devinit snd_asihpi_probe(struct pci_dev *pci_dev, | |||
2925 | by enable_hwdep module param*/ | 2884 | by enable_hwdep module param*/ |
2926 | snd_asihpi_hpi_new(asihpi, 0, NULL); | 2885 | snd_asihpi_hpi_new(asihpi, 0, NULL); |
2927 | 2886 | ||
2928 | if (asihpi->support_mmap) | 2887 | strcpy(card->driver, "ASIHPI"); |
2929 | strcpy(card->driver, "ASIHPI-MMAP"); | ||
2930 | else | ||
2931 | strcpy(card->driver, "ASIHPI"); | ||
2932 | 2888 | ||
2933 | sprintf(card->shortname, "AudioScience ASI%4X", asihpi->type); | 2889 | sprintf(card->shortname, "AudioScience ASI%4X", asihpi->type); |
2934 | sprintf(card->longname, "%s %i", | 2890 | sprintf(card->longname, "%s %i", |
diff --git a/sound/pci/asihpi/hpi6000.c b/sound/pci/asihpi/hpi6000.c index 8c8aac4c567..df4aed5295d 100644 --- a/sound/pci/asihpi/hpi6000.c +++ b/sound/pci/asihpi/hpi6000.c | |||
@@ -200,8 +200,8 @@ static void hpi_read_block(struct dsp_obj *pdo, u32 address, u32 *pdata, | |||
200 | static void subsys_create_adapter(struct hpi_message *phm, | 200 | static void subsys_create_adapter(struct hpi_message *phm, |
201 | struct hpi_response *phr); | 201 | struct hpi_response *phr); |
202 | 202 | ||
203 | static void subsys_delete_adapter(struct hpi_message *phm, | 203 | static void adapter_delete(struct hpi_adapter_obj *pao, |
204 | struct hpi_response *phr); | 204 | struct hpi_message *phm, struct hpi_response *phr); |
205 | 205 | ||
206 | static void adapter_get_asserts(struct hpi_adapter_obj *pao, | 206 | static void adapter_get_asserts(struct hpi_adapter_obj *pao, |
207 | struct hpi_message *phm, struct hpi_response *phr); | 207 | struct hpi_message *phm, struct hpi_response *phr); |
@@ -222,9 +222,6 @@ static void subsys_message(struct hpi_message *phm, struct hpi_response *phr) | |||
222 | case HPI_SUBSYS_CREATE_ADAPTER: | 222 | case HPI_SUBSYS_CREATE_ADAPTER: |
223 | subsys_create_adapter(phm, phr); | 223 | subsys_create_adapter(phm, phr); |
224 | break; | 224 | break; |
225 | case HPI_SUBSYS_DELETE_ADAPTER: | ||
226 | subsys_delete_adapter(phm, phr); | ||
227 | break; | ||
228 | default: | 225 | default: |
229 | phr->error = HPI_ERROR_INVALID_FUNC; | 226 | phr->error = HPI_ERROR_INVALID_FUNC; |
230 | break; | 227 | break; |
@@ -279,6 +276,10 @@ static void adapter_message(struct hpi_adapter_obj *pao, | |||
279 | adapter_get_asserts(pao, phm, phr); | 276 | adapter_get_asserts(pao, phm, phr); |
280 | break; | 277 | break; |
281 | 278 | ||
279 | case HPI_ADAPTER_DELETE: | ||
280 | adapter_delete(pao, phm, phr); | ||
281 | break; | ||
282 | |||
282 | default: | 283 | default: |
283 | hw_message(pao, phm, phr); | 284 | hw_message(pao, phm, phr); |
284 | break; | 285 | break; |
@@ -333,26 +334,22 @@ void HPI_6000(struct hpi_message *phm, struct hpi_response *phr) | |||
333 | { | 334 | { |
334 | struct hpi_adapter_obj *pao = NULL; | 335 | struct hpi_adapter_obj *pao = NULL; |
335 | 336 | ||
336 | /* subsytem messages get executed by every HPI. */ | ||
337 | /* All other messages are ignored unless the adapter index matches */ | ||
338 | /* an adapter in the HPI */ | ||
339 | /*HPI_DEBUG_LOG(DEBUG, "O %d,F %x\n", phm->wObject, phm->wFunction); */ | ||
340 | |||
341 | /* if Dsp has crashed then do not communicate with it any more */ | ||
342 | if (phm->object != HPI_OBJ_SUBSYSTEM) { | 337 | if (phm->object != HPI_OBJ_SUBSYSTEM) { |
343 | pao = hpi_find_adapter(phm->adapter_index); | 338 | pao = hpi_find_adapter(phm->adapter_index); |
344 | if (!pao) { | 339 | if (!pao) { |
345 | HPI_DEBUG_LOG(DEBUG, | 340 | hpi_init_response(phr, phm->object, phm->function, |
346 | " %d,%d refused, for another HPI?\n", | 341 | HPI_ERROR_BAD_ADAPTER_NUMBER); |
347 | phm->object, phm->function); | 342 | HPI_DEBUG_LOG(DEBUG, "invalid adapter index: %d \n", |
343 | phm->adapter_index); | ||
348 | return; | 344 | return; |
349 | } | 345 | } |
350 | 346 | ||
347 | /* Don't even try to communicate with crashed DSP */ | ||
351 | if (pao->dsp_crashed >= 10) { | 348 | if (pao->dsp_crashed >= 10) { |
352 | hpi_init_response(phr, phm->object, phm->function, | 349 | hpi_init_response(phr, phm->object, phm->function, |
353 | HPI_ERROR_DSP_HARDWARE); | 350 | HPI_ERROR_DSP_HARDWARE); |
354 | HPI_DEBUG_LOG(DEBUG, " %d,%d dsp crashed.\n", | 351 | HPI_DEBUG_LOG(DEBUG, "adapter %d dsp crashed\n", |
355 | phm->object, phm->function); | 352 | phm->adapter_index); |
356 | return; | 353 | return; |
357 | } | 354 | } |
358 | } | 355 | } |
@@ -463,15 +460,9 @@ static void subsys_create_adapter(struct hpi_message *phm, | |||
463 | phr->error = 0; | 460 | phr->error = 0; |
464 | } | 461 | } |
465 | 462 | ||
466 | static void subsys_delete_adapter(struct hpi_message *phm, | 463 | static void adapter_delete(struct hpi_adapter_obj *pao, |
467 | struct hpi_response *phr) | 464 | struct hpi_message *phm, struct hpi_response *phr) |
468 | { | 465 | { |
469 | struct hpi_adapter_obj *pao = NULL; | ||
470 | |||
471 | pao = hpi_find_adapter(phm->obj_index); | ||
472 | if (!pao) | ||
473 | return; | ||
474 | |||
475 | delete_adapter_obj(pao); | 466 | delete_adapter_obj(pao); |
476 | hpi_delete_adapter(pao); | 467 | hpi_delete_adapter(pao); |
477 | phr->error = 0; | 468 | phr->error = 0; |
diff --git a/sound/pci/asihpi/hpi6205.c b/sound/pci/asihpi/hpi6205.c index 22e9f08dea6..9d5df54a6b4 100644 --- a/sound/pci/asihpi/hpi6205.c +++ b/sound/pci/asihpi/hpi6205.c | |||
@@ -152,8 +152,8 @@ static void hw_message(struct hpi_adapter_obj *pao, struct hpi_message *phm, | |||
152 | 152 | ||
153 | static void subsys_create_adapter(struct hpi_message *phm, | 153 | static void subsys_create_adapter(struct hpi_message *phm, |
154 | struct hpi_response *phr); | 154 | struct hpi_response *phr); |
155 | static void subsys_delete_adapter(struct hpi_message *phm, | 155 | static void adapter_delete(struct hpi_adapter_obj *pao, |
156 | struct hpi_response *phr); | 156 | struct hpi_message *phm, struct hpi_response *phr); |
157 | 157 | ||
158 | static u16 create_adapter_obj(struct hpi_adapter_obj *pao, | 158 | static u16 create_adapter_obj(struct hpi_adapter_obj *pao, |
159 | u32 *pos_error_code); | 159 | u32 *pos_error_code); |
@@ -223,15 +223,13 @@ static u16 boot_loader_test_pld(struct hpi_adapter_obj *pao, int dsp_index); | |||
223 | 223 | ||
224 | /*****************************************************************************/ | 224 | /*****************************************************************************/ |
225 | 225 | ||
226 | static void subsys_message(struct hpi_message *phm, struct hpi_response *phr) | 226 | static void subsys_message(struct hpi_adapter_obj *pao, |
227 | struct hpi_message *phm, struct hpi_response *phr) | ||
227 | { | 228 | { |
228 | switch (phm->function) { | 229 | switch (phm->function) { |
229 | case HPI_SUBSYS_CREATE_ADAPTER: | 230 | case HPI_SUBSYS_CREATE_ADAPTER: |
230 | subsys_create_adapter(phm, phr); | 231 | subsys_create_adapter(phm, phr); |
231 | break; | 232 | break; |
232 | case HPI_SUBSYS_DELETE_ADAPTER: | ||
233 | subsys_delete_adapter(phm, phr); | ||
234 | break; | ||
235 | default: | 233 | default: |
236 | phr->error = HPI_ERROR_INVALID_FUNC; | 234 | phr->error = HPI_ERROR_INVALID_FUNC; |
237 | break; | 235 | break; |
@@ -279,6 +277,10 @@ static void adapter_message(struct hpi_adapter_obj *pao, | |||
279 | struct hpi_message *phm, struct hpi_response *phr) | 277 | struct hpi_message *phm, struct hpi_response *phr) |
280 | { | 278 | { |
281 | switch (phm->function) { | 279 | switch (phm->function) { |
280 | case HPI_ADAPTER_DELETE: | ||
281 | adapter_delete(pao, phm, phr); | ||
282 | break; | ||
283 | |||
282 | default: | 284 | default: |
283 | hw_message(pao, phm, phr); | 285 | hw_message(pao, phm, phr); |
284 | break; | 286 | break; |
@@ -371,36 +373,17 @@ static void instream_message(struct hpi_adapter_obj *pao, | |||
371 | /** Entry point to this HPI backend | 373 | /** Entry point to this HPI backend |
372 | * All calls to the HPI start here | 374 | * All calls to the HPI start here |
373 | */ | 375 | */ |
374 | void HPI_6205(struct hpi_message *phm, struct hpi_response *phr) | 376 | void _HPI_6205(struct hpi_adapter_obj *pao, struct hpi_message *phm, |
377 | struct hpi_response *phr) | ||
375 | { | 378 | { |
376 | struct hpi_adapter_obj *pao = NULL; | 379 | if (pao && (pao->dsp_crashed >= 10) |
377 | 380 | && (phm->function != HPI_ADAPTER_DEBUG_READ)) { | |
378 | /* subsytem messages are processed by every HPI. | 381 | /* allow last resort debug read even after crash */ |
379 | * All other messages are ignored unless the adapter index matches | 382 | hpi_init_response(phr, phm->object, phm->function, |
380 | * an adapter in the HPI | 383 | HPI_ERROR_DSP_HARDWARE); |
381 | */ | 384 | HPI_DEBUG_LOG(WARNING, " %d,%d dsp crashed.\n", phm->object, |
382 | /* HPI_DEBUG_LOG(DEBUG, "HPI Obj=%d, Func=%d\n", phm->wObject, | 385 | phm->function); |
383 | phm->wFunction); */ | 386 | return; |
384 | |||
385 | /* if Dsp has crashed then do not communicate with it any more */ | ||
386 | if (phm->object != HPI_OBJ_SUBSYSTEM) { | ||
387 | pao = hpi_find_adapter(phm->adapter_index); | ||
388 | if (!pao) { | ||
389 | HPI_DEBUG_LOG(DEBUG, | ||
390 | " %d,%d refused, for another HPI?\n", | ||
391 | phm->object, phm->function); | ||
392 | return; | ||
393 | } | ||
394 | |||
395 | if ((pao->dsp_crashed >= 10) | ||
396 | && (phm->function != HPI_ADAPTER_DEBUG_READ)) { | ||
397 | /* allow last resort debug read even after crash */ | ||
398 | hpi_init_response(phr, phm->object, phm->function, | ||
399 | HPI_ERROR_DSP_HARDWARE); | ||
400 | HPI_DEBUG_LOG(WARNING, " %d,%d dsp crashed.\n", | ||
401 | phm->object, phm->function); | ||
402 | return; | ||
403 | } | ||
404 | } | 387 | } |
405 | 388 | ||
406 | /* Init default response */ | 389 | /* Init default response */ |
@@ -412,7 +395,7 @@ void HPI_6205(struct hpi_message *phm, struct hpi_response *phr) | |||
412 | case HPI_TYPE_MESSAGE: | 395 | case HPI_TYPE_MESSAGE: |
413 | switch (phm->object) { | 396 | switch (phm->object) { |
414 | case HPI_OBJ_SUBSYSTEM: | 397 | case HPI_OBJ_SUBSYSTEM: |
415 | subsys_message(phm, phr); | 398 | subsys_message(pao, phm, phr); |
416 | break; | 399 | break; |
417 | 400 | ||
418 | case HPI_OBJ_ADAPTER: | 401 | case HPI_OBJ_ADAPTER: |
@@ -444,6 +427,26 @@ void HPI_6205(struct hpi_message *phm, struct hpi_response *phr) | |||
444 | } | 427 | } |
445 | } | 428 | } |
446 | 429 | ||
430 | void HPI_6205(struct hpi_message *phm, struct hpi_response *phr) | ||
431 | { | ||
432 | struct hpi_adapter_obj *pao = NULL; | ||
433 | |||
434 | if (phm->object != HPI_OBJ_SUBSYSTEM) { | ||
435 | /* normal messages must have valid adapter index */ | ||
436 | pao = hpi_find_adapter(phm->adapter_index); | ||
437 | } else { | ||
438 | /* subsys messages don't address an adapter */ | ||
439 | _HPI_6205(NULL, phm, phr); | ||
440 | return; | ||
441 | } | ||
442 | |||
443 | if (pao) | ||
444 | _HPI_6205(pao, phm, phr); | ||
445 | else | ||
446 | hpi_init_response(phr, phm->object, phm->function, | ||
447 | HPI_ERROR_BAD_ADAPTER_NUMBER); | ||
448 | } | ||
449 | |||
447 | /*****************************************************************************/ | 450 | /*****************************************************************************/ |
448 | /* SUBSYSTEM */ | 451 | /* SUBSYSTEM */ |
449 | 452 | ||
@@ -491,13 +494,11 @@ static void subsys_create_adapter(struct hpi_message *phm, | |||
491 | } | 494 | } |
492 | 495 | ||
493 | /** delete an adapter - required by WDM driver */ | 496 | /** delete an adapter - required by WDM driver */ |
494 | static void subsys_delete_adapter(struct hpi_message *phm, | 497 | static void adapter_delete(struct hpi_adapter_obj *pao, |
495 | struct hpi_response *phr) | 498 | struct hpi_message *phm, struct hpi_response *phr) |
496 | { | 499 | { |
497 | struct hpi_adapter_obj *pao; | ||
498 | struct hpi_hw_obj *phw; | 500 | struct hpi_hw_obj *phw; |
499 | 501 | ||
500 | pao = hpi_find_adapter(phm->obj_index); | ||
501 | if (!pao) { | 502 | if (!pao) { |
502 | phr->error = HPI_ERROR_INVALID_OBJ_INDEX; | 503 | phr->error = HPI_ERROR_INVALID_OBJ_INDEX; |
503 | return; | 504 | return; |
@@ -563,11 +564,12 @@ static u16 create_adapter_obj(struct hpi_adapter_obj *pao, | |||
563 | } | 564 | } |
564 | 565 | ||
565 | err = adapter_boot_load_dsp(pao, pos_error_code); | 566 | err = adapter_boot_load_dsp(pao, pos_error_code); |
566 | if (err) | 567 | if (err) { |
568 | HPI_DEBUG_LOG(ERROR, "DSP code load failed\n"); | ||
567 | /* no need to clean up as SubSysCreateAdapter */ | 569 | /* no need to clean up as SubSysCreateAdapter */ |
568 | /* calls DeleteAdapter on error. */ | 570 | /* calls DeleteAdapter on error. */ |
569 | return err; | 571 | return err; |
570 | 572 | } | |
571 | HPI_DEBUG_LOG(INFO, "load DSP code OK\n"); | 573 | HPI_DEBUG_LOG(INFO, "load DSP code OK\n"); |
572 | 574 | ||
573 | /* allow boot load even if mem alloc wont work */ | 575 | /* allow boot load even if mem alloc wont work */ |
@@ -604,6 +606,7 @@ static u16 create_adapter_obj(struct hpi_adapter_obj *pao, | |||
604 | control_cache.number_of_controls, | 606 | control_cache.number_of_controls, |
605 | interface->control_cache.size_in_bytes, | 607 | interface->control_cache.size_in_bytes, |
606 | p_control_cache_virtual); | 608 | p_control_cache_virtual); |
609 | |||
607 | if (!phw->p_cache) | 610 | if (!phw->p_cache) |
608 | err = HPI_ERROR_MEMORY_ALLOC; | 611 | err = HPI_ERROR_MEMORY_ALLOC; |
609 | } | 612 | } |
@@ -675,16 +678,14 @@ static u16 create_adapter_obj(struct hpi_adapter_obj *pao, | |||
675 | } | 678 | } |
676 | 679 | ||
677 | /** Free memory areas allocated by adapter | 680 | /** Free memory areas allocated by adapter |
678 | * this routine is called from SubSysDeleteAdapter, | 681 | * this routine is called from AdapterDelete, |
679 | * and SubSysCreateAdapter if duplicate index | 682 | * and SubSysCreateAdapter if duplicate index |
680 | */ | 683 | */ |
681 | static void delete_adapter_obj(struct hpi_adapter_obj *pao) | 684 | static void delete_adapter_obj(struct hpi_adapter_obj *pao) |
682 | { | 685 | { |
683 | struct hpi_hw_obj *phw; | 686 | struct hpi_hw_obj *phw = pao->priv; |
684 | int i; | 687 | int i; |
685 | 688 | ||
686 | phw = pao->priv; | ||
687 | |||
688 | if (hpios_locked_mem_valid(&phw->h_control_cache)) { | 689 | if (hpios_locked_mem_valid(&phw->h_control_cache)) { |
689 | hpios_locked_mem_free(&phw->h_control_cache); | 690 | hpios_locked_mem_free(&phw->h_control_cache); |
690 | hpi_free_control_cache(phw->p_cache); | 691 | hpi_free_control_cache(phw->p_cache); |
@@ -1275,6 +1276,7 @@ static u16 adapter_boot_load_dsp(struct hpi_adapter_obj *pao, | |||
1275 | case HPI_ADAPTER_FAMILY_ASI(0x6300): | 1276 | case HPI_ADAPTER_FAMILY_ASI(0x6300): |
1276 | boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6400); | 1277 | boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6400); |
1277 | break; | 1278 | break; |
1279 | case HPI_ADAPTER_FAMILY_ASI(0x5500): | ||
1278 | case HPI_ADAPTER_FAMILY_ASI(0x5600): | 1280 | case HPI_ADAPTER_FAMILY_ASI(0x5600): |
1279 | case HPI_ADAPTER_FAMILY_ASI(0x6500): | 1281 | case HPI_ADAPTER_FAMILY_ASI(0x6500): |
1280 | boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6600); | 1282 | boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6600); |
@@ -2059,7 +2061,6 @@ static int wait_dsp_ack(struct hpi_hw_obj *phw, int state, int timeout_us) | |||
2059 | static void send_dsp_command(struct hpi_hw_obj *phw, int cmd) | 2061 | static void send_dsp_command(struct hpi_hw_obj *phw, int cmd) |
2060 | { | 2062 | { |
2061 | struct bus_master_interface *interface = phw->p_interface_buffer; | 2063 | struct bus_master_interface *interface = phw->p_interface_buffer; |
2062 | |||
2063 | u32 r; | 2064 | u32 r; |
2064 | 2065 | ||
2065 | interface->host_cmd = cmd; | 2066 | interface->host_cmd = cmd; |
diff --git a/sound/pci/asihpi/hpi_internal.h b/sound/pci/asihpi/hpi_internal.h index 3b9fd115da3..bf5eced76ba 100644 --- a/sound/pci/asihpi/hpi_internal.h +++ b/sound/pci/asihpi/hpi_internal.h | |||
@@ -294,7 +294,7 @@ enum HPI_CONTROL_ATTRIBUTES { | |||
294 | 294 | ||
295 | /* These defines are used to fill in protocol information for an Ethernet packet | 295 | /* These defines are used to fill in protocol information for an Ethernet packet |
296 | sent using HMI on CS18102 */ | 296 | sent using HMI on CS18102 */ |
297 | /** ID supplied by Cirrius for ASI packets. */ | 297 | /** ID supplied by Cirrus for ASI packets. */ |
298 | #define HPI_ETHERNET_PACKET_ID 0x85 | 298 | #define HPI_ETHERNET_PACKET_ID 0x85 |
299 | /** Simple packet - no special routing required */ | 299 | /** Simple packet - no special routing required */ |
300 | #define HPI_ETHERNET_PACKET_V1 0x01 | 300 | #define HPI_ETHERNET_PACKET_V1 0x01 |
@@ -307,7 +307,7 @@ enum HPI_CONTROL_ATTRIBUTES { | |||
307 | /** This packet must make its way to the host across the HPI interface */ | 307 | /** This packet must make its way to the host across the HPI interface */ |
308 | #define HPI_ETHERNET_PACKET_HOSTED_VIA_HPI_V1 0x41 | 308 | #define HPI_ETHERNET_PACKET_HOSTED_VIA_HPI_V1 0x41 |
309 | 309 | ||
310 | #define HPI_ETHERNET_UDP_PORT (44600) /*!< UDP messaging port */ | 310 | #define HPI_ETHERNET_UDP_PORT 44600 /**< HPI UDP service */ |
311 | 311 | ||
312 | /** Default network timeout in milli-seconds. */ | 312 | /** Default network timeout in milli-seconds. */ |
313 | #define HPI_ETHERNET_TIMEOUT_MS 500 | 313 | #define HPI_ETHERNET_TIMEOUT_MS 500 |
@@ -397,14 +397,14 @@ enum HPI_FUNCTION_IDS { | |||
397 | HPI_SUBSYS_OPEN = HPI_FUNC_ID(SUBSYSTEM, 1), | 397 | HPI_SUBSYS_OPEN = HPI_FUNC_ID(SUBSYSTEM, 1), |
398 | HPI_SUBSYS_GET_VERSION = HPI_FUNC_ID(SUBSYSTEM, 2), | 398 | HPI_SUBSYS_GET_VERSION = HPI_FUNC_ID(SUBSYSTEM, 2), |
399 | HPI_SUBSYS_GET_INFO = HPI_FUNC_ID(SUBSYSTEM, 3), | 399 | HPI_SUBSYS_GET_INFO = HPI_FUNC_ID(SUBSYSTEM, 3), |
400 | HPI_SUBSYS_FIND_ADAPTERS = HPI_FUNC_ID(SUBSYSTEM, 4), | 400 | /* HPI_SUBSYS_FIND_ADAPTERS = HPI_FUNC_ID(SUBSYSTEM, 4), */ |
401 | HPI_SUBSYS_CREATE_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 5), | 401 | HPI_SUBSYS_CREATE_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 5), |
402 | HPI_SUBSYS_CLOSE = HPI_FUNC_ID(SUBSYSTEM, 6), | 402 | HPI_SUBSYS_CLOSE = HPI_FUNC_ID(SUBSYSTEM, 6), |
403 | HPI_SUBSYS_DELETE_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 7), | 403 | /* HPI_SUBSYS_DELETE_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 7), */ |
404 | HPI_SUBSYS_DRIVER_LOAD = HPI_FUNC_ID(SUBSYSTEM, 8), | 404 | HPI_SUBSYS_DRIVER_LOAD = HPI_FUNC_ID(SUBSYSTEM, 8), |
405 | HPI_SUBSYS_DRIVER_UNLOAD = HPI_FUNC_ID(SUBSYSTEM, 9), | 405 | HPI_SUBSYS_DRIVER_UNLOAD = HPI_FUNC_ID(SUBSYSTEM, 9), |
406 | HPI_SUBSYS_READ_PORT_8 = HPI_FUNC_ID(SUBSYSTEM, 10), | 406 | /* HPI_SUBSYS_READ_PORT_8 = HPI_FUNC_ID(SUBSYSTEM, 10), */ |
407 | HPI_SUBSYS_WRITE_PORT_8 = HPI_FUNC_ID(SUBSYSTEM, 11), | 407 | /* HPI_SUBSYS_WRITE_PORT_8 = HPI_FUNC_ID(SUBSYSTEM, 11), */ |
408 | HPI_SUBSYS_GET_NUM_ADAPTERS = HPI_FUNC_ID(SUBSYSTEM, 12), | 408 | HPI_SUBSYS_GET_NUM_ADAPTERS = HPI_FUNC_ID(SUBSYSTEM, 12), |
409 | HPI_SUBSYS_GET_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 13), | 409 | HPI_SUBSYS_GET_ADAPTER = HPI_FUNC_ID(SUBSYSTEM, 13), |
410 | HPI_SUBSYS_SET_NETWORK_INTERFACE = HPI_FUNC_ID(SUBSYSTEM, 14), | 410 | HPI_SUBSYS_SET_NETWORK_INTERFACE = HPI_FUNC_ID(SUBSYSTEM, 14), |
@@ -433,7 +433,8 @@ enum HPI_FUNCTION_IDS { | |||
433 | HPI_ADAPTER_DEBUG_READ = HPI_FUNC_ID(ADAPTER, 18), | 433 | HPI_ADAPTER_DEBUG_READ = HPI_FUNC_ID(ADAPTER, 18), |
434 | HPI_ADAPTER_IRQ_QUERY_AND_CLEAR = HPI_FUNC_ID(ADAPTER, 19), | 434 | HPI_ADAPTER_IRQ_QUERY_AND_CLEAR = HPI_FUNC_ID(ADAPTER, 19), |
435 | HPI_ADAPTER_IRQ_CALLBACK = HPI_FUNC_ID(ADAPTER, 20), | 435 | HPI_ADAPTER_IRQ_CALLBACK = HPI_FUNC_ID(ADAPTER, 20), |
436 | #define HPI_ADAPTER_FUNCTION_COUNT 20 | 436 | HPI_ADAPTER_DELETE = HPI_FUNC_ID(ADAPTER, 21), |
437 | #define HPI_ADAPTER_FUNCTION_COUNT 21 | ||
437 | 438 | ||
438 | HPI_OSTREAM_OPEN = HPI_FUNC_ID(OSTREAM, 1), | 439 | HPI_OSTREAM_OPEN = HPI_FUNC_ID(OSTREAM, 1), |
439 | HPI_OSTREAM_CLOSE = HPI_FUNC_ID(OSTREAM, 2), | 440 | HPI_OSTREAM_CLOSE = HPI_FUNC_ID(OSTREAM, 2), |
@@ -1561,8 +1562,6 @@ void hpi_send_recv(struct hpi_message *phm, struct hpi_response *phr); | |||
1561 | u16 hpi_subsys_create_adapter(const struct hpi_resource *p_resource, | 1562 | u16 hpi_subsys_create_adapter(const struct hpi_resource *p_resource, |
1562 | u16 *pw_adapter_index); | 1563 | u16 *pw_adapter_index); |
1563 | 1564 | ||
1564 | u16 hpi_subsys_delete_adapter(u16 adapter_index); | ||
1565 | |||
1566 | u16 hpi_outstream_host_buffer_get_info(u32 h_outstream, u8 **pp_buffer, | 1565 | u16 hpi_outstream_host_buffer_get_info(u32 h_outstream, u8 **pp_buffer, |
1567 | struct hpi_hostbuffer_status **pp_status); | 1566 | struct hpi_hostbuffer_status **pp_status); |
1568 | 1567 | ||
@@ -1584,9 +1583,7 @@ void hpi_stream_response_to_legacy(struct hpi_stream_res *pSR); | |||
1584 | 1583 | ||
1585 | /*////////////////////////////////////////////////////////////////////////// */ | 1584 | /*////////////////////////////////////////////////////////////////////////// */ |
1586 | /* declarations for individual HPI entry points */ | 1585 | /* declarations for individual HPI entry points */ |
1587 | hpi_handler_func HPI_1000; | ||
1588 | hpi_handler_func HPI_6000; | 1586 | hpi_handler_func HPI_6000; |
1589 | hpi_handler_func HPI_6205; | 1587 | hpi_handler_func HPI_6205; |
1590 | hpi_handler_func HPI_COMMON; | ||
1591 | 1588 | ||
1592 | #endif /* _HPI_INTERNAL_H_ */ | 1589 | #endif /* _HPI_INTERNAL_H_ */ |
diff --git a/sound/pci/asihpi/hpicmn.c b/sound/pci/asihpi/hpicmn.c index 3e9c5c28976..b15a02e91f8 100644 --- a/sound/pci/asihpi/hpicmn.c +++ b/sound/pci/asihpi/hpicmn.c | |||
@@ -227,8 +227,9 @@ static unsigned int control_cache_alloc_check(struct hpi_control_cache *pC) | |||
227 | if (info->control_type) { | 227 | if (info->control_type) { |
228 | pC->p_info[info->control_index] = info; | 228 | pC->p_info[info->control_index] = info; |
229 | cached++; | 229 | cached++; |
230 | } else /* dummy cache entry */ | 230 | } else { /* dummy cache entry */ |
231 | pC->p_info[info->control_index] = NULL; | 231 | pC->p_info[info->control_index] = NULL; |
232 | } | ||
232 | 233 | ||
233 | byte_count += info->size_in32bit_words * 4; | 234 | byte_count += info->size_in32bit_words * 4; |
234 | 235 | ||
@@ -298,7 +299,7 @@ struct pad_ofs_size { | |||
298 | unsigned int field_size; | 299 | unsigned int field_size; |
299 | }; | 300 | }; |
300 | 301 | ||
301 | static struct pad_ofs_size pad_desc[] = { | 302 | static const struct pad_ofs_size pad_desc[] = { |
302 | HPICMN_PAD_OFS_AND_SIZE(c_channel), /* HPI_PAD_CHANNEL_NAME */ | 303 | HPICMN_PAD_OFS_AND_SIZE(c_channel), /* HPI_PAD_CHANNEL_NAME */ |
303 | HPICMN_PAD_OFS_AND_SIZE(c_artist), /* HPI_PAD_ARTIST */ | 304 | HPICMN_PAD_OFS_AND_SIZE(c_artist), /* HPI_PAD_ARTIST */ |
304 | HPICMN_PAD_OFS_AND_SIZE(c_title), /* HPI_PAD_TITLE */ | 305 | HPICMN_PAD_OFS_AND_SIZE(c_title), /* HPI_PAD_TITLE */ |
@@ -617,6 +618,10 @@ void hpi_cmn_control_cache_sync_to_msg(struct hpi_control_cache *p_cache, | |||
617 | } | 618 | } |
618 | } | 619 | } |
619 | 620 | ||
621 | /** Allocate control cache. | ||
622 | |||
623 | \return Cache pointer, or NULL if allocation fails. | ||
624 | */ | ||
620 | struct hpi_control_cache *hpi_alloc_control_cache(const u32 control_count, | 625 | struct hpi_control_cache *hpi_alloc_control_cache(const u32 control_count, |
621 | const u32 size_in_bytes, u8 *p_dsp_control_buffer) | 626 | const u32 size_in_bytes, u8 *p_dsp_control_buffer) |
622 | { | 627 | { |
@@ -667,7 +672,6 @@ static void subsys_message(struct hpi_message *phm, struct hpi_response *phr) | |||
667 | phr->u.s.num_adapters = adapters.gw_num_adapters; | 672 | phr->u.s.num_adapters = adapters.gw_num_adapters; |
668 | break; | 673 | break; |
669 | case HPI_SUBSYS_CREATE_ADAPTER: | 674 | case HPI_SUBSYS_CREATE_ADAPTER: |
670 | case HPI_SUBSYS_DELETE_ADAPTER: | ||
671 | break; | 675 | break; |
672 | default: | 676 | default: |
673 | phr->error = HPI_ERROR_INVALID_FUNC; | 677 | phr->error = HPI_ERROR_INVALID_FUNC; |
diff --git a/sound/pci/asihpi/hpicmn.h b/sound/pci/asihpi/hpicmn.h index 590f0b69e65..d53cdf6e535 100644 --- a/sound/pci/asihpi/hpicmn.h +++ b/sound/pci/asihpi/hpicmn.h | |||
@@ -60,3 +60,5 @@ void hpi_cmn_control_cache_sync_to_msg(struct hpi_control_cache *pC, | |||
60 | struct hpi_message *phm, struct hpi_response *phr); | 60 | struct hpi_message *phm, struct hpi_response *phr); |
61 | 61 | ||
62 | u16 hpi_validate_response(struct hpi_message *phm, struct hpi_response *phr); | 62 | u16 hpi_validate_response(struct hpi_message *phm, struct hpi_response *phr); |
63 | |||
64 | hpi_handler_func HPI_COMMON; | ||
diff --git a/sound/pci/asihpi/hpifunc.c b/sound/pci/asihpi/hpifunc.c index c38fc948756..7397b169b89 100644 --- a/sound/pci/asihpi/hpifunc.c +++ b/sound/pci/asihpi/hpifunc.c | |||
@@ -105,33 +105,6 @@ u16 hpi_subsys_get_version_ex(u32 *pversion_ex) | |||
105 | return hr.error; | 105 | return hr.error; |
106 | } | 106 | } |
107 | 107 | ||
108 | u16 hpi_subsys_create_adapter(const struct hpi_resource *p_resource, | ||
109 | u16 *pw_adapter_index) | ||
110 | { | ||
111 | struct hpi_message hm; | ||
112 | struct hpi_response hr; | ||
113 | |||
114 | hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM, | ||
115 | HPI_SUBSYS_CREATE_ADAPTER); | ||
116 | hm.u.s.resource = *p_resource; | ||
117 | |||
118 | hpi_send_recv(&hm, &hr); | ||
119 | |||
120 | *pw_adapter_index = hr.u.s.adapter_index; | ||
121 | return hr.error; | ||
122 | } | ||
123 | |||
124 | u16 hpi_subsys_delete_adapter(u16 adapter_index) | ||
125 | { | ||
126 | struct hpi_message hm; | ||
127 | struct hpi_response hr; | ||
128 | hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM, | ||
129 | HPI_SUBSYS_DELETE_ADAPTER); | ||
130 | hm.obj_index = adapter_index; | ||
131 | hpi_send_recv(&hm, &hr); | ||
132 | return hr.error; | ||
133 | } | ||
134 | |||
135 | u16 hpi_subsys_get_num_adapters(int *pn_num_adapters) | 108 | u16 hpi_subsys_get_num_adapters(int *pn_num_adapters) |
136 | { | 109 | { |
137 | struct hpi_message hm; | 110 | struct hpi_message hm; |
diff --git a/sound/pci/asihpi/hpimsgx.c b/sound/pci/asihpi/hpimsgx.c index 360028b9abf..7352a5f7b4f 100644 --- a/sound/pci/asihpi/hpimsgx.c +++ b/sound/pci/asihpi/hpimsgx.c | |||
@@ -211,24 +211,6 @@ static void subsys_message(struct hpi_message *phm, struct hpi_response *phr, | |||
211 | HPIMSGX__init(phm, phr); | 211 | HPIMSGX__init(phm, phr); |
212 | break; | 212 | break; |
213 | 213 | ||
214 | case HPI_SUBSYS_DELETE_ADAPTER: | ||
215 | HPIMSGX__cleanup(phm->obj_index, h_owner); | ||
216 | { | ||
217 | struct hpi_message hm; | ||
218 | struct hpi_response hr; | ||
219 | hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER, | ||
220 | HPI_ADAPTER_CLOSE); | ||
221 | hm.adapter_index = phm->obj_index; | ||
222 | hw_entry_point(&hm, &hr); | ||
223 | } | ||
224 | if ((phm->obj_index < HPI_MAX_ADAPTERS) | ||
225 | && hpi_entry_points[phm->obj_index]) { | ||
226 | hpi_entry_points[phm->obj_index] (phm, phr); | ||
227 | hpi_entry_points[phm->obj_index] = NULL; | ||
228 | } else | ||
229 | phr->error = HPI_ERROR_INVALID_OBJ_INDEX; | ||
230 | |||
231 | break; | ||
232 | default: | 214 | default: |
233 | /* Must explicitly handle every subsys message in this switch */ | 215 | /* Must explicitly handle every subsys message in this switch */ |
234 | hpi_init_response(phr, HPI_OBJ_SUBSYSTEM, phm->function, | 216 | hpi_init_response(phr, HPI_OBJ_SUBSYSTEM, phm->function, |
@@ -247,6 +229,19 @@ static void adapter_message(struct hpi_message *phm, struct hpi_response *phr, | |||
247 | case HPI_ADAPTER_CLOSE: | 229 | case HPI_ADAPTER_CLOSE: |
248 | adapter_close(phm, phr); | 230 | adapter_close(phm, phr); |
249 | break; | 231 | break; |
232 | case HPI_ADAPTER_DELETE: | ||
233 | HPIMSGX__cleanup(phm->adapter_index, h_owner); | ||
234 | { | ||
235 | struct hpi_message hm; | ||
236 | struct hpi_response hr; | ||
237 | hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER, | ||
238 | HPI_ADAPTER_CLOSE); | ||
239 | hm.adapter_index = phm->adapter_index; | ||
240 | hw_entry_point(&hm, &hr); | ||
241 | } | ||
242 | hw_entry_point(phm, phr); | ||
243 | break; | ||
244 | |||
250 | default: | 245 | default: |
251 | hw_entry_point(phm, phr); | 246 | hw_entry_point(phm, phr); |
252 | break; | 247 | break; |
diff --git a/sound/pci/asihpi/hpioctl.c b/sound/pci/asihpi/hpioctl.c index cd624f13ff8..d8e7047512f 100644 --- a/sound/pci/asihpi/hpioctl.c +++ b/sound/pci/asihpi/hpioctl.c | |||
@@ -25,6 +25,7 @@ Common Linux HPI ioctl and module probe/remove functions | |||
25 | #include "hpidebug.h" | 25 | #include "hpidebug.h" |
26 | #include "hpimsgx.h" | 26 | #include "hpimsgx.h" |
27 | #include "hpioctl.h" | 27 | #include "hpioctl.h" |
28 | #include "hpicmn.h" | ||
28 | 29 | ||
29 | #include <linux/fs.h> | 30 | #include <linux/fs.h> |
30 | #include <linux/slab.h> | 31 | #include <linux/slab.h> |
@@ -161,26 +162,24 @@ long asihpi_hpi_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
161 | goto out; | 162 | goto out; |
162 | } | 163 | } |
163 | 164 | ||
164 | pa = &adapters[hm->h.adapter_index]; | 165 | switch (hm->h.function) { |
166 | case HPI_SUBSYS_CREATE_ADAPTER: | ||
167 | case HPI_ADAPTER_DELETE: | ||
168 | /* Application must not use these functions! */ | ||
169 | hr->h.size = sizeof(hr->h); | ||
170 | hr->h.error = HPI_ERROR_INVALID_OPERATION; | ||
171 | hr->h.function = hm->h.function; | ||
172 | uncopied_bytes = copy_to_user(puhr, hr, hr->h.size); | ||
173 | if (uncopied_bytes) | ||
174 | err = -EFAULT; | ||
175 | else | ||
176 | err = 0; | ||
177 | goto out; | ||
178 | } | ||
179 | |||
165 | hr->h.size = res_max_size; | 180 | hr->h.size = res_max_size; |
166 | if (hm->h.object == HPI_OBJ_SUBSYSTEM) { | 181 | if (hm->h.object == HPI_OBJ_SUBSYSTEM) { |
167 | switch (hm->h.function) { | 182 | hpi_send_recv_f(&hm->m0, &hr->r0, file); |
168 | case HPI_SUBSYS_CREATE_ADAPTER: | ||
169 | case HPI_SUBSYS_DELETE_ADAPTER: | ||
170 | /* Application must not use these functions! */ | ||
171 | hr->h.size = sizeof(hr->h); | ||
172 | hr->h.error = HPI_ERROR_INVALID_OPERATION; | ||
173 | hr->h.function = hm->h.function; | ||
174 | uncopied_bytes = copy_to_user(puhr, hr, hr->h.size); | ||
175 | if (uncopied_bytes) | ||
176 | err = -EFAULT; | ||
177 | else | ||
178 | err = 0; | ||
179 | goto out; | ||
180 | |||
181 | default: | ||
182 | hpi_send_recv_f(&hm->m0, &hr->r0, file); | ||
183 | } | ||
184 | } else { | 183 | } else { |
185 | u16 __user *ptr = NULL; | 184 | u16 __user *ptr = NULL; |
186 | u32 size = 0; | 185 | u32 size = 0; |
@@ -188,8 +187,9 @@ long asihpi_hpi_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
188 | /* -1=no data 0=read from user mem, 1=write to user mem */ | 187 | /* -1=no data 0=read from user mem, 1=write to user mem */ |
189 | int wrflag = -1; | 188 | int wrflag = -1; |
190 | u32 adapter = hm->h.adapter_index; | 189 | u32 adapter = hm->h.adapter_index; |
190 | pa = &adapters[adapter]; | ||
191 | 191 | ||
192 | if ((hm->h.adapter_index > HPI_MAX_ADAPTERS) || (!pa->type)) { | 192 | if ((adapter > HPI_MAX_ADAPTERS) || (!pa->type)) { |
193 | hpi_init_response(&hr->r0, HPI_OBJ_ADAPTER, | 193 | hpi_init_response(&hr->r0, HPI_OBJ_ADAPTER, |
194 | HPI_ADAPTER_OPEN, | 194 | HPI_ADAPTER_OPEN, |
195 | HPI_ERROR_BAD_ADAPTER_NUMBER); | 195 | HPI_ERROR_BAD_ADAPTER_NUMBER); |
@@ -317,7 +317,7 @@ out: | |||
317 | int __devinit asihpi_adapter_probe(struct pci_dev *pci_dev, | 317 | int __devinit asihpi_adapter_probe(struct pci_dev *pci_dev, |
318 | const struct pci_device_id *pci_id) | 318 | const struct pci_device_id *pci_id) |
319 | { | 319 | { |
320 | int err, idx, nm; | 320 | int idx, nm; |
321 | unsigned int memlen; | 321 | unsigned int memlen; |
322 | struct hpi_message hm; | 322 | struct hpi_message hm; |
323 | struct hpi_response hr; | 323 | struct hpi_response hr; |
@@ -351,11 +351,8 @@ int __devinit asihpi_adapter_probe(struct pci_dev *pci_dev, | |||
351 | nm = HPI_MAX_ADAPTER_MEM_SPACES; | 351 | nm = HPI_MAX_ADAPTER_MEM_SPACES; |
352 | 352 | ||
353 | for (idx = 0; idx < nm; idx++) { | 353 | for (idx = 0; idx < nm; idx++) { |
354 | HPI_DEBUG_LOG(INFO, "resource %d %s %08llx-%08llx %04llx\n", | 354 | HPI_DEBUG_LOG(INFO, "resource %d %pR\n", idx, |
355 | idx, pci_dev->resource[idx].name, | 355 | &pci_dev->resource[idx]); |
356 | (unsigned long long)pci_resource_start(pci_dev, idx), | ||
357 | (unsigned long long)pci_resource_end(pci_dev, idx), | ||
358 | (unsigned long long)pci_resource_flags(pci_dev, idx)); | ||
359 | 356 | ||
360 | if (pci_resource_flags(pci_dev, idx) & IORESOURCE_MEM) { | 357 | if (pci_resource_flags(pci_dev, idx) & IORESOURCE_MEM) { |
361 | memlen = pci_resource_len(pci_dev, idx); | 358 | memlen = pci_resource_len(pci_dev, idx); |
@@ -395,17 +392,20 @@ int __devinit asihpi_adapter_probe(struct pci_dev *pci_dev, | |||
395 | 392 | ||
396 | adapter.index = hr.u.s.adapter_index; | 393 | adapter.index = hr.u.s.adapter_index; |
397 | adapter.type = hr.u.s.adapter_type; | 394 | adapter.type = hr.u.s.adapter_type; |
395 | |||
396 | hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER, | ||
397 | HPI_ADAPTER_OPEN); | ||
398 | hm.adapter_index = adapter.index; | 398 | hm.adapter_index = adapter.index; |
399 | hpi_send_recv_ex(&hm, &hr, HOWNER_KERNEL); | ||
399 | 400 | ||
400 | err = hpi_adapter_open(adapter.index); | 401 | if (hr.error) |
401 | if (err) | ||
402 | goto err; | 402 | goto err; |
403 | 403 | ||
404 | adapter.snd_card_asihpi = NULL; | 404 | adapter.snd_card_asihpi = NULL; |
405 | /* WARNING can't init mutex in 'adapter' | 405 | /* WARNING can't init mutex in 'adapter' |
406 | * and then copy it to adapters[] ?!?! | 406 | * and then copy it to adapters[] ?!?! |
407 | */ | 407 | */ |
408 | adapters[hr.u.s.adapter_index] = adapter; | 408 | adapters[adapter.index] = adapter; |
409 | mutex_init(&adapters[adapter.index].mutex); | 409 | mutex_init(&adapters[adapter.index].mutex); |
410 | pci_set_drvdata(pci_dev, &adapters[adapter.index]); | 410 | pci_set_drvdata(pci_dev, &adapters[adapter.index]); |
411 | 411 | ||
@@ -440,10 +440,9 @@ void __devexit asihpi_adapter_remove(struct pci_dev *pci_dev) | |||
440 | struct hpi_adapter *pa; | 440 | struct hpi_adapter *pa; |
441 | pa = pci_get_drvdata(pci_dev); | 441 | pa = pci_get_drvdata(pci_dev); |
442 | 442 | ||
443 | hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM, | 443 | hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER, |
444 | HPI_SUBSYS_DELETE_ADAPTER); | 444 | HPI_ADAPTER_DELETE); |
445 | hm.obj_index = pa->index; | 445 | hm.adapter_index = pa->index; |
446 | hm.adapter_index = HPI_ADAPTER_INDEX_INVALID; | ||
447 | hpi_send_recv_ex(&hm, &hr, HOWNER_KERNEL); | 446 | hpi_send_recv_ex(&hm, &hr, HOWNER_KERNEL); |
448 | 447 | ||
449 | /* unmap PCI memory space, mapped during device init. */ | 448 | /* unmap PCI memory space, mapped during device init. */ |
diff --git a/sound/pci/au88x0/au8810.h b/sound/pci/au88x0/au8810.h index 5d69c31fe3f..79fbee3845e 100644 --- a/sound/pci/au88x0/au8810.h +++ b/sound/pci/au88x0/au8810.h | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | #define CHIP_AU8810 | 5 | #define CHIP_AU8810 |
6 | 6 | ||
7 | #define CARD_NAME "Aureal Advantage 3D Sound Processor" | 7 | #define CARD_NAME "Aureal Advantage" |
8 | #define CARD_NAME_SHORT "au8810" | 8 | #define CARD_NAME_SHORT "au8810" |
9 | 9 | ||
10 | #define NR_ADB 0x10 | 10 | #define NR_ADB 0x10 |
diff --git a/sound/pci/au88x0/au8820.h b/sound/pci/au88x0/au8820.h index abbe85e4f7a..cafdb9668a3 100644 --- a/sound/pci/au88x0/au8820.h +++ b/sound/pci/au88x0/au8820.h | |||
@@ -11,7 +11,7 @@ | |||
11 | 11 | ||
12 | #define CHIP_AU8820 | 12 | #define CHIP_AU8820 |
13 | 13 | ||
14 | #define CARD_NAME "Aureal Vortex 3D Sound Processor" | 14 | #define CARD_NAME "Aureal Vortex" |
15 | #define CARD_NAME_SHORT "au8820" | 15 | #define CARD_NAME_SHORT "au8820" |
16 | 16 | ||
17 | /* Number of ADB and WT channels */ | 17 | /* Number of ADB and WT channels */ |
diff --git a/sound/pci/au88x0/au8830.h b/sound/pci/au88x0/au8830.h index 04ece1b1c21..999b29ab34a 100644 --- a/sound/pci/au88x0/au8830.h +++ b/sound/pci/au88x0/au8830.h | |||
@@ -11,7 +11,7 @@ | |||
11 | 11 | ||
12 | #define CHIP_AU8830 | 12 | #define CHIP_AU8830 |
13 | 13 | ||
14 | #define CARD_NAME "Aureal Vortex 2 3D Sound Processor" | 14 | #define CARD_NAME "Aureal Vortex 2" |
15 | #define CARD_NAME_SHORT "au8830" | 15 | #define CARD_NAME_SHORT "au8830" |
16 | 16 | ||
17 | #define NR_ADB 0x20 | 17 | #define NR_ADB 0x20 |
diff --git a/sound/pci/au88x0/au88x0_pcm.c b/sound/pci/au88x0/au88x0_pcm.c index 62e959120c4..c5f7ae46afe 100644 --- a/sound/pci/au88x0/au88x0_pcm.c +++ b/sound/pci/au88x0/au88x0_pcm.c | |||
@@ -426,11 +426,11 @@ static struct snd_pcm_ops snd_vortex_playback_ops = { | |||
426 | */ | 426 | */ |
427 | 427 | ||
428 | static char *vortex_pcm_prettyname[VORTEX_PCM_LAST] = { | 428 | static char *vortex_pcm_prettyname[VORTEX_PCM_LAST] = { |
429 | "AU88x0 ADB", | 429 | CARD_NAME " ADB", |
430 | "AU88x0 SPDIF", | 430 | CARD_NAME " SPDIF", |
431 | "AU88x0 A3D", | 431 | CARD_NAME " A3D", |
432 | "AU88x0 WT", | 432 | CARD_NAME " WT", |
433 | "AU88x0 I2S", | 433 | CARD_NAME " I2S", |
434 | }; | 434 | }; |
435 | static char *vortex_pcm_name[VORTEX_PCM_LAST] = { | 435 | static char *vortex_pcm_name[VORTEX_PCM_LAST] = { |
436 | "adb", | 436 | "adb", |
@@ -527,7 +527,8 @@ static int __devinit snd_vortex_new_pcm(vortex_t *chip, int idx, int nr) | |||
527 | nr_capt, &pcm); | 527 | nr_capt, &pcm); |
528 | if (err < 0) | 528 | if (err < 0) |
529 | return err; | 529 | return err; |
530 | strcpy(pcm->name, vortex_pcm_name[idx]); | 530 | snprintf(pcm->name, sizeof(pcm->name), |
531 | "%s %s", CARD_NAME_SHORT, vortex_pcm_name[idx]); | ||
531 | chip->pcm[idx] = pcm; | 532 | chip->pcm[idx] = pcm; |
532 | // This is an evil hack, but it saves a lot of duplicated code. | 533 | // This is an evil hack, but it saves a lot of duplicated code. |
533 | VORTEX_PCM_TYPE(pcm) = idx; | 534 | VORTEX_PCM_TYPE(pcm) = idx; |
diff --git a/sound/pci/emu10k1/emufx.c b/sound/pci/emu10k1/emufx.c index 7a9401462c1..dae4050ede5 100644 --- a/sound/pci/emu10k1/emufx.c +++ b/sound/pci/emu10k1/emufx.c | |||
@@ -303,6 +303,9 @@ static const u32 db_table[101] = { | |||
303 | static const DECLARE_TLV_DB_SCALE(snd_emu10k1_db_scale1, -4000, 40, 1); | 303 | static const DECLARE_TLV_DB_SCALE(snd_emu10k1_db_scale1, -4000, 40, 1); |
304 | static const DECLARE_TLV_DB_LINEAR(snd_emu10k1_db_linear, TLV_DB_GAIN_MUTE, 0); | 304 | static const DECLARE_TLV_DB_LINEAR(snd_emu10k1_db_linear, TLV_DB_GAIN_MUTE, 0); |
305 | 305 | ||
306 | /* EMU10K1 bass/treble db gain */ | ||
307 | static const DECLARE_TLV_DB_SCALE(snd_emu10k1_bass_treble_db_scale, -1200, 60, 0); | ||
308 | |||
306 | static const u32 onoff_table[2] = { | 309 | static const u32 onoff_table[2] = { |
307 | 0x00000000, 0x00000001 | 310 | 0x00000000, 0x00000001 |
308 | }; | 311 | }; |
@@ -2163,6 +2166,7 @@ static int __devinit _snd_emu10k1_init_efx(struct snd_emu10k1 *emu) | |||
2163 | ctl->min = 0; | 2166 | ctl->min = 0; |
2164 | ctl->max = 40; | 2167 | ctl->max = 40; |
2165 | ctl->value[0] = ctl->value[1] = 20; | 2168 | ctl->value[0] = ctl->value[1] = 20; |
2169 | ctl->tlv = snd_emu10k1_bass_treble_db_scale; | ||
2166 | ctl->translation = EMU10K1_GPR_TRANSLATION_BASS; | 2170 | ctl->translation = EMU10K1_GPR_TRANSLATION_BASS; |
2167 | ctl = &controls[i + 1]; | 2171 | ctl = &controls[i + 1]; |
2168 | ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; | 2172 | ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
@@ -2172,6 +2176,7 @@ static int __devinit _snd_emu10k1_init_efx(struct snd_emu10k1 *emu) | |||
2172 | ctl->min = 0; | 2176 | ctl->min = 0; |
2173 | ctl->max = 40; | 2177 | ctl->max = 40; |
2174 | ctl->value[0] = ctl->value[1] = 20; | 2178 | ctl->value[0] = ctl->value[1] = 20; |
2179 | ctl->tlv = snd_emu10k1_bass_treble_db_scale; | ||
2175 | ctl->translation = EMU10K1_GPR_TRANSLATION_TREBLE; | 2180 | ctl->translation = EMU10K1_GPR_TRANSLATION_TREBLE; |
2176 | 2181 | ||
2177 | #define BASS_GPR 0x8c | 2182 | #define BASS_GPR 0x8c |
diff --git a/sound/pci/emu10k1/emumixer.c b/sound/pci/emu10k1/emumixer.c index 05afe06e353..9d890a5aec5 100644 --- a/sound/pci/emu10k1/emumixer.c +++ b/sound/pci/emu10k1/emumixer.c | |||
@@ -1729,8 +1729,6 @@ int __devinit snd_emu10k1_mixer(struct snd_emu10k1 *emu, | |||
1729 | "Master Mono Playback Volume", | 1729 | "Master Mono Playback Volume", |
1730 | "PCM Out Path & Mute", | 1730 | "PCM Out Path & Mute", |
1731 | "Mono Output Select", | 1731 | "Mono Output Select", |
1732 | "Front Playback Switch", | ||
1733 | "Front Playback Volume", | ||
1734 | "Surround Playback Switch", | 1732 | "Surround Playback Switch", |
1735 | "Surround Playback Volume", | 1733 | "Surround Playback Volume", |
1736 | "Center Playback Switch", | 1734 | "Center Playback Switch", |
@@ -1879,6 +1877,8 @@ int __devinit snd_emu10k1_mixer(struct snd_emu10k1 *emu, | |||
1879 | emu->rear_ac97 = 1; | 1877 | emu->rear_ac97 = 1; |
1880 | snd_emu10k1_ptr_write(emu, AC97SLOT, 0, AC97SLOT_CNTR|AC97SLOT_LFE|AC97SLOT_REAR_LEFT|AC97SLOT_REAR_RIGHT); | 1878 | snd_emu10k1_ptr_write(emu, AC97SLOT, 0, AC97SLOT_CNTR|AC97SLOT_LFE|AC97SLOT_REAR_LEFT|AC97SLOT_REAR_RIGHT); |
1881 | snd_ac97_write_cache(emu->ac97, AC97_HEADPHONE, 0x0202); | 1879 | snd_ac97_write_cache(emu->ac97, AC97_HEADPHONE, 0x0202); |
1880 | remove_ctl(card,"Front Playback Volume"); | ||
1881 | remove_ctl(card,"Front Playback Switch"); | ||
1882 | } | 1882 | } |
1883 | /* remove unused AC97 controls */ | 1883 | /* remove unused AC97 controls */ |
1884 | snd_ac97_write_cache(emu->ac97, AC97_SURROUND_MASTER, 0x0202); | 1884 | snd_ac97_write_cache(emu->ac97, AC97_SURROUND_MASTER, 0x0202); |
@@ -1913,6 +1913,12 @@ int __devinit snd_emu10k1_mixer(struct snd_emu10k1 *emu, | |||
1913 | for (; *c; c += 2) | 1913 | for (; *c; c += 2) |
1914 | rename_ctl(card, c[0], c[1]); | 1914 | rename_ctl(card, c[0], c[1]); |
1915 | 1915 | ||
1916 | if (emu->card_capabilities->subsystem == 0x80401102) { /* SB Live! Platinum CT4760P */ | ||
1917 | remove_ctl(card, "Center Playback Volume"); | ||
1918 | remove_ctl(card, "LFE Playback Volume"); | ||
1919 | remove_ctl(card, "Wave Center Playback Volume"); | ||
1920 | remove_ctl(card, "Wave LFE Playback Volume"); | ||
1921 | } | ||
1916 | if (emu->card_capabilities->subsystem == 0x20071102) { /* Audigy 4 Pro */ | 1922 | if (emu->card_capabilities->subsystem == 0x20071102) { /* Audigy 4 Pro */ |
1917 | rename_ctl(card, "Line2 Capture Volume", "Line1/Mic Capture Volume"); | 1923 | rename_ctl(card, "Line2 Capture Volume", "Line1/Mic Capture Volume"); |
1918 | rename_ctl(card, "Analog Mix Capture Volume", "Line2 Capture Volume"); | 1924 | rename_ctl(card, "Analog Mix Capture Volume", "Line2 Capture Volume"); |
diff --git a/sound/pci/es1968.c b/sound/pci/es1968.c index 7c17f45d876..ab0a6156a70 100644 --- a/sound/pci/es1968.c +++ b/sound/pci/es1968.c | |||
@@ -112,6 +112,10 @@ | |||
112 | #include <sound/ac97_codec.h> | 112 | #include <sound/ac97_codec.h> |
113 | #include <sound/initval.h> | 113 | #include <sound/initval.h> |
114 | 114 | ||
115 | #ifdef CONFIG_SND_ES1968_RADIO | ||
116 | #include <sound/tea575x-tuner.h> | ||
117 | #endif | ||
118 | |||
115 | #define CARD_NAME "ESS Maestro1/2" | 119 | #define CARD_NAME "ESS Maestro1/2" |
116 | #define DRIVER_NAME "ES1968" | 120 | #define DRIVER_NAME "ES1968" |
117 | 121 | ||
@@ -553,6 +557,10 @@ struct es1968 { | |||
553 | spinlock_t ac97_lock; | 557 | spinlock_t ac97_lock; |
554 | struct tasklet_struct hwvol_tq; | 558 | struct tasklet_struct hwvol_tq; |
555 | #endif | 559 | #endif |
560 | |||
561 | #ifdef CONFIG_SND_ES1968_RADIO | ||
562 | struct snd_tea575x tea; | ||
563 | #endif | ||
556 | }; | 564 | }; |
557 | 565 | ||
558 | static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id); | 566 | static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id); |
@@ -2571,6 +2579,63 @@ static int __devinit snd_es1968_input_register(struct es1968 *chip) | |||
2571 | } | 2579 | } |
2572 | #endif /* CONFIG_SND_ES1968_INPUT */ | 2580 | #endif /* CONFIG_SND_ES1968_INPUT */ |
2573 | 2581 | ||
2582 | #ifdef CONFIG_SND_ES1968_RADIO | ||
2583 | #define GPIO_DATA 0x60 | ||
2584 | #define IO_MASK 4 /* mask register offset from GPIO_DATA | ||
2585 | bits 1=unmask write to given bit */ | ||
2586 | #define IO_DIR 8 /* direction register offset from GPIO_DATA | ||
2587 | bits 0/1=read/write direction */ | ||
2588 | /* mask bits for GPIO lines */ | ||
2589 | #define STR_DATA 0x0040 /* GPIO6 */ | ||
2590 | #define STR_CLK 0x0080 /* GPIO7 */ | ||
2591 | #define STR_WREN 0x0100 /* GPIO8 */ | ||
2592 | #define STR_MOST 0x0200 /* GPIO9 */ | ||
2593 | |||
2594 | static void snd_es1968_tea575x_set_pins(struct snd_tea575x *tea, u8 pins) | ||
2595 | { | ||
2596 | struct es1968 *chip = tea->private_data; | ||
2597 | unsigned long io = chip->io_port + GPIO_DATA; | ||
2598 | u16 val = 0; | ||
2599 | |||
2600 | val |= (pins & TEA575X_DATA) ? STR_DATA : 0; | ||
2601 | val |= (pins & TEA575X_CLK) ? STR_CLK : 0; | ||
2602 | val |= (pins & TEA575X_WREN) ? STR_WREN : 0; | ||
2603 | |||
2604 | outw(val, io); | ||
2605 | } | ||
2606 | |||
2607 | static u8 snd_es1968_tea575x_get_pins(struct snd_tea575x *tea) | ||
2608 | { | ||
2609 | struct es1968 *chip = tea->private_data; | ||
2610 | unsigned long io = chip->io_port + GPIO_DATA; | ||
2611 | u16 val = inw(io); | ||
2612 | |||
2613 | return (val & STR_DATA) ? TEA575X_DATA : 0 | | ||
2614 | (val & STR_MOST) ? TEA575X_MOST : 0; | ||
2615 | } | ||
2616 | |||
2617 | static void snd_es1968_tea575x_set_direction(struct snd_tea575x *tea, bool output) | ||
2618 | { | ||
2619 | struct es1968 *chip = tea->private_data; | ||
2620 | unsigned long io = chip->io_port + GPIO_DATA; | ||
2621 | u16 odir = inw(io + IO_DIR); | ||
2622 | |||
2623 | if (output) { | ||
2624 | outw(~(STR_DATA | STR_CLK | STR_WREN), io + IO_MASK); | ||
2625 | outw(odir | STR_DATA | STR_CLK | STR_WREN, io + IO_DIR); | ||
2626 | } else { | ||
2627 | outw(~(STR_CLK | STR_WREN | STR_DATA | STR_MOST), io + IO_MASK); | ||
2628 | outw((odir & ~(STR_DATA | STR_MOST)) | STR_CLK | STR_WREN, io + IO_DIR); | ||
2629 | } | ||
2630 | } | ||
2631 | |||
2632 | static struct snd_tea575x_ops snd_es1968_tea_ops = { | ||
2633 | .set_pins = snd_es1968_tea575x_set_pins, | ||
2634 | .get_pins = snd_es1968_tea575x_get_pins, | ||
2635 | .set_direction = snd_es1968_tea575x_set_direction, | ||
2636 | }; | ||
2637 | #endif | ||
2638 | |||
2574 | static int snd_es1968_free(struct es1968 *chip) | 2639 | static int snd_es1968_free(struct es1968 *chip) |
2575 | { | 2640 | { |
2576 | #ifdef CONFIG_SND_ES1968_INPUT | 2641 | #ifdef CONFIG_SND_ES1968_INPUT |
@@ -2585,6 +2650,10 @@ static int snd_es1968_free(struct es1968 *chip) | |||
2585 | outw(0, chip->io_port + ESM_PORT_HOST_IRQ); /* disable IRQ */ | 2650 | outw(0, chip->io_port + ESM_PORT_HOST_IRQ); /* disable IRQ */ |
2586 | } | 2651 | } |
2587 | 2652 | ||
2653 | #ifdef CONFIG_SND_ES1968_RADIO | ||
2654 | snd_tea575x_exit(&chip->tea); | ||
2655 | #endif | ||
2656 | |||
2588 | if (chip->irq >= 0) | 2657 | if (chip->irq >= 0) |
2589 | free_irq(chip->irq, chip); | 2658 | free_irq(chip->irq, chip); |
2590 | snd_es1968_free_gameport(chip); | 2659 | snd_es1968_free_gameport(chip); |
@@ -2723,6 +2792,15 @@ static int __devinit snd_es1968_create(struct snd_card *card, | |||
2723 | 2792 | ||
2724 | snd_card_set_dev(card, &pci->dev); | 2793 | snd_card_set_dev(card, &pci->dev); |
2725 | 2794 | ||
2795 | #ifdef CONFIG_SND_ES1968_RADIO | ||
2796 | chip->tea.private_data = chip; | ||
2797 | chip->tea.ops = &snd_es1968_tea_ops; | ||
2798 | strlcpy(chip->tea.card, "SF64-PCE2", sizeof(chip->tea.card)); | ||
2799 | sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci)); | ||
2800 | if (!snd_tea575x_init(&chip->tea)) | ||
2801 | printk(KERN_INFO "es1968: detected TEA575x radio\n"); | ||
2802 | #endif | ||
2803 | |||
2726 | *chip_ret = chip; | 2804 | *chip_ret = chip; |
2727 | 2805 | ||
2728 | return 0; | 2806 | return 0; |
diff --git a/sound/pci/fm801.c b/sound/pci/fm801.c index e1baad74ea4..eacd4901a30 100644 --- a/sound/pci/fm801.c +++ b/sound/pci/fm801.c | |||
@@ -38,7 +38,6 @@ | |||
38 | 38 | ||
39 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL | 39 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL |
40 | #include <sound/tea575x-tuner.h> | 40 | #include <sound/tea575x-tuner.h> |
41 | #define TEA575X_RADIO 1 | ||
42 | #endif | 41 | #endif |
43 | 42 | ||
44 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); | 43 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
@@ -53,7 +52,7 @@ static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card * | |||
53 | /* | 52 | /* |
54 | * Enable TEA575x tuner | 53 | * Enable TEA575x tuner |
55 | * 1 = MediaForte 256-PCS | 54 | * 1 = MediaForte 256-PCS |
56 | * 2 = MediaForte 256-PCPR | 55 | * 2 = MediaForte 256-PCP |
57 | * 3 = MediaForte 64-PCR | 56 | * 3 = MediaForte 64-PCR |
58 | * 16 = setup tuner only (this is additional bit), i.e. SF64-PCR FM card | 57 | * 16 = setup tuner only (this is additional bit), i.e. SF64-PCR FM card |
59 | * High 16-bits are video (radio) device number + 1 | 58 | * High 16-bits are video (radio) device number + 1 |
@@ -67,7 +66,7 @@ MODULE_PARM_DESC(id, "ID string for the FM801 soundcard."); | |||
67 | module_param_array(enable, bool, NULL, 0444); | 66 | module_param_array(enable, bool, NULL, 0444); |
68 | MODULE_PARM_DESC(enable, "Enable FM801 soundcard."); | 67 | MODULE_PARM_DESC(enable, "Enable FM801 soundcard."); |
69 | module_param_array(tea575x_tuner, int, NULL, 0444); | 68 | module_param_array(tea575x_tuner, int, NULL, 0444); |
70 | MODULE_PARM_DESC(tea575x_tuner, "TEA575x tuner access method (1 = SF256-PCS, 2=SF256-PCPR, 3=SF64-PCR, +16=tuner-only)."); | 69 | MODULE_PARM_DESC(tea575x_tuner, "TEA575x tuner access method (0 = auto, 1 = SF256-PCS, 2=SF256-PCP, 3=SF64-PCR, 8=disable, +16=tuner-only)."); |
71 | 70 | ||
72 | #define TUNER_ONLY (1<<4) | 71 | #define TUNER_ONLY (1<<4) |
73 | #define TUNER_TYPE_MASK (~TUNER_ONLY & 0xFFFF) | 72 | #define TUNER_TYPE_MASK (~TUNER_ONLY & 0xFFFF) |
@@ -196,7 +195,7 @@ struct fm801 { | |||
196 | spinlock_t reg_lock; | 195 | spinlock_t reg_lock; |
197 | struct snd_info_entry *proc_entry; | 196 | struct snd_info_entry *proc_entry; |
198 | 197 | ||
199 | #ifdef TEA575X_RADIO | 198 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL |
200 | struct snd_tea575x tea; | 199 | struct snd_tea575x tea; |
201 | #endif | 200 | #endif |
202 | 201 | ||
@@ -715,310 +714,89 @@ static int __devinit snd_fm801_pcm(struct fm801 *chip, int device, struct snd_pc | |||
715 | * TEA5757 radio | 714 | * TEA5757 radio |
716 | */ | 715 | */ |
717 | 716 | ||
718 | #ifdef TEA575X_RADIO | 717 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL |
719 | |||
720 | /* 256PCS GPIO numbers */ | ||
721 | #define TEA_256PCS_DATA 1 | ||
722 | #define TEA_256PCS_WRITE_ENABLE 2 /* inverted */ | ||
723 | #define TEA_256PCS_BUS_CLOCK 3 | ||
724 | |||
725 | static void snd_fm801_tea575x_256pcs_write(struct snd_tea575x *tea, unsigned int val) | ||
726 | { | ||
727 | struct fm801 *chip = tea->private_data; | ||
728 | unsigned short reg; | ||
729 | int i = 25; | ||
730 | 718 | ||
731 | spin_lock_irq(&chip->reg_lock); | 719 | /* GPIO to TEA575x maps */ |
732 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | 720 | struct snd_fm801_tea575x_gpio { |
733 | /* use GPIO lines and set write enable bit */ | 721 | u8 data, clk, wren, most; |
734 | reg |= FM801_GPIO_GS(TEA_256PCS_DATA) | | 722 | char *name; |
735 | FM801_GPIO_GS(TEA_256PCS_WRITE_ENABLE) | | 723 | }; |
736 | FM801_GPIO_GS(TEA_256PCS_BUS_CLOCK); | ||
737 | /* all of lines are in the write direction */ | ||
738 | /* clear data and clock lines */ | ||
739 | reg &= ~(FM801_GPIO_GD(TEA_256PCS_DATA) | | ||
740 | FM801_GPIO_GD(TEA_256PCS_WRITE_ENABLE) | | ||
741 | FM801_GPIO_GD(TEA_256PCS_BUS_CLOCK) | | ||
742 | FM801_GPIO_GP(TEA_256PCS_DATA) | | ||
743 | FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK) | | ||
744 | FM801_GPIO_GP(TEA_256PCS_WRITE_ENABLE)); | ||
745 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
746 | udelay(1); | ||
747 | |||
748 | while (i--) { | ||
749 | if (val & (1 << i)) | ||
750 | reg |= FM801_GPIO_GP(TEA_256PCS_DATA); | ||
751 | else | ||
752 | reg &= ~FM801_GPIO_GP(TEA_256PCS_DATA); | ||
753 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
754 | udelay(1); | ||
755 | reg |= FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK); | ||
756 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
757 | reg &= ~FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK); | ||
758 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
759 | udelay(1); | ||
760 | } | ||
761 | 724 | ||
762 | /* and reset the write enable bit */ | 725 | static struct snd_fm801_tea575x_gpio snd_fm801_tea575x_gpios[] = { |
763 | reg |= FM801_GPIO_GP(TEA_256PCS_WRITE_ENABLE) | | 726 | { .data = 1, .clk = 3, .wren = 2, .most = 0, .name = "SF256-PCS" }, |
764 | FM801_GPIO_GP(TEA_256PCS_DATA); | 727 | { .data = 1, .clk = 0, .wren = 2, .most = 3, .name = "SF256-PCP" }, |
765 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 728 | { .data = 2, .clk = 0, .wren = 1, .most = 3, .name = "SF64-PCR" }, |
766 | spin_unlock_irq(&chip->reg_lock); | 729 | }; |
767 | } | ||
768 | 730 | ||
769 | static unsigned int snd_fm801_tea575x_256pcs_read(struct snd_tea575x *tea) | 731 | static void snd_fm801_tea575x_set_pins(struct snd_tea575x *tea, u8 pins) |
770 | { | 732 | { |
771 | struct fm801 *chip = tea->private_data; | 733 | struct fm801 *chip = tea->private_data; |
772 | unsigned short reg; | 734 | unsigned short reg = inw(FM801_REG(chip, GPIO_CTRL)); |
773 | unsigned int val = 0; | 735 | struct snd_fm801_tea575x_gpio gpio = snd_fm801_tea575x_gpios[(chip->tea575x_tuner & TUNER_TYPE_MASK) - 1]; |
774 | int i; | ||
775 | |||
776 | spin_lock_irq(&chip->reg_lock); | ||
777 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
778 | /* use GPIO lines, set data direction to input */ | ||
779 | reg |= FM801_GPIO_GS(TEA_256PCS_DATA) | | ||
780 | FM801_GPIO_GS(TEA_256PCS_WRITE_ENABLE) | | ||
781 | FM801_GPIO_GS(TEA_256PCS_BUS_CLOCK) | | ||
782 | FM801_GPIO_GD(TEA_256PCS_DATA) | | ||
783 | FM801_GPIO_GP(TEA_256PCS_DATA) | | ||
784 | FM801_GPIO_GP(TEA_256PCS_WRITE_ENABLE); | ||
785 | /* all of lines are in the write direction, except data */ | ||
786 | /* clear data, write enable and clock lines */ | ||
787 | reg &= ~(FM801_GPIO_GD(TEA_256PCS_WRITE_ENABLE) | | ||
788 | FM801_GPIO_GD(TEA_256PCS_BUS_CLOCK) | | ||
789 | FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK)); | ||
790 | |||
791 | for (i = 0; i < 24; i++) { | ||
792 | reg &= ~FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK); | ||
793 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
794 | udelay(1); | ||
795 | reg |= FM801_GPIO_GP(TEA_256PCS_BUS_CLOCK); | ||
796 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
797 | udelay(1); | ||
798 | val <<= 1; | ||
799 | if (inw(FM801_REG(chip, GPIO_CTRL)) & FM801_GPIO_GP(TEA_256PCS_DATA)) | ||
800 | val |= 1; | ||
801 | } | ||
802 | 736 | ||
803 | spin_unlock_irq(&chip->reg_lock); | 737 | reg &= ~(FM801_GPIO_GP(gpio.data) | |
738 | FM801_GPIO_GP(gpio.clk) | | ||
739 | FM801_GPIO_GP(gpio.wren)); | ||
804 | 740 | ||
805 | return val; | 741 | reg |= (pins & TEA575X_DATA) ? FM801_GPIO_GP(gpio.data) : 0; |
806 | } | 742 | reg |= (pins & TEA575X_CLK) ? FM801_GPIO_GP(gpio.clk) : 0; |
743 | /* WRITE_ENABLE is inverted */ | ||
744 | reg |= (pins & TEA575X_WREN) ? 0 : FM801_GPIO_GP(gpio.wren); | ||
807 | 745 | ||
808 | /* 256PCPR GPIO numbers */ | ||
809 | #define TEA_256PCPR_BUS_CLOCK 0 | ||
810 | #define TEA_256PCPR_DATA 1 | ||
811 | #define TEA_256PCPR_WRITE_ENABLE 2 /* inverted */ | ||
812 | |||
813 | static void snd_fm801_tea575x_256pcpr_write(struct snd_tea575x *tea, unsigned int val) | ||
814 | { | ||
815 | struct fm801 *chip = tea->private_data; | ||
816 | unsigned short reg; | ||
817 | int i = 25; | ||
818 | |||
819 | spin_lock_irq(&chip->reg_lock); | ||
820 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
821 | /* use GPIO lines and set write enable bit */ | ||
822 | reg |= FM801_GPIO_GS(TEA_256PCPR_DATA) | | ||
823 | FM801_GPIO_GS(TEA_256PCPR_WRITE_ENABLE) | | ||
824 | FM801_GPIO_GS(TEA_256PCPR_BUS_CLOCK); | ||
825 | /* all of lines are in the write direction */ | ||
826 | /* clear data and clock lines */ | ||
827 | reg &= ~(FM801_GPIO_GD(TEA_256PCPR_DATA) | | ||
828 | FM801_GPIO_GD(TEA_256PCPR_WRITE_ENABLE) | | ||
829 | FM801_GPIO_GD(TEA_256PCPR_BUS_CLOCK) | | ||
830 | FM801_GPIO_GP(TEA_256PCPR_DATA) | | ||
831 | FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK) | | ||
832 | FM801_GPIO_GP(TEA_256PCPR_WRITE_ENABLE)); | ||
833 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 746 | outw(reg, FM801_REG(chip, GPIO_CTRL)); |
834 | udelay(1); | ||
835 | |||
836 | while (i--) { | ||
837 | if (val & (1 << i)) | ||
838 | reg |= FM801_GPIO_GP(TEA_256PCPR_DATA); | ||
839 | else | ||
840 | reg &= ~FM801_GPIO_GP(TEA_256PCPR_DATA); | ||
841 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
842 | udelay(1); | ||
843 | reg |= FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK); | ||
844 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
845 | reg &= ~FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK); | ||
846 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
847 | udelay(1); | ||
848 | } | ||
849 | |||
850 | /* and reset the write enable bit */ | ||
851 | reg |= FM801_GPIO_GP(TEA_256PCPR_WRITE_ENABLE) | | ||
852 | FM801_GPIO_GP(TEA_256PCPR_DATA); | ||
853 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
854 | spin_unlock_irq(&chip->reg_lock); | ||
855 | } | 747 | } |
856 | 748 | ||
857 | static unsigned int snd_fm801_tea575x_256pcpr_read(struct snd_tea575x *tea) | 749 | static u8 snd_fm801_tea575x_get_pins(struct snd_tea575x *tea) |
858 | { | 750 | { |
859 | struct fm801 *chip = tea->private_data; | 751 | struct fm801 *chip = tea->private_data; |
860 | unsigned short reg; | 752 | unsigned short reg = inw(FM801_REG(chip, GPIO_CTRL)); |
861 | unsigned int val = 0; | 753 | struct snd_fm801_tea575x_gpio gpio = snd_fm801_tea575x_gpios[(chip->tea575x_tuner & TUNER_TYPE_MASK) - 1]; |
862 | int i; | ||
863 | |||
864 | spin_lock_irq(&chip->reg_lock); | ||
865 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
866 | /* use GPIO lines, set data direction to input */ | ||
867 | reg |= FM801_GPIO_GS(TEA_256PCPR_DATA) | | ||
868 | FM801_GPIO_GS(TEA_256PCPR_WRITE_ENABLE) | | ||
869 | FM801_GPIO_GS(TEA_256PCPR_BUS_CLOCK) | | ||
870 | FM801_GPIO_GD(TEA_256PCPR_DATA) | | ||
871 | FM801_GPIO_GP(TEA_256PCPR_DATA) | | ||
872 | FM801_GPIO_GP(TEA_256PCPR_WRITE_ENABLE); | ||
873 | /* all of lines are in the write direction, except data */ | ||
874 | /* clear data, write enable and clock lines */ | ||
875 | reg &= ~(FM801_GPIO_GD(TEA_256PCPR_WRITE_ENABLE) | | ||
876 | FM801_GPIO_GD(TEA_256PCPR_BUS_CLOCK) | | ||
877 | FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK)); | ||
878 | |||
879 | for (i = 0; i < 24; i++) { | ||
880 | reg &= ~FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK); | ||
881 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
882 | udelay(1); | ||
883 | reg |= FM801_GPIO_GP(TEA_256PCPR_BUS_CLOCK); | ||
884 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
885 | udelay(1); | ||
886 | val <<= 1; | ||
887 | if (inw(FM801_REG(chip, GPIO_CTRL)) & FM801_GPIO_GP(TEA_256PCPR_DATA)) | ||
888 | val |= 1; | ||
889 | } | ||
890 | 754 | ||
891 | spin_unlock_irq(&chip->reg_lock); | 755 | return (reg & FM801_GPIO_GP(gpio.data)) ? TEA575X_DATA : 0 | |
892 | 756 | (reg & FM801_GPIO_GP(gpio.most)) ? TEA575X_MOST : 0; | |
893 | return val; | ||
894 | } | 757 | } |
895 | 758 | ||
896 | /* 64PCR GPIO numbers */ | 759 | static void snd_fm801_tea575x_set_direction(struct snd_tea575x *tea, bool output) |
897 | #define TEA_64PCR_BUS_CLOCK 0 | ||
898 | #define TEA_64PCR_WRITE_ENABLE 1 /* inverted */ | ||
899 | #define TEA_64PCR_DATA 2 | ||
900 | |||
901 | static void snd_fm801_tea575x_64pcr_write(struct snd_tea575x *tea, unsigned int val) | ||
902 | { | 760 | { |
903 | struct fm801 *chip = tea->private_data; | 761 | struct fm801 *chip = tea->private_data; |
904 | unsigned short reg; | 762 | unsigned short reg = inw(FM801_REG(chip, GPIO_CTRL)); |
905 | int i = 25; | 763 | struct snd_fm801_tea575x_gpio gpio = snd_fm801_tea575x_gpios[(chip->tea575x_tuner & TUNER_TYPE_MASK) - 1]; |
906 | 764 | ||
907 | spin_lock_irq(&chip->reg_lock); | ||
908 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
909 | /* use GPIO lines and set write enable bit */ | 765 | /* use GPIO lines and set write enable bit */ |
910 | reg |= FM801_GPIO_GS(TEA_64PCR_DATA) | | 766 | reg |= FM801_GPIO_GS(gpio.data) | |
911 | FM801_GPIO_GS(TEA_64PCR_WRITE_ENABLE) | | 767 | FM801_GPIO_GS(gpio.wren) | |
912 | FM801_GPIO_GS(TEA_64PCR_BUS_CLOCK); | 768 | FM801_GPIO_GS(gpio.clk) | |
913 | /* all of lines are in the write direction */ | 769 | FM801_GPIO_GS(gpio.most); |
914 | /* clear data and clock lines */ | 770 | if (output) { |
915 | reg &= ~(FM801_GPIO_GD(TEA_64PCR_DATA) | | 771 | /* all of lines are in the write direction */ |
916 | FM801_GPIO_GD(TEA_64PCR_WRITE_ENABLE) | | 772 | /* clear data and clock lines */ |
917 | FM801_GPIO_GD(TEA_64PCR_BUS_CLOCK) | | 773 | reg &= ~(FM801_GPIO_GD(gpio.data) | |
918 | FM801_GPIO_GP(TEA_64PCR_DATA) | | 774 | FM801_GPIO_GD(gpio.wren) | |
919 | FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK) | | 775 | FM801_GPIO_GD(gpio.clk) | |
920 | FM801_GPIO_GP(TEA_64PCR_WRITE_ENABLE)); | 776 | FM801_GPIO_GP(gpio.data) | |
921 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 777 | FM801_GPIO_GP(gpio.clk) | |
922 | udelay(1); | 778 | FM801_GPIO_GP(gpio.wren)); |
923 | 779 | } else { | |
924 | while (i--) { | 780 | /* use GPIO lines, set data direction to input */ |
925 | if (val & (1 << i)) | 781 | reg |= FM801_GPIO_GD(gpio.data) | |
926 | reg |= FM801_GPIO_GP(TEA_64PCR_DATA); | 782 | FM801_GPIO_GD(gpio.most) | |
927 | else | 783 | FM801_GPIO_GP(gpio.data) | |
928 | reg &= ~FM801_GPIO_GP(TEA_64PCR_DATA); | 784 | FM801_GPIO_GP(gpio.most) | |
929 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 785 | FM801_GPIO_GP(gpio.wren); |
930 | udelay(1); | 786 | /* all of lines are in the write direction, except data */ |
931 | reg |= FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK); | 787 | /* clear data, write enable and clock lines */ |
932 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 788 | reg &= ~(FM801_GPIO_GD(gpio.wren) | |
933 | reg &= ~FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK); | 789 | FM801_GPIO_GD(gpio.clk) | |
934 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 790 | FM801_GPIO_GP(gpio.clk)); |
935 | udelay(1); | ||
936 | } | 791 | } |
937 | 792 | ||
938 | /* and reset the write enable bit */ | ||
939 | reg |= FM801_GPIO_GP(TEA_64PCR_WRITE_ENABLE) | | ||
940 | FM801_GPIO_GP(TEA_64PCR_DATA); | ||
941 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | 793 | outw(reg, FM801_REG(chip, GPIO_CTRL)); |
942 | spin_unlock_irq(&chip->reg_lock); | ||
943 | } | ||
944 | |||
945 | static unsigned int snd_fm801_tea575x_64pcr_read(struct snd_tea575x *tea) | ||
946 | { | ||
947 | struct fm801 *chip = tea->private_data; | ||
948 | unsigned short reg; | ||
949 | unsigned int val = 0; | ||
950 | int i; | ||
951 | |||
952 | spin_lock_irq(&chip->reg_lock); | ||
953 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
954 | /* use GPIO lines, set data direction to input */ | ||
955 | reg |= FM801_GPIO_GS(TEA_64PCR_DATA) | | ||
956 | FM801_GPIO_GS(TEA_64PCR_WRITE_ENABLE) | | ||
957 | FM801_GPIO_GS(TEA_64PCR_BUS_CLOCK) | | ||
958 | FM801_GPIO_GD(TEA_64PCR_DATA) | | ||
959 | FM801_GPIO_GP(TEA_64PCR_DATA) | | ||
960 | FM801_GPIO_GP(TEA_64PCR_WRITE_ENABLE); | ||
961 | /* all of lines are in the write direction, except data */ | ||
962 | /* clear data, write enable and clock lines */ | ||
963 | reg &= ~(FM801_GPIO_GD(TEA_64PCR_WRITE_ENABLE) | | ||
964 | FM801_GPIO_GD(TEA_64PCR_BUS_CLOCK) | | ||
965 | FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK)); | ||
966 | |||
967 | for (i = 0; i < 24; i++) { | ||
968 | reg &= ~FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK); | ||
969 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
970 | udelay(1); | ||
971 | reg |= FM801_GPIO_GP(TEA_64PCR_BUS_CLOCK); | ||
972 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
973 | udelay(1); | ||
974 | val <<= 1; | ||
975 | if (inw(FM801_REG(chip, GPIO_CTRL)) & FM801_GPIO_GP(TEA_64PCR_DATA)) | ||
976 | val |= 1; | ||
977 | } | ||
978 | |||
979 | spin_unlock_irq(&chip->reg_lock); | ||
980 | |||
981 | return val; | ||
982 | } | 794 | } |
983 | 795 | ||
984 | static void snd_fm801_tea575x_64pcr_mute(struct snd_tea575x *tea, | 796 | static struct snd_tea575x_ops snd_fm801_tea_ops = { |
985 | unsigned int mute) | 797 | .set_pins = snd_fm801_tea575x_set_pins, |
986 | { | 798 | .get_pins = snd_fm801_tea575x_get_pins, |
987 | struct fm801 *chip = tea->private_data; | 799 | .set_direction = snd_fm801_tea575x_set_direction, |
988 | unsigned short reg; | ||
989 | |||
990 | spin_lock_irq(&chip->reg_lock); | ||
991 | |||
992 | reg = inw(FM801_REG(chip, GPIO_CTRL)); | ||
993 | if (mute) | ||
994 | /* 0xf800 (mute) */ | ||
995 | reg &= ~FM801_GPIO_GP(TEA_64PCR_WRITE_ENABLE); | ||
996 | else | ||
997 | /* 0xf802 (unmute) */ | ||
998 | reg |= FM801_GPIO_GP(TEA_64PCR_WRITE_ENABLE); | ||
999 | outw(reg, FM801_REG(chip, GPIO_CTRL)); | ||
1000 | udelay(1); | ||
1001 | |||
1002 | spin_unlock_irq(&chip->reg_lock); | ||
1003 | } | ||
1004 | |||
1005 | static struct snd_tea575x_ops snd_fm801_tea_ops[3] = { | ||
1006 | { | ||
1007 | /* 1 = MediaForte 256-PCS */ | ||
1008 | .write = snd_fm801_tea575x_256pcs_write, | ||
1009 | .read = snd_fm801_tea575x_256pcs_read, | ||
1010 | }, | ||
1011 | { | ||
1012 | /* 2 = MediaForte 256-PCPR */ | ||
1013 | .write = snd_fm801_tea575x_256pcpr_write, | ||
1014 | .read = snd_fm801_tea575x_256pcpr_read, | ||
1015 | }, | ||
1016 | { | ||
1017 | /* 3 = MediaForte 64-PCR */ | ||
1018 | .write = snd_fm801_tea575x_64pcr_write, | ||
1019 | .read = snd_fm801_tea575x_64pcr_read, | ||
1020 | .mute = snd_fm801_tea575x_64pcr_mute, | ||
1021 | } | ||
1022 | }; | 800 | }; |
1023 | #endif | 801 | #endif |
1024 | 802 | ||
@@ -1371,7 +1149,7 @@ static int snd_fm801_free(struct fm801 *chip) | |||
1371 | outw(cmdw, FM801_REG(chip, IRQ_MASK)); | 1149 | outw(cmdw, FM801_REG(chip, IRQ_MASK)); |
1372 | 1150 | ||
1373 | __end_hw: | 1151 | __end_hw: |
1374 | #ifdef TEA575X_RADIO | 1152 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL |
1375 | snd_tea575x_exit(&chip->tea); | 1153 | snd_tea575x_exit(&chip->tea); |
1376 | #endif | 1154 | #endif |
1377 | if (chip->irq >= 0) | 1155 | if (chip->irq >= 0) |
@@ -1450,16 +1228,25 @@ static int __devinit snd_fm801_create(struct snd_card *card, | |||
1450 | 1228 | ||
1451 | snd_card_set_dev(card, &pci->dev); | 1229 | snd_card_set_dev(card, &pci->dev); |
1452 | 1230 | ||
1453 | #ifdef TEA575X_RADIO | 1231 | #ifdef CONFIG_SND_FM801_TEA575X_BOOL |
1232 | chip->tea.private_data = chip; | ||
1233 | chip->tea.ops = &snd_fm801_tea_ops; | ||
1234 | sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci)); | ||
1454 | if ((tea575x_tuner & TUNER_TYPE_MASK) > 0 && | 1235 | if ((tea575x_tuner & TUNER_TYPE_MASK) > 0 && |
1455 | (tea575x_tuner & TUNER_TYPE_MASK) < 4) { | 1236 | (tea575x_tuner & TUNER_TYPE_MASK) < 4) { |
1456 | chip->tea.dev_nr = tea575x_tuner >> 16; | 1237 | if (snd_tea575x_init(&chip->tea)) |
1457 | chip->tea.card = card; | 1238 | snd_printk(KERN_ERR "TEA575x radio not found\n"); |
1458 | chip->tea.freq_fixup = 10700; | 1239 | } else if ((tea575x_tuner & TUNER_TYPE_MASK) == 0) |
1459 | chip->tea.private_data = chip; | 1240 | /* autodetect tuner connection */ |
1460 | chip->tea.ops = &snd_fm801_tea_ops[(tea575x_tuner & TUNER_TYPE_MASK) - 1]; | 1241 | for (tea575x_tuner = 1; tea575x_tuner <= 3; tea575x_tuner++) { |
1461 | snd_tea575x_init(&chip->tea); | 1242 | chip->tea575x_tuner = tea575x_tuner; |
1462 | } | 1243 | if (!snd_tea575x_init(&chip->tea)) { |
1244 | snd_printk(KERN_INFO "detected TEA575x radio type %s\n", | ||
1245 | snd_fm801_tea575x_gpios[tea575x_tuner - 1].name); | ||
1246 | break; | ||
1247 | } | ||
1248 | } | ||
1249 | strlcpy(chip->tea.card, snd_fm801_tea575x_gpios[(tea575x_tuner & TUNER_TYPE_MASK) - 1].name, sizeof(chip->tea.card)); | ||
1463 | #endif | 1250 | #endif |
1464 | 1251 | ||
1465 | *rchip = chip; | 1252 | *rchip = chip; |
diff --git a/sound/pci/intel8x0m.c b/sound/pci/intel8x0m.c index 27709f0cd2a..f3353b49c78 100644 --- a/sound/pci/intel8x0m.c +++ b/sound/pci/intel8x0m.c | |||
@@ -235,8 +235,8 @@ static DEFINE_PCI_DEVICE_TABLE(snd_intel8x0m_ids) = { | |||
235 | { PCI_VDEVICE(NVIDIA, 0x0069), DEVICE_NFORCE }, /* NFORCE2 */ | 235 | { PCI_VDEVICE(NVIDIA, 0x0069), DEVICE_NFORCE }, /* NFORCE2 */ |
236 | { PCI_VDEVICE(NVIDIA, 0x0089), DEVICE_NFORCE }, /* NFORCE2s */ | 236 | { PCI_VDEVICE(NVIDIA, 0x0089), DEVICE_NFORCE }, /* NFORCE2s */ |
237 | { PCI_VDEVICE(NVIDIA, 0x00d9), DEVICE_NFORCE }, /* NFORCE3 */ | 237 | { PCI_VDEVICE(NVIDIA, 0x00d9), DEVICE_NFORCE }, /* NFORCE3 */ |
238 | { PCI_VDEVICE(AMD, 0x746e), DEVICE_INTEL }, /* AMD8111 */ | ||
238 | #if 0 | 239 | #if 0 |
239 | { PCI_VDEVICE(AMD, 0x746d), DEVICE_INTEL }, /* AMD8111 */ | ||
240 | { PCI_VDEVICE(AL, 0x5455), DEVICE_ALI }, /* Ali5455 */ | 240 | { PCI_VDEVICE(AL, 0x5455), DEVICE_ALI }, /* Ali5455 */ |
241 | #endif | 241 | #endif |
242 | { 0, } | 242 | { 0, } |
@@ -1261,9 +1261,9 @@ static struct shortname_table { | |||
1261 | { PCI_DEVICE_ID_NVIDIA_MCP2_MODEM, "NVidia nForce2" }, | 1261 | { PCI_DEVICE_ID_NVIDIA_MCP2_MODEM, "NVidia nForce2" }, |
1262 | { PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM, "NVidia nForce2s" }, | 1262 | { PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM, "NVidia nForce2s" }, |
1263 | { PCI_DEVICE_ID_NVIDIA_MCP3_MODEM, "NVidia nForce3" }, | 1263 | { PCI_DEVICE_ID_NVIDIA_MCP3_MODEM, "NVidia nForce3" }, |
1264 | { 0x746e, "AMD AMD8111" }, | ||
1264 | #if 0 | 1265 | #if 0 |
1265 | { 0x5455, "ALi M5455" }, | 1266 | { 0x5455, "ALi M5455" }, |
1266 | { 0x746d, "AMD AMD8111" }, | ||
1267 | #endif | 1267 | #endif |
1268 | { 0 }, | 1268 | { 0 }, |
1269 | }; | 1269 | }; |