Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
45acc86b
Commit
45acc86b
authored
Feb 07, 2013
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/hda-ca0132-dsp' into for-next
parents
0186f4f4
24f3cede
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4640 additions
and
415 deletions
+4640
-415
sound/pci/hda/Kconfig
sound/pci/hda/Kconfig
+14
-0
sound/pci/hda/ca0132_regs.h
sound/pci/hda/ca0132_regs.h
+409
-0
sound/pci/hda/hda_codec.h
sound/pci/hda/hda_codec.h
+45
-0
sound/pci/hda/hda_intel.c
sound/pci/hda/hda_intel.c
+110
-6
sound/pci/hda/patch_ca0132.c
sound/pci/hda/patch_ca0132.c
+4062
-409
No files found.
sound/pci/hda/Kconfig
View file @
45acc86b
...
...
@@ -15,6 +15,9 @@ menuconfig SND_HDA_INTEL
if SND_HDA_INTEL
config SND_HDA_DSP_LOADER
bool
config SND_HDA_PREALLOC_SIZE
int "Pre-allocated buffer size for HD-audio driver"
range 0 32768
...
...
@@ -200,6 +203,17 @@ config SND_HDA_CODEC_CA0132
snd-hda-codec-ca0132.
This module is automatically loaded at probing.
config SND_HDA_CODEC_CA0132_DSP
bool "Support new DSP code for CA0132 codec"
depends on SND_HDA_CODEC_CA0132 && FW_LOADER
select SND_HDA_DSP_LOADER
help
Say Y here to enable the DSP for Creative CA0132 for extended
features like equalizer or echo cancellation.
Note that this option requires the external firmware file
(ctefx.bin).
config SND_HDA_CODEC_CMEDIA
bool "Build C-Media HD-audio codec support"
default y
...
...
sound/pci/hda/ca0132_regs.h
0 → 100644
View file @
45acc86b
This diff is collapsed.
Click to expand it.
sound/pci/hda/hda_codec.h
View file @
45acc86b
...
...
@@ -618,6 +618,17 @@ struct hda_bus_ops {
/* notify power-up/down from codec to controller */
void
(
*
pm_notify
)(
struct
hda_bus
*
bus
,
bool
power_up
);
#endif
#ifdef CONFIG_SND_HDA_DSP_LOADER
/* prepare DSP transfer */
int
(
*
load_dsp_prepare
)(
struct
hda_bus
*
bus
,
unsigned
int
format
,
unsigned
int
byte_size
,
struct
snd_dma_buffer
*
bufp
);
/* start/stop DSP transfer */
void
(
*
load_dsp_trigger
)(
struct
hda_bus
*
bus
,
bool
start
);
/* clean up DSP transfer */
void
(
*
load_dsp_cleanup
)(
struct
hda_bus
*
bus
,
struct
snd_dma_buffer
*
dmab
);
#endif
};
/* template to pass to the bus constructor */
...
...
@@ -1150,6 +1161,40 @@ static inline void snd_hda_power_sync(struct hda_codec *codec)
int
snd_hda_load_patch
(
struct
hda_bus
*
bus
,
size_t
size
,
const
void
*
buf
);
#endif
#ifdef CONFIG_SND_HDA_DSP_LOADER
static
inline
int
snd_hda_codec_load_dsp_prepare
(
struct
hda_codec
*
codec
,
unsigned
int
format
,
unsigned
int
size
,
struct
snd_dma_buffer
*
bufp
)
{
return
codec
->
bus
->
ops
.
load_dsp_prepare
(
codec
->
bus
,
format
,
size
,
bufp
);
}
static
inline
void
snd_hda_codec_load_dsp_trigger
(
struct
hda_codec
*
codec
,
bool
start
)
{
return
codec
->
bus
->
ops
.
load_dsp_trigger
(
codec
->
bus
,
start
);
}
static
inline
void
snd_hda_codec_load_dsp_cleanup
(
struct
hda_codec
*
codec
,
struct
snd_dma_buffer
*
dmab
)
{
return
codec
->
bus
->
ops
.
load_dsp_cleanup
(
codec
->
bus
,
dmab
);
}
#else
static
inline
int
snd_hda_codec_load_dsp_prepare
(
struct
hda_codec
*
codec
,
unsigned
int
format
,
unsigned
int
size
,
struct
snd_dma_buffer
*
bufp
)
{
return
-
ENOSYS
;
}
static
inline
void
snd_hda_codec_load_dsp_trigger
(
struct
hda_codec
*
codec
,
bool
start
)
{}
static
inline
void
snd_hda_codec_load_dsp_cleanup
(
struct
hda_codec
*
codec
,
struct
snd_dma_buffer
*
dmab
)
{}
#endif
/*
* Codec modularization
*/
...
...
sound/pci/hda/hda_intel.c
View file @
45acc86b
...
...
@@ -1085,6 +1085,15 @@ static unsigned int azx_get_response(struct hda_bus *bus,
static
void
azx_power_notify
(
struct
hda_bus
*
bus
,
bool
power_up
);
#endif
#ifdef CONFIG_SND_HDA_DSP_LOADER
static
int
azx_load_dsp_prepare
(
struct
hda_bus
*
bus
,
unsigned
int
format
,
unsigned
int
byte_size
,
struct
snd_dma_buffer
*
bufp
);
static
void
azx_load_dsp_trigger
(
struct
hda_bus
*
bus
,
bool
start
);
static
void
azx_load_dsp_cleanup
(
struct
hda_bus
*
bus
,
struct
snd_dma_buffer
*
dmab
);
#endif
/* reset codec link */
static
int
azx_reset
(
struct
azx
*
chip
,
int
full_reset
)
{
...
...
@@ -1408,7 +1417,7 @@ static irqreturn_t azx_interrupt(int irq, void *dev_id)
* set up a BDL entry
*/
static
int
setup_bdle
(
struct
azx
*
chip
,
struct
snd_
pcm_substream
*
substream
,
struct
snd_
dma_buffer
*
dmab
,
struct
azx_dev
*
azx_dev
,
u32
**
bdlp
,
int
ofs
,
int
size
,
int
with_ioc
)
{
...
...
@@ -1421,12 +1430,12 @@ static int setup_bdle(struct azx *chip,
if
(
azx_dev
->
frags
>=
AZX_MAX_BDL_ENTRIES
)
return
-
EINVAL
;
addr
=
snd_
pcm_sgbuf_get_addr
(
substream
,
ofs
);
addr
=
snd_
sgbuf_get_addr
(
dmab
,
ofs
);
/* program the address field of the BDL entry */
bdl
[
0
]
=
cpu_to_le32
((
u32
)
addr
);
bdl
[
1
]
=
cpu_to_le32
(
upper_32_bits
(
addr
));
/* program the size field of the BDL entry */
chunk
=
snd_
pcm_sgbuf_get_chunk_size
(
substream
,
ofs
,
size
);
chunk
=
snd_
sgbuf_get_chunk_size
(
dmab
,
ofs
,
size
);
/* one BDLE cannot cross 4K boundary on CTHDA chips */
if
(
chip
->
driver_caps
&
AZX_DCAPS_4K_BDLE_BOUNDARY
)
{
u32
remain
=
0x1000
-
(
ofs
&
0xfff
);
...
...
@@ -1485,7 +1494,8 @@ static int azx_setup_periods(struct azx *chip,
pci_name
(
chip
->
pci
),
bdl_pos_adj
[
chip
->
dev_index
]);
pos_adj
=
0
;
}
else
{
ofs
=
setup_bdle
(
chip
,
substream
,
azx_dev
,
ofs
=
setup_bdle
(
chip
,
snd_pcm_get_dma_buf
(
substream
),
azx_dev
,
&
bdl
,
ofs
,
pos_adj
,
true
);
if
(
ofs
<
0
)
goto
error
;
...
...
@@ -1494,10 +1504,12 @@ static int azx_setup_periods(struct azx *chip,
pos_adj
=
0
;
for
(
i
=
0
;
i
<
periods
;
i
++
)
{
if
(
i
==
periods
-
1
&&
pos_adj
)
ofs
=
setup_bdle
(
chip
,
substream
,
azx_dev
,
&
bdl
,
ofs
,
ofs
=
setup_bdle
(
chip
,
snd_pcm_get_dma_buf
(
substream
),
azx_dev
,
&
bdl
,
ofs
,
period_bytes
-
pos_adj
,
0
);
else
ofs
=
setup_bdle
(
chip
,
substream
,
azx_dev
,
&
bdl
,
ofs
,
ofs
=
setup_bdle
(
chip
,
snd_pcm_get_dma_buf
(
substream
),
azx_dev
,
&
bdl
,
ofs
,
period_bytes
,
!
azx_dev
->
no_period_wakeup
);
if
(
ofs
<
0
)
...
...
@@ -1675,6 +1687,11 @@ static int azx_codec_create(struct azx *chip, const char *model)
bus_temp
.
power_save
=
&
power_save
;
bus_temp
.
ops
.
pm_notify
=
azx_power_notify
;
#endif
#ifdef CONFIG_SND_HDA_DSP_LOADER
bus_temp
.
ops
.
load_dsp_prepare
=
azx_load_dsp_prepare
;
bus_temp
.
ops
.
load_dsp_trigger
=
azx_load_dsp_trigger
;
bus_temp
.
ops
.
load_dsp_cleanup
=
azx_load_dsp_cleanup
;
#endif
err
=
snd_hda_bus_new
(
chip
->
card
,
&
bus_temp
,
&
chip
->
bus
);
if
(
err
<
0
)
...
...
@@ -2583,6 +2600,93 @@ static void azx_stop_chip(struct azx *chip)
chip
->
initialized
=
0
;
}
#ifdef CONFIG_SND_HDA_DSP_LOADER
/*
* DSP loading code (e.g. for CA0132)
*/
/* use the first stream for loading DSP */
static
struct
azx_dev
*
azx_get_dsp_loader_dev
(
struct
azx
*
chip
)
{
return
&
chip
->
azx_dev
[
chip
->
playback_index_offset
];
}
static
int
azx_load_dsp_prepare
(
struct
hda_bus
*
bus
,
unsigned
int
format
,
unsigned
int
byte_size
,
struct
snd_dma_buffer
*
bufp
)
{
u32
*
bdl
;
struct
azx
*
chip
=
bus
->
private_data
;
struct
azx_dev
*
azx_dev
;
int
err
;
if
(
snd_hda_lock_devices
(
bus
))
return
-
EBUSY
;
err
=
snd_dma_alloc_pages
(
SNDRV_DMA_TYPE_DEV_SG
,
snd_dma_pci_data
(
chip
->
pci
),
byte_size
,
bufp
);
if
(
err
<
0
)
goto
error
;
azx_dev
=
azx_get_dsp_loader_dev
(
chip
);
azx_dev
->
bufsize
=
byte_size
;
azx_dev
->
period_bytes
=
byte_size
;
azx_dev
->
format_val
=
format
;
azx_stream_reset
(
chip
,
azx_dev
);
/* reset BDL address */
azx_sd_writel
(
azx_dev
,
SD_BDLPL
,
0
);
azx_sd_writel
(
azx_dev
,
SD_BDLPU
,
0
);
azx_dev
->
frags
=
0
;
bdl
=
(
u32
*
)
azx_dev
->
bdl
.
area
;
err
=
setup_bdle
(
chip
,
bufp
,
azx_dev
,
&
bdl
,
0
,
byte_size
,
0
);
if
(
err
<
0
)
goto
error
;
azx_setup_controller
(
chip
,
azx_dev
);
return
azx_dev
->
stream_tag
;
error:
snd_hda_unlock_devices
(
bus
);
return
err
;
}
static
void
azx_load_dsp_trigger
(
struct
hda_bus
*
bus
,
bool
start
)
{
struct
azx
*
chip
=
bus
->
private_data
;
struct
azx_dev
*
azx_dev
=
azx_get_dsp_loader_dev
(
chip
);
if
(
start
)
azx_stream_start
(
chip
,
azx_dev
);
else
azx_stream_stop
(
chip
,
azx_dev
);
azx_dev
->
running
=
start
;
}
static
void
azx_load_dsp_cleanup
(
struct
hda_bus
*
bus
,
struct
snd_dma_buffer
*
dmab
)
{
struct
azx
*
chip
=
bus
->
private_data
;
struct
azx_dev
*
azx_dev
=
azx_get_dsp_loader_dev
(
chip
);
/* reset BDL address */
azx_sd_writel
(
azx_dev
,
SD_BDLPL
,
0
);
azx_sd_writel
(
azx_dev
,
SD_BDLPU
,
0
);
azx_sd_writel
(
azx_dev
,
SD_CTL
,
0
);
azx_dev
->
bufsize
=
0
;
azx_dev
->
period_bytes
=
0
;
azx_dev
->
format_val
=
0
;
snd_dma_free_pages
(
dmab
);
snd_hda_unlock_devices
(
bus
);
}
#endif
/* CONFIG_SND_HDA_DSP_LOADER */
#ifdef CONFIG_PM
/* power-up/down the controller */
static
void
azx_power_notify
(
struct
hda_bus
*
bus
,
bool
power_up
)
...
...
sound/pci/hda/patch_ca0132.c
View file @
45acc86b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment