Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
ae02cde7
Commit
ae02cde7
authored
Mar 24, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/drop-l3' into for-linus
parents
f11a936f
323a5961
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
2069 deletions
+0
-2069
include/sound/uda1341.h
include/sound/uda1341.h
+0
-126
sound/arm/Kconfig
sound/arm/Kconfig
+0
-11
sound/arm/Makefile
sound/arm/Makefile
+0
-3
sound/arm/sa11xx-uda1341.c
sound/arm/sa11xx-uda1341.c
+0
-984
sound/i2c/Makefile
sound/i2c/Makefile
+0
-2
sound/i2c/l3/Makefile
sound/i2c/l3/Makefile
+0
-8
sound/i2c/l3/uda1341.c
sound/i2c/l3/uda1341.c
+0
-935
No files found.
include/sound/uda1341.h
deleted
100644 → 0
View file @
f11a936f
/*
* linux/include/linux/l3/uda1341.h
*
* Philips UDA1341 mixer device driver for ALSA
*
* Copyright (c) 2002 Tomas Kasparek <tomas.kasparek@seznam.cz>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License.
*
* History:
*
* 2002-03-13 Tomas Kasparek Initial release - based on uda1341.h from OSS
* 2002-03-30 Tomas Kasparek Proc filesystem support, complete mixer and DSP
* features support
*/
#define UDA1341_ALSA_NAME "snd-uda1341"
/*
* Default rate set after inicialization
*/
#define AUDIO_RATE_DEFAULT 44100
/*
* UDA1341 L3 address and command types
*/
#define UDA1341_L3ADDR 5
#define UDA1341_DATA0 (UDA1341_L3ADDR << 2 | 0)
#define UDA1341_DATA1 (UDA1341_L3ADDR << 2 | 1)
#define UDA1341_STATUS (UDA1341_L3ADDR << 2 | 2)
enum
uda1341_onoff
{
OFF
=
0
,
ON
,
};
enum
uda1341_format
{
I2S
=
0
,
LSB16
,
LSB18
,
LSB20
,
MSB
,
LSB16MSB
,
LSB18MSB
,
LSB20MSB
,
};
enum
uda1341_fs
{
F512
=
0
,
F384
,
F256
,
Funused
,
};
enum
uda1341_peak
{
BEFORE
=
0
,
AFTER
,
};
enum
uda1341_filter
{
FLAT
=
0
,
MIN
,
MIN2
,
MAX
,
};
enum
uda1341_mixer
{
DOUBLE
,
LINE
,
MIC
,
MIXER
,
};
enum
uda1341_deemp
{
NONE
,
D32
,
D44
,
D48
,
};
enum
uda1341_config
{
CMD_READ_REG
=
0
,
CMD_RESET
,
CMD_FS
,
CMD_FORMAT
,
CMD_OGAIN
,
CMD_IGAIN
,
CMD_DAC
,
CMD_ADC
,
CMD_VOLUME
,
CMD_BASS
,
CMD_TREBBLE
,
CMD_PEAK
,
CMD_DEEMP
,
CMD_MUTE
,
CMD_FILTER
,
CMD_CH1
,
CMD_CH2
,
CMD_MIC
,
CMD_MIXER
,
CMD_AGC
,
CMD_IG
,
CMD_AGC_TIME
,
CMD_AGC_LEVEL
,
#ifdef CONFIG_PM
CMD_SUSPEND
,
CMD_RESUME
,
#endif
CMD_LAST
,
};
enum
write_through
{
//used in update_bits (write_cfg) to avoid l3_write - just update local copy of regs.
REGS_ONLY
=
0
,
//update local regs and write value to uda1341 - do l3_write
FLUSH
,
};
int
__init
snd_chip_uda1341_mixer_new
(
struct
snd_card
*
card
,
struct
l3_client
**
clnt
);
/*
* Local variables:
* indent-tabs-mode: t
* End:
*/
sound/arm/Kconfig
View file @
ae02cde7
...
...
@@ -11,17 +11,6 @@ menuconfig SND_ARM
if SND_ARM
config SND_SA11XX_UDA1341
tristate "SA11xx UDA1341TS driver (iPaq H3600)"
depends on ARCH_SA1100 && L3
select SND_PCM
help
Say Y here if you have a Compaq iPaq H3x00 handheld computer
and want to use its Philips UDA 1341 audio chip.
To compile this driver as a module, choose M here: the module
will be called snd-sa11xx-uda1341.
config SND_ARMAACI
tristate "ARM PrimeCell PL041 AC Link support"
depends on ARM_AMBA
...
...
sound/arm/Makefile
View file @
ae02cde7
...
...
@@ -2,9 +2,6 @@
# Makefile for ALSA
#
obj-$(CONFIG_SND_SA11XX_UDA1341)
+=
snd-sa11xx-uda1341.o
snd-sa11xx-uda1341-objs
:=
sa11xx-uda1341.o
obj-$(CONFIG_SND_ARMAACI)
+=
snd-aaci.o
snd-aaci-objs
:=
aaci.o devdma.o
...
...
sound/arm/sa11xx-uda1341.c
deleted
100644 → 0
View file @
f11a936f
This diff is collapsed.
Click to expand it.
sound/i2c/Makefile
View file @
ae02cde7
...
...
@@ -7,8 +7,6 @@ snd-i2c-objs := i2c.o
snd-cs8427-objs
:=
cs8427.o
snd-tea6330t-objs
:=
tea6330t.o
obj-$(CONFIG_L3)
+=
l3/
obj-$(CONFIG_SND)
+=
other/
# Toplevel Module Dependency
...
...
sound/i2c/l3/Makefile
deleted
100644 → 0
View file @
f11a936f
#
# Makefile for ALSA
#
snd-uda1341-objs
:=
uda1341.o
# Module Dependency
obj-$(CONFIG_SND_SA11XX_UDA1341)
+=
snd-uda1341.o
sound/i2c/l3/uda1341.c
deleted
100644 → 0
View file @
f11a936f
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