Commit 38439146 authored by Eliot Blennerhassett's avatar Eliot Blennerhassett Committed by Takashi Iwai

ALSA: asihpi - Add ASI5200 family

Signed-off-by: default avatarEliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 1dd6aaaa
...@@ -687,6 +687,7 @@ static short hpi6000_adapter_boot_load_dsp(struct hpi_adapter_obj *pao, ...@@ -687,6 +687,7 @@ static short hpi6000_adapter_boot_load_dsp(struct hpi_adapter_obj *pao,
switch (pao->pci.subsys_device_id) { switch (pao->pci.subsys_device_id) {
case 0x5100: case 0x5100:
case 0x5110: /* ASI5100 revB or higher with C6711D */ case 0x5110: /* ASI5100 revB or higher with C6711D */
case 0x5200: /* ASI5200 PC_ie version of ASI5100 */
case 0x6100: case 0x6100:
case 0x6200: case 0x6200:
boot_load_family = HPI_ADAPTER_FAMILY_ASI(0x6200); boot_load_family = HPI_ADAPTER_FAMILY_ASI(0x6200);
...@@ -1133,6 +1134,12 @@ static short hpi6000_adapter_boot_load_dsp(struct hpi_adapter_obj *pao, ...@@ -1133,6 +1134,12 @@ static short hpi6000_adapter_boot_load_dsp(struct hpi_adapter_obj *pao,
subsys_device_id) == subsys_device_id) ==
HPI_ADAPTER_FAMILY_ASI(0x5100)) HPI_ADAPTER_FAMILY_ASI(0x5100))
mask = 0x00000000L; mask = 0x00000000L;
/* ASI5200 uses AX6 code, */
/* but has no PLD r/w register to test */
if (HPI_ADAPTER_FAMILY_ASI(pao->pci.
subsys_device_id) ==
HPI_ADAPTER_FAMILY_ASI(0x5200))
mask = 0x00000000L;
break; break;
case HPI_ADAPTER_FAMILY_ASI(0x8800): case HPI_ADAPTER_FAMILY_ASI(0x8800):
/* ASI8800 has 16bit path to FPGA */ /* ASI8800 has 16bit path to FPGA */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment