1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
8 * This file contains the definition of the mixer device functions.
18 #include "ctresource.h"
20 #define INIT_VOL 0x1c00
40 /* alsa mixer descriptor */
44 void **amixers
; /* amixer resources for volume control */
45 void **sums
; /* sum resources for signal collection */
46 unsigned int switch_state
; /* A bit-map to indicate state of switches */
48 int (*get_output_ports
)(struct ct_mixer
*mixer
, enum MIXER_PORT_T type
,
49 struct rsc
**rleft
, struct rsc
**rright
);
51 int (*set_input_left
)(struct ct_mixer
*mixer
,
52 enum MIXER_PORT_T type
, struct rsc
*rsc
);
53 int (*set_input_right
)(struct ct_mixer
*mixer
,
54 enum MIXER_PORT_T type
, struct rsc
*rsc
);
55 #ifdef CONFIG_PM_SLEEP
56 int (*resume
)(struct ct_mixer
*mixer
);
60 int ct_alsa_mix_create(struct ct_atc
*atc
,
61 enum CTALSADEVS device
,
62 const char *device_name
);
63 int ct_mixer_create(struct ct_atc
*atc
, struct ct_mixer
**rmixer
);
64 int ct_mixer_destroy(struct ct_mixer
*mixer
);
66 #endif /* CTMIXER_H */